@katerai/sdk 0.8.0 → 0.10.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.
Files changed (68) hide show
  1. package/CHANGELOG.md +29 -0
  2. package/client.js.map +1 -1
  3. package/client.mjs.map +1 -1
  4. package/package.json +1 -1
  5. package/resources/v1/compiler/cache.d.mts +39 -0
  6. package/resources/v1/compiler/cache.d.mts.map +1 -0
  7. package/resources/v1/compiler/cache.d.ts +39 -0
  8. package/resources/v1/compiler/cache.d.ts.map +1 -0
  9. package/resources/v1/compiler/cache.js +18 -0
  10. package/resources/v1/compiler/cache.js.map +1 -0
  11. package/resources/v1/compiler/cache.mjs +14 -0
  12. package/resources/v1/compiler/cache.mjs.map +1 -0
  13. package/resources/v1/compiler/compiler.d.mts +1893 -0
  14. package/resources/v1/compiler/compiler.d.mts.map +1 -0
  15. package/resources/v1/compiler/compiler.d.ts +1893 -0
  16. package/resources/v1/compiler/compiler.d.ts.map +1 -0
  17. package/resources/v1/compiler/compiler.js +119 -0
  18. package/resources/v1/compiler/compiler.js.map +1 -0
  19. package/resources/v1/compiler/compiler.mjs +114 -0
  20. package/resources/v1/compiler/compiler.mjs.map +1 -0
  21. package/resources/v1/compiler/index.d.mts +3 -0
  22. package/resources/v1/compiler/index.d.mts.map +1 -0
  23. package/resources/v1/compiler/index.d.ts +3 -0
  24. package/resources/v1/compiler/index.d.ts.map +1 -0
  25. package/resources/v1/compiler/index.js +9 -0
  26. package/resources/v1/compiler/index.js.map +1 -0
  27. package/resources/v1/compiler/index.mjs +4 -0
  28. package/resources/v1/compiler/index.mjs.map +1 -0
  29. package/resources/v1/compiler.d.mts +1 -1115
  30. package/resources/v1/compiler.d.mts.map +1 -1
  31. package/resources/v1/compiler.d.ts +1 -1115
  32. package/resources/v1/compiler.d.ts.map +1 -1
  33. package/resources/v1/compiler.js +2 -66
  34. package/resources/v1/compiler.js.map +1 -1
  35. package/resources/v1/compiler.mjs +1 -64
  36. package/resources/v1/compiler.mjs.map +1 -1
  37. package/resources/v1/index.d.mts +1 -1
  38. package/resources/v1/index.d.mts.map +1 -1
  39. package/resources/v1/index.d.ts +1 -1
  40. package/resources/v1/index.d.ts.map +1 -1
  41. package/resources/v1/index.js +4 -4
  42. package/resources/v1/index.js.map +1 -1
  43. package/resources/v1/index.mjs +1 -1
  44. package/resources/v1/index.mjs.map +1 -1
  45. package/resources/v1/v1.d.mts +3 -3
  46. package/resources/v1/v1.d.mts.map +1 -1
  47. package/resources/v1/v1.d.ts +3 -3
  48. package/resources/v1/v1.d.ts.map +1 -1
  49. package/resources/v1/v1.js +2 -2
  50. package/resources/v1/v1.js.map +1 -1
  51. package/resources/v1/v1.mjs +2 -2
  52. package/resources/v1/v1.mjs.map +1 -1
  53. package/src/client.ts +1 -1
  54. package/src/resources/v1/compiler/cache.ts +51 -0
  55. package/src/resources/v1/compiler/compiler.ts +2548 -0
  56. package/src/resources/v1/compiler/index.ts +23 -0
  57. package/src/resources/v1/compiler.ts +1 -1482
  58. package/src/resources/v1/index.ts +5 -1
  59. package/src/resources/v1/v1.ts +17 -9
  60. package/src/version.ts +1 -1
  61. package/version.d.mts +1 -1
  62. package/version.d.mts.map +1 -1
  63. package/version.d.ts +1 -1
  64. package/version.d.ts.map +1 -1
  65. package/version.js +1 -1
  66. package/version.js.map +1 -1
  67. package/version.mjs +1 -1
  68. package/version.mjs.map +1 -1
@@ -10,12 +10,16 @@ export {
10
10
  type RefWithLabel,
11
11
  type SubqueryCondition,
12
12
  type CompilerCompileResponse,
13
+ type CompilerEnumerateResponse,
14
+ type CompilerExecuteResponse,
13
15
  type CompilerResolveResponse,
14
16
  type CompilerValidateResponse,
15
17
  type CompilerCompileParams,
18
+ type CompilerEnumerateParams,
19
+ type CompilerExecuteParams,
16
20
  type CompilerResolveParams,
17
21
  type CompilerValidateParams,
18
- } from './compiler';
22
+ } from './compiler/index';
19
23
  export {
20
24
  Connections,
21
25
  type Connection,
@@ -1,13 +1,24 @@
1
1
  // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
2
 
3
3
  import { APIResource } from '../../core/resource';
4
- import * as CompilerAPI from './compiler';
4
+ import * as ConnectionsAPI from './connections';
5
+ import {
6
+ Connection,
7
+ ConnectionListConnectionsParams,
8
+ ConnectionListConnectionsResponse,
9
+ Connections,
10
+ } from './connections';
11
+ import * as CompilerAPI from './compiler/compiler';
5
12
  import {
6
13
  ChartConfig,
7
14
  Compiler,
8
15
  CompilerCompileParams,
9
16
  CompilerCompileResponse,
17
+ CompilerEnumerateParams,
18
+ CompilerEnumerateResponse,
10
19
  CompilerErrorItem,
20
+ CompilerExecuteParams,
21
+ CompilerExecuteResponse,
11
22
  CompilerResolveParams,
12
23
  CompilerResolveResponse,
13
24
  CompilerValidateParams,
@@ -17,14 +28,7 @@ import {
17
28
  ManifestEntry,
18
29
  RefWithLabel,
19
30
  SubqueryCondition,
20
- } from './compiler';
21
- import * as ConnectionsAPI from './connections';
22
- import {
23
- Connection,
24
- ConnectionListConnectionsParams,
25
- ConnectionListConnectionsResponse,
26
- Connections,
27
- } from './connections';
31
+ } from './compiler/compiler';
28
32
  import * as TenantsAPI from './tenants/tenants';
29
33
  import {
30
34
  ImportTenantsResponse,
@@ -55,9 +59,13 @@ export declare namespace V1 {
55
59
  type RefWithLabel as RefWithLabel,
56
60
  type SubqueryCondition as SubqueryCondition,
57
61
  type CompilerCompileResponse as CompilerCompileResponse,
62
+ type CompilerEnumerateResponse as CompilerEnumerateResponse,
63
+ type CompilerExecuteResponse as CompilerExecuteResponse,
58
64
  type CompilerResolveResponse as CompilerResolveResponse,
59
65
  type CompilerValidateResponse as CompilerValidateResponse,
60
66
  type CompilerCompileParams as CompilerCompileParams,
67
+ type CompilerEnumerateParams as CompilerEnumerateParams,
68
+ type CompilerExecuteParams as CompilerExecuteParams,
61
69
  type CompilerResolveParams as CompilerResolveParams,
62
70
  type CompilerValidateParams as CompilerValidateParams,
63
71
  };
package/src/version.ts CHANGED
@@ -1 +1 @@
1
- export const VERSION = '0.8.0'; // x-release-please-version
1
+ export const VERSION = '0.10.0'; // x-release-please-version
package/version.d.mts CHANGED
@@ -1,2 +1,2 @@
1
- export declare const VERSION = "0.8.0";
1
+ export declare const VERSION = "0.10.0";
2
2
  //# sourceMappingURL=version.d.mts.map
package/version.d.mts.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"version.d.mts","sourceRoot":"","sources":["src/version.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,OAAO,UAAU,CAAC"}
1
+ {"version":3,"file":"version.d.mts","sourceRoot":"","sources":["src/version.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,OAAO,WAAW,CAAC"}
package/version.d.ts CHANGED
@@ -1,2 +1,2 @@
1
- export declare const VERSION = "0.8.0";
1
+ export declare const VERSION = "0.10.0";
2
2
  //# sourceMappingURL=version.d.ts.map
package/version.d.ts.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"version.d.ts","sourceRoot":"","sources":["src/version.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,OAAO,UAAU,CAAC"}
1
+ {"version":3,"file":"version.d.ts","sourceRoot":"","sources":["src/version.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,OAAO,WAAW,CAAC"}
package/version.js CHANGED
@@ -1,5 +1,5 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.VERSION = void 0;
4
- exports.VERSION = '0.8.0'; // x-release-please-version
4
+ exports.VERSION = '0.10.0'; // x-release-please-version
5
5
  //# sourceMappingURL=version.js.map
package/version.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"version.js","sourceRoot":"","sources":["src/version.ts"],"names":[],"mappings":";;;AAAa,QAAA,OAAO,GAAG,OAAO,CAAC,CAAC,2BAA2B"}
1
+ {"version":3,"file":"version.js","sourceRoot":"","sources":["src/version.ts"],"names":[],"mappings":";;;AAAa,QAAA,OAAO,GAAG,QAAQ,CAAC,CAAC,2BAA2B"}
package/version.mjs CHANGED
@@ -1,2 +1,2 @@
1
- export const VERSION = '0.8.0'; // x-release-please-version
1
+ export const VERSION = '0.10.0'; // x-release-please-version
2
2
  //# sourceMappingURL=version.mjs.map
package/version.mjs.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"version.mjs","sourceRoot":"","sources":["src/version.ts"],"names":[],"mappings":"AAAA,MAAM,CAAC,MAAM,OAAO,GAAG,OAAO,CAAC,CAAC,2BAA2B"}
1
+ {"version":3,"file":"version.mjs","sourceRoot":"","sources":["src/version.ts"],"names":[],"mappings":"AAAA,MAAM,CAAC,MAAM,OAAO,GAAG,QAAQ,CAAC,CAAC,2BAA2B"}