@lightdash/query-sdk 1.18.1 → 1.20.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.
@@ -1 +1 @@
1
- export declare const SDK_VERSION = "1.18.1";
1
+ export declare const SDK_VERSION = "1.20.0";
@@ -1,2 +1,2 @@
1
1
  // Generated by scripts/generateSdkVersion.mjs (prebuild) — do not edit.
2
- export const SDK_VERSION = '1.18.1';
2
+ export const SDK_VERSION = '1.20.0';
@@ -93,7 +93,7 @@ declare const NO_PROVIDER: unique symbol;
93
93
  */
94
94
  export declare function VizContextProvider({ children }: {
95
95
  children: ReactNode;
96
- }): import("react").FunctionComponentElement<import("react").ProviderProps<VizContextState | typeof NO_PROVIDER>>;
96
+ }): import("react").FunctionComponentElement<import("react").ProviderProps<typeof NO_PROVIDER | VizContextState>>;
97
97
  /**
98
98
  * Subscribe to the host's render context. Reads from `VizContextProvider` when
99
99
  * one is mounted (the scaffold default); otherwise self-subscribes so the hook
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lightdash/query-sdk",
3
- "version": "1.18.1",
3
+ "version": "1.20.0",
4
4
  "private": false,
5
5
  "type": "module",
6
6
  "description": "SDK for building custom data apps against the Lightdash semantic layer",
@@ -32,17 +32,14 @@
32
32
  "@types/node": "22.13.1",
33
33
  "@types/react": "19.2.2",
34
34
  "jsdom": "26.1.0",
35
- "typescript": "npm:@typescript/typescript6@6.0.1",
36
- "typescript-7": "npm:typescript@7.0.1-rc",
35
+ "typescript": "7.0.2",
37
36
  "vitest": "4.1.6",
38
- "@lightdash/common": "1.18.1"
37
+ "@lightdash/common": "1.20.0"
39
38
  },
40
39
  "scripts": {
41
40
  "prebuild": "node ./scripts/generateSdkVersion.mjs",
42
- "build": "tsc6 --project tsconfig.build.json",
43
- "build:fast": "tsc --project tsconfig.build.fast.json",
44
- "typecheck": "tsc6 --noEmit",
45
- "typecheck:fast": "tsc --project tsconfig.fast.json --noEmit",
41
+ "build": "tsc --project tsconfig.build.json",
42
+ "typecheck": "tsc --noEmit",
46
43
  "lint": "eslint src/",
47
44
  "pretest": "node ./scripts/generateSdkVersion.mjs",
48
45
  "test": "vitest run",