@smartspace/api-client 0.1.0-main.0dd5d14 → 0.1.0-main.149a3de

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 (52) hide show
  1. package/dist/generated/chat/api.msw.js +7 -7
  2. package/dist/generated/chat/models/flowsFlowConstant.d.ts +1 -0
  3. package/dist/generated/chat/models/messagesMessageError.d.ts +2 -0
  4. package/dist/generated/chat/zod.d.ts +6 -0
  5. package/dist/generated/chat/zod.js +6 -0
  6. package/dist/generated/config/api.d.ts +19 -1
  7. package/dist/generated/config/api.js +74 -1
  8. package/dist/generated/config/api.msw.d.ts +17 -1
  9. package/dist/generated/config/api.msw.js +147 -24
  10. package/dist/generated/config/models/containerItem.d.ts +27 -0
  11. package/dist/generated/config/models/containerItem.js +8 -0
  12. package/dist/generated/config/models/dataSetsDataSet.d.ts +4 -0
  13. package/dist/generated/config/models/dataSetsGetIngestionRunsParams.d.ts +15 -0
  14. package/dist/generated/config/models/dataSetsGetIngestionRunsParams.js +8 -0
  15. package/dist/generated/config/models/dataSetsSetDataSetScoping.d.ts +12 -0
  16. package/dist/generated/config/models/dataSetsSetDataSetScoping.js +2 -0
  17. package/dist/generated/config/models/enumsActivityType.d.ts +1 -0
  18. package/dist/generated/config/models/enumsActivityType.js +1 -0
  19. package/dist/generated/config/models/enumsDataSetScopingMode.d.ts +11 -0
  20. package/dist/generated/config/models/enumsDataSetScopingMode.js +14 -0
  21. package/dist/generated/config/models/flowsFlowConstant.d.ts +1 -0
  22. package/dist/generated/config/models/index.d.ts +16 -0
  23. package/dist/generated/config/models/index.js +16 -0
  24. package/dist/generated/config/models/integrationsSmartSpaceAiContainerItemFlowRun.d.ts +2 -1
  25. package/dist/generated/config/models/integrationsSmartSpaceAiIngestionRun.d.ts +57 -0
  26. package/dist/generated/config/models/integrationsSmartSpaceAiIngestionRun.js +2 -0
  27. package/dist/generated/config/models/integrationsSmartSpaceAiIngestionRunTrigger.d.ts +11 -0
  28. package/dist/generated/config/models/integrationsSmartSpaceAiIngestionRunTrigger.js +8 -0
  29. package/dist/generated/config/models/managedSecretsCreateManagedSecret.d.ts +10 -0
  30. package/dist/generated/config/models/managedSecretsCreateManagedSecret.js +8 -0
  31. package/dist/generated/config/models/managedSecretsManagedSecret.d.ts +15 -0
  32. package/dist/generated/config/models/managedSecretsManagedSecret.js +8 -0
  33. package/dist/generated/config/models/managedSecretsUpdateManagedSecretValue.d.ts +9 -0
  34. package/dist/generated/config/models/managedSecretsUpdateManagedSecretValue.js +8 -0
  35. package/dist/generated/config/models/messagesMessageError.d.ts +2 -0
  36. package/dist/generated/config/models/pagedDataCollectionContainerItem.d.ts +11 -0
  37. package/dist/generated/config/models/pagedDataCollectionContainerItem.js +2 -0
  38. package/dist/generated/config/models/pagedDataCollectionSyncsSync.d.ts +11 -0
  39. package/dist/generated/config/models/pagedDataCollectionSyncsSync.js +2 -0
  40. package/dist/generated/config/models/pagedDataSystemCollectionsGenericICollectionIntegrationsSmartSpaceAiIngestionRun.d.ts +11 -0
  41. package/dist/generated/config/models/pagedDataSystemCollectionsGenericICollectionIntegrationsSmartSpaceAiIngestionRun.js +2 -0
  42. package/dist/generated/config/models/syncsGetItemsParams.d.ts +10 -0
  43. package/dist/generated/config/models/syncsGetItemsParams.js +8 -0
  44. package/dist/generated/config/models/syncsGetParams.d.ts +11 -0
  45. package/dist/generated/config/models/syncsGetParams.js +8 -0
  46. package/dist/generated/config/models/syncsSync.d.ts +22 -0
  47. package/dist/generated/config/models/syncsSync.js +2 -0
  48. package/dist/generated/config/models/syncsSyncDataSourceInfo.d.ts +14 -0
  49. package/dist/generated/config/models/syncsSyncDataSourceInfo.js +2 -0
  50. package/dist/generated/config/zod.d.ts +289 -1
  51. package/dist/generated/config/zod.js +241 -15
  52. package/package.json +1 -1
@@ -0,0 +1,27 @@
1
+ /**
2
+ * Generated by orval v7.13.2 🍺
3
+ * Do not edit manually.
4
+ * SmartSpace Admin API
5
+ * OpenAPI spec version: v1
6
+ */
7
+ export interface ContainerItem {
8
+ /** @nullable */
9
+ blobUri?: string | null;
10
+ /** @nullable */
11
+ bytes?: string | null;
12
+ /**
13
+ * @nullable
14
+ * @pattern ^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$
15
+ */
16
+ containerId?: string | null;
17
+ /** @pattern ^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$ */
18
+ id: string;
19
+ /** @nullable */
20
+ isJson?: boolean | null;
21
+ /** @nullable */
22
+ name?: string | null;
23
+ /** @nullable */
24
+ path?: string | null;
25
+ /** @nullable */
26
+ pending?: boolean | null;
27
+ }
@@ -0,0 +1,8 @@
1
+ "use strict";
2
+ /**
3
+ * Generated by orval v7.13.2 🍺
4
+ * Do not edit manually.
5
+ * SmartSpace Admin API
6
+ * OpenAPI spec version: v1
7
+ */
8
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -5,6 +5,7 @@
5
5
  * OpenAPI spec version: v1
6
6
  */
7
7
  import type { DataSetsDataSetProperty } from './dataSetsDataSetProperty';
8
+ import type { EnumsDataSetScopingMode } from './enumsDataSetScopingMode';
8
9
  export interface DataSetsDataSet {
9
10
  createdAt: string;
10
11
  createdByUserId: string;
@@ -26,6 +27,9 @@ export interface DataSetsDataSet {
26
27
  modifiedByUserId: string;
27
28
  name: string;
28
29
  properties: DataSetsDataSetProperty[];
30
+ scopingMode: EnumsDataSetScopingMode;
31
+ /** @nullable */
32
+ subjectPath?: string | null;
29
33
  /**
30
34
  * @nullable
31
35
  * @pattern ^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$
@@ -0,0 +1,15 @@
1
+ /**
2
+ * Generated by orval v7.13.2 🍺
3
+ * Do not edit manually.
4
+ * SmartSpace Admin API
5
+ * OpenAPI spec version: v1
6
+ */
7
+ export type DataSetsGetIngestionRunsParams = {
8
+ skip?: number;
9
+ take?: number;
10
+ trigger?: string;
11
+ /**
12
+ * @pattern ^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$
13
+ */
14
+ itemId?: string;
15
+ };
@@ -0,0 +1,8 @@
1
+ "use strict";
2
+ /**
3
+ * Generated by orval v7.13.2 🍺
4
+ * Do not edit manually.
5
+ * SmartSpace Admin API
6
+ * OpenAPI spec version: v1
7
+ */
8
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -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 { EnumsDataSetScopingMode } from './enumsDataSetScopingMode';
8
+ export interface DataSetsSetDataSetScoping {
9
+ mode: EnumsDataSetScopingMode;
10
+ /** @nullable */
11
+ subjectPath?: string | null;
12
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -11,4 +11,5 @@ export declare const EnumsActivityType: {
11
11
  readonly Updated: "Updated";
12
12
  readonly Read: "Read";
13
13
  readonly Chat: "Chat";
14
+ readonly Resolved: "Resolved";
14
15
  };
@@ -14,4 +14,5 @@ exports.EnumsActivityType = {
14
14
  Updated: 'Updated',
15
15
  Read: 'Read',
16
16
  Chat: 'Chat',
17
+ Resolved: 'Resolved',
17
18
  };
@@ -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
+ export type EnumsDataSetScopingMode = typeof EnumsDataSetScopingMode[keyof typeof EnumsDataSetScopingMode];
8
+ export declare const EnumsDataSetScopingMode: {
9
+ readonly Unrestricted: "Unrestricted";
10
+ readonly PerSubject: "PerSubject";
11
+ };
@@ -0,0 +1,14 @@
1
+ "use strict";
2
+ /**
3
+ * Generated by orval v7.13.2 🍺
4
+ * Do not edit manually.
5
+ * SmartSpace Admin API
6
+ * OpenAPI spec version: v1
7
+ */
8
+ Object.defineProperty(exports, "__esModule", { value: true });
9
+ exports.EnumsDataSetScopingMode = void 0;
10
+ // eslint-disable-next-line @typescript-eslint/no-redeclare
11
+ exports.EnumsDataSetScopingMode = {
12
+ Unrestricted: 'Unrestricted',
13
+ PerSubject: 'PerSubject',
14
+ };
@@ -6,6 +6,7 @@
6
6
  */
7
7
  import type { FlowsFlowConstantValue } from './flowsFlowConstantValue';
8
8
  export interface FlowsFlowConstant {
9
+ secret: boolean;
9
10
  /** @nullable */
10
11
  value?: FlowsFlowConstantValue;
11
12
  }
@@ -64,6 +64,7 @@ export * from './blocksStateInterfaceMetadata';
64
64
  export * from './blocksUsedInWorkspaceRef';
65
65
  export * from './configApiRunFlowRequest';
66
66
  export * from './containerDataSet';
67
+ export * from './containerItem';
67
68
  export * from './containersPostParams';
68
69
  export * from './coreDeploymentEnumsDeploymentStatus';
69
70
  export * from './coreManagementInstallParameterDefinitionModel';
@@ -89,8 +90,10 @@ export * from './dataSetsCreateDataSetContainer';
89
90
  export * from './dataSetsDataSet';
90
91
  export * from './dataSetsDataSetProperty';
91
92
  export * from './dataSetsGetContainerItemsRunHistoryParams';
93
+ export * from './dataSetsGetIngestionRunsParams';
92
94
  export * from './dataSetsGetItemsParams';
93
95
  export * from './dataSetsGetParams';
96
+ export * from './dataSetsSetDataSetScoping';
94
97
  export * from './dataSetsUpdateDataSet';
95
98
  export * from './dataSetsUpdateDataSetBasicInfo';
96
99
  export * from './dataSetsUpsertDataSetProperty';
@@ -144,6 +147,7 @@ export * from './enumsActivityType';
144
147
  export * from './enumsAppPrincipalType';
145
148
  export * from './enumsBlockScope';
146
149
  export * from './enumsBlockType';
150
+ export * from './enumsDataSetScopingMode';
147
151
  export * from './enumsDataSourceCredentialType';
148
152
  export * from './enumsFlowTriggerType';
149
153
  export * from './enumsFlowVariableAccess';
@@ -224,7 +228,12 @@ export * from './integrationsSmartSpaceAiFlowPinRef';
224
228
  export * from './integrationsSmartSpaceAiFlowValueModel';
225
229
  export * from './integrationsSmartSpaceAiFlowValueModelChannels';
226
230
  export * from './integrationsSmartSpaceAiFunctionExecutionDebugModel';
231
+ export * from './integrationsSmartSpaceAiIngestionRun';
232
+ export * from './integrationsSmartSpaceAiIngestionRunTrigger';
227
233
  export * from './integrationsSmartSpaceAiSdkBlockRef';
234
+ export * from './managedSecretsCreateManagedSecret';
235
+ export * from './managedSecretsManagedSecret';
236
+ export * from './managedSecretsUpdateManagedSecretValue';
228
237
  export * from './messageThreadMessageThreadSummary';
229
238
  export * from './messageThreadsGetStepExecutionsParams';
230
239
  export * from './messageThreadsGetWorkspaceExecutionsParams';
@@ -258,11 +267,13 @@ export * from './pagedDataCollectionAccessAccessWorkSpace';
258
267
  export * from './pagedDataCollectionActivitiesActivityWorkSpace';
259
268
  export * from './pagedDataCollectionAiModelSummary';
260
269
  export * from './pagedDataCollectionAzureADGroup';
270
+ export * from './pagedDataCollectionContainerItem';
261
271
  export * from './pagedDataCollectionDataSetsDataSet';
262
272
  export * from './pagedDataCollectionDataSourcesDataSource';
263
273
  export * from './pagedDataCollectionDataSpacesDataSpace';
264
274
  export * from './pagedDataCollectionFilesIngestedBlob';
265
275
  export * from './pagedDataCollectionMessageThreadMessageThreadSummary';
276
+ export * from './pagedDataCollectionSyncsSync';
266
277
  export * from './pagedDataCollectionUsersAppAccessUser';
267
278
  export * from './pagedDataCollectionUsersAppUserDetail';
268
279
  export * from './pagedDataCollectionUsersAppUserSearchResult';
@@ -271,6 +282,7 @@ export * from './pagedDataCollectionWorkSpaceTemplatesTemplate';
271
282
  export * from './pagedDataCollectionWorkSpacesWorkSpace';
272
283
  export * from './pagedDataSystemCollectionsGenericICollectionDataSetItem';
273
284
  export * from './pagedDataSystemCollectionsGenericICollectionIntegrationsSmartSpaceAiContainerItemRunHistory';
285
+ export * from './pagedDataSystemCollectionsGenericICollectionIntegrationsSmartSpaceAiIngestionRun';
274
286
  export * from './reportingDuration';
275
287
  export * from './reportingGetRequestsParams';
276
288
  export * from './reportingGetTokensParams';
@@ -278,6 +290,10 @@ export * from './reportingReportDefinitionSystemDateTime';
278
290
  export * from './reportingReportSeries';
279
291
  export * from './reportingSplit';
280
292
  export * from './sandBoxGetThreadMessagesParams';
293
+ export * from './syncsGetItemsParams';
294
+ export * from './syncsGetParams';
295
+ export * from './syncsSync';
296
+ export * from './syncsSyncDataSourceInfo';
281
297
  export * from './usersAdminPermissionParams';
282
298
  export * from './usersAppAccessUser';
283
299
  export * from './usersAppRole';
@@ -80,6 +80,7 @@ __exportStar(require("./blocksStateInterfaceMetadata"), exports);
80
80
  __exportStar(require("./blocksUsedInWorkspaceRef"), exports);
81
81
  __exportStar(require("./configApiRunFlowRequest"), exports);
82
82
  __exportStar(require("./containerDataSet"), exports);
83
+ __exportStar(require("./containerItem"), exports);
83
84
  __exportStar(require("./containersPostParams"), exports);
84
85
  __exportStar(require("./coreDeploymentEnumsDeploymentStatus"), exports);
85
86
  __exportStar(require("./coreManagementInstallParameterDefinitionModel"), exports);
@@ -105,8 +106,10 @@ __exportStar(require("./dataSetsCreateDataSetContainer"), exports);
105
106
  __exportStar(require("./dataSetsDataSet"), exports);
106
107
  __exportStar(require("./dataSetsDataSetProperty"), exports);
107
108
  __exportStar(require("./dataSetsGetContainerItemsRunHistoryParams"), exports);
109
+ __exportStar(require("./dataSetsGetIngestionRunsParams"), exports);
108
110
  __exportStar(require("./dataSetsGetItemsParams"), exports);
109
111
  __exportStar(require("./dataSetsGetParams"), exports);
112
+ __exportStar(require("./dataSetsSetDataSetScoping"), exports);
110
113
  __exportStar(require("./dataSetsUpdateDataSet"), exports);
111
114
  __exportStar(require("./dataSetsUpdateDataSetBasicInfo"), exports);
112
115
  __exportStar(require("./dataSetsUpsertDataSetProperty"), exports);
@@ -160,6 +163,7 @@ __exportStar(require("./enumsActivityType"), exports);
160
163
  __exportStar(require("./enumsAppPrincipalType"), exports);
161
164
  __exportStar(require("./enumsBlockScope"), exports);
162
165
  __exportStar(require("./enumsBlockType"), exports);
166
+ __exportStar(require("./enumsDataSetScopingMode"), exports);
163
167
  __exportStar(require("./enumsDataSourceCredentialType"), exports);
164
168
  __exportStar(require("./enumsFlowTriggerType"), exports);
165
169
  __exportStar(require("./enumsFlowVariableAccess"), exports);
@@ -240,7 +244,12 @@ __exportStar(require("./integrationsSmartSpaceAiFlowPinRef"), exports);
240
244
  __exportStar(require("./integrationsSmartSpaceAiFlowValueModel"), exports);
241
245
  __exportStar(require("./integrationsSmartSpaceAiFlowValueModelChannels"), exports);
242
246
  __exportStar(require("./integrationsSmartSpaceAiFunctionExecutionDebugModel"), exports);
247
+ __exportStar(require("./integrationsSmartSpaceAiIngestionRun"), exports);
248
+ __exportStar(require("./integrationsSmartSpaceAiIngestionRunTrigger"), exports);
243
249
  __exportStar(require("./integrationsSmartSpaceAiSdkBlockRef"), exports);
250
+ __exportStar(require("./managedSecretsCreateManagedSecret"), exports);
251
+ __exportStar(require("./managedSecretsManagedSecret"), exports);
252
+ __exportStar(require("./managedSecretsUpdateManagedSecretValue"), exports);
244
253
  __exportStar(require("./messageThreadMessageThreadSummary"), exports);
245
254
  __exportStar(require("./messageThreadsGetStepExecutionsParams"), exports);
246
255
  __exportStar(require("./messageThreadsGetWorkspaceExecutionsParams"), exports);
@@ -274,11 +283,13 @@ __exportStar(require("./pagedDataCollectionAccessAccessWorkSpace"), exports);
274
283
  __exportStar(require("./pagedDataCollectionActivitiesActivityWorkSpace"), exports);
275
284
  __exportStar(require("./pagedDataCollectionAiModelSummary"), exports);
276
285
  __exportStar(require("./pagedDataCollectionAzureADGroup"), exports);
286
+ __exportStar(require("./pagedDataCollectionContainerItem"), exports);
277
287
  __exportStar(require("./pagedDataCollectionDataSetsDataSet"), exports);
278
288
  __exportStar(require("./pagedDataCollectionDataSourcesDataSource"), exports);
279
289
  __exportStar(require("./pagedDataCollectionDataSpacesDataSpace"), exports);
280
290
  __exportStar(require("./pagedDataCollectionFilesIngestedBlob"), exports);
281
291
  __exportStar(require("./pagedDataCollectionMessageThreadMessageThreadSummary"), exports);
292
+ __exportStar(require("./pagedDataCollectionSyncsSync"), exports);
282
293
  __exportStar(require("./pagedDataCollectionUsersAppAccessUser"), exports);
283
294
  __exportStar(require("./pagedDataCollectionUsersAppUserDetail"), exports);
284
295
  __exportStar(require("./pagedDataCollectionUsersAppUserSearchResult"), exports);
@@ -287,6 +298,7 @@ __exportStar(require("./pagedDataCollectionWorkSpaceTemplatesTemplate"), exports
287
298
  __exportStar(require("./pagedDataCollectionWorkSpacesWorkSpace"), exports);
288
299
  __exportStar(require("./pagedDataSystemCollectionsGenericICollectionDataSetItem"), exports);
289
300
  __exportStar(require("./pagedDataSystemCollectionsGenericICollectionIntegrationsSmartSpaceAiContainerItemRunHistory"), exports);
301
+ __exportStar(require("./pagedDataSystemCollectionsGenericICollectionIntegrationsSmartSpaceAiIngestionRun"), exports);
290
302
  __exportStar(require("./reportingDuration"), exports);
291
303
  __exportStar(require("./reportingGetRequestsParams"), exports);
292
304
  __exportStar(require("./reportingGetTokensParams"), exports);
@@ -294,6 +306,10 @@ __exportStar(require("./reportingReportDefinitionSystemDateTime"), exports);
294
306
  __exportStar(require("./reportingReportSeries"), exports);
295
307
  __exportStar(require("./reportingSplit"), exports);
296
308
  __exportStar(require("./sandBoxGetThreadMessagesParams"), exports);
309
+ __exportStar(require("./syncsGetItemsParams"), exports);
310
+ __exportStar(require("./syncsGetParams"), exports);
311
+ __exportStar(require("./syncsSync"), exports);
312
+ __exportStar(require("./syncsSyncDataSourceInfo"), exports);
297
313
  __exportStar(require("./usersAdminPermissionParams"), exports);
298
314
  __exportStar(require("./usersAppAccessUser"), exports);
299
315
  __exportStar(require("./usersAppRole"), exports);
@@ -11,6 +11,7 @@ export interface IntegrationsSmartSpaceAiContainerItemFlowRun {
11
11
  finishedAt?: string | null;
12
12
  /** @pattern ^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$ */
13
13
  flowRunId: string;
14
- runAt: string;
14
+ /** @nullable */
15
+ runAt?: string | null;
15
16
  status: string;
16
17
  }
@@ -0,0 +1,57 @@
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 { IntegrationsSmartSpaceAiContainerItemFlowRunError } from './integrationsSmartSpaceAiContainerItemFlowRunError';
8
+ import type { IntegrationsSmartSpaceAiIngestionRunTrigger } from './integrationsSmartSpaceAiIngestionRunTrigger';
9
+ export interface IntegrationsSmartSpaceAiIngestionRun {
10
+ /**
11
+ * @nullable
12
+ * @pattern ^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$
13
+ */
14
+ causedBy?: string | null;
15
+ /**
16
+ * @nullable
17
+ * @pattern ^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$
18
+ */
19
+ containerId?: string | null;
20
+ /** @nullable */
21
+ createdAt?: string | null;
22
+ /**
23
+ * @nullable
24
+ * @pattern ^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$
25
+ */
26
+ dataSetId?: string | null;
27
+ /**
28
+ * @nullable
29
+ * @pattern ^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$
30
+ */
31
+ dataSetVersion?: string | null;
32
+ errors: IntegrationsSmartSpaceAiContainerItemFlowRunError[];
33
+ /** @nullable */
34
+ finishedAt?: string | null;
35
+ /** @pattern ^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$ */
36
+ flowRunId: string;
37
+ /**
38
+ * @nullable
39
+ * @pattern ^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$
40
+ */
41
+ itemId?: string | null;
42
+ /** @nullable */
43
+ itemName?: string | null;
44
+ /** @nullable */
45
+ itemPath?: string | null;
46
+ /** @nullable */
47
+ itemVersion?: string | null;
48
+ /**
49
+ * @nullable
50
+ * @pattern ^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$
51
+ */
52
+ retryOf?: string | null;
53
+ /** @nullable */
54
+ runAt?: string | null;
55
+ status: string;
56
+ trigger: IntegrationsSmartSpaceAiIngestionRunTrigger;
57
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -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
+ export interface IntegrationsSmartSpaceAiIngestionRunTrigger {
8
+ kind: string;
9
+ /** @nullable */
10
+ principal?: string | null;
11
+ }
@@ -0,0 +1,8 @@
1
+ "use strict";
2
+ /**
3
+ * Generated by orval v7.13.2 🍺
4
+ * Do not edit manually.
5
+ * SmartSpace Admin API
6
+ * OpenAPI spec version: v1
7
+ */
8
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,10 @@
1
+ /**
2
+ * Generated by orval v7.13.2 🍺
3
+ * Do not edit manually.
4
+ * SmartSpace Admin API
5
+ * OpenAPI spec version: v1
6
+ */
7
+ export interface ManagedSecretsCreateManagedSecret {
8
+ name: string;
9
+ value: string;
10
+ }
@@ -0,0 +1,8 @@
1
+ "use strict";
2
+ /**
3
+ * Generated by orval v7.13.2 🍺
4
+ * Do not edit manually.
5
+ * SmartSpace Admin API
6
+ * OpenAPI spec version: v1
7
+ */
8
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,15 @@
1
+ /**
2
+ * Generated by orval v7.13.2 🍺
3
+ * Do not edit manually.
4
+ * SmartSpace Admin API
5
+ * OpenAPI spec version: v1
6
+ */
7
+ export interface ManagedSecretsManagedSecret {
8
+ createdAt: string;
9
+ createdByUserId: string;
10
+ /** @pattern ^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$ */
11
+ id: string;
12
+ modifiedAt: string;
13
+ modifiedByUserId: string;
14
+ name: string;
15
+ }
@@ -0,0 +1,8 @@
1
+ "use strict";
2
+ /**
3
+ * Generated by orval v7.13.2 🍺
4
+ * Do not edit manually.
5
+ * SmartSpace Admin API
6
+ * OpenAPI spec version: v1
7
+ */
8
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,9 @@
1
+ /**
2
+ * Generated by orval v7.13.2 🍺
3
+ * Do not edit manually.
4
+ * SmartSpace Admin API
5
+ * OpenAPI spec version: v1
6
+ */
7
+ export interface ManagedSecretsUpdateManagedSecretValue {
8
+ value: string;
9
+ }
@@ -0,0 +1,8 @@
1
+ "use strict";
2
+ /**
3
+ * Generated by orval v7.13.2 🍺
4
+ * Do not edit manually.
5
+ * SmartSpace Admin API
6
+ * OpenAPI spec version: v1
7
+ */
8
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -12,5 +12,7 @@ export interface MessagesMessageError {
12
12
  /** @nullable */
13
13
  data?: MessagesMessageErrorData;
14
14
  /** @nullable */
15
+ errorCode?: string | null;
16
+ /** @nullable */
15
17
  message?: string | null;
16
18
  }
@@ -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 { ContainerItem } from './containerItem';
8
+ export interface PagedDataCollectionContainerItem {
9
+ data: ContainerItem[];
10
+ total: number;
11
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -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 { SyncsSync } from './syncsSync';
8
+ export interface PagedDataCollectionSyncsSync {
9
+ data: SyncsSync[];
10
+ total: number;
11
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -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 { IntegrationsSmartSpaceAiIngestionRun } from './integrationsSmartSpaceAiIngestionRun';
8
+ export interface PagedDataSystemCollectionsGenericICollectionIntegrationsSmartSpaceAiIngestionRun {
9
+ data: IntegrationsSmartSpaceAiIngestionRun[];
10
+ total: number;
11
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,10 @@
1
+ /**
2
+ * Generated by orval v7.13.2 🍺
3
+ * Do not edit manually.
4
+ * SmartSpace Admin API
5
+ * OpenAPI spec version: v1
6
+ */
7
+ export type SyncsGetItemsParams = {
8
+ skip?: number;
9
+ take?: number;
10
+ };
@@ -0,0 +1,8 @@
1
+ "use strict";
2
+ /**
3
+ * Generated by orval v7.13.2 🍺
4
+ * Do not edit manually.
5
+ * SmartSpace Admin API
6
+ * OpenAPI spec version: v1
7
+ */
8
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -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
+ export type SyncsGetParams = {
8
+ take?: number;
9
+ skip?: number;
10
+ search?: string;
11
+ };
@@ -0,0 +1,8 @@
1
+ "use strict";
2
+ /**
3
+ * Generated by orval v7.13.2 🍺
4
+ * Do not edit manually.
5
+ * SmartSpace Admin API
6
+ * OpenAPI spec version: v1
7
+ */
8
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,22 @@
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 { ContainerDataSet } from './containerDataSet';
8
+ import type { SyncsSyncDataSourceInfo } from './syncsSyncDataSourceInfo';
9
+ export interface SyncsSync {
10
+ dataSets: ContainerDataSet[];
11
+ dataSource: SyncsSyncDataSourceInfo;
12
+ /** @nullable */
13
+ filters?: string | null;
14
+ /** @nullable */
15
+ highwaterMark?: string | null;
16
+ /** @pattern ^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$ */
17
+ id: string;
18
+ name: string;
19
+ path: string;
20
+ /** @nullable */
21
+ statusMessage?: string | null;
22
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,14 @@
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 { EnumsDataSourceCredentialType } from './enumsDataSourceCredentialType';
8
+ export interface SyncsSyncDataSourceInfo {
9
+ /** @pattern ^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$ */
10
+ id: string;
11
+ isSyncing: boolean;
12
+ name: string;
13
+ sourceType: EnumsDataSourceCredentialType;
14
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });