@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.
- package/CHANGELOG.md +29 -0
- package/client.js.map +1 -1
- package/client.mjs.map +1 -1
- package/package.json +1 -1
- package/resources/v1/compiler/cache.d.mts +39 -0
- package/resources/v1/compiler/cache.d.mts.map +1 -0
- package/resources/v1/compiler/cache.d.ts +39 -0
- package/resources/v1/compiler/cache.d.ts.map +1 -0
- package/resources/v1/compiler/cache.js +18 -0
- package/resources/v1/compiler/cache.js.map +1 -0
- package/resources/v1/compiler/cache.mjs +14 -0
- package/resources/v1/compiler/cache.mjs.map +1 -0
- package/resources/v1/compiler/compiler.d.mts +1893 -0
- package/resources/v1/compiler/compiler.d.mts.map +1 -0
- package/resources/v1/compiler/compiler.d.ts +1893 -0
- package/resources/v1/compiler/compiler.d.ts.map +1 -0
- package/resources/v1/compiler/compiler.js +119 -0
- package/resources/v1/compiler/compiler.js.map +1 -0
- package/resources/v1/compiler/compiler.mjs +114 -0
- package/resources/v1/compiler/compiler.mjs.map +1 -0
- package/resources/v1/compiler/index.d.mts +3 -0
- package/resources/v1/compiler/index.d.mts.map +1 -0
- package/resources/v1/compiler/index.d.ts +3 -0
- package/resources/v1/compiler/index.d.ts.map +1 -0
- package/resources/v1/compiler/index.js +9 -0
- package/resources/v1/compiler/index.js.map +1 -0
- package/resources/v1/compiler/index.mjs +4 -0
- package/resources/v1/compiler/index.mjs.map +1 -0
- package/resources/v1/compiler.d.mts +1 -1115
- package/resources/v1/compiler.d.mts.map +1 -1
- package/resources/v1/compiler.d.ts +1 -1115
- package/resources/v1/compiler.d.ts.map +1 -1
- package/resources/v1/compiler.js +2 -66
- package/resources/v1/compiler.js.map +1 -1
- package/resources/v1/compiler.mjs +1 -64
- package/resources/v1/compiler.mjs.map +1 -1
- package/resources/v1/index.d.mts +1 -1
- package/resources/v1/index.d.mts.map +1 -1
- package/resources/v1/index.d.ts +1 -1
- package/resources/v1/index.d.ts.map +1 -1
- package/resources/v1/index.js +4 -4
- package/resources/v1/index.js.map +1 -1
- package/resources/v1/index.mjs +1 -1
- package/resources/v1/index.mjs.map +1 -1
- package/resources/v1/v1.d.mts +3 -3
- package/resources/v1/v1.d.mts.map +1 -1
- package/resources/v1/v1.d.ts +3 -3
- package/resources/v1/v1.d.ts.map +1 -1
- package/resources/v1/v1.js +2 -2
- package/resources/v1/v1.js.map +1 -1
- package/resources/v1/v1.mjs +2 -2
- package/resources/v1/v1.mjs.map +1 -1
- package/src/client.ts +1 -1
- package/src/resources/v1/compiler/cache.ts +51 -0
- package/src/resources/v1/compiler/compiler.ts +2548 -0
- package/src/resources/v1/compiler/index.ts +23 -0
- package/src/resources/v1/compiler.ts +1 -1482
- package/src/resources/v1/index.ts +5 -1
- package/src/resources/v1/v1.ts +17 -9
- package/src/version.ts +1 -1
- package/version.d.mts +1 -1
- package/version.d.mts.map +1 -1
- package/version.d.ts +1 -1
- package/version.d.ts.map +1 -1
- package/version.js +1 -1
- package/version.js.map +1 -1
- package/version.mjs +1 -1
- 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,
|
package/src/resources/v1/v1.ts
CHANGED
|
@@ -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
|
|
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.
|
|
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.
|
|
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,
|
|
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.
|
|
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,
|
|
1
|
+
{"version":3,"file":"version.d.ts","sourceRoot":"","sources":["src/version.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,OAAO,WAAW,CAAC"}
|
package/version.js
CHANGED
package/version.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"version.js","sourceRoot":"","sources":["src/version.ts"],"names":[],"mappings":";;;AAAa,QAAA,OAAO,GAAG,
|
|
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.
|
|
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,
|
|
1
|
+
{"version":3,"file":"version.mjs","sourceRoot":"","sources":["src/version.ts"],"names":[],"mappings":"AAAA,MAAM,CAAC,MAAM,OAAO,GAAG,QAAQ,CAAC,CAAC,2BAA2B"}
|