Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions generated_types.json
Original file line number Diff line number Diff line change
Expand Up @@ -369,6 +369,11 @@
"type": ["string", "null"],
"format": "uuid",
"description": "Unique identifier for the organization"
},
"expires_at": {
"type": ["string", "null"],
"format": "date-time",
"description": "Date at which the API key expires. If null, the key never expires."
}
},
"required": ["id", "name", "preview_name"]
Expand Down Expand Up @@ -4979,6 +4984,10 @@
"type": ["boolean", "null"],
"description": "If true, disable real-time queries for this project. This can improve query performance for high-volume logs."
},
"monitor_charts_use_metrics_start": {
"type": ["boolean", "null"],
"description": "If true, use metrics.start rather than created for monitor chart time bucket dimensions."
},
"default_preprocessor": {
"$ref": "#/components/schemas/NullableSavedFunctionId"
}
Expand Down Expand Up @@ -5996,6 +6005,11 @@
"type": ["string", "null"],
"format": "uuid",
"description": "Unique identifier for the organization"
},
"expires_at": {
"type": ["string", "null"],
"format": "date-time",
"description": "Date and time at which the service token expires. If null, the token never expires."
}
},
"required": ["id", "name", "preview_name"]
Expand Down Expand Up @@ -6438,6 +6452,11 @@
"type": "boolean",
"description": "Whether new topic generation should ignore the previously saved report during reconciliation. Defaults to false when omitted."
},
"reconcile_mode": {
"type": "string",
"enum": ["evolve", "names_only"],
"description": "How reconciliation carries the previous map forward: \"evolve\" re-routes new samples into the previous topics before naming; \"names_only\" keeps the fresh clustering and carries only topic ids/names. Defaults to \"names_only\" when omitted."
},
"distance_threshold": {
"type": "number",
"description": "Maximum distance to nearest centroid. If exceeded, returns no_match."
Expand Down
6 changes: 5 additions & 1 deletion js/src/generated_types.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Auto-generated file (content hash 7817da7abc7229e4) -- do not modify
// Auto-generated file (content hash 4afc4ccf8af5df8e) -- do not modify

import { z } from "zod/v3";

Expand Down Expand Up @@ -147,6 +147,7 @@ export const ApiKey = z.object({
user_given_name: z.union([z.string(), z.null()]).optional(),
user_family_name: z.union([z.string(), z.null()]).optional(),
org_id: z.union([z.string(), z.null()]).optional(),
expires_at: z.union([z.string(), z.null()]).optional(),
});
export type ApiKeyType = z.infer<typeof ApiKey>;
export const TriggeredFunctionState = z.object({
Expand Down Expand Up @@ -291,6 +292,7 @@ export const TopicMapData = z.object({
topic_names: z.record(z.string()).optional(),
generation_settings: TopicMapGenerationSettings.optional(),
disable_reconciliation: z.boolean().optional(),
reconcile_mode: z.enum(["evolve", "names_only"]).optional(),
distance_threshold: z.number().optional(),
btql_filter: z.string().optional(),
automation_btql_filter: z.string().optional(),
Expand Down Expand Up @@ -1566,6 +1568,7 @@ export const ProjectSettings = z.union([
z.null(),
]),
disable_realtime_queries: z.union([z.boolean(), z.null()]),
monitor_charts_use_metrics_start: z.union([z.boolean(), z.null()]),
default_preprocessor: NullableSavedFunctionId,
})
.partial(),
Expand Down Expand Up @@ -2037,6 +2040,7 @@ export const ServiceToken = z.object({
service_account_email: z.union([z.string(), z.null()]).optional(),
service_account_name: z.union([z.string(), z.null()]).optional(),
org_id: z.union([z.string(), z.null()]).optional(),
expires_at: z.union([z.string(), z.null()]).optional(),
});
export type ServiceTokenType = z.infer<typeof ServiceToken>;
export const SpanIFrame = z.object({
Expand Down
Loading