Chore: Update app-sdk to v39 (#106785)

This commit is contained in:
Ryan McKinley
2025-06-16 19:11:30 +02:00
committed by GitHub
parent 19a65a4865
commit d02b62e874
41 changed files with 546 additions and 529 deletions
@@ -206,15 +206,11 @@ type QueryEditorProperty struct {
// NewQueryEditorProperty creates a new QueryEditorProperty object.
func NewQueryEditorProperty() *QueryEditorProperty {
return &QueryEditorProperty{}
return &QueryEditorProperty{
Type: QueryEditorPropertyTypeString,
}
}
type QueryEditorPropertyType string
const (
QueryEditorPropertyTypeString QueryEditorPropertyType = "string"
)
type QueryEditorArrayExpression struct {
Type QueryEditorArrayExpressionType `json:"type"`
Expressions ArrayOfQueryEditorExpressionOrArrayOfQueryEditorArrayExpression `json:"expressions"`
@@ -283,6 +279,12 @@ func NewQueryEditorOperatorValueType() *QueryEditorOperatorValueType {
return NewStringOrBoolOrInt64OrArrayOfQueryEditorOperatorType()
}
type QueryEditorPropertyType string
const (
QueryEditorPropertyTypeString QueryEditorPropertyType = "string"
)
type LogsQueryLanguage string
const (