@sap-ai-sdk/ai-api 1.15.1-20250629013237.0 → 1.15.1-20250701013320.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/dist/client/AI_CORE_API/schema/ai-model-base-data.d.ts +8 -0
- package/dist/client/AI_CORE_API/schema/ai-model-base-data.d.ts.map +1 -1
- package/dist/client/AI_CORE_API/schema/ai-model-version.d.ts +8 -0
- package/dist/client/AI_CORE_API/schema/ai-model-version.d.ts.map +1 -1
- package/dist/client/AI_CORE_API/schema/index.d.ts +195 -195
- package/dist/client/AI_CORE_API/schema/index.d.ts.map +1 -1
- package/dist/client/AI_CORE_API/schema/index.js +195 -195
- package/dist/client/AI_CORE_API/schema/index.js.map +1 -1
- package/package.json +2 -2
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import type { AiExecutableId } from './ai-executable-id.js';
|
|
2
2
|
import type { AiModelVersionList } from './ai-model-version-list.js';
|
|
3
|
+
import type { AiScenarioId } from './ai-scenario-id.js';
|
|
3
4
|
/**
|
|
4
5
|
* Representation of the 'AiModelBaseData' schema.
|
|
5
6
|
*/
|
|
@@ -26,5 +27,12 @@ export type AiModelBaseData = {
|
|
|
26
27
|
* Provider of the model
|
|
27
28
|
*/
|
|
28
29
|
provider?: string;
|
|
30
|
+
/**
|
|
31
|
+
* List of scenarioId:executableId pair where the model supported
|
|
32
|
+
*/
|
|
33
|
+
allowedScenarios?: ({
|
|
34
|
+
scenarioId: AiScenarioId;
|
|
35
|
+
executableId: AiExecutableId;
|
|
36
|
+
} & Record<string, any>)[];
|
|
29
37
|
} & Record<string, any>;
|
|
30
38
|
//# sourceMappingURL=ai-model-base-data.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ai-model-base-data.d.ts","sourceRoot":"","sources":["../../../../src/client/AI_CORE_API/schema/ai-model-base-data.ts"],"names":[],"mappings":"AAKA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,uBAAuB,CAAC;AAC5D,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,4BAA4B,CAAC;AACrE;;GAEG;AACH,MAAM,MAAM,eAAe,GAAG;IAC5B;;OAEG;IACH,KAAK,EAAE,MAAM,CAAC;IACd,YAAY,EAAE,cAAc,CAAC;IAC7B;;OAEG;IACH,WAAW,EAAE,MAAM,CAAC;IACpB,QAAQ,EAAE,kBAAkB,CAAC;IAC7B;;OAEG;IACH,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB;;OAEG;IACH,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB;;OAEG;IACH,QAAQ,CAAC,EAAE,MAAM,CAAC;
|
|
1
|
+
{"version":3,"file":"ai-model-base-data.d.ts","sourceRoot":"","sources":["../../../../src/client/AI_CORE_API/schema/ai-model-base-data.ts"],"names":[],"mappings":"AAKA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,uBAAuB,CAAC;AAC5D,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,4BAA4B,CAAC;AACrE,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,qBAAqB,CAAC;AACxD;;GAEG;AACH,MAAM,MAAM,eAAe,GAAG;IAC5B;;OAEG;IACH,KAAK,EAAE,MAAM,CAAC;IACd,YAAY,EAAE,cAAc,CAAC;IAC7B;;OAEG;IACH,WAAW,EAAE,MAAM,CAAC;IACpB,QAAQ,EAAE,kBAAkB,CAAC;IAC7B;;OAEG;IACH,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB;;OAEG;IACH,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB;;OAEG;IACH,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB;;OAEG;IACH,gBAAgB,CAAC,EAAE,CAAC;QAClB,UAAU,EAAE,YAAY,CAAC;QACzB,YAAY,EAAE,cAAc,CAAC;KAC9B,GAAG,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC,EAAE,CAAC;CAC5B,GAAG,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC"}
|
|
@@ -42,5 +42,13 @@ export type AiModelVersion = {
|
|
|
42
42
|
* List of suggested replacements for the model
|
|
43
43
|
*/
|
|
44
44
|
suggestedReplacements?: string[];
|
|
45
|
+
/**
|
|
46
|
+
* Streaming support status of the model
|
|
47
|
+
*/
|
|
48
|
+
streamingSupported?: boolean;
|
|
49
|
+
/**
|
|
50
|
+
* List of model capabilities supported by orchestration service
|
|
51
|
+
*/
|
|
52
|
+
orchestrationCapabilities?: string[];
|
|
45
53
|
} & Record<string, any>;
|
|
46
54
|
//# sourceMappingURL=ai-model-version.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ai-model-version.d.ts","sourceRoot":"","sources":["../../../../src/client/AI_CORE_API/schema/ai-model-version.ts"],"names":[],"mappings":"AAMA;;GAEG;AACH,MAAM,MAAM,cAAc,GAAG;IAC3B;;OAEG;IACH,IAAI,EAAE,MAAM,CAAC;IACb;;OAEG;IACH,QAAQ,EAAE,OAAO,CAAC;IAClB;;OAEG;IACH,UAAU,EAAE,OAAO,CAAC;IACpB;;OAEG;IACH,cAAc,CAAC,EAAE,MAAM,CAAC;IACxB;;OAEG;IACH,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB;;OAEG;IACH,UAAU,CAAC,EAAE,MAAM,EAAE,CAAC;IACtB;;OAEG;IACH,YAAY,CAAC,EAAE,MAAM,EAAE,CAAC;IACxB;;OAEG;IACH,QAAQ,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,EAAE,CAAC;IACpC;;OAEG;IACH,IAAI,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,EAAE,CAAC;IAChC;;OAEG;IACH,qBAAqB,CAAC,EAAE,MAAM,EAAE,CAAC;
|
|
1
|
+
{"version":3,"file":"ai-model-version.d.ts","sourceRoot":"","sources":["../../../../src/client/AI_CORE_API/schema/ai-model-version.ts"],"names":[],"mappings":"AAMA;;GAEG;AACH,MAAM,MAAM,cAAc,GAAG;IAC3B;;OAEG;IACH,IAAI,EAAE,MAAM,CAAC;IACb;;OAEG;IACH,QAAQ,EAAE,OAAO,CAAC;IAClB;;OAEG;IACH,UAAU,EAAE,OAAO,CAAC;IACpB;;OAEG;IACH,cAAc,CAAC,EAAE,MAAM,CAAC;IACxB;;OAEG;IACH,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB;;OAEG;IACH,UAAU,CAAC,EAAE,MAAM,EAAE,CAAC;IACtB;;OAEG;IACH,YAAY,CAAC,EAAE,MAAM,EAAE,CAAC;IACxB;;OAEG;IACH,QAAQ,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,EAAE,CAAC;IACpC;;OAEG;IACH,IAAI,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,EAAE,CAAC;IAChC;;OAEG;IACH,qBAAqB,CAAC,EAAE,MAAM,EAAE,CAAC;IACjC;;OAEG;IACH,kBAAkB,CAAC,EAAE,OAAO,CAAC;IAC7B;;OAEG;IACH,yBAAyB,CAAC,EAAE,MAAM,EAAE,CAAC;CACtC,GAAG,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC"}
|
|
@@ -1,113 +1,88 @@
|
|
|
1
|
-
export * from './
|
|
2
|
-
export * from './
|
|
3
|
-
export * from './
|
|
4
|
-
export * from './
|
|
5
|
-
export * from './
|
|
6
|
-
export * from './
|
|
7
|
-
export * from './
|
|
8
|
-
export * from './
|
|
9
|
-
export * from './
|
|
10
|
-
export * from './
|
|
11
|
-
export * from './
|
|
12
|
-
export * from './
|
|
13
|
-
export * from './
|
|
14
|
-
export * from './
|
|
15
|
-
export * from './
|
|
16
|
-
export * from './
|
|
17
|
-
export * from './
|
|
18
|
-
export * from './
|
|
19
|
-
export * from './
|
|
20
|
-
export * from './
|
|
21
|
-
export * from './
|
|
22
|
-
export * from './
|
|
23
|
-
export * from './
|
|
24
|
-
export * from './
|
|
25
|
-
export * from './
|
|
26
|
-
export * from './
|
|
27
|
-
export * from './
|
|
28
|
-
export * from './
|
|
29
|
-
export * from './
|
|
30
|
-
export * from './
|
|
31
|
-
export * from './
|
|
32
|
-
export * from './
|
|
33
|
-
export * from './
|
|
34
|
-
export * from './
|
|
35
|
-
export * from './
|
|
36
|
-
export * from './
|
|
37
|
-
export * from './
|
|
38
|
-
export * from './
|
|
39
|
-
export * from './
|
|
40
|
-
export * from './
|
|
41
|
-
export * from './
|
|
42
|
-
export * from './
|
|
43
|
-
export * from './
|
|
44
|
-
export * from './
|
|
45
|
-
export * from './
|
|
46
|
-
export * from './
|
|
47
|
-
export * from './
|
|
48
|
-
export * from './
|
|
49
|
-
export * from './
|
|
50
|
-
export * from './
|
|
51
|
-
export * from './
|
|
52
|
-
export * from './
|
|
53
|
-
export * from './
|
|
54
|
-
export * from './
|
|
55
|
-
export * from './
|
|
56
|
-
export * from './
|
|
57
|
-
export * from './
|
|
58
|
-
export * from './
|
|
59
|
-
export * from './
|
|
60
|
-
export * from './
|
|
61
|
-
export * from './
|
|
62
|
-
export * from './
|
|
63
|
-
export * from './
|
|
64
|
-
export * from './
|
|
65
|
-
export * from './
|
|
66
|
-
export * from './
|
|
67
|
-
export * from './
|
|
68
|
-
export * from './
|
|
69
|
-
export * from './
|
|
70
|
-
export * from './
|
|
71
|
-
export * from './
|
|
72
|
-
export * from './
|
|
73
|
-
export * from './
|
|
74
|
-
export * from './
|
|
75
|
-
export * from './
|
|
76
|
-
export * from './
|
|
77
|
-
export * from './
|
|
78
|
-
export * from './
|
|
79
|
-
export * from './
|
|
80
|
-
export * from './
|
|
81
|
-
export * from './
|
|
82
|
-
export * from './
|
|
83
|
-
export * from './
|
|
84
|
-
export * from './
|
|
85
|
-
export * from './
|
|
86
|
-
export * from './bcknd-service-capabilities.js';
|
|
87
|
-
export * from './bcknd-service-service-catalog.js';
|
|
88
|
-
export * from './bcknd-service-service-catalog-item.js';
|
|
89
|
-
export * from './bcknd-service-service-catalog-item-extend-catalog.js';
|
|
90
|
-
export * from './bcknd-service-service-plan-item.js';
|
|
91
|
-
export * from './bcknd-service-service-plan-item-metadata.js';
|
|
92
|
-
export * from './bcknd-service-service-catalog-item-extend-credentials.js';
|
|
93
|
-
export * from './bcknd-shared-resource-group-status.js';
|
|
94
|
-
export * from './bcknd-deployment-resource-quota-response.js';
|
|
95
|
-
export * from './bcknd-deployment-usage.js';
|
|
96
|
-
export * from './bcknd-usage-resource-plan-item.js';
|
|
97
|
-
export * from './bcknd-deployment-quota-item.js';
|
|
98
|
-
export * from './bcknd-deployment-quota.js';
|
|
99
|
-
export * from './bcknd-common-resource-quota-response.js';
|
|
100
|
-
export * from './bcknd-executable-resource-quota-response.js';
|
|
101
|
-
export * from './bcknd-resource-patch-body.js';
|
|
102
|
-
export * from './bcknd-resource-patch-resource-plans.js';
|
|
103
|
-
export * from './bcknd-resource-patch-nodes.js';
|
|
104
|
-
export * from './bcknd-resource-patch-response.js';
|
|
105
|
-
export * from './bcknd-resource-get-response.js';
|
|
106
|
-
export * from './bcknd-resource-get-resource-plans.js';
|
|
107
|
-
export * from './bcknd-error-response.js';
|
|
108
|
-
export * from './bcknd-error.js';
|
|
109
|
-
export * from './tnt-tenant-info.js';
|
|
110
|
-
export * from './tnt-api-error.js';
|
|
1
|
+
export * from './meta-capabilities.js';
|
|
2
|
+
export * from './meta-extensions.js';
|
|
3
|
+
export * from './meta-ai-api.js';
|
|
4
|
+
export * from './meta-version.js';
|
|
5
|
+
export * from './meta-api-version.js';
|
|
6
|
+
export * from './meta-api-error.js';
|
|
7
|
+
export * from './trck-get-metric-resource.js';
|
|
8
|
+
export * from './trck-metric-resource.js';
|
|
9
|
+
export * from './trck-get-metric-resource-list.js';
|
|
10
|
+
export * from './trck-delete-metrics-response.js';
|
|
11
|
+
export * from './trck-execution-id.js';
|
|
12
|
+
export * from './trck-timestamp.js';
|
|
13
|
+
export * from './trck-get-metric-list.js';
|
|
14
|
+
export * from './trck-metric-list.js';
|
|
15
|
+
export * from './trck-get-metric.js';
|
|
16
|
+
export * from './trck-metric.js';
|
|
17
|
+
export * from './trck-metric-name.js';
|
|
18
|
+
export * from './trck-metric-value.js';
|
|
19
|
+
export * from './trckmetric-selector-permissible-values.js';
|
|
20
|
+
export * from './trck-label-list.js';
|
|
21
|
+
export * from './trck-label.js';
|
|
22
|
+
export * from './trck-tag-list.js';
|
|
23
|
+
export * from './trck-tag.js';
|
|
24
|
+
export * from './trck-custom-info-object-list.js';
|
|
25
|
+
export * from './trck-custom-info-object.js';
|
|
26
|
+
export * from './trck-custom-info-object-data.js';
|
|
27
|
+
export * from './trck-mlapi-execution-id.js';
|
|
28
|
+
export * from './trck-generic-name.js';
|
|
29
|
+
export * from './trck-label-name.js';
|
|
30
|
+
export * from './trck-api-error.js';
|
|
31
|
+
export * from './trck-details-error-response.js';
|
|
32
|
+
export * from './trck-string-array.js';
|
|
33
|
+
export * from './rta-id.js';
|
|
34
|
+
export * from './rta-ttl.js';
|
|
35
|
+
export * from './rta-label-list.js';
|
|
36
|
+
export * from './rta-artifact-label-list.js';
|
|
37
|
+
export * from './rta-label.js';
|
|
38
|
+
export * from './rta-artifact-label.js';
|
|
39
|
+
export * from './rta-creation-response-message.js';
|
|
40
|
+
export * from './rta-scenario-id.js';
|
|
41
|
+
export * from './rta-scenario.js';
|
|
42
|
+
export * from './rta-executable-id.js';
|
|
43
|
+
export * from './rta-executable.js';
|
|
44
|
+
export * from './rta-executable-parameter-list.js';
|
|
45
|
+
export * from './rta-executable-parameter.js';
|
|
46
|
+
export * from './rta-executable-input-artifact-list.js';
|
|
47
|
+
export * from './rta-executable-output-artifact-list.js';
|
|
48
|
+
export * from './rta-executable-artifact.js';
|
|
49
|
+
export * from './rta-model-base-data.js';
|
|
50
|
+
export * from './rta-model-version-list.js';
|
|
51
|
+
export * from './rta-model-version.js';
|
|
52
|
+
export * from './rta-artifact.js';
|
|
53
|
+
export * from './rta-artifact-name.js';
|
|
54
|
+
export * from './rta-artifact-url.js';
|
|
55
|
+
export * from './rta-artifact-signature.js';
|
|
56
|
+
export * from './rta-artifact-array.js';
|
|
57
|
+
export * from './rta-deployment.js';
|
|
58
|
+
export * from './rta-deployment-id.js';
|
|
59
|
+
export * from './rta-target-id.js';
|
|
60
|
+
export * from './rta-latest-running-target-id.js';
|
|
61
|
+
export * from './rta-deployment-url.js';
|
|
62
|
+
export * from './rta-deployment-creation-response-message.js';
|
|
63
|
+
export * from './rta-deployment-cascade-update-response-message.js';
|
|
64
|
+
export * from './rta-deployment-deletion-response-message.js';
|
|
65
|
+
export * from './rta-deployment-modification-response-message.js';
|
|
66
|
+
export * from './rta-deployment-status-details.js';
|
|
67
|
+
export * from './rta-deployment-details.js';
|
|
68
|
+
export * from './rta-backend-details.js';
|
|
69
|
+
export * from './rta-execution.js';
|
|
70
|
+
export * from './rta-input-artifact-argument-binding.js';
|
|
71
|
+
export * from './rta-output-artifact-argument-binding.js';
|
|
72
|
+
export * from './rta-executable-argument-binding.js';
|
|
73
|
+
export * from './rta-execution-id.js';
|
|
74
|
+
export * from './rta-execution-creation-response-message.js';
|
|
75
|
+
export * from './rta-execution-modification-response-message.js';
|
|
76
|
+
export * from './rta-execution-deletion-response-message.js';
|
|
77
|
+
export * from './rta-execution-status-details.js';
|
|
78
|
+
export * from './rta-log-common-response.js';
|
|
79
|
+
export * from './rta-log-common-data.js';
|
|
80
|
+
export * from './rta-log-common-result.js';
|
|
81
|
+
export * from './rta-log-common-result-item.js';
|
|
82
|
+
export * from './rt-atimestamp.js';
|
|
83
|
+
export * from './rt-amessage.js';
|
|
84
|
+
export * from './rta-error-response.js';
|
|
85
|
+
export * from './rta-error.js';
|
|
111
86
|
export * from './ai-scenario.js';
|
|
112
87
|
export * from './ai-scenario-label-list.js';
|
|
113
88
|
export * from './ai-label-list.js';
|
|
@@ -222,92 +197,117 @@ export * from './ai-creation-response-message.js';
|
|
|
222
197
|
export * from './ai-url.js';
|
|
223
198
|
export * from './ai-api-error-with-id.js';
|
|
224
199
|
export * from './ai-api-error.js';
|
|
225
|
-
export * from './
|
|
226
|
-
export * from './
|
|
227
|
-
export * from './
|
|
228
|
-
export * from './
|
|
229
|
-
export * from './
|
|
230
|
-
export * from './
|
|
231
|
-
export * from './
|
|
232
|
-
export * from './
|
|
233
|
-
export * from './
|
|
234
|
-
export * from './
|
|
235
|
-
export * from './
|
|
236
|
-
export * from './rta-executable-parameter-list.js';
|
|
237
|
-
export * from './rta-executable-parameter.js';
|
|
238
|
-
export * from './rta-executable-input-artifact-list.js';
|
|
239
|
-
export * from './rta-executable-output-artifact-list.js';
|
|
240
|
-
export * from './rta-executable-artifact.js';
|
|
241
|
-
export * from './rta-model-base-data.js';
|
|
242
|
-
export * from './rta-model-version-list.js';
|
|
243
|
-
export * from './rta-model-version.js';
|
|
244
|
-
export * from './rta-artifact.js';
|
|
245
|
-
export * from './rta-artifact-name.js';
|
|
246
|
-
export * from './rta-artifact-url.js';
|
|
247
|
-
export * from './rta-artifact-signature.js';
|
|
248
|
-
export * from './rta-artifact-array.js';
|
|
249
|
-
export * from './rta-deployment.js';
|
|
250
|
-
export * from './rta-deployment-id.js';
|
|
251
|
-
export * from './rta-target-id.js';
|
|
252
|
-
export * from './rta-latest-running-target-id.js';
|
|
253
|
-
export * from './rta-deployment-url.js';
|
|
254
|
-
export * from './rta-deployment-creation-response-message.js';
|
|
255
|
-
export * from './rta-deployment-cascade-update-response-message.js';
|
|
256
|
-
export * from './rta-deployment-deletion-response-message.js';
|
|
257
|
-
export * from './rta-deployment-modification-response-message.js';
|
|
258
|
-
export * from './rta-deployment-status-details.js';
|
|
259
|
-
export * from './rta-deployment-details.js';
|
|
260
|
-
export * from './rta-backend-details.js';
|
|
261
|
-
export * from './rta-execution.js';
|
|
262
|
-
export * from './rta-input-artifact-argument-binding.js';
|
|
263
|
-
export * from './rta-output-artifact-argument-binding.js';
|
|
264
|
-
export * from './rta-executable-argument-binding.js';
|
|
265
|
-
export * from './rta-execution-id.js';
|
|
266
|
-
export * from './rta-execution-creation-response-message.js';
|
|
267
|
-
export * from './rta-execution-modification-response-message.js';
|
|
268
|
-
export * from './rta-execution-deletion-response-message.js';
|
|
269
|
-
export * from './rta-execution-status-details.js';
|
|
270
|
-
export * from './rta-log-common-response.js';
|
|
271
|
-
export * from './rta-log-common-data.js';
|
|
272
|
-
export * from './rta-log-common-result.js';
|
|
273
|
-
export * from './rta-log-common-result-item.js';
|
|
274
|
-
export * from './rt-atimestamp.js';
|
|
275
|
-
export * from './rt-amessage.js';
|
|
276
|
-
export * from './rta-error-response.js';
|
|
277
|
-
export * from './rta-error.js';
|
|
278
|
-
export * from './trck-get-metric-resource.js';
|
|
279
|
-
export * from './trck-metric-resource.js';
|
|
280
|
-
export * from './trck-get-metric-resource-list.js';
|
|
281
|
-
export * from './trck-delete-metrics-response.js';
|
|
282
|
-
export * from './trck-execution-id.js';
|
|
283
|
-
export * from './trck-timestamp.js';
|
|
284
|
-
export * from './trck-get-metric-list.js';
|
|
285
|
-
export * from './trck-metric-list.js';
|
|
286
|
-
export * from './trck-get-metric.js';
|
|
287
|
-
export * from './trck-metric.js';
|
|
288
|
-
export * from './trck-metric-name.js';
|
|
289
|
-
export * from './trck-metric-value.js';
|
|
290
|
-
export * from './trckmetric-selector-permissible-values.js';
|
|
291
|
-
export * from './trck-label-list.js';
|
|
292
|
-
export * from './trck-label.js';
|
|
293
|
-
export * from './trck-tag-list.js';
|
|
294
|
-
export * from './trck-tag.js';
|
|
295
|
-
export * from './trck-custom-info-object-list.js';
|
|
296
|
-
export * from './trck-custom-info-object.js';
|
|
297
|
-
export * from './trck-custom-info-object-data.js';
|
|
298
|
-
export * from './trck-mlapi-execution-id.js';
|
|
299
|
-
export * from './trck-generic-name.js';
|
|
300
|
-
export * from './trck-label-name.js';
|
|
301
|
-
export * from './trck-api-error.js';
|
|
302
|
-
export * from './trck-details-error-response.js';
|
|
303
|
-
export * from './trck-string-array.js';
|
|
200
|
+
export * from './tnt-tenant-info.js';
|
|
201
|
+
export * from './tnt-api-error.js';
|
|
202
|
+
export * from './kpi-column-name.js';
|
|
203
|
+
export * from './kpi-array-of-column-names.js';
|
|
204
|
+
export * from './kpi-aggregation-attribute.js';
|
|
205
|
+
export * from './kpi-count-aggregate.js';
|
|
206
|
+
export * from './kpi-result-row.js';
|
|
207
|
+
export * from './kpi-result-row-item.js';
|
|
208
|
+
export * from './kpi-result-row-list.js';
|
|
209
|
+
export * from './kpi-result-set.js';
|
|
210
|
+
export * from './kpi-api-error.js';
|
|
304
211
|
export * from './d-set-url.js';
|
|
305
212
|
export * from './d-set-error.js';
|
|
306
213
|
export * from './d-set-file-creation-response.js';
|
|
307
|
-
export * from './
|
|
308
|
-
export * from './
|
|
309
|
-
export * from './
|
|
310
|
-
export * from './
|
|
311
|
-
export * from './
|
|
312
|
-
export * from './
|
|
214
|
+
export * from './bcknd-id.js';
|
|
215
|
+
export * from './bcknd-message.js';
|
|
216
|
+
export * from './bcknd-name.js';
|
|
217
|
+
export * from './bcknd-creation-response-message.js';
|
|
218
|
+
export * from './bcknd-url.js';
|
|
219
|
+
export * from './bcknd-resource-group-list.js';
|
|
220
|
+
export * from './bcknd-resource-group-base.js';
|
|
221
|
+
export * from './bcknd-resource-group.js';
|
|
222
|
+
export * from './bcknd-internal-resource-group.js';
|
|
223
|
+
export * from './bcknd-resource-groups-post-request.js';
|
|
224
|
+
export * from './bcknd-resource-group-labels.js';
|
|
225
|
+
export * from './bcknd-resource-group-label.js';
|
|
226
|
+
export * from './bcknd-internal-resource-group-labels.js';
|
|
227
|
+
export * from './bcknd-internal-resource-group-label.js';
|
|
228
|
+
export * from './bcknd-internal-resource-group-annotations.js';
|
|
229
|
+
export * from './bcknd-internal-resource-group-annotation.js';
|
|
230
|
+
export * from './bcknd-resource-group-deletion-response.js';
|
|
231
|
+
export * from './bcknd-resource-group-deletion-response-message.js';
|
|
232
|
+
export * from './bcknd-resource-group-patch-request.js';
|
|
233
|
+
export * from './bcknd-event.js';
|
|
234
|
+
export * from './bcknd-tenant.js';
|
|
235
|
+
export * from './bckndobject-store-secret-with-sensitive-data-request.js';
|
|
236
|
+
export * from './bckndobject-store-secret-with-sensitive-data-request-for-post-call.js';
|
|
237
|
+
export * from './bckndobject-store-secret-status-response.js';
|
|
238
|
+
export * from './bckndobject-store-secret-status.js';
|
|
239
|
+
export * from './bckndobject-store-secret-deletion-response.js';
|
|
240
|
+
export * from './bckndobject-store-secret-deletion-response-message.js';
|
|
241
|
+
export * from './bckndobject-store-secret-creation-response.js';
|
|
242
|
+
export * from './bckndobject-store-secret-creation-response-message.js';
|
|
243
|
+
export * from './bckndobject-store-secret-modification-response-message.js';
|
|
244
|
+
export * from './bckndobject-store-secret-modification-response.js';
|
|
245
|
+
export * from './bcknddocker-registry-name-component.js';
|
|
246
|
+
export * from './bcknddocker-registry-secret-with-sensitive-data-request.js';
|
|
247
|
+
export * from './bcknddocker-registry-secret-status-response.js';
|
|
248
|
+
export * from './bcknddocker-registry-secret-status.js';
|
|
249
|
+
export * from './bcknddocker-registry-secret-deletion-response.js';
|
|
250
|
+
export * from './bcknddocker-registry-secret-deletion-response-message.js';
|
|
251
|
+
export * from './bcknddocker-registry-secret-creation-response.js';
|
|
252
|
+
export * from './bcknddocker-registry-secret-creation-response-message.js';
|
|
253
|
+
export * from './bcknddocker-registry-secret-modification-response-message.js';
|
|
254
|
+
export * from './bcknddocker-registry-secret-modification-response.js';
|
|
255
|
+
export * from './bcknd-generic-secret-data.js';
|
|
256
|
+
export * from './bcknd-generic-secret-post-body.js';
|
|
257
|
+
export * from './bcknd-generic-secret-patch-body.js';
|
|
258
|
+
export * from './bcknd-generic-secret-data-response.js';
|
|
259
|
+
export * from './bcknd-generic-secret-details.js';
|
|
260
|
+
export * from './bcknd-list-generic-secrets-response.js';
|
|
261
|
+
export * from './bcknd-generic-secret-labels.js';
|
|
262
|
+
export * from './bcknd-generic-secret-label.js';
|
|
263
|
+
export * from './bcknd-argo-cd-repository-data.js';
|
|
264
|
+
export * from './bcknd-argo-cd-repository-credentials.js';
|
|
265
|
+
export * from './bcknd-argo-cd-repository-data-response.js';
|
|
266
|
+
export * from './bcknd-argo-cd-repository-creation-response.js';
|
|
267
|
+
export * from './bcknd-argo-cd-repository-creation-response-message.js';
|
|
268
|
+
export * from './bcknd-argo-cd-repository-details.js';
|
|
269
|
+
export * from './bcknd-argo-cd-repository-deletion-response.js';
|
|
270
|
+
export * from './bcknd-argo-cd-repository-deletion-response-message.js';
|
|
271
|
+
export * from './bcknd-argo-cd-repository-modification-response.js';
|
|
272
|
+
export * from './bcknd-argo-cd-repository-modification-response-message.js';
|
|
273
|
+
export * from './bcknd-argo-cd-application-base-data.js';
|
|
274
|
+
export * from './bcknd-argo-cd-application-data.js';
|
|
275
|
+
export * from './bcknd-all-argo-cd-application-data.js';
|
|
276
|
+
export * from './bcknd-argo-cd-application-data-repo-name.js';
|
|
277
|
+
export * from './bcknd-argo-cd-application-status.js';
|
|
278
|
+
export * from './bcknd-argo-cd-application-deletion-response.js';
|
|
279
|
+
export * from './bcknd-argo-cd-application-deletion-response-message.js';
|
|
280
|
+
export * from './bcknd-argo-cd-application-creation-response.js';
|
|
281
|
+
export * from './bcknd-argo-cd-application-creation-response-message.js';
|
|
282
|
+
export * from './bcknd-argo-cd-application-modification-response.js';
|
|
283
|
+
export * from './bcknd-argo-cd-application-modification-response-message.js';
|
|
284
|
+
export * from './bcknd-argo-cd-application-refresh-response.js';
|
|
285
|
+
export * from './bcknd-argo-cd-application-refresh-response-message.js';
|
|
286
|
+
export * from './bcknd-service-list.js';
|
|
287
|
+
export * from './bcknd-service.js';
|
|
288
|
+
export * from './bcknd-extended-service.js';
|
|
289
|
+
export * from './bcknd-service-broker-secret.js';
|
|
290
|
+
export * from './bcknd-service-capabilities.js';
|
|
291
|
+
export * from './bcknd-service-service-catalog.js';
|
|
292
|
+
export * from './bcknd-service-service-catalog-item.js';
|
|
293
|
+
export * from './bcknd-service-service-catalog-item-extend-catalog.js';
|
|
294
|
+
export * from './bcknd-service-service-plan-item.js';
|
|
295
|
+
export * from './bcknd-service-service-plan-item-metadata.js';
|
|
296
|
+
export * from './bcknd-service-service-catalog-item-extend-credentials.js';
|
|
297
|
+
export * from './bcknd-shared-resource-group-status.js';
|
|
298
|
+
export * from './bcknd-deployment-resource-quota-response.js';
|
|
299
|
+
export * from './bcknd-deployment-usage.js';
|
|
300
|
+
export * from './bcknd-usage-resource-plan-item.js';
|
|
301
|
+
export * from './bcknd-deployment-quota-item.js';
|
|
302
|
+
export * from './bcknd-deployment-quota.js';
|
|
303
|
+
export * from './bcknd-common-resource-quota-response.js';
|
|
304
|
+
export * from './bcknd-executable-resource-quota-response.js';
|
|
305
|
+
export * from './bcknd-resource-patch-body.js';
|
|
306
|
+
export * from './bcknd-resource-patch-resource-plans.js';
|
|
307
|
+
export * from './bcknd-resource-patch-nodes.js';
|
|
308
|
+
export * from './bcknd-resource-patch-response.js';
|
|
309
|
+
export * from './bcknd-resource-get-response.js';
|
|
310
|
+
export * from './bcknd-resource-get-resource-plans.js';
|
|
311
|
+
export * from './bcknd-error-response.js';
|
|
312
|
+
export * from './bcknd-error.js';
|
|
313
313
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/client/AI_CORE_API/schema/index.ts"],"names":[],"mappings":"AAKA,cAAc,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/client/AI_CORE_API/schema/index.ts"],"names":[],"mappings":"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"}
|
|
@@ -3,116 +3,91 @@
|
|
|
3
3
|
*
|
|
4
4
|
* This is a generated file powered by the SAP Cloud SDK for JavaScript.
|
|
5
5
|
*/
|
|
6
|
-
export * from './
|
|
7
|
-
export * from './
|
|
8
|
-
export * from './
|
|
9
|
-
export * from './
|
|
10
|
-
export * from './
|
|
11
|
-
export * from './
|
|
12
|
-
export * from './
|
|
13
|
-
export * from './
|
|
14
|
-
export * from './
|
|
15
|
-
export * from './
|
|
16
|
-
export * from './
|
|
17
|
-
export * from './
|
|
18
|
-
export * from './
|
|
19
|
-
export * from './
|
|
20
|
-
export * from './
|
|
21
|
-
export * from './
|
|
22
|
-
export * from './
|
|
23
|
-
export * from './
|
|
24
|
-
export * from './
|
|
25
|
-
export * from './
|
|
26
|
-
export * from './
|
|
27
|
-
export * from './
|
|
28
|
-
export * from './
|
|
29
|
-
export * from './
|
|
30
|
-
export * from './
|
|
31
|
-
export * from './
|
|
32
|
-
export * from './
|
|
33
|
-
export * from './
|
|
34
|
-
export * from './
|
|
35
|
-
export * from './
|
|
36
|
-
export * from './
|
|
37
|
-
export * from './
|
|
38
|
-
export * from './
|
|
39
|
-
export * from './
|
|
40
|
-
export * from './
|
|
41
|
-
export * from './
|
|
42
|
-
export * from './
|
|
43
|
-
export * from './
|
|
44
|
-
export * from './
|
|
45
|
-
export * from './
|
|
46
|
-
export * from './
|
|
47
|
-
export * from './
|
|
48
|
-
export * from './
|
|
49
|
-
export * from './
|
|
50
|
-
export * from './
|
|
51
|
-
export * from './
|
|
52
|
-
export * from './
|
|
53
|
-
export * from './
|
|
54
|
-
export * from './
|
|
55
|
-
export * from './
|
|
56
|
-
export * from './
|
|
57
|
-
export * from './
|
|
58
|
-
export * from './
|
|
59
|
-
export * from './
|
|
60
|
-
export * from './
|
|
61
|
-
export * from './
|
|
62
|
-
export * from './
|
|
63
|
-
export * from './
|
|
64
|
-
export * from './
|
|
65
|
-
export * from './
|
|
66
|
-
export * from './
|
|
67
|
-
export * from './
|
|
68
|
-
export * from './
|
|
69
|
-
export * from './
|
|
70
|
-
export * from './
|
|
71
|
-
export * from './
|
|
72
|
-
export * from './
|
|
73
|
-
export * from './
|
|
74
|
-
export * from './
|
|
75
|
-
export * from './
|
|
76
|
-
export * from './
|
|
77
|
-
export * from './
|
|
78
|
-
export * from './
|
|
79
|
-
export * from './
|
|
80
|
-
export * from './
|
|
81
|
-
export * from './
|
|
82
|
-
export * from './
|
|
83
|
-
export * from './
|
|
84
|
-
export * from './
|
|
85
|
-
export * from './
|
|
86
|
-
export * from './
|
|
87
|
-
export * from './
|
|
88
|
-
export * from './
|
|
89
|
-
export * from './
|
|
90
|
-
export * from './
|
|
91
|
-
export * from './bcknd-service-capabilities.js';
|
|
92
|
-
export * from './bcknd-service-service-catalog.js';
|
|
93
|
-
export * from './bcknd-service-service-catalog-item.js';
|
|
94
|
-
export * from './bcknd-service-service-catalog-item-extend-catalog.js';
|
|
95
|
-
export * from './bcknd-service-service-plan-item.js';
|
|
96
|
-
export * from './bcknd-service-service-plan-item-metadata.js';
|
|
97
|
-
export * from './bcknd-service-service-catalog-item-extend-credentials.js';
|
|
98
|
-
export * from './bcknd-shared-resource-group-status.js';
|
|
99
|
-
export * from './bcknd-deployment-resource-quota-response.js';
|
|
100
|
-
export * from './bcknd-deployment-usage.js';
|
|
101
|
-
export * from './bcknd-usage-resource-plan-item.js';
|
|
102
|
-
export * from './bcknd-deployment-quota-item.js';
|
|
103
|
-
export * from './bcknd-deployment-quota.js';
|
|
104
|
-
export * from './bcknd-common-resource-quota-response.js';
|
|
105
|
-
export * from './bcknd-executable-resource-quota-response.js';
|
|
106
|
-
export * from './bcknd-resource-patch-body.js';
|
|
107
|
-
export * from './bcknd-resource-patch-resource-plans.js';
|
|
108
|
-
export * from './bcknd-resource-patch-nodes.js';
|
|
109
|
-
export * from './bcknd-resource-patch-response.js';
|
|
110
|
-
export * from './bcknd-resource-get-response.js';
|
|
111
|
-
export * from './bcknd-resource-get-resource-plans.js';
|
|
112
|
-
export * from './bcknd-error-response.js';
|
|
113
|
-
export * from './bcknd-error.js';
|
|
114
|
-
export * from './tnt-tenant-info.js';
|
|
115
|
-
export * from './tnt-api-error.js';
|
|
6
|
+
export * from './meta-capabilities.js';
|
|
7
|
+
export * from './meta-extensions.js';
|
|
8
|
+
export * from './meta-ai-api.js';
|
|
9
|
+
export * from './meta-version.js';
|
|
10
|
+
export * from './meta-api-version.js';
|
|
11
|
+
export * from './meta-api-error.js';
|
|
12
|
+
export * from './trck-get-metric-resource.js';
|
|
13
|
+
export * from './trck-metric-resource.js';
|
|
14
|
+
export * from './trck-get-metric-resource-list.js';
|
|
15
|
+
export * from './trck-delete-metrics-response.js';
|
|
16
|
+
export * from './trck-execution-id.js';
|
|
17
|
+
export * from './trck-timestamp.js';
|
|
18
|
+
export * from './trck-get-metric-list.js';
|
|
19
|
+
export * from './trck-metric-list.js';
|
|
20
|
+
export * from './trck-get-metric.js';
|
|
21
|
+
export * from './trck-metric.js';
|
|
22
|
+
export * from './trck-metric-name.js';
|
|
23
|
+
export * from './trck-metric-value.js';
|
|
24
|
+
export * from './trckmetric-selector-permissible-values.js';
|
|
25
|
+
export * from './trck-label-list.js';
|
|
26
|
+
export * from './trck-label.js';
|
|
27
|
+
export * from './trck-tag-list.js';
|
|
28
|
+
export * from './trck-tag.js';
|
|
29
|
+
export * from './trck-custom-info-object-list.js';
|
|
30
|
+
export * from './trck-custom-info-object.js';
|
|
31
|
+
export * from './trck-custom-info-object-data.js';
|
|
32
|
+
export * from './trck-mlapi-execution-id.js';
|
|
33
|
+
export * from './trck-generic-name.js';
|
|
34
|
+
export * from './trck-label-name.js';
|
|
35
|
+
export * from './trck-api-error.js';
|
|
36
|
+
export * from './trck-details-error-response.js';
|
|
37
|
+
export * from './trck-string-array.js';
|
|
38
|
+
export * from './rta-id.js';
|
|
39
|
+
export * from './rta-ttl.js';
|
|
40
|
+
export * from './rta-label-list.js';
|
|
41
|
+
export * from './rta-artifact-label-list.js';
|
|
42
|
+
export * from './rta-label.js';
|
|
43
|
+
export * from './rta-artifact-label.js';
|
|
44
|
+
export * from './rta-creation-response-message.js';
|
|
45
|
+
export * from './rta-scenario-id.js';
|
|
46
|
+
export * from './rta-scenario.js';
|
|
47
|
+
export * from './rta-executable-id.js';
|
|
48
|
+
export * from './rta-executable.js';
|
|
49
|
+
export * from './rta-executable-parameter-list.js';
|
|
50
|
+
export * from './rta-executable-parameter.js';
|
|
51
|
+
export * from './rta-executable-input-artifact-list.js';
|
|
52
|
+
export * from './rta-executable-output-artifact-list.js';
|
|
53
|
+
export * from './rta-executable-artifact.js';
|
|
54
|
+
export * from './rta-model-base-data.js';
|
|
55
|
+
export * from './rta-model-version-list.js';
|
|
56
|
+
export * from './rta-model-version.js';
|
|
57
|
+
export * from './rta-artifact.js';
|
|
58
|
+
export * from './rta-artifact-name.js';
|
|
59
|
+
export * from './rta-artifact-url.js';
|
|
60
|
+
export * from './rta-artifact-signature.js';
|
|
61
|
+
export * from './rta-artifact-array.js';
|
|
62
|
+
export * from './rta-deployment.js';
|
|
63
|
+
export * from './rta-deployment-id.js';
|
|
64
|
+
export * from './rta-target-id.js';
|
|
65
|
+
export * from './rta-latest-running-target-id.js';
|
|
66
|
+
export * from './rta-deployment-url.js';
|
|
67
|
+
export * from './rta-deployment-creation-response-message.js';
|
|
68
|
+
export * from './rta-deployment-cascade-update-response-message.js';
|
|
69
|
+
export * from './rta-deployment-deletion-response-message.js';
|
|
70
|
+
export * from './rta-deployment-modification-response-message.js';
|
|
71
|
+
export * from './rta-deployment-status-details.js';
|
|
72
|
+
export * from './rta-deployment-details.js';
|
|
73
|
+
export * from './rta-backend-details.js';
|
|
74
|
+
export * from './rta-execution.js';
|
|
75
|
+
export * from './rta-input-artifact-argument-binding.js';
|
|
76
|
+
export * from './rta-output-artifact-argument-binding.js';
|
|
77
|
+
export * from './rta-executable-argument-binding.js';
|
|
78
|
+
export * from './rta-execution-id.js';
|
|
79
|
+
export * from './rta-execution-creation-response-message.js';
|
|
80
|
+
export * from './rta-execution-modification-response-message.js';
|
|
81
|
+
export * from './rta-execution-deletion-response-message.js';
|
|
82
|
+
export * from './rta-execution-status-details.js';
|
|
83
|
+
export * from './rta-log-common-response.js';
|
|
84
|
+
export * from './rta-log-common-data.js';
|
|
85
|
+
export * from './rta-log-common-result.js';
|
|
86
|
+
export * from './rta-log-common-result-item.js';
|
|
87
|
+
export * from './rt-atimestamp.js';
|
|
88
|
+
export * from './rt-amessage.js';
|
|
89
|
+
export * from './rta-error-response.js';
|
|
90
|
+
export * from './rta-error.js';
|
|
116
91
|
export * from './ai-scenario.js';
|
|
117
92
|
export * from './ai-scenario-label-list.js';
|
|
118
93
|
export * from './ai-label-list.js';
|
|
@@ -227,92 +202,117 @@ export * from './ai-creation-response-message.js';
|
|
|
227
202
|
export * from './ai-url.js';
|
|
228
203
|
export * from './ai-api-error-with-id.js';
|
|
229
204
|
export * from './ai-api-error.js';
|
|
230
|
-
export * from './
|
|
231
|
-
export * from './
|
|
232
|
-
export * from './
|
|
233
|
-
export * from './
|
|
234
|
-
export * from './
|
|
235
|
-
export * from './
|
|
236
|
-
export * from './
|
|
237
|
-
export * from './
|
|
238
|
-
export * from './
|
|
239
|
-
export * from './
|
|
240
|
-
export * from './
|
|
241
|
-
export * from './rta-executable-parameter-list.js';
|
|
242
|
-
export * from './rta-executable-parameter.js';
|
|
243
|
-
export * from './rta-executable-input-artifact-list.js';
|
|
244
|
-
export * from './rta-executable-output-artifact-list.js';
|
|
245
|
-
export * from './rta-executable-artifact.js';
|
|
246
|
-
export * from './rta-model-base-data.js';
|
|
247
|
-
export * from './rta-model-version-list.js';
|
|
248
|
-
export * from './rta-model-version.js';
|
|
249
|
-
export * from './rta-artifact.js';
|
|
250
|
-
export * from './rta-artifact-name.js';
|
|
251
|
-
export * from './rta-artifact-url.js';
|
|
252
|
-
export * from './rta-artifact-signature.js';
|
|
253
|
-
export * from './rta-artifact-array.js';
|
|
254
|
-
export * from './rta-deployment.js';
|
|
255
|
-
export * from './rta-deployment-id.js';
|
|
256
|
-
export * from './rta-target-id.js';
|
|
257
|
-
export * from './rta-latest-running-target-id.js';
|
|
258
|
-
export * from './rta-deployment-url.js';
|
|
259
|
-
export * from './rta-deployment-creation-response-message.js';
|
|
260
|
-
export * from './rta-deployment-cascade-update-response-message.js';
|
|
261
|
-
export * from './rta-deployment-deletion-response-message.js';
|
|
262
|
-
export * from './rta-deployment-modification-response-message.js';
|
|
263
|
-
export * from './rta-deployment-status-details.js';
|
|
264
|
-
export * from './rta-deployment-details.js';
|
|
265
|
-
export * from './rta-backend-details.js';
|
|
266
|
-
export * from './rta-execution.js';
|
|
267
|
-
export * from './rta-input-artifact-argument-binding.js';
|
|
268
|
-
export * from './rta-output-artifact-argument-binding.js';
|
|
269
|
-
export * from './rta-executable-argument-binding.js';
|
|
270
|
-
export * from './rta-execution-id.js';
|
|
271
|
-
export * from './rta-execution-creation-response-message.js';
|
|
272
|
-
export * from './rta-execution-modification-response-message.js';
|
|
273
|
-
export * from './rta-execution-deletion-response-message.js';
|
|
274
|
-
export * from './rta-execution-status-details.js';
|
|
275
|
-
export * from './rta-log-common-response.js';
|
|
276
|
-
export * from './rta-log-common-data.js';
|
|
277
|
-
export * from './rta-log-common-result.js';
|
|
278
|
-
export * from './rta-log-common-result-item.js';
|
|
279
|
-
export * from './rt-atimestamp.js';
|
|
280
|
-
export * from './rt-amessage.js';
|
|
281
|
-
export * from './rta-error-response.js';
|
|
282
|
-
export * from './rta-error.js';
|
|
283
|
-
export * from './trck-get-metric-resource.js';
|
|
284
|
-
export * from './trck-metric-resource.js';
|
|
285
|
-
export * from './trck-get-metric-resource-list.js';
|
|
286
|
-
export * from './trck-delete-metrics-response.js';
|
|
287
|
-
export * from './trck-execution-id.js';
|
|
288
|
-
export * from './trck-timestamp.js';
|
|
289
|
-
export * from './trck-get-metric-list.js';
|
|
290
|
-
export * from './trck-metric-list.js';
|
|
291
|
-
export * from './trck-get-metric.js';
|
|
292
|
-
export * from './trck-metric.js';
|
|
293
|
-
export * from './trck-metric-name.js';
|
|
294
|
-
export * from './trck-metric-value.js';
|
|
295
|
-
export * from './trckmetric-selector-permissible-values.js';
|
|
296
|
-
export * from './trck-label-list.js';
|
|
297
|
-
export * from './trck-label.js';
|
|
298
|
-
export * from './trck-tag-list.js';
|
|
299
|
-
export * from './trck-tag.js';
|
|
300
|
-
export * from './trck-custom-info-object-list.js';
|
|
301
|
-
export * from './trck-custom-info-object.js';
|
|
302
|
-
export * from './trck-custom-info-object-data.js';
|
|
303
|
-
export * from './trck-mlapi-execution-id.js';
|
|
304
|
-
export * from './trck-generic-name.js';
|
|
305
|
-
export * from './trck-label-name.js';
|
|
306
|
-
export * from './trck-api-error.js';
|
|
307
|
-
export * from './trck-details-error-response.js';
|
|
308
|
-
export * from './trck-string-array.js';
|
|
205
|
+
export * from './tnt-tenant-info.js';
|
|
206
|
+
export * from './tnt-api-error.js';
|
|
207
|
+
export * from './kpi-column-name.js';
|
|
208
|
+
export * from './kpi-array-of-column-names.js';
|
|
209
|
+
export * from './kpi-aggregation-attribute.js';
|
|
210
|
+
export * from './kpi-count-aggregate.js';
|
|
211
|
+
export * from './kpi-result-row.js';
|
|
212
|
+
export * from './kpi-result-row-item.js';
|
|
213
|
+
export * from './kpi-result-row-list.js';
|
|
214
|
+
export * from './kpi-result-set.js';
|
|
215
|
+
export * from './kpi-api-error.js';
|
|
309
216
|
export * from './d-set-url.js';
|
|
310
217
|
export * from './d-set-error.js';
|
|
311
218
|
export * from './d-set-file-creation-response.js';
|
|
312
|
-
export * from './
|
|
313
|
-
export * from './
|
|
314
|
-
export * from './
|
|
315
|
-
export * from './
|
|
316
|
-
export * from './
|
|
317
|
-
export * from './
|
|
219
|
+
export * from './bcknd-id.js';
|
|
220
|
+
export * from './bcknd-message.js';
|
|
221
|
+
export * from './bcknd-name.js';
|
|
222
|
+
export * from './bcknd-creation-response-message.js';
|
|
223
|
+
export * from './bcknd-url.js';
|
|
224
|
+
export * from './bcknd-resource-group-list.js';
|
|
225
|
+
export * from './bcknd-resource-group-base.js';
|
|
226
|
+
export * from './bcknd-resource-group.js';
|
|
227
|
+
export * from './bcknd-internal-resource-group.js';
|
|
228
|
+
export * from './bcknd-resource-groups-post-request.js';
|
|
229
|
+
export * from './bcknd-resource-group-labels.js';
|
|
230
|
+
export * from './bcknd-resource-group-label.js';
|
|
231
|
+
export * from './bcknd-internal-resource-group-labels.js';
|
|
232
|
+
export * from './bcknd-internal-resource-group-label.js';
|
|
233
|
+
export * from './bcknd-internal-resource-group-annotations.js';
|
|
234
|
+
export * from './bcknd-internal-resource-group-annotation.js';
|
|
235
|
+
export * from './bcknd-resource-group-deletion-response.js';
|
|
236
|
+
export * from './bcknd-resource-group-deletion-response-message.js';
|
|
237
|
+
export * from './bcknd-resource-group-patch-request.js';
|
|
238
|
+
export * from './bcknd-event.js';
|
|
239
|
+
export * from './bcknd-tenant.js';
|
|
240
|
+
export * from './bckndobject-store-secret-with-sensitive-data-request.js';
|
|
241
|
+
export * from './bckndobject-store-secret-with-sensitive-data-request-for-post-call.js';
|
|
242
|
+
export * from './bckndobject-store-secret-status-response.js';
|
|
243
|
+
export * from './bckndobject-store-secret-status.js';
|
|
244
|
+
export * from './bckndobject-store-secret-deletion-response.js';
|
|
245
|
+
export * from './bckndobject-store-secret-deletion-response-message.js';
|
|
246
|
+
export * from './bckndobject-store-secret-creation-response.js';
|
|
247
|
+
export * from './bckndobject-store-secret-creation-response-message.js';
|
|
248
|
+
export * from './bckndobject-store-secret-modification-response-message.js';
|
|
249
|
+
export * from './bckndobject-store-secret-modification-response.js';
|
|
250
|
+
export * from './bcknddocker-registry-name-component.js';
|
|
251
|
+
export * from './bcknddocker-registry-secret-with-sensitive-data-request.js';
|
|
252
|
+
export * from './bcknddocker-registry-secret-status-response.js';
|
|
253
|
+
export * from './bcknddocker-registry-secret-status.js';
|
|
254
|
+
export * from './bcknddocker-registry-secret-deletion-response.js';
|
|
255
|
+
export * from './bcknddocker-registry-secret-deletion-response-message.js';
|
|
256
|
+
export * from './bcknddocker-registry-secret-creation-response.js';
|
|
257
|
+
export * from './bcknddocker-registry-secret-creation-response-message.js';
|
|
258
|
+
export * from './bcknddocker-registry-secret-modification-response-message.js';
|
|
259
|
+
export * from './bcknddocker-registry-secret-modification-response.js';
|
|
260
|
+
export * from './bcknd-generic-secret-data.js';
|
|
261
|
+
export * from './bcknd-generic-secret-post-body.js';
|
|
262
|
+
export * from './bcknd-generic-secret-patch-body.js';
|
|
263
|
+
export * from './bcknd-generic-secret-data-response.js';
|
|
264
|
+
export * from './bcknd-generic-secret-details.js';
|
|
265
|
+
export * from './bcknd-list-generic-secrets-response.js';
|
|
266
|
+
export * from './bcknd-generic-secret-labels.js';
|
|
267
|
+
export * from './bcknd-generic-secret-label.js';
|
|
268
|
+
export * from './bcknd-argo-cd-repository-data.js';
|
|
269
|
+
export * from './bcknd-argo-cd-repository-credentials.js';
|
|
270
|
+
export * from './bcknd-argo-cd-repository-data-response.js';
|
|
271
|
+
export * from './bcknd-argo-cd-repository-creation-response.js';
|
|
272
|
+
export * from './bcknd-argo-cd-repository-creation-response-message.js';
|
|
273
|
+
export * from './bcknd-argo-cd-repository-details.js';
|
|
274
|
+
export * from './bcknd-argo-cd-repository-deletion-response.js';
|
|
275
|
+
export * from './bcknd-argo-cd-repository-deletion-response-message.js';
|
|
276
|
+
export * from './bcknd-argo-cd-repository-modification-response.js';
|
|
277
|
+
export * from './bcknd-argo-cd-repository-modification-response-message.js';
|
|
278
|
+
export * from './bcknd-argo-cd-application-base-data.js';
|
|
279
|
+
export * from './bcknd-argo-cd-application-data.js';
|
|
280
|
+
export * from './bcknd-all-argo-cd-application-data.js';
|
|
281
|
+
export * from './bcknd-argo-cd-application-data-repo-name.js';
|
|
282
|
+
export * from './bcknd-argo-cd-application-status.js';
|
|
283
|
+
export * from './bcknd-argo-cd-application-deletion-response.js';
|
|
284
|
+
export * from './bcknd-argo-cd-application-deletion-response-message.js';
|
|
285
|
+
export * from './bcknd-argo-cd-application-creation-response.js';
|
|
286
|
+
export * from './bcknd-argo-cd-application-creation-response-message.js';
|
|
287
|
+
export * from './bcknd-argo-cd-application-modification-response.js';
|
|
288
|
+
export * from './bcknd-argo-cd-application-modification-response-message.js';
|
|
289
|
+
export * from './bcknd-argo-cd-application-refresh-response.js';
|
|
290
|
+
export * from './bcknd-argo-cd-application-refresh-response-message.js';
|
|
291
|
+
export * from './bcknd-service-list.js';
|
|
292
|
+
export * from './bcknd-service.js';
|
|
293
|
+
export * from './bcknd-extended-service.js';
|
|
294
|
+
export * from './bcknd-service-broker-secret.js';
|
|
295
|
+
export * from './bcknd-service-capabilities.js';
|
|
296
|
+
export * from './bcknd-service-service-catalog.js';
|
|
297
|
+
export * from './bcknd-service-service-catalog-item.js';
|
|
298
|
+
export * from './bcknd-service-service-catalog-item-extend-catalog.js';
|
|
299
|
+
export * from './bcknd-service-service-plan-item.js';
|
|
300
|
+
export * from './bcknd-service-service-plan-item-metadata.js';
|
|
301
|
+
export * from './bcknd-service-service-catalog-item-extend-credentials.js';
|
|
302
|
+
export * from './bcknd-shared-resource-group-status.js';
|
|
303
|
+
export * from './bcknd-deployment-resource-quota-response.js';
|
|
304
|
+
export * from './bcknd-deployment-usage.js';
|
|
305
|
+
export * from './bcknd-usage-resource-plan-item.js';
|
|
306
|
+
export * from './bcknd-deployment-quota-item.js';
|
|
307
|
+
export * from './bcknd-deployment-quota.js';
|
|
308
|
+
export * from './bcknd-common-resource-quota-response.js';
|
|
309
|
+
export * from './bcknd-executable-resource-quota-response.js';
|
|
310
|
+
export * from './bcknd-resource-patch-body.js';
|
|
311
|
+
export * from './bcknd-resource-patch-resource-plans.js';
|
|
312
|
+
export * from './bcknd-resource-patch-nodes.js';
|
|
313
|
+
export * from './bcknd-resource-patch-response.js';
|
|
314
|
+
export * from './bcknd-resource-get-response.js';
|
|
315
|
+
export * from './bcknd-resource-get-resource-plans.js';
|
|
316
|
+
export * from './bcknd-error-response.js';
|
|
317
|
+
export * from './bcknd-error.js';
|
|
318
318
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/client/AI_CORE_API/schema/index.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AACH,cAAc,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/client/AI_CORE_API/schema/index.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sap-ai-sdk/ai-api",
|
|
3
|
-
"version": "1.15.1-
|
|
3
|
+
"version": "1.15.1-20250701013320.0",
|
|
4
4
|
"description": "",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"keywords": [
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@sap-cloud-sdk/connectivity": "^4.0.2",
|
|
23
23
|
"@sap-cloud-sdk/util": "^4.0.2",
|
|
24
|
-
"@sap-ai-sdk/core": "^1.15.1-
|
|
24
|
+
"@sap-ai-sdk/core": "^1.15.1-20250701013320.0"
|
|
25
25
|
},
|
|
26
26
|
"scripts": {
|
|
27
27
|
"compile": "tsc",
|