diff --git a/generated_types.json b/generated_types.json index 44acf3e0d..8ef636f45 100644 --- a/generated_types.json +++ b/generated_types.json @@ -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"] @@ -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" } @@ -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"] @@ -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." diff --git a/js/src/generated_types.ts b/js/src/generated_types.ts index dd7505a5b..866a305d7 100644 --- a/js/src/generated_types.ts +++ b/js/src/generated_types.ts @@ -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"; @@ -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; export const TriggeredFunctionState = z.object({ @@ -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(), @@ -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(), @@ -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; export const SpanIFrame = z.object({