@narrative.io/data-collaboration-sdk-ts 2.95.2 → 2.97.0

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.
@@ -9,6 +9,7 @@ export declare const resources: {
9
9
  readonly charges: "Charges";
10
10
  readonly commands_subscriptions_delivery: "Commands Subscriptions Delivery";
11
11
  readonly company_info: "Company Info";
12
+ readonly compute_pools: "Compute Pools";
12
13
  readonly connections: "Connections";
13
14
  readonly contracts: "Contracts";
14
15
  readonly data_planes: "Data Planes";
@@ -8,6 +8,7 @@ export const resources = {
8
8
  charges: "Charges",
9
9
  commands_subscriptions_delivery: "Commands Subscriptions Delivery",
10
10
  company_info: "Company Info",
11
+ compute_pools: "Compute Pools",
11
12
  connections: "Connections",
12
13
  contracts: "Contracts",
13
14
  data_planes: "Data Planes",
@@ -40,6 +40,7 @@ export declare const NqlQueryInputObj: z.ZodObject<{
40
40
  dedicated: "dedicated";
41
41
  }>;
42
42
  }, z.core.$strip>>;
43
+ compute_pool_id: z.ZodOptional<z.ZodString>;
43
44
  create_as_view: z.ZodOptional<z.ZodBoolean>;
44
45
  }, z.core.$strip>;
45
46
  /**
@@ -45,6 +45,10 @@ export const NqlQueryInputObj = z.object({
45
45
  })
46
46
  .optional()
47
47
  .describe("Execution cluster configuration"),
48
+ compute_pool_id: z
49
+ .string()
50
+ .optional()
51
+ .describe("Identifier of the compute pool to run the query on. Interaction with `execution_cluster` is determined by the backend."),
48
52
  create_as_view: z
49
53
  .boolean()
50
54
  .optional()
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@narrative.io/data-collaboration-sdk-ts",
3
- "version": "2.95.2",
3
+ "version": "2.97.0",
4
4
  "main": "build/index.js",
5
5
  "repository": "github:narrative-io/data-collaboration-sdk-ts",
6
6
  "source": "src/index.ts",