@smartspace/api-client 0.1.0-dev.3ce8564 → 0.1.0-dev.3e7dc25
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.js +2 -2
- package/dist/generated/chat/models/connectorsConnectorSummary.d.ts +12 -0
- package/dist/generated/chat/models/connectorsConnectorSummary.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/models/workSpacesWorkSpace.d.ts +2 -0
- package/dist/generated/chat/zod.d.ts +12 -0
- package/dist/generated/chat/zod.js +15 -3
- package/dist/generated/config/api.d.ts +23 -1
- package/dist/generated/config/api.js +101 -1
- package/dist/generated/config/api.msw.d.ts +18 -1
- package/dist/generated/config/api.msw.js +154 -10
- package/dist/generated/config/models/connectorsConnector.d.ts +23 -0
- package/dist/generated/config/models/connectorsConnector.js +8 -0
- package/dist/generated/config/models/connectorsConnectorSummary.d.ts +12 -0
- package/dist/generated/config/models/connectorsConnectorSummary.js +8 -0
- package/dist/generated/config/models/connectorsCreateConnector.d.ts +18 -0
- package/dist/generated/config/models/connectorsCreateConnector.js +8 -0
- package/dist/generated/config/models/connectorsGetConnectorSummariesParams.d.ts +9 -0
- package/dist/generated/config/models/connectorsGetConnectorSummariesParams.js +8 -0
- package/dist/generated/config/models/connectorsGetConnectorsParams.d.ts +9 -0
- package/dist/generated/config/models/connectorsGetConnectorsParams.js +8 -0
- package/dist/generated/config/models/connectorsResolvedConnector.d.ts +11 -0
- package/dist/generated/config/models/connectorsResolvedConnector.js +2 -0
- package/dist/generated/config/models/connectorsResolvedConnectorHeaders.d.ts +9 -0
- package/dist/generated/config/models/connectorsResolvedConnectorHeaders.js +8 -0
- package/dist/generated/config/models/connectorsUpdateConnector.d.ts +17 -0
- package/dist/generated/config/models/connectorsUpdateConnector.js +8 -0
- package/dist/generated/config/models/index.d.ts +10 -0
- package/dist/generated/config/models/index.js +10 -0
- package/dist/generated/config/models/syncsGetParams.d.ts +7 -0
- package/dist/generated/config/models/syncsSync.d.ts +11 -0
- package/dist/generated/config/models/syncsSyncDataSourceInfo.d.ts +3 -0
- package/dist/generated/config/models/syncsSyncQueueState.d.ts +10 -0
- package/dist/generated/config/models/syncsSyncQueueState.js +8 -0
- package/dist/generated/config/models/syncsSyncRunInfo.d.ts +14 -0
- package/dist/generated/config/models/syncsSyncRunInfo.js +8 -0
- package/dist/generated/config/models/workSpacesWorkSpace.d.ts +2 -0
- package/dist/generated/config/zod.d.ts +223 -0
- package/dist/generated/config/zod.js +220 -13
- package/dist/generated/signalr/SmartSpace.App.Business.Models.Notifications.d.ts +22 -0
- package/dist/generated/signalr/SmartSpace.App.Business.Models.Notifications.js +2 -0
- package/dist/generated/signalr/SmartSpace.App.Core.Enums.d.ts +7 -0
- package/dist/generated/signalr/SmartSpace.App.Core.Enums.js +14 -0
- package/dist/generated/signalr/TypedSignalR.Client/SmartSpace.App.Business.Hubs.Contracts.d.ts +11 -0
- package/dist/generated/signalr/TypedSignalR.Client/index.js +6 -0
- package/dist/signalr.d.ts +2 -0
- package/dist/signalr.js +3 -0
- package/package.json +2 -2
|
@@ -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 { ConnectorsResolvedConnectorHeaders } from './connectorsResolvedConnectorHeaders';
|
|
8
|
+
export interface ConnectorsResolvedConnector {
|
|
9
|
+
headers: ConnectorsResolvedConnectorHeaders;
|
|
10
|
+
url: string;
|
|
11
|
+
}
|
|
@@ -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
|
+
export interface ConnectorsUpdateConnector {
|
|
8
|
+
/** @nullable */
|
|
9
|
+
authHeaderName?: string | null;
|
|
10
|
+
/** @nullable */
|
|
11
|
+
authScheme?: string | null;
|
|
12
|
+
authType: string;
|
|
13
|
+
name: string;
|
|
14
|
+
/** @nullable */
|
|
15
|
+
secret?: string | null;
|
|
16
|
+
url: string;
|
|
17
|
+
}
|
|
@@ -64,6 +64,14 @@ export * from './blocksStateInterfaceMetadata';
|
|
|
64
64
|
export * from './blocksUsedInWorkspaceRef';
|
|
65
65
|
export * from './configApiFlowRunIdentityMapRequest';
|
|
66
66
|
export * from './configApiRunFlowRequest';
|
|
67
|
+
export * from './connectorsConnector';
|
|
68
|
+
export * from './connectorsConnectorSummary';
|
|
69
|
+
export * from './connectorsCreateConnector';
|
|
70
|
+
export * from './connectorsGetConnectorSummariesParams';
|
|
71
|
+
export * from './connectorsGetConnectorsParams';
|
|
72
|
+
export * from './connectorsResolvedConnector';
|
|
73
|
+
export * from './connectorsResolvedConnectorHeaders';
|
|
74
|
+
export * from './connectorsUpdateConnector';
|
|
67
75
|
export * from './containerDataSet';
|
|
68
76
|
export * from './containerItem';
|
|
69
77
|
export * from './containersPostParams';
|
|
@@ -295,6 +303,8 @@ export * from './syncsGetItemsParams';
|
|
|
295
303
|
export * from './syncsGetParams';
|
|
296
304
|
export * from './syncsSync';
|
|
297
305
|
export * from './syncsSyncDataSourceInfo';
|
|
306
|
+
export * from './syncsSyncQueueState';
|
|
307
|
+
export * from './syncsSyncRunInfo';
|
|
298
308
|
export * from './usersAdminPermissionParams';
|
|
299
309
|
export * from './usersAppAccessUser';
|
|
300
310
|
export * from './usersAppRole';
|
|
@@ -80,6 +80,14 @@ __exportStar(require("./blocksStateInterfaceMetadata"), exports);
|
|
|
80
80
|
__exportStar(require("./blocksUsedInWorkspaceRef"), exports);
|
|
81
81
|
__exportStar(require("./configApiFlowRunIdentityMapRequest"), exports);
|
|
82
82
|
__exportStar(require("./configApiRunFlowRequest"), exports);
|
|
83
|
+
__exportStar(require("./connectorsConnector"), exports);
|
|
84
|
+
__exportStar(require("./connectorsConnectorSummary"), exports);
|
|
85
|
+
__exportStar(require("./connectorsCreateConnector"), exports);
|
|
86
|
+
__exportStar(require("./connectorsGetConnectorSummariesParams"), exports);
|
|
87
|
+
__exportStar(require("./connectorsGetConnectorsParams"), exports);
|
|
88
|
+
__exportStar(require("./connectorsResolvedConnector"), exports);
|
|
89
|
+
__exportStar(require("./connectorsResolvedConnectorHeaders"), exports);
|
|
90
|
+
__exportStar(require("./connectorsUpdateConnector"), exports);
|
|
83
91
|
__exportStar(require("./containerDataSet"), exports);
|
|
84
92
|
__exportStar(require("./containerItem"), exports);
|
|
85
93
|
__exportStar(require("./containersPostParams"), exports);
|
|
@@ -311,6 +319,8 @@ __exportStar(require("./syncsGetItemsParams"), exports);
|
|
|
311
319
|
__exportStar(require("./syncsGetParams"), exports);
|
|
312
320
|
__exportStar(require("./syncsSync"), exports);
|
|
313
321
|
__exportStar(require("./syncsSyncDataSourceInfo"), exports);
|
|
322
|
+
__exportStar(require("./syncsSyncQueueState"), exports);
|
|
323
|
+
__exportStar(require("./syncsSyncRunInfo"), exports);
|
|
314
324
|
__exportStar(require("./usersAdminPermissionParams"), exports);
|
|
315
325
|
__exportStar(require("./usersAppAccessUser"), exports);
|
|
316
326
|
__exportStar(require("./usersAppRole"), exports);
|
|
@@ -8,4 +8,11 @@ export type SyncsGetParams = {
|
|
|
8
8
|
take?: number;
|
|
9
9
|
skip?: number;
|
|
10
10
|
search?: 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
|
+
dataSourceId?: string;
|
|
15
|
+
status?: string;
|
|
16
|
+
sortBy?: string;
|
|
17
|
+
sortDirection?: string;
|
|
11
18
|
};
|
|
@@ -6,6 +6,7 @@
|
|
|
6
6
|
*/
|
|
7
7
|
import type { ContainerDataSet } from './containerDataSet';
|
|
8
8
|
import type { SyncsSyncDataSourceInfo } from './syncsSyncDataSourceInfo';
|
|
9
|
+
import type { SyncsSyncRunInfo } from './syncsSyncRunInfo';
|
|
9
10
|
export interface SyncsSync {
|
|
10
11
|
dataSets: ContainerDataSet[];
|
|
11
12
|
dataSource: SyncsSyncDataSourceInfo;
|
|
@@ -15,8 +16,18 @@ export interface SyncsSync {
|
|
|
15
16
|
highwaterMark?: string | null;
|
|
16
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}$ */
|
|
17
18
|
id: string;
|
|
19
|
+
/** @nullable */
|
|
20
|
+
latestSyncAt?: string | null;
|
|
21
|
+
/** @nullable */
|
|
22
|
+
latestSyncItemCount?: number | null;
|
|
23
|
+
/** @nullable */
|
|
24
|
+
latestSyncMessage?: string | null;
|
|
25
|
+
/** @nullable */
|
|
26
|
+
latestSyncStatus?: string | null;
|
|
18
27
|
name: string;
|
|
19
28
|
path: string;
|
|
20
29
|
/** @nullable */
|
|
30
|
+
recentSyncs?: SyncsSyncRunInfo[] | null;
|
|
31
|
+
/** @nullable */
|
|
21
32
|
statusMessage?: string | null;
|
|
22
33
|
}
|
|
@@ -8,7 +8,10 @@ import type { EnumsDataSourceCredentialType } from './enumsDataSourceCredentialT
|
|
|
8
8
|
export interface SyncsSyncDataSourceInfo {
|
|
9
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
10
|
id: string;
|
|
11
|
+
isQueued: boolean;
|
|
11
12
|
isSyncing: boolean;
|
|
12
13
|
name: string;
|
|
13
14
|
sourceType: EnumsDataSourceCredentialType;
|
|
15
|
+
/** @nullable */
|
|
16
|
+
syncStartedAt?: string | null;
|
|
14
17
|
}
|
|
@@ -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
|
+
export interface SyncsSyncRunInfo {
|
|
8
|
+
end: string;
|
|
9
|
+
itemCount: number;
|
|
10
|
+
/** @nullable */
|
|
11
|
+
message?: string | null;
|
|
12
|
+
start: string;
|
|
13
|
+
status: string;
|
|
14
|
+
}
|
|
@@ -4,11 +4,13 @@
|
|
|
4
4
|
* SmartSpace Admin API
|
|
5
5
|
* OpenAPI spec version: v1
|
|
6
6
|
*/
|
|
7
|
+
import type { ConnectorsConnectorSummary } from './connectorsConnectorSummary';
|
|
7
8
|
import type { DataSpace } from './dataSpace';
|
|
8
9
|
import type { WorkSpacesWorkSpaceInputs } from './workSpacesWorkSpaceInputs';
|
|
9
10
|
import type { ModelConfiguration } from './modelConfiguration';
|
|
10
11
|
import type { WorkSpacesWorkSpaceVariables } from './workSpacesWorkSpaceVariables';
|
|
11
12
|
export interface WorkSpacesWorkSpace {
|
|
13
|
+
connectors: ConnectorsConnectorSummary[];
|
|
12
14
|
createdAt: string;
|
|
13
15
|
createdByUserId: string;
|
|
14
16
|
dataSpaces: DataSpace[];
|
|
@@ -1586,6 +1586,15 @@ export declare const dataSourcesUpdateCredentialsParams: zod.ZodObject<{
|
|
|
1586
1586
|
export declare const dataSourcesUpdateCredentialsBody: zod.ZodObject<{
|
|
1587
1587
|
credentials: zod.ZodRecord<zod.ZodString, zod.ZodNullable<zod.ZodString>>;
|
|
1588
1588
|
}, zod.core.$strict>;
|
|
1589
|
+
/**
|
|
1590
|
+
* @summary Requests an on-demand sync of a data source. The request is queued;
|
|
1591
|
+
the sync service picks it up within ~30 seconds. Repeated requests
|
|
1592
|
+
are safe — concurrent syncs of the same source collapse to one run.
|
|
1593
|
+
*/
|
|
1594
|
+
export declare const dataSourcesRequestSyncPathDataSourceIdRegExp: RegExp;
|
|
1595
|
+
export declare const dataSourcesRequestSyncParams: zod.ZodObject<{
|
|
1596
|
+
dataSourceId: zod.ZodString;
|
|
1597
|
+
}, zod.core.$strict>;
|
|
1589
1598
|
export declare const dataSourcesGetAdminUsersPathIdRegExp: RegExp;
|
|
1590
1599
|
export declare const dataSourcesGetAdminUsersParams: zod.ZodObject<{
|
|
1591
1600
|
id: zod.ZodString;
|
|
@@ -2334,6 +2343,16 @@ export declare const flowRunsGetFlowRunPathIdRegExp: RegExp;
|
|
|
2334
2343
|
export declare const flowRunsGetFlowRunParams: zod.ZodObject<{
|
|
2335
2344
|
id: zod.ZodString;
|
|
2336
2345
|
}, zod.core.$strict>;
|
|
2346
|
+
/**
|
|
2347
|
+
* @summary Requests cancellation of a queued or running flow run. Cancellation
|
|
2348
|
+
is cooperative: a queued run is stamped cancelled before it starts;
|
|
2349
|
+
a running flow stops between block executions, typically within
|
|
2350
|
+
seconds. Cancelled runs carry cancelledAt in their basic info.
|
|
2351
|
+
*/
|
|
2352
|
+
export declare const flowRunsCancelFlowRunPathIdRegExp: RegExp;
|
|
2353
|
+
export declare const flowRunsCancelFlowRunParams: zod.ZodObject<{
|
|
2354
|
+
id: zod.ZodString;
|
|
2355
|
+
}, zod.core.$strict>;
|
|
2337
2356
|
export declare const flowRunsAddFileIdFilesPathIdRegExp: RegExp;
|
|
2338
2357
|
export declare const flowRunsAddFileIdFilesParams: zod.ZodObject<{
|
|
2339
2358
|
id: zod.ZodString;
|
|
@@ -2964,12 +2983,23 @@ export declare const reportingGetTokensResponse: zod.ZodObject<{
|
|
|
2964
2983
|
name: zod.ZodString;
|
|
2965
2984
|
}, zod.core.$strip>>;
|
|
2966
2985
|
}, zod.core.$strip>;
|
|
2986
|
+
/**
|
|
2987
|
+
* @summary List configured syncs. status matches the data
|
|
2988
|
+
source's latest completed sync (e.g. Success / Failure), or "never"
|
|
2989
|
+
for sources with no recorded sync. sortBy:
|
|
2990
|
+
name | connector | lastSync (default: path).
|
|
2991
|
+
*/
|
|
2967
2992
|
export declare const syncsGetQueryTakeDefault = 50;
|
|
2968
2993
|
export declare const syncsGetQuerySkipDefault = 0;
|
|
2994
|
+
export declare const syncsGetQueryDataSourceIdRegExp: RegExp;
|
|
2969
2995
|
export declare const syncsGetQueryParams: zod.ZodObject<{
|
|
2970
2996
|
take: zod.ZodDefault<zod.ZodNumber>;
|
|
2971
2997
|
skip: zod.ZodOptional<zod.ZodNumber>;
|
|
2972
2998
|
search: zod.ZodOptional<zod.ZodString>;
|
|
2999
|
+
dataSourceId: zod.ZodOptional<zod.ZodString>;
|
|
3000
|
+
status: zod.ZodOptional<zod.ZodString>;
|
|
3001
|
+
sortBy: zod.ZodOptional<zod.ZodString>;
|
|
3002
|
+
sortDirection: zod.ZodOptional<zod.ZodString>;
|
|
2973
3003
|
}, zod.core.$strict>;
|
|
2974
3004
|
export declare const syncsGetResponseDataItemDataSetsItemIdRegExp: RegExp;
|
|
2975
3005
|
export declare const syncsGetResponseDataItemDataSetsItemVersionRegExp: RegExp;
|
|
@@ -2984,6 +3014,7 @@ export declare const syncsGetResponse: zod.ZodObject<{
|
|
|
2984
3014
|
}, zod.core.$strip>>;
|
|
2985
3015
|
dataSource: zod.ZodObject<{
|
|
2986
3016
|
id: zod.ZodString;
|
|
3017
|
+
isQueued: zod.ZodBoolean;
|
|
2987
3018
|
isSyncing: zod.ZodBoolean;
|
|
2988
3019
|
name: zod.ZodString;
|
|
2989
3020
|
sourceType: zod.ZodEnum<{
|
|
@@ -2999,16 +3030,39 @@ export declare const syncsGetResponse: zod.ZodObject<{
|
|
|
2999
3030
|
File: "File";
|
|
3000
3031
|
Sitemap: "Sitemap";
|
|
3001
3032
|
}>;
|
|
3033
|
+
syncStartedAt: zod.ZodOptional<zod.ZodNullable<zod.ZodISODateTime>>;
|
|
3002
3034
|
}, zod.core.$strip>;
|
|
3003
3035
|
filters: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
3004
3036
|
highwaterMark: zod.ZodOptional<zod.ZodNullable<zod.ZodISODateTime>>;
|
|
3005
3037
|
id: zod.ZodString;
|
|
3038
|
+
latestSyncAt: zod.ZodOptional<zod.ZodNullable<zod.ZodISODateTime>>;
|
|
3039
|
+
latestSyncItemCount: zod.ZodOptional<zod.ZodNullable<zod.ZodNumber>>;
|
|
3040
|
+
latestSyncMessage: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
3041
|
+
latestSyncStatus: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
3006
3042
|
name: zod.ZodString;
|
|
3007
3043
|
path: zod.ZodString;
|
|
3044
|
+
recentSyncs: zod.ZodOptional<zod.ZodNullable<zod.ZodArray<zod.ZodObject<{
|
|
3045
|
+
end: zod.ZodISODateTime;
|
|
3046
|
+
itemCount: zod.ZodNumber;
|
|
3047
|
+
message: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
3048
|
+
start: zod.ZodISODateTime;
|
|
3049
|
+
status: zod.ZodString;
|
|
3050
|
+
}, zod.core.$strip>>>>;
|
|
3008
3051
|
statusMessage: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
3009
3052
|
}, zod.core.$strip>>;
|
|
3010
3053
|
total: zod.ZodNumber;
|
|
3011
3054
|
}, zod.core.$strip>;
|
|
3055
|
+
/**
|
|
3056
|
+
* @summary The sync-requests queue right now: approximate depth and which data
|
|
3057
|
+
sources have a request WAITING. In-flight requests are invisible to
|
|
3058
|
+
peek (visibility timeout) — that state is each data source's
|
|
3059
|
+
isSyncing flag. Literal route wins over the {containerId} template.
|
|
3060
|
+
*/
|
|
3061
|
+
export declare const syncsGetQueueResponseWaitingDataSourceIdsItemRegExp: RegExp;
|
|
3062
|
+
export declare const syncsGetQueueResponse: zod.ZodObject<{
|
|
3063
|
+
depth: zod.ZodNumber;
|
|
3064
|
+
waitingDataSourceIds: zod.ZodArray<zod.ZodString>;
|
|
3065
|
+
}, zod.core.$strip>;
|
|
3012
3066
|
export declare const syncsGetByIdPathContainerIdRegExp: RegExp;
|
|
3013
3067
|
export declare const syncsGetByIdParams: zod.ZodObject<{
|
|
3014
3068
|
containerId: zod.ZodString;
|
|
@@ -3025,6 +3079,7 @@ export declare const syncsGetByIdResponse: zod.ZodObject<{
|
|
|
3025
3079
|
}, zod.core.$strip>>;
|
|
3026
3080
|
dataSource: zod.ZodObject<{
|
|
3027
3081
|
id: zod.ZodString;
|
|
3082
|
+
isQueued: zod.ZodBoolean;
|
|
3028
3083
|
isSyncing: zod.ZodBoolean;
|
|
3029
3084
|
name: zod.ZodString;
|
|
3030
3085
|
sourceType: zod.ZodEnum<{
|
|
@@ -3040,12 +3095,24 @@ export declare const syncsGetByIdResponse: zod.ZodObject<{
|
|
|
3040
3095
|
File: "File";
|
|
3041
3096
|
Sitemap: "Sitemap";
|
|
3042
3097
|
}>;
|
|
3098
|
+
syncStartedAt: zod.ZodOptional<zod.ZodNullable<zod.ZodISODateTime>>;
|
|
3043
3099
|
}, zod.core.$strip>;
|
|
3044
3100
|
filters: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
3045
3101
|
highwaterMark: zod.ZodOptional<zod.ZodNullable<zod.ZodISODateTime>>;
|
|
3046
3102
|
id: zod.ZodString;
|
|
3103
|
+
latestSyncAt: zod.ZodOptional<zod.ZodNullable<zod.ZodISODateTime>>;
|
|
3104
|
+
latestSyncItemCount: zod.ZodOptional<zod.ZodNullable<zod.ZodNumber>>;
|
|
3105
|
+
latestSyncMessage: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
3106
|
+
latestSyncStatus: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
3047
3107
|
name: zod.ZodString;
|
|
3048
3108
|
path: zod.ZodString;
|
|
3109
|
+
recentSyncs: zod.ZodOptional<zod.ZodNullable<zod.ZodArray<zod.ZodObject<{
|
|
3110
|
+
end: zod.ZodISODateTime;
|
|
3111
|
+
itemCount: zod.ZodNumber;
|
|
3112
|
+
message: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
3113
|
+
start: zod.ZodISODateTime;
|
|
3114
|
+
status: zod.ZodString;
|
|
3115
|
+
}, zod.core.$strip>>>>;
|
|
3049
3116
|
statusMessage: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
3050
3117
|
}, zod.core.$strip>;
|
|
3051
3118
|
/**
|
|
@@ -3348,6 +3415,7 @@ export declare const workSpacesGetGetQueryParams: zod.ZodObject<{
|
|
|
3348
3415
|
sortBy: zod.ZodOptional<zod.ZodString>;
|
|
3349
3416
|
sortDirection: zod.ZodOptional<zod.ZodString>;
|
|
3350
3417
|
}, zod.core.$strict>;
|
|
3418
|
+
export declare const workSpacesGetGetResponseDataItemConnectorsItemIdRegExpOne: RegExp;
|
|
3351
3419
|
export declare const workSpacesGetGetResponseDataItemDataSpacesItemDataSetsItemDataSpaceIdRegExpOne: RegExp;
|
|
3352
3420
|
export declare const workSpacesGetGetResponseDataItemDataSpacesItemDataSetsItemFlowActiveFlowDefinitionIdRegExpOne: RegExp;
|
|
3353
3421
|
export declare const workSpacesGetGetResponseDataItemDataSpacesItemDataSetsItemFlowIdRegExpOne: RegExp;
|
|
@@ -3368,6 +3436,11 @@ export declare const workSpacesGetGetResponseDataItemModelConfigurationsItemMode
|
|
|
3368
3436
|
export declare const workSpacesGetGetResponseDataItemSandBoxThreadIdRegExpOne: RegExp;
|
|
3369
3437
|
export declare const workSpacesGetGetResponse: zod.ZodObject<{
|
|
3370
3438
|
data: zod.ZodArray<zod.ZodObject<{
|
|
3439
|
+
connectors: zod.ZodArray<zod.ZodObject<{
|
|
3440
|
+
id: zod.ZodString;
|
|
3441
|
+
kind: zod.ZodString;
|
|
3442
|
+
name: zod.ZodString;
|
|
3443
|
+
}, zod.core.$strip>>;
|
|
3371
3444
|
createdAt: zod.ZodISODateTime;
|
|
3372
3445
|
createdByUserId: zod.ZodString;
|
|
3373
3446
|
dataSpaces: zod.ZodArray<zod.ZodObject<{
|
|
@@ -3639,6 +3712,7 @@ export declare const workSpacesGetIdPathIdRegExpOne: RegExp;
|
|
|
3639
3712
|
export declare const workSpacesGetIdParams: zod.ZodObject<{
|
|
3640
3713
|
id: zod.ZodString;
|
|
3641
3714
|
}, zod.core.$strict>;
|
|
3715
|
+
export declare const workSpacesGetIdResponseConnectorsItemIdRegExpOne: RegExp;
|
|
3642
3716
|
export declare const workSpacesGetIdResponseDataSpacesItemDataSetsItemDataSpaceIdRegExpOne: RegExp;
|
|
3643
3717
|
export declare const workSpacesGetIdResponseDataSpacesItemDataSetsItemFlowActiveFlowDefinitionIdRegExpOne: RegExp;
|
|
3644
3718
|
export declare const workSpacesGetIdResponseDataSpacesItemDataSetsItemFlowIdRegExpOne: RegExp;
|
|
@@ -3658,6 +3732,11 @@ export declare const workSpacesGetIdResponseModelConfigurationsItemModelDeployme
|
|
|
3658
3732
|
export declare const workSpacesGetIdResponseModelConfigurationsItemModelIdRegExpOne: RegExp;
|
|
3659
3733
|
export declare const workSpacesGetIdResponseSandBoxThreadIdRegExpOne: RegExp;
|
|
3660
3734
|
export declare const workSpacesGetIdResponse: zod.ZodObject<{
|
|
3735
|
+
connectors: zod.ZodArray<zod.ZodObject<{
|
|
3736
|
+
id: zod.ZodString;
|
|
3737
|
+
kind: zod.ZodString;
|
|
3738
|
+
name: zod.ZodString;
|
|
3739
|
+
}, zod.core.$strip>>;
|
|
3661
3740
|
createdAt: zod.ZodISODateTime;
|
|
3662
3741
|
createdByUserId: zod.ZodString;
|
|
3663
3742
|
dataSpaces: zod.ZodArray<zod.ZodObject<{
|
|
@@ -4007,6 +4086,28 @@ export declare const workSpacesPutModelConfigurationBody: zod.ZodObject<{
|
|
|
4007
4086
|
temperature: zod.ZodNumber;
|
|
4008
4087
|
topP: zod.ZodNumber;
|
|
4009
4088
|
}, zod.core.$strict>;
|
|
4089
|
+
/**
|
|
4090
|
+
* @summary Detaches a connector from a workspace. Flows still referencing it
|
|
4091
|
+
fail at resolve time rather than silently keeping access.
|
|
4092
|
+
*/
|
|
4093
|
+
export declare const workSpacesRemoveConnectorPathWorkspaceIdRegExp: RegExp;
|
|
4094
|
+
export declare const workSpacesRemoveConnectorPathConnectorIdRegExp: RegExp;
|
|
4095
|
+
export declare const workSpacesRemoveConnectorParams: zod.ZodObject<{
|
|
4096
|
+
workspaceId: zod.ZodString;
|
|
4097
|
+
connectorId: zod.ZodString;
|
|
4098
|
+
}, zod.core.$strict>;
|
|
4099
|
+
/**
|
|
4100
|
+
* @summary Attaches a connector to a workspace — the access model for external
|
|
4101
|
+
connectors, mirroring dataspaces. Only after this can a flow in the
|
|
4102
|
+
workspace reference the connector, and the resolve endpoint checks
|
|
4103
|
+
the same attachment at call time.
|
|
4104
|
+
*/
|
|
4105
|
+
export declare const workSpacesAddConnectorPathWorkspaceIdRegExp: RegExp;
|
|
4106
|
+
export declare const workSpacesAddConnectorPathConnectorIdRegExp: RegExp;
|
|
4107
|
+
export declare const workSpacesAddConnectorParams: zod.ZodObject<{
|
|
4108
|
+
workspaceId: zod.ZodString;
|
|
4109
|
+
connectorId: zod.ZodString;
|
|
4110
|
+
}, zod.core.$strict>;
|
|
4010
4111
|
/**
|
|
4011
4112
|
* @summary Removes a data space from a workspace.
|
|
4012
4113
|
*/
|
|
@@ -4273,6 +4374,128 @@ export declare const workSpacesSetActiveFlowLayoutParams: zod.ZodObject<{
|
|
|
4273
4374
|
workspaceId: zod.ZodString;
|
|
4274
4375
|
}, zod.core.$strict>;
|
|
4275
4376
|
export declare const workSpacesSetActiveFlowLayoutBody: zod.ZodAny;
|
|
4377
|
+
/**
|
|
4378
|
+
* @summary Lists connectors with their auth settings — never a credential.
|
|
4379
|
+
*/
|
|
4380
|
+
export declare const connectorsGetConnectorsQueryParams: zod.ZodObject<{
|
|
4381
|
+
kind: zod.ZodOptional<zod.ZodString>;
|
|
4382
|
+
}, zod.core.$strict>;
|
|
4383
|
+
export declare const connectorsGetConnectorsResponseIdRegExp: RegExp;
|
|
4384
|
+
export declare const connectorsGetConnectorsResponseItem: zod.ZodObject<{
|
|
4385
|
+
authHeaderName: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
4386
|
+
authScheme: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
4387
|
+
authType: zod.ZodString;
|
|
4388
|
+
createdAt: zod.ZodISODateTime;
|
|
4389
|
+
createdByUserId: zod.ZodString;
|
|
4390
|
+
hasSecret: zod.ZodBoolean;
|
|
4391
|
+
id: zod.ZodString;
|
|
4392
|
+
kind: zod.ZodString;
|
|
4393
|
+
modifiedAt: zod.ZodISODateTime;
|
|
4394
|
+
modifiedByUserId: zod.ZodString;
|
|
4395
|
+
name: zod.ZodString;
|
|
4396
|
+
url: zod.ZodString;
|
|
4397
|
+
}, zod.core.$strip>;
|
|
4398
|
+
export declare const connectorsGetConnectorsResponse: zod.ZodArray<zod.ZodObject<{
|
|
4399
|
+
authHeaderName: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
4400
|
+
authScheme: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
4401
|
+
authType: zod.ZodString;
|
|
4402
|
+
createdAt: zod.ZodISODateTime;
|
|
4403
|
+
createdByUserId: zod.ZodString;
|
|
4404
|
+
hasSecret: zod.ZodBoolean;
|
|
4405
|
+
id: zod.ZodString;
|
|
4406
|
+
kind: zod.ZodString;
|
|
4407
|
+
modifiedAt: zod.ZodISODateTime;
|
|
4408
|
+
modifiedByUserId: zod.ZodString;
|
|
4409
|
+
name: zod.ZodString;
|
|
4410
|
+
url: zod.ZodString;
|
|
4411
|
+
}, zod.core.$strip>>;
|
|
4412
|
+
/**
|
|
4413
|
+
* @summary Creates a connector and its shared credential in one call: the value
|
|
4414
|
+
goes to Key Vault, the row stores only the reference.
|
|
4415
|
+
*/
|
|
4416
|
+
export declare const connectorsCreateConnectorBody: zod.ZodObject<{
|
|
4417
|
+
authHeaderName: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
4418
|
+
authScheme: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
4419
|
+
authType: zod.ZodString;
|
|
4420
|
+
kind: zod.ZodString;
|
|
4421
|
+
name: zod.ZodString;
|
|
4422
|
+
secret: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
4423
|
+
url: zod.ZodString;
|
|
4424
|
+
}, zod.core.$strict>;
|
|
4425
|
+
/**
|
|
4426
|
+
* @summary Picker list for workspace editors: id, name and kind only. Gated on
|
|
4427
|
+
WorkspaceEdit rather than Admin because attaching a connector to a
|
|
4428
|
+
workspace is a workspace-editor action, and the picker is how they
|
|
4429
|
+
choose one. Admins pass this gate via the role bypass.
|
|
4430
|
+
*/
|
|
4431
|
+
export declare const connectorsGetConnectorSummariesQueryParams: zod.ZodObject<{
|
|
4432
|
+
kind: zod.ZodOptional<zod.ZodString>;
|
|
4433
|
+
}, zod.core.$strict>;
|
|
4434
|
+
export declare const connectorsGetConnectorSummariesResponseIdRegExp: RegExp;
|
|
4435
|
+
export declare const connectorsGetConnectorSummariesResponseItem: zod.ZodObject<{
|
|
4436
|
+
id: zod.ZodString;
|
|
4437
|
+
kind: zod.ZodString;
|
|
4438
|
+
name: zod.ZodString;
|
|
4439
|
+
}, zod.core.$strip>;
|
|
4440
|
+
export declare const connectorsGetConnectorSummariesResponse: zod.ZodArray<zod.ZodObject<{
|
|
4441
|
+
id: zod.ZodString;
|
|
4442
|
+
kind: zod.ZodString;
|
|
4443
|
+
name: zod.ZodString;
|
|
4444
|
+
}, zod.core.$strip>>;
|
|
4445
|
+
export declare const connectorsDeleteConnectorPathIdRegExp: RegExp;
|
|
4446
|
+
export declare const connectorsDeleteConnectorParams: zod.ZodObject<{
|
|
4447
|
+
id: zod.ZodString;
|
|
4448
|
+
}, zod.core.$strict>;
|
|
4449
|
+
export declare const connectorsGetConnectorPathIdRegExp: RegExp;
|
|
4450
|
+
export declare const connectorsGetConnectorParams: zod.ZodObject<{
|
|
4451
|
+
id: zod.ZodString;
|
|
4452
|
+
}, zod.core.$strict>;
|
|
4453
|
+
export declare const connectorsGetConnectorResponseIdRegExp: RegExp;
|
|
4454
|
+
export declare const connectorsGetConnectorResponse: zod.ZodObject<{
|
|
4455
|
+
authHeaderName: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
4456
|
+
authScheme: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
4457
|
+
authType: zod.ZodString;
|
|
4458
|
+
createdAt: zod.ZodISODateTime;
|
|
4459
|
+
createdByUserId: zod.ZodString;
|
|
4460
|
+
hasSecret: zod.ZodBoolean;
|
|
4461
|
+
id: zod.ZodString;
|
|
4462
|
+
kind: zod.ZodString;
|
|
4463
|
+
modifiedAt: zod.ZodISODateTime;
|
|
4464
|
+
modifiedByUserId: zod.ZodString;
|
|
4465
|
+
name: zod.ZodString;
|
|
4466
|
+
url: zod.ZodString;
|
|
4467
|
+
}, zod.core.$strip>;
|
|
4468
|
+
/**
|
|
4469
|
+
* @summary Updates a connector. Omit `Secret` to leave the credential
|
|
4470
|
+
untouched; supply one to rotate it.
|
|
4471
|
+
*/
|
|
4472
|
+
export declare const connectorsUpdateConnectorPathIdRegExp: RegExp;
|
|
4473
|
+
export declare const connectorsUpdateConnectorParams: zod.ZodObject<{
|
|
4474
|
+
id: zod.ZodString;
|
|
4475
|
+
}, zod.core.$strict>;
|
|
4476
|
+
export declare const connectorsUpdateConnectorBody: zod.ZodObject<{
|
|
4477
|
+
authHeaderName: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
4478
|
+
authScheme: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
4479
|
+
authType: zod.ZodString;
|
|
4480
|
+
name: zod.ZodString;
|
|
4481
|
+
secret: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
4482
|
+
url: zod.ZodString;
|
|
4483
|
+
}, zod.core.$strict>;
|
|
4484
|
+
export declare const connectorsUpdateConnectorResponseIdRegExp: RegExp;
|
|
4485
|
+
export declare const connectorsUpdateConnectorResponse: zod.ZodObject<{
|
|
4486
|
+
authHeaderName: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
4487
|
+
authScheme: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
4488
|
+
authType: zod.ZodString;
|
|
4489
|
+
createdAt: zod.ZodISODateTime;
|
|
4490
|
+
createdByUserId: zod.ZodString;
|
|
4491
|
+
hasSecret: zod.ZodBoolean;
|
|
4492
|
+
id: zod.ZodString;
|
|
4493
|
+
kind: zod.ZodString;
|
|
4494
|
+
modifiedAt: zod.ZodISODateTime;
|
|
4495
|
+
modifiedByUserId: zod.ZodString;
|
|
4496
|
+
name: zod.ZodString;
|
|
4497
|
+
url: zod.ZodString;
|
|
4498
|
+
}, zod.core.$strip>;
|
|
4276
4499
|
/**
|
|
4277
4500
|
* @summary Retrieve a Shared Access Signature (SAS) for a specific item within a data space's documents in SmartSpace, using the dataSpaceId.
|
|
4278
4501
|
*/
|