@grepr/cli 1.6.25-e196a9e → 1.6.26-43eab56

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.
@@ -8172,7 +8172,7 @@ export interface components {
8172
8172
  materialized?: boolean;
8173
8173
  /**
8174
8174
  * @description The SQL query to execute. Can reference tables created by previous statements by their tableName, as well as the 'traces' input table and available datasets.
8175
- * @example SELECT * FROM traces WHERE durationNanos > 1000000
8175
+ * @example SELECT * FROM traces WHERE duration > 1000000
8176
8176
  */
8177
8177
  sqlQuery: string;
8178
8178
  /**
@@ -8192,7 +8192,7 @@ export interface components {
8192
8192
  * @example PT20.345S
8193
8193
  */
8194
8194
  globalStateTtl?: string;
8195
- /** @description Input table names that can be referenced in SQL statements. Each input table corresponds to an input stream that is connected to this operation in the job graph. All connected input types must be compatible with the SQL operations. Each type specifies what the schema of the resulting table that is available for the SQL statements looks like. */
8195
+ /** @description Input table names that can be referenced in SQL statements. Each input table corresponds to an input stream that is connected to this operation in the job graph. All connected input types must be compatible with the SQL operations. Each type specifies what the schema of the resulting table that is available for the SQL statements looks like. For `COMPLETE_SPAN`, the table schema uses SQL row field names, which differ from the REST JSON property names in the `CompleteSpan` schema. */
8196
8196
  inputs?: {
8197
8197
  [key: string]: SqlOperationInputs;
8198
8198
  };
@@ -8229,14 +8229,14 @@ export interface components {
8229
8229
  */
8230
8230
  outputName: string;
8231
8231
  /**
8232
- * @description Data types that are acceptable as inputs and outputs to SQL operations.
8232
+ * @description Data types that are acceptable as inputs and outputs to SQL operations. See [SQL transform supported data types](/transforms/sql-transform/data-types) for the SQL row schemas. The `COMPLETE_SPAN` SQL row schema uses SQL field names that differ from the REST JSON property names documented in [CompleteSpan](/apis/api-spec#schema/CompleteSpan).
8233
8233
  * @example VARIANT
8234
8234
  * @enum {string}
8235
8235
  */
8236
8236
  outputType: SqlOperationInputs;
8237
8237
  /**
8238
8238
  * @description The SQL query to execute. Can reference tables created by previous statements by their tableName, as well as the 'traces' input table and available datasets.
8239
- * @example SELECT * FROM traces WHERE durationNanos > 1000000
8239
+ * @example SELECT * FROM traces WHERE duration > 1000000
8240
8240
  */
8241
8241
  sqlQuery: string;
8242
8242
  /**
@@ -8262,7 +8262,7 @@ export interface components {
8262
8262
  materialized?: boolean;
8263
8263
  /**
8264
8264
  * @description The SQL query to execute. Can reference tables created by previous statements by their tableName, as well as the 'traces' input table and available datasets.
8265
- * @example SELECT * FROM traces WHERE durationNanos > 1000000
8265
+ * @example SELECT * FROM traces WHERE duration > 1000000
8266
8266
  */
8267
8267
  sqlQuery: string;
8268
8268
  /**