@narrative.io/data-collaboration-sdk-ts 2.2.0 → 2.4.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.
@@ -31,6 +31,7 @@ export declare const resources: {
31
31
  readonly subscriptions: "Subscriptions";
32
32
  readonly uploads: "Uploads";
33
33
  readonly usage: "Usage";
34
+ readonly data_plane_logs: "Data Plane Logs";
34
35
  };
35
36
  export type Resource = keyof typeof resources;
36
37
  export interface Permission {
@@ -30,4 +30,5 @@ export const resources = {
30
30
  subscriptions: "Subscriptions",
31
31
  uploads: "Uploads",
32
32
  usage: "Usage",
33
+ data_plane_logs: "Data Plane Logs",
33
34
  };
@@ -195,7 +195,7 @@ export interface Concat {
195
195
  as?: string;
196
196
  operands: Expression[];
197
197
  }
198
- export type Node = Select | Expression | Deduplication | Table | BooleanExpression | ArithmeticExpression | StringExpression | Join | AttributeRef | DatasetColumnRef | RawRef | Lit | FunctionCall | Add | Divide | Multiply | Subtract | UnaryMinus | And | Or | Not | Between | Equals | NotEquals | Lt | Lte | Gt | Gte | In | IsNull | Like | Concat | Raw;
198
+ export type Node = Select | Expression | Deduplication | Table | BooleanExpression | ArithmeticExpression | StringExpression | Join | AttributeRef | DatasetColumnRef | RawRef | Lit | FunctionCall | Add | Divide | Multiply | Subtract | UnaryMinus | And | Or | Not | Between | Equals | NotEquals | Lt | Lte | Gt | Gte | In | IsNull | Like | Concat | Raw | ast.NqlBinaryOp;
199
199
  export declare function parseStatement(n: ast.NqlAst): Statement | Raw;
200
200
  export declare function parseCreateMaterializedView(n: ast.NqlCreateMaterializedView): CreateMaterializedView;
201
201
  export declare function parseExplain(n: ast.NqlExplain): Explain | Raw;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@narrative.io/data-collaboration-sdk-ts",
3
- "version": "2.2.0",
3
+ "version": "2.4.0",
4
4
  "main": "build/index.js",
5
5
  "repository": "github:narrative-io/data-collaboration-sdk-ts",
6
6
  "source": "src/index.ts",
@@ -29,12 +29,12 @@
29
29
  "@types/jest": "29.5.12",
30
30
  "babel-jest": "29.7.0",
31
31
  "jest": "29.7.0",
32
- "lefthook": "1.6.10",
32
+ "lefthook": "1.6.11",
33
33
  "ts-jest": "29.1.2"
34
34
  },
35
35
  "dependencies": {
36
- "mande": "2.0.8",
37
- "zod": "3.23.6"
36
+ "mande": "2.0.9",
37
+ "zod": "3.23.8"
38
38
  },
39
39
  "overrides": {
40
40
  "semver@<7.5.2": "7.5.2"