@sentio/api 1.0.3-rc.10 → 1.0.3-rc.11

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.
@@ -339,6 +339,7 @@ export declare namespace analytic_service {
339
339
  */
340
340
  cursor?: string;
341
341
  cachePolicy?: common.CachePolicy;
342
+ engine?: ExecuteEngine;
342
343
  };
343
344
  type AnalyticServiceExecuteSqlBody = {
344
345
  projectId?: string;
@@ -349,6 +350,7 @@ export declare namespace analytic_service {
349
350
  */
350
351
  cursor?: string;
351
352
  cachePolicy?: common.CachePolicy;
353
+ engine?: ExecuteEngine;
352
354
  };
353
355
  type AnalyticServiceSaveRefreshableMaterializedViewBody = {
354
356
  projectId?: string;
@@ -368,6 +370,7 @@ export declare namespace analytic_service {
368
370
  queueLength?: number;
369
371
  computeStats?: common.ComputeStats;
370
372
  };
373
+ type ExecuteEngine = 'DEFAULT' | 'LITE' | 'PRO' | 'MAX' | 'ULTRA';
371
374
  type ExecutionInfo = {
372
375
  queryId?: string;
373
376
  executionId?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sentio/api",
3
- "version": "1.0.3-rc.10",
3
+ "version": "1.0.3-rc.11",
4
4
  "license": "Apache-2.0",
5
5
  "repository": {
6
6
  "type": "git",
package/src/types.gen.ts CHANGED
@@ -343,6 +343,7 @@ export namespace analytic_service {
343
343
  */
344
344
  cursor?: string;
345
345
  cachePolicy?: common.CachePolicy;
346
+ engine?: ExecuteEngine;
346
347
  };
347
348
  export type AnalyticServiceExecuteSqlBody = {
348
349
  projectId?: string;
@@ -353,6 +354,7 @@ export namespace analytic_service {
353
354
  */
354
355
  cursor?: string;
355
356
  cachePolicy?: common.CachePolicy;
357
+ engine?: ExecuteEngine;
356
358
  };
357
359
  export type AnalyticServiceSaveRefreshableMaterializedViewBody = {
358
360
  projectId?: string;
@@ -372,6 +374,7 @@ export namespace analytic_service {
372
374
  queueLength?: number;
373
375
  computeStats?: common.ComputeStats;
374
376
  };
377
+ export type ExecuteEngine = 'DEFAULT' | 'LITE' | 'PRO' | 'MAX' | 'ULTRA';
375
378
  export type ExecutionInfo = {
376
379
  queryId?: string;
377
380
  executionId?: string;