@grepr/cli 1.6.29-bea24ac → 1.6.42-91f3e80

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (66) hide show
  1. package/build/dist/commands/backfill-command.d.ts +17 -0
  2. package/build/dist/commands/backfill-command.d.ts.map +1 -0
  3. package/build/dist/commands/backfill-command.js +115 -0
  4. package/build/dist/commands/backfill-command.js.map +1 -0
  5. package/build/dist/commands/job-draft-command.js +5 -6
  6. package/build/dist/commands/job-draft-command.js.map +1 -1
  7. package/build/dist/commands/query-command.d.ts +4 -18
  8. package/build/dist/commands/query-command.d.ts.map +1 -1
  9. package/build/dist/commands/query-command.js +5 -49
  10. package/build/dist/commands/query-command.js.map +1 -1
  11. package/build/dist/commands/sql-validate-command.d.ts +7 -0
  12. package/build/dist/commands/sql-validate-command.d.ts.map +1 -0
  13. package/build/dist/commands/sql-validate-command.js +29 -0
  14. package/build/dist/commands/sql-validate-command.js.map +1 -0
  15. package/build/dist/grepr.d.ts +1 -1
  16. package/build/dist/grepr.d.ts.map +1 -1
  17. package/build/dist/grepr.js +6 -0
  18. package/build/dist/grepr.js.map +1 -1
  19. package/build/dist/lib/backfill-grepr-link.d.ts +9 -0
  20. package/build/dist/lib/backfill-grepr-link.d.ts.map +1 -0
  21. package/build/dist/lib/backfill-grepr-link.js +31 -0
  22. package/build/dist/lib/backfill-grepr-link.js.map +1 -0
  23. package/build/dist/lib/backfill-vendor-links.d.ts +15 -0
  24. package/build/dist/lib/backfill-vendor-links.d.ts.map +1 -0
  25. package/build/dist/lib/backfill-vendor-links.js +181 -0
  26. package/build/dist/lib/backfill-vendor-links.js.map +1 -0
  27. package/build/dist/lib/backfill-vendors.d.ts +45 -0
  28. package/build/dist/lib/backfill-vendors.d.ts.map +1 -0
  29. package/build/dist/lib/backfill-vendors.js +43 -0
  30. package/build/dist/lib/backfill-vendors.js.map +1 -0
  31. package/build/dist/lib/backfill.d.ts +51 -0
  32. package/build/dist/lib/backfill.d.ts.map +1 -0
  33. package/build/dist/lib/backfill.js +343 -0
  34. package/build/dist/lib/backfill.js.map +1 -0
  35. package/build/dist/lib/grepr-api-client.d.ts +2 -1
  36. package/build/dist/lib/grepr-api-client.d.ts.map +1 -1
  37. package/build/dist/lib/grepr-api-client.js +13 -0
  38. package/build/dist/lib/grepr-api-client.js.map +1 -1
  39. package/build/dist/lib/job-patch.d.ts +34 -2
  40. package/build/dist/lib/job-patch.d.ts.map +1 -1
  41. package/build/dist/lib/job-patch.js +271 -16
  42. package/build/dist/lib/job-patch.js.map +1 -1
  43. package/build/dist/lib/job-plan.d.ts +1 -1
  44. package/build/dist/lib/job-plan.d.ts.map +1 -1
  45. package/build/dist/lib/job-plan.js +14 -14
  46. package/build/dist/lib/job-plan.js.map +1 -1
  47. package/build/dist/lib/query-predicate.d.ts +28 -0
  48. package/build/dist/lib/query-predicate.d.ts.map +1 -0
  49. package/build/dist/lib/query-predicate.js +66 -0
  50. package/build/dist/lib/query-predicate.js.map +1 -0
  51. package/build/dist/lib/time-utils.d.ts +25 -0
  52. package/build/dist/lib/time-utils.d.ts.map +1 -1
  53. package/build/dist/lib/time-utils.js +71 -0
  54. package/build/dist/lib/time-utils.js.map +1 -1
  55. package/build/dist/lib/transformers-embeddings.d.ts.map +1 -1
  56. package/build/dist/lib/transformers-embeddings.js +14 -1
  57. package/build/dist/lib/transformers-embeddings.js.map +1 -1
  58. package/build/dist/openapi/openApiTypes.d.ts +521 -20
  59. package/build/dist/openapi/openApiTypes.d.ts.map +1 -1
  60. package/build/dist/openapi/openApiTypes.js +43 -1
  61. package/build/dist/openapi/openApiTypes.js.map +1 -1
  62. package/build/dist/types.d.ts +3 -7
  63. package/build/dist/types.d.ts.map +1 -1
  64. package/build/dist/types.js +1 -1
  65. package/build/dist/types.js.map +1 -1
  66. package/package.json +15 -16
@@ -1707,6 +1707,66 @@ export interface paths {
1707
1707
  patch?: never;
1708
1708
  trace?: never;
1709
1709
  };
1710
+ "/v1/investigations/{investigationId}/cancel": {
1711
+ parameters: {
1712
+ query?: never;
1713
+ header?: never;
1714
+ path?: never;
1715
+ cookie?: never;
1716
+ };
1717
+ get?: never;
1718
+ put?: never;
1719
+ /**
1720
+ * Cancel an investigation
1721
+ * @description Aborts an investigation for good (running or paused). It pauses at the next turn boundary if running, then finalizes as CANCELLED.
1722
+ */
1723
+ post: operations["cancel"];
1724
+ delete?: never;
1725
+ options?: never;
1726
+ head?: never;
1727
+ patch?: never;
1728
+ trace?: never;
1729
+ };
1730
+ "/v1/investigations/{investigationId}/resume": {
1731
+ parameters: {
1732
+ query?: never;
1733
+ header?: never;
1734
+ path?: never;
1735
+ cookie?: never;
1736
+ };
1737
+ get?: never;
1738
+ put?: never;
1739
+ /**
1740
+ * Resume a stopped investigation
1741
+ * @description Resumes a stopped (resumable) investigation in place. A non-blank message is appended as a new user turn; an empty body continues the agent with no added input.
1742
+ */
1743
+ post: operations["resume"];
1744
+ delete?: never;
1745
+ options?: never;
1746
+ head?: never;
1747
+ patch?: never;
1748
+ trace?: never;
1749
+ };
1750
+ "/v1/investigations/{investigationId}/stop": {
1751
+ parameters: {
1752
+ query?: never;
1753
+ header?: never;
1754
+ path?: never;
1755
+ cookie?: never;
1756
+ };
1757
+ get?: never;
1758
+ put?: never;
1759
+ /**
1760
+ * Stop a running investigation
1761
+ * @description Requests a running investigation pause at its next turn boundary. It can then be resumed with a message. Returns 202; the status flips to STOPPED shortly after.
1762
+ */
1763
+ post: operations["stop"];
1764
+ delete?: never;
1765
+ options?: never;
1766
+ head?: never;
1767
+ patch?: never;
1768
+ trace?: never;
1769
+ };
1710
1770
  "/v1/investigations/{investigationId}/transcript": {
1711
1771
  parameters: {
1712
1772
  query?: never;
@@ -1727,6 +1787,26 @@ export interface paths {
1727
1787
  patch?: never;
1728
1788
  trace?: never;
1729
1789
  };
1790
+ "/v1/investigations/{investigationId}/turns": {
1791
+ parameters: {
1792
+ query?: never;
1793
+ header?: never;
1794
+ path?: never;
1795
+ cookie?: never;
1796
+ };
1797
+ /**
1798
+ * Stream an investigation's transcript turns by sequence cursor
1799
+ * @description Returns journalled turns after the given sequence, oldest first.
1800
+ */
1801
+ get: operations["turns"];
1802
+ put?: never;
1803
+ post?: never;
1804
+ delete?: never;
1805
+ options?: never;
1806
+ head?: never;
1807
+ patch?: never;
1808
+ trace?: never;
1809
+ };
1730
1810
  "/v1/invitations": {
1731
1811
  parameters: {
1732
1812
  query?: never;
@@ -2897,7 +2977,7 @@ export interface components {
2897
2977
  /** @description One aggregation function declaration. */
2898
2978
  AggregationDecl: {
2899
2979
  /**
2900
- * @description Function arguments. Heterogeneous; validated at pipeline construction.
2980
+ * @description Function arguments. Heterogeneous; validated at pipeline construction. PERCENTILE accepts [rank], [rank, relativeAccuracy], or [rank, relativeAccuracy, maxNumBins].
2901
2981
  * @default []
2902
2982
  */
2903
2983
  args?: Record<string, never>[];
@@ -3116,6 +3196,39 @@ export interface components {
3116
3196
  */
3117
3197
  type: AttributeKeyTermNodeType;
3118
3198
  };
3199
+ /**
3200
+ * @description Masks to apply to attribute values. Each entry names an attribute path (as a list of segments) and the masks to apply to the value at that path. Only string values at the exact path are masked; missing or non-string attributes are skipped. Paths must be unique. The same matching rules as messageMasks apply.
3201
+ * @example [
3202
+ * {
3203
+ * "masks": {
3204
+ * "email": "\\S+@\\S+"
3205
+ * },
3206
+ * "path": [
3207
+ * "user",
3208
+ * "contact"
3209
+ * ]
3210
+ * }
3211
+ * ]
3212
+ */
3213
+ AttributeMask: {
3214
+ /**
3215
+ * @description Masks to apply to the value at this path, as a map of label to regular expression. The same matching rules as messageMasks apply.
3216
+ * @example {
3217
+ * "email": "\\S+@\\S+"
3218
+ * }
3219
+ */
3220
+ masks: {
3221
+ [key: string]: string;
3222
+ };
3223
+ /**
3224
+ * @description Attribute path to mask, as a list of segments.
3225
+ * @example [
3226
+ * "user",
3227
+ * "contact"
3228
+ * ]
3229
+ */
3230
+ path: string[];
3231
+ };
3119
3232
  AttributeNode: {
3120
3233
  /**
3121
3234
  * @description The attribute name
@@ -3375,6 +3488,10 @@ export interface components {
3375
3488
  */
3376
3489
  type: BucketPartitionTransformType;
3377
3490
  };
3491
+ /** @description One node of the recursive chain tree. Every chain (and every nested chain) is rooted at a ChainNode; the recursion terminates at a DropNode or PassthroughNode leaf. */
3492
+ ChainNode: {
3493
+ kind: string;
3494
+ } & (components["schemas"]["DropNode"] | components["schemas"]["PassthroughNode"] | components["schemas"]["SqlNode"] | components["schemas"]["ConditionNode"]);
3378
3495
  ChunkedOutputEventRecordReadableData: {
3379
3496
  closed?: boolean;
3380
3497
  type?: {
@@ -3479,6 +3596,11 @@ export interface components {
3479
3596
  */
3480
3597
  aggregations?: components["schemas"]["AggregationDecl"][];
3481
3598
  selectors?: components["schemas"]["FilterPrimitive"];
3599
+ /**
3600
+ * @description When false, emit per-series time-only aggregation (no space/cohort collapse); aggregations apply as time-window folds. Default true keeps cohort aggregation.
3601
+ * @default true
3602
+ */
3603
+ spaceAggregation?: boolean;
3482
3604
  };
3483
3605
  /** @description Cohort-identity + space-aggregation configuration. */
3484
3606
  CohortsConfig: {
@@ -3577,6 +3699,23 @@ export interface components {
3577
3699
  /** @default [] */
3578
3700
  actionRules: components["schemas"]["ActionRule"][];
3579
3701
  };
3702
+ /** @description Non-terminal — events matching `predicate` route into `thenAction`; non-matching events route into `elseAction`. `lateDataDuration` is honored only when this node is the root of a stage's slot. */
3703
+ ConditionNode: {
3704
+ elseAction: components["schemas"]["ChainNode"];
3705
+ /**
3706
+ * Format: ISO-8601
3707
+ * @description Optional ISO-8601 maximum allowed lateness applied at the chain's entry filter. Honored only when this is the root node of a stage's slot; values set on a nested ConditionNode are ignored by the templates-layer compiler.
3708
+ * @example PT20.345S
3709
+ */
3710
+ lateDataDuration?: string;
3711
+ predicate: components["schemas"]["EventPredicate"];
3712
+ thenAction: components["schemas"]["ChainNode"];
3713
+ /**
3714
+ * @description discriminator enum property added by openapi-typescript
3715
+ * @enum {string}
3716
+ */
3717
+ kind: ConditionNodeKind;
3718
+ };
3580
3719
  /** @description One conditional branch in the raw log if-else routing ladder. */
3581
3720
  ConditionalDataLakeConfig: {
3582
3721
  /** @description Target dataset ID for logs matching this branch's filter. */
@@ -3796,12 +3935,6 @@ export interface components {
3796
3935
  * @example datadoghq.com
3797
3936
  */
3798
3937
  site: string;
3799
- /**
3800
- * @description Whether to process Datadog Lucene queries for this integration through BabelFish. Safe to enable per-integration once verified.
3801
- * @default false
3802
- * @example false
3803
- */
3804
- useBabelFishForLucene?: boolean;
3805
3938
  /**
3806
3939
  * @description Indicates whether to validate the API and App keys when saving the keys.
3807
3940
  * @default true
@@ -4133,6 +4266,14 @@ export interface components {
4133
4266
  */
4134
4267
  type: DoubleDatapointType;
4135
4268
  };
4269
+ /** @description Terminal — discards every event reaching this node. */
4270
+ DropNode: {
4271
+ /**
4272
+ * @description discriminator enum property added by openapi-typescript
4273
+ * @enum {string}
4274
+ */
4275
+ kind: DropNodeKind;
4276
+ };
4136
4277
  /** @description Drops matching series outright. */
4137
4278
  DropRule: {
4138
4279
  /**
@@ -4441,6 +4582,13 @@ export interface components {
4441
4582
  };
4442
4583
  metricName?: components["schemas"]["MetricNameFilter"];
4443
4584
  };
4585
+ FrontendConfig: {
4586
+ appBaseUrl?: string;
4587
+ flinkBaseUrl?: string;
4588
+ gtmContainerId?: string;
4589
+ kafkaToolkitClusterName?: string;
4590
+ region?: string;
4591
+ };
4444
4592
  /** @description The payload containing integration data. */
4445
4593
  Gemini: {
4446
4594
  /**
@@ -5001,8 +5149,10 @@ export interface components {
5001
5149
  /** Format: int32 */
5002
5150
  inputTokens?: number;
5003
5151
  investigationId?: string;
5152
+ live?: boolean;
5004
5153
  /** Format: int32 */
5005
5154
  outputTokens?: number;
5155
+ resumable?: boolean;
5006
5156
  /** @enum {string} */
5007
5157
  status?: InvestigationSummaryStatus;
5008
5158
  summary?: string;
@@ -5019,7 +5169,14 @@ export interface components {
5019
5169
  /** @enum {string} */
5020
5170
  status?: InvestigationSummaryStatus;
5021
5171
  summary?: string;
5022
- turns?: components["schemas"]["TranscriptTurn"][];
5172
+ };
5173
+ InvestigationsList: {
5174
+ hasMore?: boolean;
5175
+ investigations?: components["schemas"]["ItemsCollectionInvestigationSummary"];
5176
+ /** Format: int32 */
5177
+ limit?: number;
5178
+ /** Format: int32 */
5179
+ start?: number;
5023
5180
  };
5024
5181
  InvitationsList: {
5025
5182
  invitations?: components["schemas"]["ItemsCollectionReadInvitation"];
@@ -5041,6 +5198,10 @@ export interface components {
5041
5198
  */
5042
5199
  teamAssignments?: components["schemas"]["TeamAssignment"][];
5043
5200
  };
5201
+ ItemsCollectionInvestigationSummary: {
5202
+ /** @default [] */
5203
+ items?: components["schemas"]["InvestigationSummary"][];
5204
+ };
5044
5205
  ItemsCollectionLogEvent: {
5045
5206
  /** @default [] */
5046
5207
  items?: components["schemas"]["LogEvent"][];
@@ -5906,11 +6067,15 @@ export interface components {
5906
6067
  LogReducerTemplateInput: {
5907
6068
  /** @description Conditional routing of raw logs to datasets. Logs will match the filters in order, and once a log matches a filter, it will not attempt to match other filters in the list. If a log matches none of the filters, it is written to the default dataset. A default dataset must be set when conditional routing is configured. */
5908
6069
  conditionalDatasets?: components["schemas"]["ConditionalDataLakeConfig"][];
6070
+ /**
6071
+ * @description When true (ENGT-3898), vendor log sinks are non-terminal: delivered records are written to a confirmed-delivery dedup sink so only logs actually accepted by the vendor are marked sent. Defaults to false during gradual rollout.
6072
+ * @default false
6073
+ */
6074
+ confirmedDeliveryEnabled?: boolean;
5909
6075
  /** @description The unique identifier for the dataset. When absent, no raw logs will be stored. At least one of `datasetId` or `sinks` must be provided for non-draft pipelines. */
5910
6076
  datasetId?: string;
5911
6077
  /** @description A list of template-specific exceptions to apply in log reducer. */
5912
6078
  exceptions: components["schemas"]["TemplateException"][];
5913
- filters: components["schemas"]["LogReducerFilters"];
5914
6079
  /** @description A list of parsers to be applied to the data. */
5915
6080
  parsers: components["schemas"]["Operation"][];
5916
6081
  processedLogsSink?: components["schemas"]["LogsIcebergTableSink"];
@@ -5921,7 +6086,7 @@ export interface components {
5921
6086
  sinks?: components["schemas"]["TemplateLogSink"][];
5922
6087
  /** @description A list of data sources, each conforming to one of the defined source types. */
5923
6088
  sources: components["schemas"]["Operation"][];
5924
- sqlOperations?: components["schemas"]["SqlOperations"];
6089
+ transforms?: components["schemas"]["Transforms"];
5925
6090
  };
5926
6091
  LogRulesApplication: {
5927
6092
  /**
@@ -6224,12 +6389,48 @@ export interface components {
6224
6389
  };
6225
6390
  Manifest: {
6226
6391
  auth: components["schemas"]["AuthConfig"];
6392
+ frontend?: components["schemas"]["FrontendConfig"];
6227
6393
  };
6228
6394
  MaskEntry: {
6229
6395
  name: string;
6230
6396
  pattern: string;
6231
6397
  replacement: string;
6232
6398
  };
6399
+ MaskingOperator: {
6400
+ /**
6401
+ * @description Masks to apply to attribute values. Each entry names an attribute path (as a list of segments) and the masks to apply to the value at that path. Only string values at the exact path are masked; missing or non-string attributes are skipped. Paths must be unique. The same matching rules as messageMasks apply.
6402
+ * @default []
6403
+ * @example [
6404
+ * {
6405
+ * "masks": {
6406
+ * "email": "\\S+@\\S+"
6407
+ * },
6408
+ * "path": [
6409
+ * "user",
6410
+ * "contact"
6411
+ * ]
6412
+ * }
6413
+ * ]
6414
+ */
6415
+ attributeMasks: components["schemas"]["AttributeMask"][];
6416
+ /**
6417
+ * @description Masks to apply to the log message, as a map of label to regular expression. Each match is replaced with the label in square brackets, e.g. a match of the regex labeled "email" becomes "[email]". Labels may be up to 64 characters. Overlapping matches resolve to the leftmost match first, then the longest; declaration order breaks remaining ties, so declare more specific patterns first. Regexes must be compatible with Hyperscan syntax (no lookbehind or backreferences).
6418
+ * @default {}
6419
+ * @example {
6420
+ * "email": "[a-zA-Z0-9._%+-]+@[a-zA-Z0-9.-]+\\.[a-zA-Z]{2,}"
6421
+ * }
6422
+ */
6423
+ messageMasks: {
6424
+ [key: string]: string;
6425
+ };
6426
+ /** @example operation_name */
6427
+ name: string;
6428
+ /**
6429
+ * @description Masks sensitive substrings in log events by replacing regex matches with decorated labels. (enum property replaced by openapi-typescript)
6430
+ * @enum {string}
6431
+ */
6432
+ type: MaskingOperatorType;
6433
+ };
6233
6434
  /** @description Masking rule that scrubs PII from log messages using regex patterns. */
6234
6435
  MaskingRuleConfig: Omit<components["schemas"]["PatternRuleConfig"], "type"> & {
6235
6436
  /** @default true */
@@ -6715,12 +6916,6 @@ export interface components {
6715
6916
  * @example newrelic.com
6716
6917
  */
6717
6918
  site: string;
6718
- /**
6719
- * @description Whether to process New Relic Lucene queries for this integration through BabelFish. Safe to enable per-integration once verified. Does not affect NRQL processing.
6720
- * @default false
6721
- * @example false
6722
- */
6723
- useBabelFishForLucene?: boolean;
6724
6919
  };
6725
6920
  NewRelicLogAgentSource: {
6726
6921
  /** @description The integration id for the observability vendor. */
@@ -6873,7 +7068,7 @@ export interface components {
6873
7068
  /** @example operation_name */
6874
7069
  name: string;
6875
7070
  type: string;
6876
- } & (components["schemas"]["LogsEventSampler"] | components["schemas"]["LogsBranch"] | components["schemas"]["LogsFilter"] | components["schemas"]["GrokParser"] | components["schemas"]["JsonLogProcessor"] | components["schemas"]["LogAttributesRemapper"] | components["schemas"]["LogReducer"] | components["schemas"]["LogTransformAction"] | components["schemas"]["LlmPrompt"] | components["schemas"]["PatternMatcher"] | components["schemas"]["LogsIcebergTableSink"] | components["schemas"]["PatternLookupIcebergTableSink"] | components["schemas"]["EventDedupIcebergTableSink"] | components["schemas"]["SpanDedupIcebergTableSink"] | components["schemas"]["LogsIcebergTableSource"] | components["schemas"]["LlmPromptResultsIcebergTableSource"] | components["schemas"]["MetricsIcebergTableSource"] | components["schemas"]["TracesIcebergTableSource"] | components["schemas"]["SpansBackfillIcebergTableSource"] | components["schemas"]["MetricsIcebergTableSink"] | components["schemas"]["DatadogLogCloudSource"] | components["schemas"]["DatadogLogAgentSource"] | components["schemas"]["DatadogTraceAgentSource"] | components["schemas"]["GreprVendorSource"] | components["schemas"]["GreprMetricsSource"] | components["schemas"]["DatadogLogSink"] | components["schemas"]["DatadogTraceSink"] | components["schemas"]["NewRelicLogSink"] | components["schemas"]["SplunkLogSink"] | components["schemas"]["SumoLogSource"] | components["schemas"]["SumoLogSink"] | components["schemas"]["OtlpLogSink"] | components["schemas"]["OtlpTraceSink"] | components["schemas"]["IcebergLogsReplaySource"] | components["schemas"]["LogsBackfillFlinkSource"] | components["schemas"]["LogsRuleEngine"] | components["schemas"]["ReducerLogsQuerySource"] | components["schemas"]["LogsSynchronousSink"] | components["schemas"]["MetricsSynchronousSink"] | components["schemas"]["VariantSynchronousSink"] | components["schemas"]["SpansSynchronousSink"] | components["schemas"]["DiscardingSink"] | components["schemas"]["DatadogMetricsSink"] | components["schemas"]["LegacyDatadogMetricsSink"] | components["schemas"]["GreprReducerLogSource"] | components["schemas"]["GreprRawLogsSource"] | components["schemas"]["GreprLlmPromptResultsSource"] | components["schemas"]["SplunkLogAgentSource"] | components["schemas"]["SplunkLogHttpSource"] | components["schemas"]["NewRelicLogAgentSource"] | components["schemas"]["OtlpLogAgentSource"] | components["schemas"]["OtlpTraceAgentSource"] | components["schemas"]["TraceSampler"] | components["schemas"]["S3LogsFileSource"] | components["schemas"]["CloudTrailLogsFileSource"] | components["schemas"]["GreprUploadedLogFileSource"] | components["schemas"]["TemplateOperation"] | components["schemas"]["SqlOperation"] | components["schemas"]["TraceReducer"] | components["schemas"]["MetricReducer"] | components["schemas"]["DatadogStatsSink"] | components["schemas"]["LogsValuesSource"] | components["schemas"]["LogRulesApplication"] | components["schemas"]["TriggerActionOp"] | components["schemas"]["EntityContextAggregation"]);
7071
+ } & (components["schemas"]["LogsEventSampler"] | components["schemas"]["LogsBranch"] | components["schemas"]["LogsFilter"] | components["schemas"]["GrokParser"] | components["schemas"]["JsonLogProcessor"] | components["schemas"]["LogAttributesRemapper"] | components["schemas"]["LogReducer"] | components["schemas"]["LogTransformAction"] | components["schemas"]["MaskingOperator"] | components["schemas"]["LlmPrompt"] | components["schemas"]["PatternMatcher"] | components["schemas"]["LogsIcebergTableSink"] | components["schemas"]["PatternLookupIcebergTableSink"] | components["schemas"]["EventDedupIcebergTableSink"] | components["schemas"]["VendorLogEventDedupIcebergTableSink"] | components["schemas"]["SpanDedupIcebergTableSink"] | components["schemas"]["LogsIcebergTableSource"] | components["schemas"]["LlmPromptResultsIcebergTableSource"] | components["schemas"]["MetricsIcebergTableSource"] | components["schemas"]["TracesIcebergTableSource"] | components["schemas"]["SpansBackfillIcebergTableSource"] | components["schemas"]["MetricsIcebergTableSink"] | components["schemas"]["DatadogLogCloudSource"] | components["schemas"]["DatadogLogAgentSource"] | components["schemas"]["DatadogTraceAgentSource"] | components["schemas"]["GreprVendorSource"] | components["schemas"]["GreprMetricsSource"] | components["schemas"]["DatadogLogSink"] | components["schemas"]["DatadogTraceSink"] | components["schemas"]["NewRelicLogSink"] | components["schemas"]["SplunkLogSink"] | components["schemas"]["SumoLogSource"] | components["schemas"]["SumoLogSink"] | components["schemas"]["OtlpLogSink"] | components["schemas"]["OtlpTraceSink"] | components["schemas"]["IcebergLogsReplaySource"] | components["schemas"]["LogsBackfillFlinkSource"] | components["schemas"]["LogsRuleEngine"] | components["schemas"]["ReducerLogsQuerySource"] | components["schemas"]["LogsSynchronousSink"] | components["schemas"]["MetricsSynchronousSink"] | components["schemas"]["VariantSynchronousSink"] | components["schemas"]["SpansSynchronousSink"] | components["schemas"]["DiscardingSink"] | components["schemas"]["DatadogMetricsSink"] | components["schemas"]["LegacyDatadogMetricsSink"] | components["schemas"]["GreprReducerLogSource"] | components["schemas"]["GreprRawLogsSource"] | components["schemas"]["GreprLlmPromptResultsSource"] | components["schemas"]["SplunkLogAgentSource"] | components["schemas"]["SplunkLogHttpSource"] | components["schemas"]["NewRelicLogAgentSource"] | components["schemas"]["OtlpLogAgentSource"] | components["schemas"]["OtlpTraceAgentSource"] | components["schemas"]["TraceSampler"] | components["schemas"]["SpanTagger"] | components["schemas"]["S3LogsFileSource"] | components["schemas"]["CloudTrailLogsFileSource"] | components["schemas"]["GreprUploadedLogFileSource"] | components["schemas"]["TemplateOperation"] | components["schemas"]["SqlOperation"] | components["schemas"]["TraceReducer"] | components["schemas"]["MetricReducer"] | components["schemas"]["DatadogStatsSink"] | components["schemas"]["LogsValuesSource"] | components["schemas"]["LogRulesApplication"] | components["schemas"]["TriggerActionOp"] | components["schemas"]["EntityContextAggregation"]);
6877
7072
  OrQueryNode: {
6878
7073
  /**
6879
7074
  * @description This is a list of expressions that are combined with an OR operator.
@@ -7105,6 +7300,14 @@ export interface components {
7105
7300
  PartitionTransform: {
7106
7301
  type: string;
7107
7302
  };
7303
+ /** @description Terminal — forwards every event to the chain's downstream pipeline step. UI label is stage-derived (e.g. "Send to Reducer"). */
7304
+ PassthroughNode: {
7305
+ /**
7306
+ * @description discriminator enum property added by openapi-typescript
7307
+ * @enum {string}
7308
+ */
7309
+ kind: PassthroughNodeKind;
7310
+ };
7108
7311
  PatternLookupIcebergTableSink: {
7109
7312
  /** @description The id of the dataset to write to */
7110
7313
  datasetId: string;
@@ -8366,6 +8569,9 @@ export interface components {
8366
8569
  */
8367
8570
  resourceType: ResourceFilterResourceType;
8368
8571
  };
8572
+ ResumeInvestigationRequest: {
8573
+ text?: string;
8574
+ };
8369
8575
  Role: {
8370
8576
  /**
8371
8577
  * @description Whether this is a built-in role
@@ -8731,6 +8937,23 @@ export interface components {
8731
8937
  */
8732
8938
  traceState?: string;
8733
8939
  };
8940
+ /** @description Overlays a fixed set of attributes onto every span passing through this operation. Used by the trace draft pipeline to stamp stage tags on previewed spans. */
8941
+ SpanTagger: {
8942
+ /**
8943
+ * Attributes
8944
+ * @description Attributes to overlay onto each span's attributes map.
8945
+ */
8946
+ attributes: {
8947
+ [key: string]: string;
8948
+ };
8949
+ /** @example operation_name */
8950
+ name: string;
8951
+ /**
8952
+ * @description Overlays a fixed set of attributes onto every span passing through. (enum property replaced by openapi-typescript)
8953
+ * @enum {string}
8954
+ */
8955
+ type: SpanTaggerType;
8956
+ };
8734
8957
  SpansBackfillIcebergTableSource: {
8735
8958
  /** @description The ID of the dataset to read data from. */
8736
8959
  datasetId: string;
@@ -9010,6 +9233,20 @@ export interface components {
9010
9233
  */
9011
9234
  type: SqlIoStatementType;
9012
9235
  };
9236
+ /** @description Non-terminal — runs SQL on events, then routes survivors to `next`. */
9237
+ SqlNode: {
9238
+ next: components["schemas"]["ChainNode"];
9239
+ /** @description Routes each SQL output statement's output name to the pipeline step that consumes it. Every key must match an output statement defined in `sqlOperation`. */
9240
+ outputRouting: {
9241
+ [key: string]: SqlNodeOutputRouting;
9242
+ };
9243
+ sqlOperation: components["schemas"]["SqlOperation"];
9244
+ /**
9245
+ * @description discriminator enum property added by openapi-typescript
9246
+ * @enum {string}
9247
+ */
9248
+ kind: SqlNodeKind;
9249
+ };
9013
9250
  /** @description Processes data through a sequence of SQL statements executed in order. Supports VIEW statements that create temporary tables, OUTPUT statements that produce DataStream results, and IO statements that perform side effects. */
9014
9251
  SqlOperation: {
9015
9252
  /**
@@ -9132,6 +9369,7 @@ export interface components {
9132
9369
  };
9133
9370
  StartInvestigationRequest: {
9134
9371
  agentId: string;
9372
+ parentInvestigationId?: string;
9135
9373
  userProvidedContext?: string;
9136
9374
  };
9137
9375
  StartInvestigationResponse: {
@@ -9870,6 +10108,10 @@ export interface components {
9870
10108
  */
9871
10109
  type: TemplateTraceSamplerExceptionType;
9872
10110
  };
10111
+ /** @description Template trace sink configuration */
10112
+ TemplateTraceSink: {
10113
+ sink?: components["schemas"]["Operation"];
10114
+ };
9873
10115
  /** @description Time-aggregation window and per-metric agg-fn overrides. */
9874
10116
  TimeGranularity: {
9875
10117
  /**
@@ -10040,6 +10282,20 @@ export interface components {
10040
10282
  */
10041
10283
  type: TraceReducerType;
10042
10284
  };
10285
+ /**
10286
+ * Inputs Schema
10287
+ * @description Schema for the trace reducer job graph.
10288
+ */
10289
+ TraceReducerTemplateInput: {
10290
+ /** @description The unique identifier for the dataset persisted by the trace reducer. When absent, no raw spans will be stored and no dedup sinks will be wired. At least one of `datasetId` or `sinks` must be provided for non-draft pipelines. */
10291
+ datasetId?: string;
10292
+ reducer?: components["schemas"]["TraceReducer"];
10293
+ /** @description A list of template trace sinks, each wrapping a vendor sink operation. When absent, reduced spans will not be forwarded to any vendor. At least one of `sinks` or `datasetId` must be provided for non-draft pipelines. */
10294
+ sinks?: components["schemas"]["TemplateTraceSink"][];
10295
+ /** @description A list of trace sources, each conforming to one of the defined source types. */
10296
+ sources: components["schemas"]["Operation"][];
10297
+ sqlOperations?: components["schemas"]["TraceSqlOperations"];
10298
+ };
10043
10299
  TraceSampler: {
10044
10300
  /** @example operation_name */
10045
10301
  name: string;
@@ -10105,6 +10361,11 @@ export interface components {
10105
10361
  */
10106
10362
  type: TraceSamplerType;
10107
10363
  };
10364
+ /** @description SQL operations applied at various stages of trace processing. */
10365
+ TraceSqlOperations: {
10366
+ postReducer?: components["schemas"]["TemplateSqlOperation"];
10367
+ preReducer?: components["schemas"]["TemplateSqlOperation"];
10368
+ };
10108
10369
  TracesIcebergTableSource: {
10109
10370
  /** @description The ID of the dataset to read data from. */
10110
10371
  datasetId: string;
@@ -10234,6 +10495,16 @@ export interface components {
10234
10495
  /** Format: int32 */
10235
10496
  seq?: number;
10236
10497
  };
10498
+ TranscriptTurnsList: {
10499
+ hasMore?: boolean;
10500
+ turns?: components["schemas"]["TranscriptTurn"][];
10501
+ };
10502
+ /** @description Per-stage tree-shape chains applied during log processing. */
10503
+ Transforms: {
10504
+ preExceptions?: components["schemas"]["ChainNode"];
10505
+ preParser?: components["schemas"]["ChainNode"];
10506
+ preWarehouse?: components["schemas"]["ChainNode"];
10507
+ };
10237
10508
  /**
10238
10509
  * @description Base class of all Triggers
10239
10510
  * @example {
@@ -10483,6 +10754,18 @@ export interface components {
10483
10754
  vendorResourceId: string;
10484
10755
  vendorResourceName?: string;
10485
10756
  };
10757
+ VendorLogEventDedupIcebergTableSink: {
10758
+ /** @description The id of the dataset to write to */
10759
+ datasetId: string;
10760
+ /** @example operation_name */
10761
+ name: string;
10762
+ /**
10763
+ * @description Writes confirmed-delivered event IDs to an Iceberg table to keep track of which events have actually been sent to a particular sink. (enum property replaced by openapi-typescript)
10764
+ * @enum {string}
10765
+ */
10766
+ type: VendorLogEventDedupIcebergTableSinkType;
10767
+ vendorSinkId: string;
10768
+ };
10486
10769
  WindowBasedLogarithmicSampling: {
10487
10770
  /**
10488
10771
  * Format: int32
@@ -10912,6 +11195,7 @@ export type SchemaAny = components["schemas"]["Any"];
10912
11195
  export type SchemaArrayData = components["schemas"]["ArrayData"];
10913
11196
  export type SchemaAttributeHeaderMapping = components["schemas"]["AttributeHeaderMapping"];
10914
11197
  export type SchemaAttributeKeyTermNode = components["schemas"]["AttributeKeyTermNode"];
11198
+ export type SchemaAttributeMask = components["schemas"]["AttributeMask"];
10915
11199
  export type SchemaAttributeNode = components["schemas"]["AttributeNode"];
10916
11200
  export type SchemaAttributePrefixNode = components["schemas"]["AttributePrefixNode"];
10917
11201
  export type SchemaAttributeRe2Node = components["schemas"]["AttributeRe2Node"];
@@ -10929,6 +11213,7 @@ export type SchemaBillingSummary = components["schemas"]["BillingSummary"];
10929
11213
  export type SchemaBillingSummaryResponse = components["schemas"]["BillingSummaryResponse"];
10930
11214
  export type SchemaBucketAccessResult = components["schemas"]["BucketAccessResult"];
10931
11215
  export type SchemaBucketPartitionTransform = components["schemas"]["BucketPartitionTransform"];
11216
+ export type SchemaChainNode = components["schemas"]["ChainNode"];
10932
11217
  export type SchemaChunkedOutputEventRecordReadableData = components["schemas"]["ChunkedOutputEventRecordReadableData"];
10933
11218
  export type SchemaClearSecret = components["schemas"]["ClearSecret"];
10934
11219
  export type SchemaCloudFormationSetupInfo = components["schemas"]["CloudFormationSetupInfo"];
@@ -10938,6 +11223,7 @@ export type SchemaCohortsConfig = components["schemas"]["CohortsConfig"];
10938
11223
  export type SchemaCompleteSpan = components["schemas"]["CompleteSpan"];
10939
11224
  export type SchemaCompositeAttributesMergeStrategy = components["schemas"]["CompositeAttributesMergeStrategy"];
10940
11225
  export type SchemaCondition = components["schemas"]["Condition"];
11226
+ export type SchemaConditionNode = components["schemas"]["ConditionNode"];
10941
11227
  export type SchemaConditionalDataLakeConfig = components["schemas"]["ConditionalDataLakeConfig"];
10942
11228
  export type SchemaConsoleSetupInfo = components["schemas"]["ConsoleSetupInfo"];
10943
11229
  export type SchemaConstantSampling = components["schemas"]["ConstantSampling"];
@@ -10968,6 +11254,7 @@ export type SchemaDatasetRead = components["schemas"]["DatasetRead"];
10968
11254
  export type SchemaDatasetUpdate = components["schemas"]["DatasetUpdate"];
10969
11255
  export type SchemaDiscardingSink = components["schemas"]["DiscardingSink"];
10970
11256
  export type SchemaDoubleDatapoint = components["schemas"]["DoubleDatapoint"];
11257
+ export type SchemaDropNode = components["schemas"]["DropNode"];
10971
11258
  export type SchemaDropRule = components["schemas"]["DropRule"];
10972
11259
  export type SchemaEarliestReadingStrategy = components["schemas"]["EarliestReadingStrategy"];
10973
11260
  export type SchemaEffectivePartitionField = components["schemas"]["EffectivePartitionField"];
@@ -10988,6 +11275,7 @@ export type SchemaExternalTriggerPayload = components["schemas"]["ExternalTrigge
10988
11275
  export type SchemaFileFormat = components["schemas"]["FileFormat"];
10989
11276
  export type SchemaFileReadingStrategy = components["schemas"]["FileReadingStrategy"];
10990
11277
  export type SchemaFilterPrimitive = components["schemas"]["FilterPrimitive"];
11278
+ export type SchemaFrontendConfig = components["schemas"]["FrontendConfig"];
10991
11279
  export type SchemaGemini = components["schemas"]["Gemini"];
10992
11280
  export type SchemaGreprApiKey = components["schemas"]["GreprApiKey"];
10993
11281
  export type SchemaGreprJobGraph = components["schemas"]["GreprJobGraph"];
@@ -11015,8 +11303,10 @@ export type SchemaIntegrationExceptionsList = components["schemas"]["Integration
11015
11303
  export type SchemaInvestigationAction = components["schemas"]["InvestigationAction"];
11016
11304
  export type SchemaInvestigationSummary = components["schemas"]["InvestigationSummary"];
11017
11305
  export type SchemaInvestigationTranscript = components["schemas"]["InvestigationTranscript"];
11306
+ export type SchemaInvestigationsList = components["schemas"]["InvestigationsList"];
11018
11307
  export type SchemaInvitationsList = components["schemas"]["InvitationsList"];
11019
11308
  export type SchemaInvitee = components["schemas"]["Invitee"];
11309
+ export type SchemaItemsCollectionInvestigationSummary = components["schemas"]["ItemsCollectionInvestigationSummary"];
11020
11310
  export type SchemaItemsCollectionLogEvent = components["schemas"]["ItemsCollectionLogEvent"];
11021
11311
  export type SchemaItemsCollectionReadAnthropic = components["schemas"]["ItemsCollectionReadAnthropic"];
11022
11312
  export type SchemaItemsCollectionReadDataWarehouse = components["schemas"]["ItemsCollectionReadDataWarehouse"];
@@ -11072,6 +11362,7 @@ export type SchemaLogsSynchronousSink = components["schemas"]["LogsSynchronousSi
11072
11362
  export type SchemaLogsValuesSource = components["schemas"]["LogsValuesSource"];
11073
11363
  export type SchemaManifest = components["schemas"]["Manifest"];
11074
11364
  export type SchemaMaskEntry = components["schemas"]["MaskEntry"];
11365
+ export type SchemaMaskingOperator = components["schemas"]["MaskingOperator"];
11075
11366
  export type SchemaMaskingRuleConfig = components["schemas"]["MaskingRuleConfig"];
11076
11367
  export type SchemaMatrixData = components["schemas"]["MatrixData"];
11077
11368
  export type SchemaMatrixResult = components["schemas"]["MatrixResult"];
@@ -11123,6 +11414,7 @@ export type SchemaParsedQueryTree = components["schemas"]["ParsedQueryTree"];
11123
11414
  export type SchemaPartitionConfig = components["schemas"]["PartitionConfig"];
11124
11415
  export type SchemaPartitionFieldConfig = components["schemas"]["PartitionFieldConfig"];
11125
11416
  export type SchemaPartitionTransform = components["schemas"]["PartitionTransform"];
11417
+ export type SchemaPassthroughNode = components["schemas"]["PassthroughNode"];
11126
11418
  export type SchemaPatternLookupIcebergTableSink = components["schemas"]["PatternLookupIcebergTableSink"];
11127
11419
  export type SchemaPatternMatcher = components["schemas"]["PatternMatcher"];
11128
11420
  export type SchemaPatternRuleConfig = components["schemas"]["PatternRuleConfig"];
@@ -11171,6 +11463,7 @@ export type SchemaRemoveKeyAttributeAction = components["schemas"]["RemoveKeyAtt
11171
11463
  export type SchemaResetImpactEstimationResponse = components["schemas"]["ResetImpactEstimationResponse"];
11172
11464
  export type SchemaResource = components["schemas"]["Resource"];
11173
11465
  export type SchemaResourceFilter = components["schemas"]["ResourceFilter"];
11466
+ export type SchemaResumeInvestigationRequest = components["schemas"]["ResumeInvestigationRequest"];
11174
11467
  export type SchemaRole = components["schemas"]["Role"];
11175
11468
  export type SchemaRoleIds = components["schemas"]["RoleIds"];
11176
11469
  export type SchemaRoleUpdate = components["schemas"]["RoleUpdate"];
@@ -11194,6 +11487,7 @@ export type SchemaSpanDedupIcebergTableSink = components["schemas"]["SpanDedupIc
11194
11487
  export type SchemaSpanEvent = components["schemas"]["SpanEvent"];
11195
11488
  export type SchemaSpanHeadSamplingRule = components["schemas"]["SpanHeadSamplingRule"];
11196
11489
  export type SchemaSpanLink = components["schemas"]["SpanLink"];
11490
+ export type SchemaSpanTagger = components["schemas"]["SpanTagger"];
11197
11491
  export type SchemaSpansBackfillIcebergTableSource = components["schemas"]["SpansBackfillIcebergTableSource"];
11198
11492
  export type SchemaSpansSynchronousSink = components["schemas"]["SpansSynchronousSink"];
11199
11493
  export type SchemaSplunk = components["schemas"]["Splunk"];
@@ -11202,6 +11496,7 @@ export type SchemaSplunkLogHttpSource = components["schemas"]["SplunkLogHttpSour
11202
11496
  export type SchemaSplunkLogSink = components["schemas"]["SplunkLogSink"];
11203
11497
  export type SchemaSqlExecutable = components["schemas"]["SqlExecutable"];
11204
11498
  export type SchemaSqlIoStatement = components["schemas"]["SqlIoStatement"];
11499
+ export type SchemaSqlNode = components["schemas"]["SqlNode"];
11205
11500
  export type SchemaSqlOperation = components["schemas"]["SqlOperation"];
11206
11501
  export type SchemaSqlOperations = components["schemas"]["SqlOperations"];
11207
11502
  export type SchemaSqlOutputStatement = components["schemas"]["SqlOutputStatement"];
@@ -11244,6 +11539,7 @@ export type SchemaTemplateQueryActionRuleException = components["schemas"]["Temp
11244
11539
  export type SchemaTemplateQueryException = components["schemas"]["TemplateQueryException"];
11245
11540
  export type SchemaTemplateSqlOperation = components["schemas"]["TemplateSqlOperation"];
11246
11541
  export type SchemaTemplateTraceSamplerException = components["schemas"]["TemplateTraceSamplerException"];
11542
+ export type SchemaTemplateTraceSink = components["schemas"]["TemplateTraceSink"];
11247
11543
  export type SchemaTimeGranularity = components["schemas"]["TimeGranularity"];
11248
11544
  export type SchemaTimePartitionTransform = components["schemas"]["TimePartitionTransform"];
11249
11545
  export type SchemaTimeSeriesRuleConfig = components["schemas"]["TimeSeriesRuleConfig"];
@@ -11253,11 +11549,15 @@ export type SchemaTraceAction = components["schemas"]["TraceAction"];
11253
11549
  export type SchemaTraceHeadSamplingRule = components["schemas"]["TraceHeadSamplingRule"];
11254
11550
  export type SchemaTraceIdLogsBackfillAction = components["schemas"]["TraceIdLogsBackfillAction"];
11255
11551
  export type SchemaTraceReducer = components["schemas"]["TraceReducer"];
11552
+ export type SchemaTraceReducerTemplateInput = components["schemas"]["TraceReducerTemplateInput"];
11256
11553
  export type SchemaTraceSampler = components["schemas"]["TraceSampler"];
11554
+ export type SchemaTraceSqlOperations = components["schemas"]["TraceSqlOperations"];
11257
11555
  export type SchemaTracesIcebergTableSource = components["schemas"]["TracesIcebergTableSource"];
11258
11556
  export type SchemaTranscriptMessage = components["schemas"]["TranscriptMessage"];
11259
11557
  export type SchemaTranscriptToolCall = components["schemas"]["TranscriptToolCall"];
11260
11558
  export type SchemaTranscriptTurn = components["schemas"]["TranscriptTurn"];
11559
+ export type SchemaTranscriptTurnsList = components["schemas"]["TranscriptTurnsList"];
11560
+ export type SchemaTransforms = components["schemas"]["Transforms"];
11261
11561
  export type SchemaTrigger = components["schemas"]["Trigger"];
11262
11562
  export type SchemaTriggerActionConfig = components["schemas"]["TriggerActionConfig"];
11263
11563
  export type SchemaTriggerActionOp = components["schemas"]["TriggerActionOp"];
@@ -11278,6 +11578,7 @@ export type SchemaVariantSynchronousSink = components["schemas"]["VariantSynchro
11278
11578
  export type SchemaVectorData = components["schemas"]["VectorData"];
11279
11579
  export type SchemaVectorResult = components["schemas"]["VectorResult"];
11280
11580
  export type SchemaVendorImportedException = components["schemas"]["VendorImportedException"];
11581
+ export type SchemaVendorLogEventDedupIcebergTableSink = components["schemas"]["VendorLogEventDedupIcebergTableSink"];
11281
11582
  export type SchemaWindowBasedLogarithmicSampling = components["schemas"]["WindowBasedLogarithmicSampling"];
11282
11583
  export type SchemaWriteAnthropic = components["schemas"]["WriteAnthropic"];
11283
11584
  export type SchemaWriteDataWarehouse = components["schemas"]["WriteDataWarehouse"];
@@ -11549,7 +11850,10 @@ export interface operations {
11549
11850
  };
11550
11851
  investigations: {
11551
11852
  parameters: {
11552
- query?: never;
11853
+ query?: {
11854
+ page?: number;
11855
+ pageSize?: number;
11856
+ };
11553
11857
  header?: never;
11554
11858
  path: {
11555
11859
  id: string;
@@ -11564,7 +11868,7 @@ export interface operations {
11564
11868
  [name: string]: unknown;
11565
11869
  };
11566
11870
  content: {
11567
- "application/json": components["schemas"]["InvestigationSummary"][];
11871
+ "application/json": components["schemas"]["InvestigationsList"];
11568
11872
  };
11569
11873
  };
11570
11874
  /** @description Unauthorized */
@@ -15982,6 +16286,133 @@ export interface operations {
15982
16286
  };
15983
16287
  };
15984
16288
  };
16289
+ cancel: {
16290
+ parameters: {
16291
+ query?: never;
16292
+ header?: never;
16293
+ path: {
16294
+ investigationId: string;
16295
+ };
16296
+ cookie?: never;
16297
+ };
16298
+ requestBody?: never;
16299
+ responses: {
16300
+ /** @description Cancel requested */
16301
+ 202: {
16302
+ headers: {
16303
+ [name: string]: unknown;
16304
+ };
16305
+ content?: never;
16306
+ };
16307
+ /** @description Unauthorized */
16308
+ 401: {
16309
+ headers: {
16310
+ [name: string]: unknown;
16311
+ };
16312
+ content?: never;
16313
+ };
16314
+ /** @description Investigation not found */
16315
+ 404: {
16316
+ headers: {
16317
+ [name: string]: unknown;
16318
+ };
16319
+ content?: never;
16320
+ };
16321
+ /** @description Investigation is already finished */
16322
+ 409: {
16323
+ headers: {
16324
+ [name: string]: unknown;
16325
+ };
16326
+ content?: never;
16327
+ };
16328
+ };
16329
+ };
16330
+ resume: {
16331
+ parameters: {
16332
+ query?: never;
16333
+ header?: never;
16334
+ path: {
16335
+ investigationId: string;
16336
+ };
16337
+ cookie?: never;
16338
+ };
16339
+ requestBody?: {
16340
+ content: {
16341
+ "application/json": components["schemas"]["ResumeInvestigationRequest"];
16342
+ };
16343
+ };
16344
+ responses: {
16345
+ /** @description Resume requested */
16346
+ 202: {
16347
+ headers: {
16348
+ [name: string]: unknown;
16349
+ };
16350
+ content?: never;
16351
+ };
16352
+ /** @description Unauthorized */
16353
+ 401: {
16354
+ headers: {
16355
+ [name: string]: unknown;
16356
+ };
16357
+ content?: never;
16358
+ };
16359
+ /** @description Investigation not found */
16360
+ 404: {
16361
+ headers: {
16362
+ [name: string]: unknown;
16363
+ };
16364
+ content?: never;
16365
+ };
16366
+ /** @description Investigation is not resumable */
16367
+ 409: {
16368
+ headers: {
16369
+ [name: string]: unknown;
16370
+ };
16371
+ content?: never;
16372
+ };
16373
+ };
16374
+ };
16375
+ stop: {
16376
+ parameters: {
16377
+ query?: never;
16378
+ header?: never;
16379
+ path: {
16380
+ investigationId: string;
16381
+ };
16382
+ cookie?: never;
16383
+ };
16384
+ requestBody?: never;
16385
+ responses: {
16386
+ /** @description Stop requested */
16387
+ 202: {
16388
+ headers: {
16389
+ [name: string]: unknown;
16390
+ };
16391
+ content?: never;
16392
+ };
16393
+ /** @description Unauthorized */
16394
+ 401: {
16395
+ headers: {
16396
+ [name: string]: unknown;
16397
+ };
16398
+ content?: never;
16399
+ };
16400
+ /** @description Investigation not found */
16401
+ 404: {
16402
+ headers: {
16403
+ [name: string]: unknown;
16404
+ };
16405
+ content?: never;
16406
+ };
16407
+ /** @description Investigation is not running */
16408
+ 409: {
16409
+ headers: {
16410
+ [name: string]: unknown;
16411
+ };
16412
+ content?: never;
16413
+ };
16414
+ };
16415
+ };
15985
16416
  transcript: {
15986
16417
  parameters: {
15987
16418
  query?: never;
@@ -16018,6 +16449,45 @@ export interface operations {
16018
16449
  };
16019
16450
  };
16020
16451
  };
16452
+ turns: {
16453
+ parameters: {
16454
+ query?: {
16455
+ afterSeq?: number;
16456
+ pageSize?: number;
16457
+ };
16458
+ header?: never;
16459
+ path: {
16460
+ investigationId: string;
16461
+ };
16462
+ cookie?: never;
16463
+ };
16464
+ requestBody?: never;
16465
+ responses: {
16466
+ /** @description Turns retrieved successfully */
16467
+ 200: {
16468
+ headers: {
16469
+ [name: string]: unknown;
16470
+ };
16471
+ content: {
16472
+ "application/json": components["schemas"]["TranscriptTurnsList"];
16473
+ };
16474
+ };
16475
+ /** @description Unauthorized */
16476
+ 401: {
16477
+ headers: {
16478
+ [name: string]: unknown;
16479
+ };
16480
+ content?: never;
16481
+ };
16482
+ /** @description Investigation not found */
16483
+ 404: {
16484
+ headers: {
16485
+ [name: string]: unknown;
16486
+ };
16487
+ content?: never;
16488
+ };
16489
+ };
16490
+ };
16021
16491
  listInvitations: {
16022
16492
  parameters: {
16023
16493
  query?: {
@@ -18761,6 +19231,9 @@ export declare enum CompleteSpanType {
18761
19231
  export declare enum CompositeAttributesMergeStrategyType {
18762
19232
  composite = "composite"
18763
19233
  }
19234
+ export declare enum ConditionNodeKind {
19235
+ condition_node = "condition-node"
19236
+ }
18764
19237
  export declare enum ConstantSamplingType {
18765
19238
  constant_sampling = "constant-sampling"
18766
19239
  }
@@ -18808,6 +19281,9 @@ export declare enum DoubleDatapointMetricType {
18808
19281
  export declare enum DoubleDatapointType {
18809
19282
  double_datapoint = "double-datapoint"
18810
19283
  }
19284
+ export declare enum DropNodeKind {
19285
+ drop_node = "drop-node"
19286
+ }
18811
19287
  export declare enum EntityContextAggregationType {
18812
19288
  entity_context_aggregation = "entity-context-aggregation"
18813
19289
  }
@@ -18878,8 +19354,10 @@ export declare enum IgnoreAttributesMergeStrategyType {
18878
19354
  }
18879
19355
  export declare enum InvestigationSummaryStatus {
18880
19356
  RUNNING = "RUNNING",
19357
+ STOPPED = "STOPPED",
18881
19358
  COMPLETED = "COMPLETED",
18882
- FAILED = "FAILED"
19359
+ FAILED = "FAILED",
19360
+ CANCELLED = "CANCELLED"
18883
19361
  }
18884
19362
  export declare enum JobActionRuleType {
18885
19363
  job_rule = "job-rule"
@@ -18945,6 +19423,9 @@ export declare enum LogsSynchronousSinkType {
18945
19423
  export declare enum LogsValuesSourceType {
18946
19424
  logs_values_source = "logs-values-source"
18947
19425
  }
19426
+ export declare enum MaskingOperatorType {
19427
+ masking_operator = "masking-operator"
19428
+ }
18948
19429
  export declare enum MaskingRuleConfigType {
18949
19430
  masking = "masking"
18950
19431
  }
@@ -19043,6 +19524,9 @@ export declare enum OtlpTraceAgentSourceType {
19043
19524
  export declare enum OtlpTraceSinkType {
19044
19525
  otlp_trace_sink = "otlp-trace-sink"
19045
19526
  }
19527
+ export declare enum PassthroughNodeKind {
19528
+ passthrough_node = "passthrough-node"
19529
+ }
19046
19530
  export declare enum PatternLookupIcebergTableSinkType {
19047
19531
  pattern_lookup_iceberg_table_sink = "pattern-lookup-iceberg-table-sink"
19048
19532
  }
@@ -19179,6 +19663,9 @@ export declare enum SpanSpanKind {
19179
19663
  export declare enum SpanDedupIcebergTableSinkType {
19180
19664
  spans_dedup_iceberg_table_sink = "spans-dedup-iceberg-table-sink"
19181
19665
  }
19666
+ export declare enum SpanTaggerType {
19667
+ span_tagger = "span-tagger"
19668
+ }
19182
19669
  export declare enum SpansBackfillIcebergTableSourceType {
19183
19670
  spans_backfill_iceberg_table_source = "spans-backfill-iceberg-table-source"
19184
19671
  }
@@ -19197,6 +19684,16 @@ export declare enum SplunkLogSinkType {
19197
19684
  export declare enum SqlIoStatementType {
19198
19685
  sql_io = "sql_io"
19199
19686
  }
19687
+ export declare enum SqlNodeOutputRouting {
19688
+ json_log_processor = "json-log-processor",
19689
+ grok_parser = "grok-parser",
19690
+ data_warehouse = "data-warehouse",
19691
+ log_reducer = "log-reducer",
19692
+ sinks = "sinks"
19693
+ }
19694
+ export declare enum SqlNodeKind {
19695
+ sql_node = "sql-node"
19696
+ }
19200
19697
  export declare enum SqlOperationInputs {
19201
19698
  VARIANT = "VARIANT",
19202
19699
  LOG_EVENT = "LOG_EVENT",
@@ -19313,6 +19810,7 @@ export declare enum TracesIcebergTableSourceType {
19313
19810
  }
19314
19811
  export declare enum TranscriptMessageRole {
19315
19812
  SYSTEM = "SYSTEM",
19813
+ TRIGGER_SIGNAL = "TRIGGER_SIGNAL",
19316
19814
  USER = "USER",
19317
19815
  ASSISTANT = "ASSISTANT",
19318
19816
  TOOL_RESULT = "TOOL_RESULT"
@@ -19349,6 +19847,9 @@ export declare enum VendorImportedExceptionExceptionType {
19349
19847
  NEW_RELIC_MONITOR = "NEW_RELIC_MONITOR",
19350
19848
  NEW_RELIC_DASHBOARD = "NEW_RELIC_DASHBOARD"
19351
19849
  }
19850
+ export declare enum VendorLogEventDedupIcebergTableSinkType {
19851
+ vendorlog_event_dedup_iceberg_table_sink = "vendorlog-event-dedup-iceberg-table-sink"
19852
+ }
19352
19853
  export declare enum WindowBasedLogarithmicSamplingType {
19353
19854
  window_based_logarithmic_sampling = "window-based-logarithmic-sampling"
19354
19855
  }