@smartspace/api-client 0.1.0-dev.e6adfc1 → 0.1.0-dev.e962e30
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/generated/chat/api.d.ts +0 -2
- package/dist/generated/chat/api.js +1 -8
- package/dist/generated/chat/models/dataSourceContainer.d.ts +3 -0
- package/dist/generated/chat/models/dataSourceContainer.js +0 -6
- package/dist/generated/chat/models/dataSourcesContainerFilterModel.d.ts +11 -0
- package/dist/generated/chat/models/dataSourcesContainerFilterModel.js +8 -0
- package/dist/generated/chat/models/index.d.ts +1 -0
- package/dist/generated/chat/models/index.js +1 -0
- package/dist/generated/chat/zod.d.ts +10 -8
- package/dist/generated/chat/zod.js +14 -12
- package/dist/generated/config/api.d.ts +9 -1
- package/dist/generated/config/api.js +36 -2
- package/dist/generated/config/models/blocksBlockSet.d.ts +3 -0
- package/dist/generated/config/models/coreManagementInstallParameterDefinitionModel.d.ts +16 -0
- package/dist/generated/config/models/coreManagementInstallParameterDefinitionModel.js +2 -0
- package/dist/generated/config/models/coreManagementInstallParameterDefinitionModelDefault.d.ts +10 -0
- package/dist/generated/config/models/coreManagementInstallParameterDefinitionModelDefault.js +8 -0
- package/dist/generated/config/models/coreManagementInstallParameterModel.d.ts +15 -0
- package/dist/generated/config/models/coreManagementInstallParameterModel.js +2 -0
- package/dist/generated/config/models/coreManagementInstallParameterModelActiveValue.d.ts +10 -0
- package/dist/generated/config/models/coreManagementInstallParameterModelActiveValue.js +8 -0
- package/dist/generated/config/models/coreManagementInstallParameterModelConfiguredValue.d.ts +10 -0
- package/dist/generated/config/models/coreManagementInstallParameterModelConfiguredValue.js +8 -0
- package/dist/generated/config/models/coreManagementInstallParameterType.d.ts +12 -0
- package/dist/generated/config/models/coreManagementInstallParameterType.js +15 -0
- package/dist/generated/config/models/coreManagementUpsertInstallParameterModel.d.ts +9 -0
- package/dist/generated/config/models/coreManagementUpsertInstallParameterModel.js +8 -0
- package/dist/generated/config/models/dataSetsCreateDataSetContainer.d.ts +3 -0
- package/dist/generated/config/models/dataSetsCreateDataSetContainer.js +0 -6
- package/dist/generated/config/models/dataSourceContainer.d.ts +3 -0
- package/dist/generated/config/models/dataSourceContainer.js +0 -6
- package/dist/generated/config/models/dataSourcesContainerFilter.d.ts +11 -0
- package/dist/generated/config/models/dataSourcesContainerFilter.js +8 -0
- package/dist/generated/config/models/dataSourcesContainerFilterModel.d.ts +11 -0
- package/dist/generated/config/models/dataSourcesContainerFilterModel.js +8 -0
- package/dist/generated/config/models/dataSourcesContainerPreviewResultModel.d.ts +11 -0
- package/dist/generated/config/models/dataSourcesContainerPreviewResultModel.js +2 -0
- package/dist/generated/config/models/dataSourcesContainerPreviewResultModelSamplesItem.d.ts +9 -0
- package/dist/generated/config/models/dataSourcesContainerPreviewResultModelSamplesItem.js +8 -0
- package/dist/generated/config/models/dataSourcesContainerSchemaParams.d.ts +9 -0
- package/dist/generated/config/models/dataSourcesContainerSchemaParams.js +8 -0
- package/dist/generated/config/models/dataSourcesDataSourceContainer.d.ts +3 -0
- package/dist/generated/config/models/dataSourcesGetParams.d.ts +2 -9
- package/dist/generated/config/models/dataSourcesPreviewContainerRequest.d.ts +12 -0
- package/dist/generated/config/models/dataSourcesPreviewContainerRequest.js +2 -0
- package/dist/generated/config/models/dataSpacesGetParams.d.ts +2 -0
- package/dist/generated/config/models/index.d.ts +13 -0
- package/dist/generated/config/models/index.js +13 -0
- package/dist/generated/config/models/workSpacesGetGetParams.d.ts +2 -0
- package/dist/generated/config/zod.d.ts +115 -1
- package/dist/generated/config/zod.js +117 -20
- package/package.json +1 -1
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Generated by orval v7.13.2 🍺
|
|
3
|
+
* Do not edit manually.
|
|
4
|
+
* SmartSpace Admin API
|
|
5
|
+
* OpenAPI spec version: v1
|
|
6
|
+
*/
|
|
7
|
+
import type { DataSourcesContainerPreviewResultModelSamplesItem } from './dataSourcesContainerPreviewResultModelSamplesItem';
|
|
8
|
+
export interface DataSourcesContainerPreviewResultModel {
|
|
9
|
+
samples: DataSourcesContainerPreviewResultModelSamplesItem[];
|
|
10
|
+
total: number;
|
|
11
|
+
}
|
|
@@ -4,10 +4,13 @@
|
|
|
4
4
|
* SmartSpace Admin API
|
|
5
5
|
* OpenAPI spec version: v1
|
|
6
6
|
*/
|
|
7
|
+
import type { DataSourcesContainerFilter } from './dataSourcesContainerFilter';
|
|
7
8
|
import type { DataSourcesDataSourceContainerProperty } from './dataSourcesDataSourceContainerProperty';
|
|
8
9
|
export interface DataSourcesDataSourceContainer {
|
|
9
10
|
/** @nullable */
|
|
10
11
|
children?: DataSourcesDataSourceContainer[] | null;
|
|
12
|
+
/** @nullable */
|
|
13
|
+
filters?: DataSourcesContainerFilter[] | null;
|
|
11
14
|
name: string;
|
|
12
15
|
path: string;
|
|
13
16
|
properties: DataSourcesDataSourceContainerProperty[];
|
|
@@ -5,16 +5,9 @@
|
|
|
5
5
|
* OpenAPI spec version: v1
|
|
6
6
|
*/
|
|
7
7
|
export type DataSourcesGetParams = {
|
|
8
|
-
/**
|
|
9
|
-
* The number of data sources to retrieve.
|
|
10
|
-
*/
|
|
11
8
|
take?: number;
|
|
12
|
-
/**
|
|
13
|
-
* The number of data sources to skip.
|
|
14
|
-
*/
|
|
15
9
|
skip?: number;
|
|
16
|
-
/**
|
|
17
|
-
* The search query to filter data sources.
|
|
18
|
-
*/
|
|
19
10
|
search?: string;
|
|
11
|
+
sortBy?: string;
|
|
12
|
+
sortDirection?: string;
|
|
20
13
|
};
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Generated by orval v7.13.2 🍺
|
|
3
|
+
* Do not edit manually.
|
|
4
|
+
* SmartSpace Admin API
|
|
5
|
+
* OpenAPI spec version: v1
|
|
6
|
+
*/
|
|
7
|
+
import type { DataSourcesContainerFilterModel } from './dataSourcesContainerFilterModel';
|
|
8
|
+
export interface DataSourcesPreviewContainerRequest {
|
|
9
|
+
/** @nullable */
|
|
10
|
+
filters?: DataSourcesContainerFilterModel[] | null;
|
|
11
|
+
path: string;
|
|
12
|
+
}
|
|
@@ -64,7 +64,14 @@ export * from './configApiRunFlowRequest';
|
|
|
64
64
|
export * from './containerDataSet';
|
|
65
65
|
export * from './containersPostParams';
|
|
66
66
|
export * from './coreDeploymentEnumsDeploymentStatus';
|
|
67
|
+
export * from './coreManagementInstallParameterDefinitionModel';
|
|
68
|
+
export * from './coreManagementInstallParameterDefinitionModelDefault';
|
|
69
|
+
export * from './coreManagementInstallParameterModel';
|
|
70
|
+
export * from './coreManagementInstallParameterModelActiveValue';
|
|
71
|
+
export * from './coreManagementInstallParameterModelConfiguredValue';
|
|
72
|
+
export * from './coreManagementInstallParameterType';
|
|
67
73
|
export * from './coreManagementSmartSpaceUpgradeUpdate';
|
|
74
|
+
export * from './coreManagementUpsertInstallParameterModel';
|
|
68
75
|
export * from './createModelConfiguration';
|
|
69
76
|
export * from './dataSet';
|
|
70
77
|
export * from './dataSetItem';
|
|
@@ -86,6 +93,11 @@ export * from './dataSetsUpdateDataSet';
|
|
|
86
93
|
export * from './dataSetsUpdateDataSetBasicInfo';
|
|
87
94
|
export * from './dataSetsUpsertDataSetProperty';
|
|
88
95
|
export * from './dataSourceContainer';
|
|
96
|
+
export * from './dataSourcesContainerFilter';
|
|
97
|
+
export * from './dataSourcesContainerFilterModel';
|
|
98
|
+
export * from './dataSourcesContainerPreviewResultModel';
|
|
99
|
+
export * from './dataSourcesContainerPreviewResultModelSamplesItem';
|
|
100
|
+
export * from './dataSourcesContainerSchemaParams';
|
|
89
101
|
export * from './dataSourcesContainersParams';
|
|
90
102
|
export * from './dataSourcesCreateDataSource';
|
|
91
103
|
export * from './dataSourcesCreateDataSourceCredentials';
|
|
@@ -99,6 +111,7 @@ export * from './dataSourcesDataSourceProperty';
|
|
|
99
111
|
export * from './dataSourcesDataSourcePropertyType';
|
|
100
112
|
export * from './dataSourcesDataSourceType';
|
|
101
113
|
export * from './dataSourcesGetParams';
|
|
114
|
+
export * from './dataSourcesPreviewContainerRequest';
|
|
102
115
|
export * from './dataSourcesTestConnectionResult';
|
|
103
116
|
export * from './dataSourcesTestDataSourceConnection';
|
|
104
117
|
export * from './dataSourcesTestDataSourceConnectionCredentials';
|
|
@@ -80,7 +80,14 @@ __exportStar(require("./configApiRunFlowRequest"), exports);
|
|
|
80
80
|
__exportStar(require("./containerDataSet"), exports);
|
|
81
81
|
__exportStar(require("./containersPostParams"), exports);
|
|
82
82
|
__exportStar(require("./coreDeploymentEnumsDeploymentStatus"), exports);
|
|
83
|
+
__exportStar(require("./coreManagementInstallParameterDefinitionModel"), exports);
|
|
84
|
+
__exportStar(require("./coreManagementInstallParameterDefinitionModelDefault"), exports);
|
|
85
|
+
__exportStar(require("./coreManagementInstallParameterModel"), exports);
|
|
86
|
+
__exportStar(require("./coreManagementInstallParameterModelActiveValue"), exports);
|
|
87
|
+
__exportStar(require("./coreManagementInstallParameterModelConfiguredValue"), exports);
|
|
88
|
+
__exportStar(require("./coreManagementInstallParameterType"), exports);
|
|
83
89
|
__exportStar(require("./coreManagementSmartSpaceUpgradeUpdate"), exports);
|
|
90
|
+
__exportStar(require("./coreManagementUpsertInstallParameterModel"), exports);
|
|
84
91
|
__exportStar(require("./createModelConfiguration"), exports);
|
|
85
92
|
__exportStar(require("./dataSet"), exports);
|
|
86
93
|
__exportStar(require("./dataSetItem"), exports);
|
|
@@ -102,6 +109,11 @@ __exportStar(require("./dataSetsUpdateDataSet"), exports);
|
|
|
102
109
|
__exportStar(require("./dataSetsUpdateDataSetBasicInfo"), exports);
|
|
103
110
|
__exportStar(require("./dataSetsUpsertDataSetProperty"), exports);
|
|
104
111
|
__exportStar(require("./dataSourceContainer"), exports);
|
|
112
|
+
__exportStar(require("./dataSourcesContainerFilter"), exports);
|
|
113
|
+
__exportStar(require("./dataSourcesContainerFilterModel"), exports);
|
|
114
|
+
__exportStar(require("./dataSourcesContainerPreviewResultModel"), exports);
|
|
115
|
+
__exportStar(require("./dataSourcesContainerPreviewResultModelSamplesItem"), exports);
|
|
116
|
+
__exportStar(require("./dataSourcesContainerSchemaParams"), exports);
|
|
105
117
|
__exportStar(require("./dataSourcesContainersParams"), exports);
|
|
106
118
|
__exportStar(require("./dataSourcesCreateDataSource"), exports);
|
|
107
119
|
__exportStar(require("./dataSourcesCreateDataSourceCredentials"), exports);
|
|
@@ -115,6 +127,7 @@ __exportStar(require("./dataSourcesDataSourceProperty"), exports);
|
|
|
115
127
|
__exportStar(require("./dataSourcesDataSourcePropertyType"), exports);
|
|
116
128
|
__exportStar(require("./dataSourcesDataSourceType"), exports);
|
|
117
129
|
__exportStar(require("./dataSourcesGetParams"), exports);
|
|
130
|
+
__exportStar(require("./dataSourcesPreviewContainerRequest"), exports);
|
|
118
131
|
__exportStar(require("./dataSourcesTestConnectionResult"), exports);
|
|
119
132
|
__exportStar(require("./dataSourcesTestDataSourceConnection"), exports);
|
|
120
133
|
__exportStar(require("./dataSourcesTestDataSourceConnectionCredentials"), exports);
|
|
@@ -381,6 +381,7 @@ export declare const blockSetsGetBlockSetsResponseItem: zod.ZodObject<{
|
|
|
381
381
|
connectionId: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
382
382
|
createdByUserId: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
383
383
|
id: zod.ZodString;
|
|
384
|
+
modifiedAt: zod.ZodOptional<zod.ZodNullable<zod.ZodISODateTime>>;
|
|
384
385
|
name: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
385
386
|
sourceCodeUri: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
386
387
|
type: zod.ZodEnum<{
|
|
@@ -388,6 +389,7 @@ export declare const blockSetsGetBlockSetsResponseItem: zod.ZodObject<{
|
|
|
388
389
|
Custom: "Custom";
|
|
389
390
|
Debug: "Debug";
|
|
390
391
|
}>;
|
|
392
|
+
usedInWorkspaces: zod.ZodArray<zod.ZodString>;
|
|
391
393
|
}, zod.core.$strip>;
|
|
392
394
|
export declare const blockSetsGetBlockSetsResponse: zod.ZodArray<zod.ZodObject<{
|
|
393
395
|
blockInterfaces: zod.ZodRecord<zod.ZodString, zod.ZodRecord<zod.ZodString, zod.ZodObject<{
|
|
@@ -450,6 +452,7 @@ export declare const blockSetsGetBlockSetsResponse: zod.ZodArray<zod.ZodObject<{
|
|
|
450
452
|
connectionId: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
451
453
|
createdByUserId: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
452
454
|
id: zod.ZodString;
|
|
455
|
+
modifiedAt: zod.ZodOptional<zod.ZodNullable<zod.ZodISODateTime>>;
|
|
453
456
|
name: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
454
457
|
sourceCodeUri: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
455
458
|
type: zod.ZodEnum<{
|
|
@@ -457,7 +460,20 @@ export declare const blockSetsGetBlockSetsResponse: zod.ZodArray<zod.ZodObject<{
|
|
|
457
460
|
Custom: "Custom";
|
|
458
461
|
Debug: "Debug";
|
|
459
462
|
}>;
|
|
463
|
+
usedInWorkspaces: zod.ZodArray<zod.ZodString>;
|
|
460
464
|
}, zod.core.$strip>>;
|
|
465
|
+
/**
|
|
466
|
+
* @summary Get the saved Python source code for a deployed custom block set.
|
|
467
|
+
*/
|
|
468
|
+
export declare const blockSetsGetDeployedBlockCodeParams: zod.ZodObject<{
|
|
469
|
+
blockSetName: zod.ZodString;
|
|
470
|
+
}, zod.core.$strict>;
|
|
471
|
+
/**
|
|
472
|
+
* @summary Get the raw zip file for a deployed custom block set.
|
|
473
|
+
*/
|
|
474
|
+
export declare const blockSetsGetDeployedBlockFilesParams: zod.ZodObject<{
|
|
475
|
+
blockSetName: zod.ZodString;
|
|
476
|
+
}, zod.core.$strict>;
|
|
461
477
|
/**
|
|
462
478
|
* @summary Deletes an existing custom block set.
|
|
463
479
|
*/
|
|
@@ -650,6 +666,11 @@ export declare const containersPostResponseItem: zod.ZodObject<{
|
|
|
650
666
|
triggers: zod.ZodArray<zod.ZodObject<{
|
|
651
667
|
dataSourceContainer: zod.ZodObject<{
|
|
652
668
|
dataSourceId: zod.ZodString;
|
|
669
|
+
filters: zod.ZodOptional<zod.ZodNullable<zod.ZodArray<zod.ZodObject<{
|
|
670
|
+
operator: zod.ZodString;
|
|
671
|
+
propertyName: zod.ZodString;
|
|
672
|
+
value: zod.ZodString;
|
|
673
|
+
}, zod.core.$strip>>>>;
|
|
653
674
|
id: zod.ZodString;
|
|
654
675
|
name: zod.ZodString;
|
|
655
676
|
path: zod.ZodString;
|
|
@@ -757,6 +778,11 @@ export declare const containersPostResponse: zod.ZodArray<zod.ZodObject<{
|
|
|
757
778
|
triggers: zod.ZodArray<zod.ZodObject<{
|
|
758
779
|
dataSourceContainer: zod.ZodObject<{
|
|
759
780
|
dataSourceId: zod.ZodString;
|
|
781
|
+
filters: zod.ZodOptional<zod.ZodNullable<zod.ZodArray<zod.ZodObject<{
|
|
782
|
+
operator: zod.ZodString;
|
|
783
|
+
propertyName: zod.ZodString;
|
|
784
|
+
value: zod.ZodString;
|
|
785
|
+
}, zod.core.$strip>>>>;
|
|
760
786
|
id: zod.ZodString;
|
|
761
787
|
name: zod.ZodString;
|
|
762
788
|
path: zod.ZodString;
|
|
@@ -889,6 +915,11 @@ export declare const dataSetsPutBodyIdRegExp: RegExp;
|
|
|
889
915
|
export declare const dataSetsPutBody: zod.ZodObject<{
|
|
890
916
|
containerInfo: zod.ZodOptional<zod.ZodNullable<zod.ZodArray<zod.ZodObject<{
|
|
891
917
|
dataSourceId: zod.ZodString;
|
|
918
|
+
filters: zod.ZodOptional<zod.ZodNullable<zod.ZodArray<zod.ZodObject<{
|
|
919
|
+
operator: zod.ZodString;
|
|
920
|
+
propertyName: zod.ZodString;
|
|
921
|
+
value: zod.ZodString;
|
|
922
|
+
}, zod.core.$strict>>>>;
|
|
892
923
|
path: zod.ZodString;
|
|
893
924
|
}, zod.core.$strict>>>>;
|
|
894
925
|
description: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
@@ -1168,6 +1199,11 @@ export declare const dataSourceTypesGetAvailableContainersBody: zod.ZodObject<{
|
|
|
1168
1199
|
}, zod.core.$strict>;
|
|
1169
1200
|
export declare const dataSourceTypesGetAvailableContainersResponseItem: zod.ZodObject<{
|
|
1170
1201
|
children: zod.ZodOptional<zod.ZodNullable<zod.ZodArray<zod.ZodAny>>>;
|
|
1202
|
+
filters: zod.ZodOptional<zod.ZodNullable<zod.ZodArray<zod.ZodObject<{
|
|
1203
|
+
operator: zod.ZodString;
|
|
1204
|
+
propertyName: zod.ZodString;
|
|
1205
|
+
value: zod.ZodString;
|
|
1206
|
+
}, zod.core.$strip>>>>;
|
|
1171
1207
|
name: zod.ZodString;
|
|
1172
1208
|
path: zod.ZodString;
|
|
1173
1209
|
properties: zod.ZodArray<zod.ZodObject<{
|
|
@@ -1177,6 +1213,11 @@ export declare const dataSourceTypesGetAvailableContainersResponseItem: zod.ZodO
|
|
|
1177
1213
|
}, zod.core.$strip>;
|
|
1178
1214
|
export declare const dataSourceTypesGetAvailableContainersResponse: zod.ZodArray<zod.ZodObject<{
|
|
1179
1215
|
children: zod.ZodOptional<zod.ZodNullable<zod.ZodArray<zod.ZodAny>>>;
|
|
1216
|
+
filters: zod.ZodOptional<zod.ZodNullable<zod.ZodArray<zod.ZodObject<{
|
|
1217
|
+
operator: zod.ZodString;
|
|
1218
|
+
propertyName: zod.ZodString;
|
|
1219
|
+
value: zod.ZodString;
|
|
1220
|
+
}, zod.core.$strip>>>>;
|
|
1180
1221
|
name: zod.ZodString;
|
|
1181
1222
|
path: zod.ZodString;
|
|
1182
1223
|
properties: zod.ZodArray<zod.ZodObject<{
|
|
@@ -1198,7 +1239,7 @@ export declare const dataSourceTypesTestConnectionResponse: zod.ZodObject<{
|
|
|
1198
1239
|
statusCode: zod.ZodOptional<zod.ZodNullable<zod.ZodNumber>>;
|
|
1199
1240
|
}, zod.core.$strip>;
|
|
1200
1241
|
/**
|
|
1201
|
-
* @summary
|
|
1242
|
+
* @summary Retrieves a collection of data sources.
|
|
1202
1243
|
*/
|
|
1203
1244
|
export declare const dataSourcesGetQueryTakeDefault = 20;
|
|
1204
1245
|
export declare const dataSourcesGetQuerySkipDefault = 0;
|
|
@@ -1206,6 +1247,8 @@ export declare const dataSourcesGetQueryParams: zod.ZodObject<{
|
|
|
1206
1247
|
take: zod.ZodDefault<zod.ZodNumber>;
|
|
1207
1248
|
skip: zod.ZodOptional<zod.ZodNumber>;
|
|
1208
1249
|
search: zod.ZodOptional<zod.ZodString>;
|
|
1250
|
+
sortBy: zod.ZodOptional<zod.ZodString>;
|
|
1251
|
+
sortDirection: zod.ZodOptional<zod.ZodString>;
|
|
1209
1252
|
}, zod.core.$strict>;
|
|
1210
1253
|
export declare const dataSourcesGetResponseDataItemContainersItemDataSourceIdRegExp: RegExp;
|
|
1211
1254
|
export declare const dataSourcesGetResponseDataItemContainersItemIdRegExp: RegExp;
|
|
@@ -1214,6 +1257,11 @@ export declare const dataSourcesGetResponse: zod.ZodObject<{
|
|
|
1214
1257
|
data: zod.ZodArray<zod.ZodObject<{
|
|
1215
1258
|
containers: zod.ZodArray<zod.ZodObject<{
|
|
1216
1259
|
dataSourceId: zod.ZodString;
|
|
1260
|
+
filters: zod.ZodOptional<zod.ZodNullable<zod.ZodArray<zod.ZodObject<{
|
|
1261
|
+
operator: zod.ZodString;
|
|
1262
|
+
propertyName: zod.ZodString;
|
|
1263
|
+
value: zod.ZodString;
|
|
1264
|
+
}, zod.core.$strip>>>>;
|
|
1217
1265
|
id: zod.ZodString;
|
|
1218
1266
|
name: zod.ZodString;
|
|
1219
1267
|
path: zod.ZodString;
|
|
@@ -1269,6 +1317,11 @@ export declare const dataSourcesPostResponseIdRegExp: RegExp;
|
|
|
1269
1317
|
export declare const dataSourcesPostResponse: zod.ZodObject<{
|
|
1270
1318
|
containers: zod.ZodArray<zod.ZodObject<{
|
|
1271
1319
|
dataSourceId: zod.ZodString;
|
|
1320
|
+
filters: zod.ZodOptional<zod.ZodNullable<zod.ZodArray<zod.ZodObject<{
|
|
1321
|
+
operator: zod.ZodString;
|
|
1322
|
+
propertyName: zod.ZodString;
|
|
1323
|
+
value: zod.ZodString;
|
|
1324
|
+
}, zod.core.$strip>>>>;
|
|
1272
1325
|
id: zod.ZodString;
|
|
1273
1326
|
name: zod.ZodString;
|
|
1274
1327
|
path: zod.ZodString;
|
|
@@ -1327,16 +1380,58 @@ export declare const dataSourcesContainersResponseDataSourceIdRegExp: RegExp;
|
|
|
1327
1380
|
export declare const dataSourcesContainersResponseIdRegExp: RegExp;
|
|
1328
1381
|
export declare const dataSourcesContainersResponseItem: zod.ZodObject<{
|
|
1329
1382
|
dataSourceId: zod.ZodString;
|
|
1383
|
+
filters: zod.ZodOptional<zod.ZodNullable<zod.ZodArray<zod.ZodObject<{
|
|
1384
|
+
operator: zod.ZodString;
|
|
1385
|
+
propertyName: zod.ZodString;
|
|
1386
|
+
value: zod.ZodString;
|
|
1387
|
+
}, zod.core.$strip>>>>;
|
|
1330
1388
|
id: zod.ZodString;
|
|
1331
1389
|
name: zod.ZodString;
|
|
1332
1390
|
path: zod.ZodString;
|
|
1333
1391
|
}, zod.core.$strip>;
|
|
1334
1392
|
export declare const dataSourcesContainersResponse: zod.ZodArray<zod.ZodObject<{
|
|
1335
1393
|
dataSourceId: zod.ZodString;
|
|
1394
|
+
filters: zod.ZodOptional<zod.ZodNullable<zod.ZodArray<zod.ZodObject<{
|
|
1395
|
+
operator: zod.ZodString;
|
|
1396
|
+
propertyName: zod.ZodString;
|
|
1397
|
+
value: zod.ZodString;
|
|
1398
|
+
}, zod.core.$strip>>>>;
|
|
1336
1399
|
id: zod.ZodString;
|
|
1337
1400
|
name: zod.ZodString;
|
|
1338
1401
|
path: zod.ZodString;
|
|
1339
1402
|
}, zod.core.$strip>>;
|
|
1403
|
+
/**
|
|
1404
|
+
* @summary Runs a preview search against the data source using the supplied filters and returns
|
|
1405
|
+
a total record count without persisting any state.
|
|
1406
|
+
*/
|
|
1407
|
+
export declare const dataSourcesPreviewContainerPathDataSourceIdRegExp: RegExp;
|
|
1408
|
+
export declare const dataSourcesPreviewContainerParams: zod.ZodObject<{
|
|
1409
|
+
dataSourceId: zod.ZodString;
|
|
1410
|
+
}, zod.core.$strict>;
|
|
1411
|
+
export declare const dataSourcesPreviewContainerBody: zod.ZodObject<{
|
|
1412
|
+
filters: zod.ZodOptional<zod.ZodNullable<zod.ZodArray<zod.ZodObject<{
|
|
1413
|
+
operator: zod.ZodString;
|
|
1414
|
+
propertyName: zod.ZodString;
|
|
1415
|
+
value: zod.ZodString;
|
|
1416
|
+
}, zod.core.$strict>>>>;
|
|
1417
|
+
path: zod.ZodString;
|
|
1418
|
+
}, zod.core.$strict>;
|
|
1419
|
+
export declare const dataSourcesPreviewContainerResponse: zod.ZodObject<{
|
|
1420
|
+
samples: zod.ZodArray<zod.ZodRecord<zod.ZodString, zod.ZodAny>>;
|
|
1421
|
+
total: zod.ZodNumber;
|
|
1422
|
+
}, zod.core.$strip>;
|
|
1423
|
+
/**
|
|
1424
|
+
* @summary Returns a JSON Schema object for the container's properties, used to drive the filter editor UI.
|
|
1425
|
+
Schema shape: { type: "object", properties: { [name]: { type, title, enum? } } }
|
|
1426
|
+
containerPath is a query param (not a route segment) to avoid ASP.NET routing splits on paths containing '/'.
|
|
1427
|
+
*/
|
|
1428
|
+
export declare const dataSourcesContainerSchemaPathDataSourceIdRegExp: RegExp;
|
|
1429
|
+
export declare const dataSourcesContainerSchemaParams: zod.ZodObject<{
|
|
1430
|
+
dataSourceId: zod.ZodString;
|
|
1431
|
+
}, zod.core.$strict>;
|
|
1432
|
+
export declare const dataSourcesContainerSchemaQueryParams: zod.ZodObject<{
|
|
1433
|
+
containerPath: zod.ZodOptional<zod.ZodString>;
|
|
1434
|
+
}, zod.core.$strict>;
|
|
1340
1435
|
/**
|
|
1341
1436
|
* @summary Update the credentials for an existing data source in SmartSpace by specifying its ID.
|
|
1342
1437
|
*/
|
|
@@ -1375,6 +1470,8 @@ export declare const dataSpacesGetQueryParams: zod.ZodObject<{
|
|
|
1375
1470
|
take: zod.ZodDefault<zod.ZodNumber>;
|
|
1376
1471
|
skip: zod.ZodOptional<zod.ZodNumber>;
|
|
1377
1472
|
search: zod.ZodOptional<zod.ZodString>;
|
|
1473
|
+
sortBy: zod.ZodOptional<zod.ZodString>;
|
|
1474
|
+
sortDirection: zod.ZodOptional<zod.ZodString>;
|
|
1378
1475
|
}, zod.core.$strict>;
|
|
1379
1476
|
export declare const dataSpacesGetResponseDataItemDataSetsItemDataSpaceIdRegExp: RegExp;
|
|
1380
1477
|
export declare const dataSpacesGetResponseDataItemDataSetsItemFlowIdRegExp: RegExp;
|
|
@@ -1591,6 +1688,11 @@ export declare const dataSpacesPostDatasetBodyContainerInfoItemDataSourceIdRegEx
|
|
|
1591
1688
|
export declare const dataSpacesPostDatasetBody: zod.ZodObject<{
|
|
1592
1689
|
containerInfo: zod.ZodOptional<zod.ZodNullable<zod.ZodArray<zod.ZodObject<{
|
|
1593
1690
|
dataSourceId: zod.ZodString;
|
|
1691
|
+
filters: zod.ZodOptional<zod.ZodNullable<zod.ZodArray<zod.ZodObject<{
|
|
1692
|
+
operator: zod.ZodString;
|
|
1693
|
+
propertyName: zod.ZodString;
|
|
1694
|
+
value: zod.ZodString;
|
|
1695
|
+
}, zod.core.$strict>>>>;
|
|
1594
1696
|
path: zod.ZodString;
|
|
1595
1697
|
}, zod.core.$strict>>>>;
|
|
1596
1698
|
description: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
@@ -2659,6 +2761,8 @@ export declare const workSpacesGetGetQueryParams: zod.ZodObject<{
|
|
|
2659
2761
|
take: zod.ZodDefault<zod.ZodNumber>;
|
|
2660
2762
|
skip: zod.ZodOptional<zod.ZodNumber>;
|
|
2661
2763
|
search: zod.ZodOptional<zod.ZodString>;
|
|
2764
|
+
sortBy: zod.ZodOptional<zod.ZodString>;
|
|
2765
|
+
sortDirection: zod.ZodOptional<zod.ZodString>;
|
|
2662
2766
|
}, zod.core.$strict>;
|
|
2663
2767
|
export declare const workSpacesGetGetResponseDataItemDataSpacesItemDataSetsItemDataSpaceIdRegExpOne: RegExp;
|
|
2664
2768
|
export declare const workSpacesGetGetResponseDataItemDataSpacesItemDataSetsItemFlowActiveFlowDefinitionIdRegExpOne: RegExp;
|
|
@@ -2750,6 +2854,11 @@ export declare const workSpacesGetGetResponse: zod.ZodObject<{
|
|
|
2750
2854
|
triggers: zod.ZodArray<zod.ZodObject<{
|
|
2751
2855
|
dataSourceContainer: zod.ZodObject<{
|
|
2752
2856
|
dataSourceId: zod.ZodString;
|
|
2857
|
+
filters: zod.ZodOptional<zod.ZodNullable<zod.ZodArray<zod.ZodObject<{
|
|
2858
|
+
operator: zod.ZodString;
|
|
2859
|
+
propertyName: zod.ZodString;
|
|
2860
|
+
value: zod.ZodString;
|
|
2861
|
+
}, zod.core.$strip>>>>;
|
|
2753
2862
|
id: zod.ZodString;
|
|
2754
2863
|
name: zod.ZodString;
|
|
2755
2864
|
path: zod.ZodString;
|
|
@@ -3034,6 +3143,11 @@ export declare const workSpacesGetIdResponse: zod.ZodObject<{
|
|
|
3034
3143
|
triggers: zod.ZodArray<zod.ZodObject<{
|
|
3035
3144
|
dataSourceContainer: zod.ZodObject<{
|
|
3036
3145
|
dataSourceId: zod.ZodString;
|
|
3146
|
+
filters: zod.ZodOptional<zod.ZodNullable<zod.ZodArray<zod.ZodObject<{
|
|
3147
|
+
operator: zod.ZodString;
|
|
3148
|
+
propertyName: zod.ZodString;
|
|
3149
|
+
value: zod.ZodString;
|
|
3150
|
+
}, zod.core.$strip>>>>;
|
|
3037
3151
|
id: zod.ZodString;
|
|
3038
3152
|
name: zod.ZodString;
|
|
3039
3153
|
path: zod.ZodString;
|