@smartspace/api-client 0.1.0-main.53c14cc → 0.1.0-main.5930cc2
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.msw.d.ts +74 -0
- package/dist/generated/chat/api.msw.js +618 -0
- 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 -0
- package/dist/generated/chat/zod.js +10 -0
- package/dist/generated/config/api.d.ts +27 -1
- package/dist/generated/config/api.js +121 -1
- package/dist/generated/config/api.msw.d.ts +253 -0
- package/dist/generated/config/api.msw.js +2441 -0
- package/dist/generated/config/models/blocksBlockSet.d.ts +4 -0
- package/dist/generated/config/models/blocksGetBlocksParams.d.ts +5 -0
- package/dist/generated/config/models/blocksRenameBlockSetRequest.d.ts +9 -0
- package/dist/generated/config/models/blocksRenameBlockSetRequest.js +8 -0
- package/dist/generated/config/models/blocksUsedInWorkspaceRef.d.ts +11 -0
- package/dist/generated/config/models/blocksUsedInWorkspaceRef.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/dataSourcesPreviewContainerRequest.d.ts +12 -0
- package/dist/generated/config/models/dataSourcesPreviewContainerRequest.js +2 -0
- package/dist/generated/config/models/draftsDraft.d.ts +17 -0
- package/dist/generated/config/models/draftsDraft.js +2 -0
- package/dist/generated/config/models/draftsDraftBlockInterfaces.d.ts +12 -0
- package/dist/generated/config/models/draftsDraftBlockInterfaces.js +2 -0
- package/dist/generated/config/models/draftsPublishDraftRequest.d.ts +11 -0
- package/dist/generated/config/models/draftsPublishDraftRequest.js +8 -0
- package/dist/generated/config/models/draftsPublishDraftResponse.d.ts +13 -0
- package/dist/generated/config/models/draftsPublishDraftResponse.js +2 -0
- package/dist/generated/config/models/draftsPublishedBlockRef.d.ts +10 -0
- package/dist/generated/config/models/draftsPublishedBlockRef.js +8 -0
- package/dist/generated/config/models/draftsSaveDraftRequest.d.ts +11 -0
- package/dist/generated/config/models/draftsSaveDraftRequest.js +8 -0
- package/dist/generated/config/models/draftsSaveDraftResponse.d.ts +13 -0
- package/dist/generated/config/models/draftsSaveDraftResponse.js +2 -0
- package/dist/generated/config/models/draftsSaveDraftResponseBlockInterfaces.d.ts +12 -0
- package/dist/generated/config/models/draftsSaveDraftResponseBlockInterfaces.js +2 -0
- package/dist/generated/config/models/draftsToggleDraftRequest.d.ts +9 -0
- package/dist/generated/config/models/draftsToggleDraftRequest.js +8 -0
- package/dist/generated/config/models/enumsPermissions.d.ts +2 -13
- package/dist/generated/config/models/enumsPermissions.js +0 -20
- package/dist/generated/config/models/enumsPermissionsItem.d.ts +18 -0
- package/dist/generated/config/models/enumsPermissionsItem.js +21 -0
- package/dist/generated/config/models/flowsFlowRun.d.ts +2 -0
- package/dist/generated/config/models/index.d.ts +20 -0
- package/dist/generated/config/models/index.js +20 -0
- package/dist/generated/config/models/integrationsSmartSpaceAiBlockSourceResponse.d.ts +11 -0
- package/dist/generated/config/models/integrationsSmartSpaceAiBlockSourceResponse.js +8 -0
- package/dist/generated/config/models/integrationsSmartSpaceAiSdkBlockRef.d.ts +10 -0
- package/dist/generated/config/models/integrationsSmartSpaceAiSdkBlockRef.js +8 -0
- package/dist/generated/config/zod.d.ts +506 -16
- package/dist/generated/config/zod.js +364 -21
- package/dist/mocks.d.ts +2 -0
- package/dist/mocks.js +42 -0
- package/package.json +24 -2
|
@@ -6,6 +6,7 @@
|
|
|
6
6
|
*/
|
|
7
7
|
import type { BlocksBlockSetBlockInterfaces } from './blocksBlockSetBlockInterfaces';
|
|
8
8
|
import type { EnumsBlockType } from './enumsBlockType';
|
|
9
|
+
import type { BlocksUsedInWorkspaceRef } from './blocksUsedInWorkspaceRef';
|
|
9
10
|
export interface BlocksBlockSet {
|
|
10
11
|
blockInterfaces: BlocksBlockSetBlockInterfaces;
|
|
11
12
|
/** @nullable */
|
|
@@ -15,8 +16,11 @@ export interface BlocksBlockSet {
|
|
|
15
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}$ */
|
|
16
17
|
id: string;
|
|
17
18
|
/** @nullable */
|
|
19
|
+
modifiedAt?: string | null;
|
|
20
|
+
/** @nullable */
|
|
18
21
|
name?: string | null;
|
|
19
22
|
/** @nullable */
|
|
20
23
|
sourceCodeUri?: string | null;
|
|
21
24
|
type: EnumsBlockType;
|
|
25
|
+
usedInWorkspaces: BlocksUsedInWorkspaceRef[];
|
|
22
26
|
}
|
|
@@ -9,4 +9,9 @@ export type BlocksGetBlocksParams = {
|
|
|
9
9
|
* A list of block types to filter by.
|
|
10
10
|
*/
|
|
11
11
|
types?: string[];
|
|
12
|
+
/**
|
|
13
|
+
* Flow-run user for draft resolution (ADR-0002). Only honoured when the
|
|
14
|
+
caller is a service principal (ssaiKey); ignored for user tokens.
|
|
15
|
+
*/
|
|
16
|
+
onBehalfOfUserId?: string;
|
|
12
17
|
};
|
|
@@ -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 BlocksUsedInWorkspaceRef {
|
|
8
|
+
/** @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}$ */
|
|
9
|
+
id: string;
|
|
10
|
+
name: string;
|
|
11
|
+
}
|
|
@@ -4,8 +4,11 @@
|
|
|
4
4
|
* SmartSpace Admin API
|
|
5
5
|
* OpenAPI spec version: v1
|
|
6
6
|
*/
|
|
7
|
+
import type { DataSourcesContainerFilterModel } from './dataSourcesContainerFilterModel';
|
|
7
8
|
export interface DataSetsCreateDataSetContainer {
|
|
8
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}$ */
|
|
9
10
|
dataSourceId: string;
|
|
11
|
+
/** @nullable */
|
|
12
|
+
filters?: DataSourcesContainerFilterModel[] | null;
|
|
10
13
|
path: string;
|
|
11
14
|
}
|
|
@@ -4,9 +4,12 @@
|
|
|
4
4
|
* SmartSpace Admin API
|
|
5
5
|
* OpenAPI spec version: v1
|
|
6
6
|
*/
|
|
7
|
+
import type { DataSourcesContainerFilterModel } from './dataSourcesContainerFilterModel';
|
|
7
8
|
export interface DataSourceContainer {
|
|
8
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}$ */
|
|
9
10
|
dataSourceId: string;
|
|
11
|
+
/** @nullable */
|
|
12
|
+
filters?: DataSourcesContainerFilterModel[] | null;
|
|
10
13
|
/** @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
14
|
id: string;
|
|
12
15
|
name: string;
|
|
@@ -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[];
|
|
@@ -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
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
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 { DraftsDraftBlockInterfaces } from './draftsDraftBlockInterfaces';
|
|
8
|
+
export interface DraftsDraft {
|
|
9
|
+
blockInterfaces: DraftsDraftBlockInterfaces;
|
|
10
|
+
isActive: boolean;
|
|
11
|
+
modifiedAt: string;
|
|
12
|
+
name: string;
|
|
13
|
+
/** @nullable */
|
|
14
|
+
parseError?: string | null;
|
|
15
|
+
rowVersion: string;
|
|
16
|
+
sourceText: string;
|
|
17
|
+
}
|
|
@@ -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 { BlocksBlockInterface } from './blocksBlockInterface';
|
|
8
|
+
export type DraftsDraftBlockInterfaces = {
|
|
9
|
+
[key: string]: {
|
|
10
|
+
[key: string]: BlocksBlockInterface;
|
|
11
|
+
};
|
|
12
|
+
};
|
|
@@ -0,0 +1,13 @@
|
|
|
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 { DraftsPublishedBlockRef } from './draftsPublishedBlockRef';
|
|
8
|
+
export interface DraftsPublishDraftResponse {
|
|
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
|
+
blockSetId: string;
|
|
11
|
+
blocks: DraftsPublishedBlockRef[];
|
|
12
|
+
name: string;
|
|
13
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
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 { DraftsSaveDraftResponseBlockInterfaces } from './draftsSaveDraftResponseBlockInterfaces';
|
|
8
|
+
export interface DraftsSaveDraftResponse {
|
|
9
|
+
blockInterfaces: DraftsSaveDraftResponseBlockInterfaces;
|
|
10
|
+
/** @nullable */
|
|
11
|
+
parseError?: string | null;
|
|
12
|
+
rowVersion: string;
|
|
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 { BlocksBlockInterface } from './blocksBlockInterface';
|
|
8
|
+
export type DraftsSaveDraftResponseBlockInterfaces = {
|
|
9
|
+
[key: string]: {
|
|
10
|
+
[key: string]: BlocksBlockInterface;
|
|
11
|
+
};
|
|
12
|
+
};
|
|
@@ -4,16 +4,5 @@
|
|
|
4
4
|
* SmartSpace Admin API
|
|
5
5
|
* OpenAPI spec version: v1
|
|
6
6
|
*/
|
|
7
|
-
|
|
8
|
-
export
|
|
9
|
-
readonly None: "None";
|
|
10
|
-
readonly WorkspaceCreate: "WorkspaceCreate";
|
|
11
|
-
readonly WorkspaceEdit: "WorkspaceEdit";
|
|
12
|
-
readonly WorkspaceDelete: "WorkspaceDelete";
|
|
13
|
-
readonly DataSpaceCreate: "DataSpaceCreate";
|
|
14
|
-
readonly DataSpaceEdit: "DataSpaceEdit";
|
|
15
|
-
readonly DataSpaceDelete: "DataSpaceDelete";
|
|
16
|
-
readonly ConnectorCreate: "ConnectorCreate";
|
|
17
|
-
readonly ConnectorEdit: "ConnectorEdit";
|
|
18
|
-
readonly ConnectorDelete: "ConnectorDelete";
|
|
19
|
-
};
|
|
7
|
+
import type { EnumsPermissionsItem } from './enumsPermissionsItem';
|
|
8
|
+
export type EnumsPermissions = EnumsPermissionsItem[];
|
|
@@ -1,22 +1,2 @@
|
|
|
1
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
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9
|
-
exports.EnumsPermissions = void 0;
|
|
10
|
-
// eslint-disable-next-line @typescript-eslint/no-redeclare
|
|
11
|
-
exports.EnumsPermissions = {
|
|
12
|
-
None: 'None',
|
|
13
|
-
WorkspaceCreate: 'WorkspaceCreate',
|
|
14
|
-
WorkspaceEdit: 'WorkspaceEdit',
|
|
15
|
-
WorkspaceDelete: 'WorkspaceDelete',
|
|
16
|
-
DataSpaceCreate: 'DataSpaceCreate',
|
|
17
|
-
DataSpaceEdit: 'DataSpaceEdit',
|
|
18
|
-
DataSpaceDelete: 'DataSpaceDelete',
|
|
19
|
-
ConnectorCreate: 'ConnectorCreate',
|
|
20
|
-
ConnectorEdit: 'ConnectorEdit',
|
|
21
|
-
ConnectorDelete: 'ConnectorDelete',
|
|
22
|
-
};
|
|
@@ -0,0 +1,18 @@
|
|
|
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 EnumsPermissionsItem = typeof EnumsPermissionsItem[keyof typeof EnumsPermissionsItem];
|
|
8
|
+
export declare const EnumsPermissionsItem: {
|
|
9
|
+
readonly WorkspaceCreate: "WorkspaceCreate";
|
|
10
|
+
readonly WorkspaceEdit: "WorkspaceEdit";
|
|
11
|
+
readonly WorkspaceDelete: "WorkspaceDelete";
|
|
12
|
+
readonly DataSpaceCreate: "DataSpaceCreate";
|
|
13
|
+
readonly DataSpaceEdit: "DataSpaceEdit";
|
|
14
|
+
readonly DataSpaceDelete: "DataSpaceDelete";
|
|
15
|
+
readonly ConnectorCreate: "ConnectorCreate";
|
|
16
|
+
readonly ConnectorEdit: "ConnectorEdit";
|
|
17
|
+
readonly ConnectorDelete: "ConnectorDelete";
|
|
18
|
+
};
|
|
@@ -0,0 +1,21 @@
|
|
|
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.EnumsPermissionsItem = void 0;
|
|
10
|
+
// eslint-disable-next-line @typescript-eslint/no-redeclare
|
|
11
|
+
exports.EnumsPermissionsItem = {
|
|
12
|
+
WorkspaceCreate: 'WorkspaceCreate',
|
|
13
|
+
WorkspaceEdit: 'WorkspaceEdit',
|
|
14
|
+
WorkspaceDelete: 'WorkspaceDelete',
|
|
15
|
+
DataSpaceCreate: 'DataSpaceCreate',
|
|
16
|
+
DataSpaceEdit: 'DataSpaceEdit',
|
|
17
|
+
DataSpaceDelete: 'DataSpaceDelete',
|
|
18
|
+
ConnectorCreate: 'ConnectorCreate',
|
|
19
|
+
ConnectorEdit: 'ConnectorEdit',
|
|
20
|
+
ConnectorDelete: 'ConnectorDelete',
|
|
21
|
+
};
|
|
@@ -8,6 +8,8 @@ import type { FlowsFlowDataSet } from './flowsFlowDataSet';
|
|
|
8
8
|
import type { FlowsFlow } from './flowsFlow';
|
|
9
9
|
import type { FlowsFlowWorkSpace } from './flowsFlowWorkSpace';
|
|
10
10
|
export interface FlowsFlowRun {
|
|
11
|
+
/** @nullable */
|
|
12
|
+
createdByUserId?: string | null;
|
|
11
13
|
dataSet?: FlowsFlowDataSet;
|
|
12
14
|
/** @nullable */
|
|
13
15
|
finishedAt?: string | null;
|
|
@@ -57,9 +57,11 @@ export * from './blocksPortInterface';
|
|
|
57
57
|
export * from './blocksPortInterfaceInputs';
|
|
58
58
|
export * from './blocksPortInterfaceMetadata';
|
|
59
59
|
export * from './blocksPortInterfaceOutputs';
|
|
60
|
+
export * from './blocksRenameBlockSetRequest';
|
|
60
61
|
export * from './blocksStateInterface';
|
|
61
62
|
export * from './blocksStateInterfaceDefault';
|
|
62
63
|
export * from './blocksStateInterfaceMetadata';
|
|
64
|
+
export * from './blocksUsedInWorkspaceRef';
|
|
63
65
|
export * from './configApiRunFlowRequest';
|
|
64
66
|
export * from './containerDataSet';
|
|
65
67
|
export * from './containersPostParams';
|
|
@@ -93,6 +95,11 @@ export * from './dataSetsUpdateDataSet';
|
|
|
93
95
|
export * from './dataSetsUpdateDataSetBasicInfo';
|
|
94
96
|
export * from './dataSetsUpsertDataSetProperty';
|
|
95
97
|
export * from './dataSourceContainer';
|
|
98
|
+
export * from './dataSourcesContainerFilter';
|
|
99
|
+
export * from './dataSourcesContainerFilterModel';
|
|
100
|
+
export * from './dataSourcesContainerPreviewResultModel';
|
|
101
|
+
export * from './dataSourcesContainerPreviewResultModelSamplesItem';
|
|
102
|
+
export * from './dataSourcesContainerSchemaParams';
|
|
96
103
|
export * from './dataSourcesContainersParams';
|
|
97
104
|
export * from './dataSourcesCreateDataSource';
|
|
98
105
|
export * from './dataSourcesCreateDataSourceCredentials';
|
|
@@ -106,6 +113,7 @@ export * from './dataSourcesDataSourceProperty';
|
|
|
106
113
|
export * from './dataSourcesDataSourcePropertyType';
|
|
107
114
|
export * from './dataSourcesDataSourceType';
|
|
108
115
|
export * from './dataSourcesGetParams';
|
|
116
|
+
export * from './dataSourcesPreviewContainerRequest';
|
|
109
117
|
export * from './dataSourcesTestConnectionResult';
|
|
110
118
|
export * from './dataSourcesTestDataSourceConnection';
|
|
111
119
|
export * from './dataSourcesTestDataSourceConnectionCredentials';
|
|
@@ -122,6 +130,15 @@ export * from './dataSpacesGetParams';
|
|
|
122
130
|
export * from './dataSpacesUpdateDataSpace';
|
|
123
131
|
export * from './debugLogsResponse';
|
|
124
132
|
export * from './documentsGetDocumentSasParams';
|
|
133
|
+
export * from './draftsDraft';
|
|
134
|
+
export * from './draftsDraftBlockInterfaces';
|
|
135
|
+
export * from './draftsPublishDraftRequest';
|
|
136
|
+
export * from './draftsPublishDraftResponse';
|
|
137
|
+
export * from './draftsPublishedBlockRef';
|
|
138
|
+
export * from './draftsSaveDraftRequest';
|
|
139
|
+
export * from './draftsSaveDraftResponse';
|
|
140
|
+
export * from './draftsSaveDraftResponseBlockInterfaces';
|
|
141
|
+
export * from './draftsToggleDraftRequest';
|
|
125
142
|
export * from './enumsAccessType';
|
|
126
143
|
export * from './enumsActivityType';
|
|
127
144
|
export * from './enumsAppPrincipalType';
|
|
@@ -140,6 +157,7 @@ export * from './enumsModelPublisher';
|
|
|
140
157
|
export * from './enumsModelRole';
|
|
141
158
|
export * from './enumsNotificationType';
|
|
142
159
|
export * from './enumsPermissions';
|
|
160
|
+
export * from './enumsPermissionsItem';
|
|
143
161
|
export * from './enumsPinType';
|
|
144
162
|
export * from './enumsPortType';
|
|
145
163
|
export * from './enumsVirtualMachineServerType';
|
|
@@ -194,6 +212,7 @@ export * from './integrationsAzureArmAzureLocation';
|
|
|
194
212
|
export * from './integrationsAzureArmVirtualMachineSize';
|
|
195
213
|
export * from './integrationsAzureStorageSasToken';
|
|
196
214
|
export * from './integrationsSmartSpaceAiBlockInputModel';
|
|
215
|
+
export * from './integrationsSmartSpaceAiBlockSourceResponse';
|
|
197
216
|
export * from './integrationsSmartSpaceAiContainerItemFlowRun';
|
|
198
217
|
export * from './integrationsSmartSpaceAiContainerItemFlowRunError';
|
|
199
218
|
export * from './integrationsSmartSpaceAiContainerItemRunHistory';
|
|
@@ -205,6 +224,7 @@ export * from './integrationsSmartSpaceAiFlowPinRef';
|
|
|
205
224
|
export * from './integrationsSmartSpaceAiFlowValueModel';
|
|
206
225
|
export * from './integrationsSmartSpaceAiFlowValueModelChannels';
|
|
207
226
|
export * from './integrationsSmartSpaceAiFunctionExecutionDebugModel';
|
|
227
|
+
export * from './integrationsSmartSpaceAiSdkBlockRef';
|
|
208
228
|
export * from './messageThreadMessageThreadSummary';
|
|
209
229
|
export * from './messageThreadsGetStepExecutionsParams';
|
|
210
230
|
export * from './messageThreadsGetWorkspaceExecutionsParams';
|