@grepr/cli 1.6.14-44993a9 → 1.6.16-5c2588b

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.
@@ -7796,17 +7796,17 @@ export interface components {
7796
7796
  */
7797
7797
  operationName?: string;
7798
7798
  /**
7799
- * Format: int64
7800
- * @description 8-byte parent span identifier as long. Returns 0 for root spans.
7799
+ * @description 64-bit parent span identifier as a 16-character hex string; null for root spans.
7800
+ * @example 1a2b3c4d5e6f7081
7801
7801
  */
7802
- parentSpanId?: number;
7802
+ parentSpanId?: string;
7803
7803
  /** @description True if this is a root span (no parent). */
7804
7804
  root?: boolean;
7805
7805
  /**
7806
- * Format: int64
7807
- * @description 8-byte span identifier as long.
7806
+ * @description 64-bit span identifier as a 16-character hex string.
7807
+ * @example 7f7e8d9a0b1c2d3e
7808
7808
  */
7809
- spanId?: number;
7809
+ spanId?: string;
7810
7810
  /**
7811
7811
  * @description The type of span
7812
7812
  * @example SERVER
@@ -7820,15 +7820,10 @@ export interface components {
7820
7820
  startTimeNanos?: number;
7821
7821
  status?: components["schemas"]["Status"];
7822
7822
  /**
7823
- * Format: int64
7824
- * @description High 8 bytes of 16-byte trace identifier.
7823
+ * @description 128-bit trace identifier as a 32-character hex string.
7824
+ * @example 6a33267c000000001001119764423b8d
7825
7825
  */
7826
- traceIdHigh?: number;
7827
- /**
7828
- * Format: int64
7829
- * @description Low 8 bytes of 16-byte trace identifier.
7830
- */
7831
- traceIdLow?: number;
7826
+ traceId?: string;
7832
7827
  /**
7833
7828
  * @description Trace state information in W3C format.
7834
7829
  * @example rojo=00f067aa0ba902b7,congo=t61rcWkgMzE
@@ -7893,20 +7888,15 @@ export interface components {
7893
7888
  */
7894
7889
  flags?: number;
7895
7890
  /**
7896
- * Format: int64
7897
- * @description 8-byte span identifier of the linked span as long.
7898
- */
7899
- spanId?: number;
7900
- /**
7901
- * Format: int64
7902
- * @description High 8 bytes of 16-byte trace identifier of the linked span.
7891
+ * @description 64-bit span identifier of the linked span as a 16-character hex string.
7892
+ * @example 7f7e8d9a0b1c2d3e
7903
7893
  */
7904
- traceIdHigh?: number;
7894
+ spanId?: string;
7905
7895
  /**
7906
- * Format: int64
7907
- * @description Low 8 bytes of 16-byte trace identifier of the linked span.
7896
+ * @description 128-bit trace identifier of the linked span as a 32-character hex string.
7897
+ * @example 6a33267c000000001001119764423b8d
7908
7898
  */
7909
- traceIdLow?: number;
7899
+ traceId?: string;
7910
7900
  /**
7911
7901
  * @description Optional trace state information.
7912
7902
  * @example rojo=00f067aa0ba902b7,congo=t61rcWkgMzE
@@ -7922,12 +7912,34 @@ export interface components {
7922
7912
  * @example 2023-01-01T01:00:00Z
7923
7913
  */
7924
7914
  end: string;
7915
+ /**
7916
+ * @description Filter by error status
7917
+ * @example true
7918
+ */
7919
+ hasError?: boolean;
7920
+ /**
7921
+ * @description Filter by parent span ID (null for root spans only)
7922
+ * @example true
7923
+ */
7924
+ isRootSpan?: boolean;
7925
7925
  /**
7926
7926
  * Format: int32
7927
7927
  * @description The maximum number of rows to process
7928
7928
  * @default 2500
7929
7929
  */
7930
7930
  limit?: number;
7931
+ /**
7932
+ * Format: int64
7933
+ * @description Filter by maximum duration in nanoseconds
7934
+ * @example 5000000000
7935
+ */
7936
+ maxDuration?: number;
7937
+ /**
7938
+ * Format: int64
7939
+ * @description Filter by minimum duration in nanoseconds
7940
+ * @example 1000000000
7941
+ */
7942
+ minDuration?: number;
7931
7943
  /** @example operation_name */
7932
7944
  name: string;
7933
7945
  /**
@@ -7936,7 +7948,23 @@ export interface components {
7936
7948
  * @default 0
7937
7949
  */
7938
7950
  offset?: number;
7951
+ /**
7952
+ * @description Filter by operation names (exact match)
7953
+ * @example [
7954
+ * "process-payment",
7955
+ * "validate-user"
7956
+ * ]
7957
+ */
7958
+ operationNames?: string[];
7939
7959
  query: components["schemas"]["query"];
7960
+ /**
7961
+ * @description Filter by service names (exact match)
7962
+ * @example [
7963
+ * "checkout-service",
7964
+ * "user-service"
7965
+ * ]
7966
+ */
7967
+ serviceNames?: string[];
7940
7968
  /**
7941
7969
  * @description The order in which the rows should be sorted by
7942
7970
  * @enum {string}
@@ -7948,6 +7976,21 @@ export interface components {
7948
7976
  * @example 2023-01-01T00:00:00Z
7949
7977
  */
7950
7978
  start: string;
7979
+ /**
7980
+ * @description Filter by trace IDs (32-character hex format)
7981
+ * @example [
7982
+ * "6a33267c000000001001119764423b8d"
7983
+ * ]
7984
+ */
7985
+ traceIds?: string[];
7986
+ /**
7987
+ * @description Filter by trace signatures (supports wildcards with *)
7988
+ * @example [
7989
+ * "user-login-*",
7990
+ * "checkout-*"
7991
+ * ]
7992
+ */
7993
+ traceSignatures?: string[];
7951
7994
  /**
7952
7995
  * @description Reads spans from an Iceberg table for backfill, skipping spans already sent to the given vendor sinks (idempotent backfill source). (enum property replaced by openapi-typescript)
7953
7996
  * @enum {string}
@@ -9116,12 +9159,34 @@ export interface components {
9116
9159
  * @example 2023-01-01T01:00:00Z
9117
9160
  */
9118
9161
  end: string;
9162
+ /**
9163
+ * @description Filter by error status
9164
+ * @example true
9165
+ */
9166
+ hasError?: boolean;
9167
+ /**
9168
+ * @description Filter by parent span ID (null for root spans only)
9169
+ * @example true
9170
+ */
9171
+ isRootSpan?: boolean;
9119
9172
  /**
9120
9173
  * Format: int32
9121
9174
  * @description The maximum number of rows to process
9122
9175
  * @default 2500
9123
9176
  */
9124
9177
  limit?: number;
9178
+ /**
9179
+ * Format: int64
9180
+ * @description Filter by maximum duration in nanoseconds
9181
+ * @example 5000000000
9182
+ */
9183
+ maxDuration?: number;
9184
+ /**
9185
+ * Format: int64
9186
+ * @description Filter by minimum duration in nanoseconds
9187
+ * @example 1000000000
9188
+ */
9189
+ minDuration?: number;
9125
9190
  /** @example operation_name */
9126
9191
  name: string;
9127
9192
  /**
@@ -9130,7 +9195,23 @@ export interface components {
9130
9195
  * @default 0
9131
9196
  */
9132
9197
  offset?: number;
9198
+ /**
9199
+ * @description Filter by operation names (exact match)
9200
+ * @example [
9201
+ * "process-payment",
9202
+ * "validate-user"
9203
+ * ]
9204
+ */
9205
+ operationNames?: string[];
9133
9206
  query: components["schemas"]["query"];
9207
+ /**
9208
+ * @description Filter by service names (exact match)
9209
+ * @example [
9210
+ * "checkout-service",
9211
+ * "user-service"
9212
+ * ]
9213
+ */
9214
+ serviceNames?: string[];
9134
9215
  /**
9135
9216
  * @description The order in which the rows should be sorted by
9136
9217
  * @enum {string}
@@ -9142,6 +9223,21 @@ export interface components {
9142
9223
  * @example 2023-01-01T00:00:00Z
9143
9224
  */
9144
9225
  start: string;
9226
+ /**
9227
+ * @description Filter by trace IDs (32-character hex format)
9228
+ * @example [
9229
+ * "6a33267c000000001001119764423b8d"
9230
+ * ]
9231
+ */
9232
+ traceIds?: string[];
9233
+ /**
9234
+ * @description Filter by trace signatures (supports wildcards with *)
9235
+ * @example [
9236
+ * "user-login-*",
9237
+ * "checkout-*"
9238
+ * ]
9239
+ */
9240
+ traceSignatures?: string[];
9145
9241
  /**
9146
9242
  * @description Reads traces out of an Iceberg Table for processing. (enum property replaced by openapi-typescript)
9147
9243
  * @enum {string}
@@ -17446,7 +17542,7 @@ export declare enum ReadFeatureFlags {
17446
17542
  S3_LOGS_FILE_SOURCE = "S3_LOGS_FILE_SOURCE",
17447
17543
  PIPELINE_TEMPLATES = "PIPELINE_TEMPLATES",
17448
17544
  AI_WORKFLOWS = "AI_WORKFLOWS",
17449
- ICEBERG_LOG_SOURCE = "ICEBERG_LOG_SOURCE",
17545
+ SEARCH_ICEBERG_SOURCE = "SEARCH_ICEBERG_SOURCE",
17450
17546
  QUERY_JOBS = "QUERY_JOBS",
17451
17547
  AUTH0_SSO_CONNECTION = "AUTH0_SSO_CONNECTION",
17452
17548
  DATASET_TABLE_CONFIG = "DATASET_TABLE_CONFIG",