@smartspace/api-client 0.1.0-dev.ee9db87 → 0.1.0-dev.f224651
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/enumsNotificationType.d.ts +1 -0
- package/dist/generated/chat/models/enumsNotificationType.js +1 -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 +13 -0
- package/dist/generated/chat/zod.js +16 -4
- package/dist/generated/config/api.d.ts +21 -1
- package/dist/generated/config/api.js +91 -1
- package/dist/generated/config/api.msw.d.ts +17 -1
- package/dist/generated/config/api.msw.js +142 -10
- package/dist/generated/config/models/configApiFlowRunIdentityMapRequest.d.ts +9 -0
- package/dist/generated/config/models/configApiFlowRunIdentityMapRequest.js +8 -0
- 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/enumsNotificationType.d.ts +1 -0
- package/dist/generated/config/models/enumsNotificationType.js +1 -0
- package/dist/generated/config/models/index.d.ts +11 -0
- package/dist/generated/config/models/index.js +11 -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 +214 -0
- package/dist/generated/config/zod.js +211 -14
- 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
|
+
}
|
|
@@ -62,7 +62,16 @@ export * from './blocksStateInterface';
|
|
|
62
62
|
export * from './blocksStateInterfaceDefault';
|
|
63
63
|
export * from './blocksStateInterfaceMetadata';
|
|
64
64
|
export * from './blocksUsedInWorkspaceRef';
|
|
65
|
+
export * from './configApiFlowRunIdentityMapRequest';
|
|
65
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';
|
|
66
75
|
export * from './containerDataSet';
|
|
67
76
|
export * from './containerItem';
|
|
68
77
|
export * from './containersPostParams';
|
|
@@ -294,6 +303,8 @@ export * from './syncsGetItemsParams';
|
|
|
294
303
|
export * from './syncsGetParams';
|
|
295
304
|
export * from './syncsSync';
|
|
296
305
|
export * from './syncsSyncDataSourceInfo';
|
|
306
|
+
export * from './syncsSyncQueueState';
|
|
307
|
+
export * from './syncsSyncRunInfo';
|
|
297
308
|
export * from './usersAdminPermissionParams';
|
|
298
309
|
export * from './usersAppAccessUser';
|
|
299
310
|
export * from './usersAppRole';
|
|
@@ -78,7 +78,16 @@ __exportStar(require("./blocksStateInterface"), exports);
|
|
|
78
78
|
__exportStar(require("./blocksStateInterfaceDefault"), exports);
|
|
79
79
|
__exportStar(require("./blocksStateInterfaceMetadata"), exports);
|
|
80
80
|
__exportStar(require("./blocksUsedInWorkspaceRef"), exports);
|
|
81
|
+
__exportStar(require("./configApiFlowRunIdentityMapRequest"), exports);
|
|
81
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);
|
|
82
91
|
__exportStar(require("./containerDataSet"), exports);
|
|
83
92
|
__exportStar(require("./containerItem"), exports);
|
|
84
93
|
__exportStar(require("./containersPostParams"), exports);
|
|
@@ -310,6 +319,8 @@ __exportStar(require("./syncsGetItemsParams"), exports);
|
|
|
310
319
|
__exportStar(require("./syncsGetParams"), exports);
|
|
311
320
|
__exportStar(require("./syncsSync"), exports);
|
|
312
321
|
__exportStar(require("./syncsSyncDataSourceInfo"), exports);
|
|
322
|
+
__exportStar(require("./syncsSyncQueueState"), exports);
|
|
323
|
+
__exportStar(require("./syncsSyncRunInfo"), exports);
|
|
313
324
|
__exportStar(require("./usersAdminPermissionParams"), exports);
|
|
314
325
|
__exportStar(require("./usersAppAccessUser"), exports);
|
|
315
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;
|
|
@@ -2878,6 +2887,7 @@ export declare const notificationGetResponse: zod.ZodObject<{
|
|
|
2878
2887
|
WorkSpaceUpdated: "WorkSpaceUpdated";
|
|
2879
2888
|
MessageThreadUpdated: "MessageThreadUpdated";
|
|
2880
2889
|
CommentUpdated: "CommentUpdated";
|
|
2890
|
+
AddedToThread: "AddedToThread";
|
|
2881
2891
|
}>;
|
|
2882
2892
|
threadId: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
2883
2893
|
workSpaceId: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
@@ -2963,12 +2973,23 @@ export declare const reportingGetTokensResponse: zod.ZodObject<{
|
|
|
2963
2973
|
name: zod.ZodString;
|
|
2964
2974
|
}, zod.core.$strip>>;
|
|
2965
2975
|
}, zod.core.$strip>;
|
|
2976
|
+
/**
|
|
2977
|
+
* @summary List configured syncs. status matches the data
|
|
2978
|
+
source's latest completed sync (e.g. Success / Failure), or "never"
|
|
2979
|
+
for sources with no recorded sync. sortBy:
|
|
2980
|
+
name | connector | lastSync (default: path).
|
|
2981
|
+
*/
|
|
2966
2982
|
export declare const syncsGetQueryTakeDefault = 50;
|
|
2967
2983
|
export declare const syncsGetQuerySkipDefault = 0;
|
|
2984
|
+
export declare const syncsGetQueryDataSourceIdRegExp: RegExp;
|
|
2968
2985
|
export declare const syncsGetQueryParams: zod.ZodObject<{
|
|
2969
2986
|
take: zod.ZodDefault<zod.ZodNumber>;
|
|
2970
2987
|
skip: zod.ZodOptional<zod.ZodNumber>;
|
|
2971
2988
|
search: zod.ZodOptional<zod.ZodString>;
|
|
2989
|
+
dataSourceId: zod.ZodOptional<zod.ZodString>;
|
|
2990
|
+
status: zod.ZodOptional<zod.ZodString>;
|
|
2991
|
+
sortBy: zod.ZodOptional<zod.ZodString>;
|
|
2992
|
+
sortDirection: zod.ZodOptional<zod.ZodString>;
|
|
2972
2993
|
}, zod.core.$strict>;
|
|
2973
2994
|
export declare const syncsGetResponseDataItemDataSetsItemIdRegExp: RegExp;
|
|
2974
2995
|
export declare const syncsGetResponseDataItemDataSetsItemVersionRegExp: RegExp;
|
|
@@ -2983,6 +3004,7 @@ export declare const syncsGetResponse: zod.ZodObject<{
|
|
|
2983
3004
|
}, zod.core.$strip>>;
|
|
2984
3005
|
dataSource: zod.ZodObject<{
|
|
2985
3006
|
id: zod.ZodString;
|
|
3007
|
+
isQueued: zod.ZodBoolean;
|
|
2986
3008
|
isSyncing: zod.ZodBoolean;
|
|
2987
3009
|
name: zod.ZodString;
|
|
2988
3010
|
sourceType: zod.ZodEnum<{
|
|
@@ -2998,16 +3020,39 @@ export declare const syncsGetResponse: zod.ZodObject<{
|
|
|
2998
3020
|
File: "File";
|
|
2999
3021
|
Sitemap: "Sitemap";
|
|
3000
3022
|
}>;
|
|
3023
|
+
syncStartedAt: zod.ZodOptional<zod.ZodNullable<zod.ZodISODateTime>>;
|
|
3001
3024
|
}, zod.core.$strip>;
|
|
3002
3025
|
filters: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
3003
3026
|
highwaterMark: zod.ZodOptional<zod.ZodNullable<zod.ZodISODateTime>>;
|
|
3004
3027
|
id: zod.ZodString;
|
|
3028
|
+
latestSyncAt: zod.ZodOptional<zod.ZodNullable<zod.ZodISODateTime>>;
|
|
3029
|
+
latestSyncItemCount: zod.ZodOptional<zod.ZodNullable<zod.ZodNumber>>;
|
|
3030
|
+
latestSyncMessage: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
3031
|
+
latestSyncStatus: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
3005
3032
|
name: zod.ZodString;
|
|
3006
3033
|
path: zod.ZodString;
|
|
3034
|
+
recentSyncs: zod.ZodOptional<zod.ZodNullable<zod.ZodArray<zod.ZodObject<{
|
|
3035
|
+
end: zod.ZodISODateTime;
|
|
3036
|
+
itemCount: zod.ZodNumber;
|
|
3037
|
+
message: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
3038
|
+
start: zod.ZodISODateTime;
|
|
3039
|
+
status: zod.ZodString;
|
|
3040
|
+
}, zod.core.$strip>>>>;
|
|
3007
3041
|
statusMessage: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
3008
3042
|
}, zod.core.$strip>>;
|
|
3009
3043
|
total: zod.ZodNumber;
|
|
3010
3044
|
}, zod.core.$strip>;
|
|
3045
|
+
/**
|
|
3046
|
+
* @summary The sync-requests queue right now: approximate depth and which data
|
|
3047
|
+
sources have a request WAITING. In-flight requests are invisible to
|
|
3048
|
+
peek (visibility timeout) — that state is each data source's
|
|
3049
|
+
isSyncing flag. Literal route wins over the {containerId} template.
|
|
3050
|
+
*/
|
|
3051
|
+
export declare const syncsGetQueueResponseWaitingDataSourceIdsItemRegExp: RegExp;
|
|
3052
|
+
export declare const syncsGetQueueResponse: zod.ZodObject<{
|
|
3053
|
+
depth: zod.ZodNumber;
|
|
3054
|
+
waitingDataSourceIds: zod.ZodArray<zod.ZodString>;
|
|
3055
|
+
}, zod.core.$strip>;
|
|
3011
3056
|
export declare const syncsGetByIdPathContainerIdRegExp: RegExp;
|
|
3012
3057
|
export declare const syncsGetByIdParams: zod.ZodObject<{
|
|
3013
3058
|
containerId: zod.ZodString;
|
|
@@ -3024,6 +3069,7 @@ export declare const syncsGetByIdResponse: zod.ZodObject<{
|
|
|
3024
3069
|
}, zod.core.$strip>>;
|
|
3025
3070
|
dataSource: zod.ZodObject<{
|
|
3026
3071
|
id: zod.ZodString;
|
|
3072
|
+
isQueued: zod.ZodBoolean;
|
|
3027
3073
|
isSyncing: zod.ZodBoolean;
|
|
3028
3074
|
name: zod.ZodString;
|
|
3029
3075
|
sourceType: zod.ZodEnum<{
|
|
@@ -3039,12 +3085,24 @@ export declare const syncsGetByIdResponse: zod.ZodObject<{
|
|
|
3039
3085
|
File: "File";
|
|
3040
3086
|
Sitemap: "Sitemap";
|
|
3041
3087
|
}>;
|
|
3088
|
+
syncStartedAt: zod.ZodOptional<zod.ZodNullable<zod.ZodISODateTime>>;
|
|
3042
3089
|
}, zod.core.$strip>;
|
|
3043
3090
|
filters: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
3044
3091
|
highwaterMark: zod.ZodOptional<zod.ZodNullable<zod.ZodISODateTime>>;
|
|
3045
3092
|
id: zod.ZodString;
|
|
3093
|
+
latestSyncAt: zod.ZodOptional<zod.ZodNullable<zod.ZodISODateTime>>;
|
|
3094
|
+
latestSyncItemCount: zod.ZodOptional<zod.ZodNullable<zod.ZodNumber>>;
|
|
3095
|
+
latestSyncMessage: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
3096
|
+
latestSyncStatus: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
3046
3097
|
name: zod.ZodString;
|
|
3047
3098
|
path: zod.ZodString;
|
|
3099
|
+
recentSyncs: zod.ZodOptional<zod.ZodNullable<zod.ZodArray<zod.ZodObject<{
|
|
3100
|
+
end: zod.ZodISODateTime;
|
|
3101
|
+
itemCount: zod.ZodNumber;
|
|
3102
|
+
message: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
3103
|
+
start: zod.ZodISODateTime;
|
|
3104
|
+
status: zod.ZodString;
|
|
3105
|
+
}, zod.core.$strip>>>>;
|
|
3048
3106
|
statusMessage: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
3049
3107
|
}, zod.core.$strip>;
|
|
3050
3108
|
/**
|
|
@@ -3347,6 +3405,7 @@ export declare const workSpacesGetGetQueryParams: zod.ZodObject<{
|
|
|
3347
3405
|
sortBy: zod.ZodOptional<zod.ZodString>;
|
|
3348
3406
|
sortDirection: zod.ZodOptional<zod.ZodString>;
|
|
3349
3407
|
}, zod.core.$strict>;
|
|
3408
|
+
export declare const workSpacesGetGetResponseDataItemConnectorsItemIdRegExpOne: RegExp;
|
|
3350
3409
|
export declare const workSpacesGetGetResponseDataItemDataSpacesItemDataSetsItemDataSpaceIdRegExpOne: RegExp;
|
|
3351
3410
|
export declare const workSpacesGetGetResponseDataItemDataSpacesItemDataSetsItemFlowActiveFlowDefinitionIdRegExpOne: RegExp;
|
|
3352
3411
|
export declare const workSpacesGetGetResponseDataItemDataSpacesItemDataSetsItemFlowIdRegExpOne: RegExp;
|
|
@@ -3367,6 +3426,11 @@ export declare const workSpacesGetGetResponseDataItemModelConfigurationsItemMode
|
|
|
3367
3426
|
export declare const workSpacesGetGetResponseDataItemSandBoxThreadIdRegExpOne: RegExp;
|
|
3368
3427
|
export declare const workSpacesGetGetResponse: zod.ZodObject<{
|
|
3369
3428
|
data: zod.ZodArray<zod.ZodObject<{
|
|
3429
|
+
connectors: zod.ZodArray<zod.ZodObject<{
|
|
3430
|
+
id: zod.ZodString;
|
|
3431
|
+
kind: zod.ZodString;
|
|
3432
|
+
name: zod.ZodString;
|
|
3433
|
+
}, zod.core.$strip>>;
|
|
3370
3434
|
createdAt: zod.ZodISODateTime;
|
|
3371
3435
|
createdByUserId: zod.ZodString;
|
|
3372
3436
|
dataSpaces: zod.ZodArray<zod.ZodObject<{
|
|
@@ -3638,6 +3702,7 @@ export declare const workSpacesGetIdPathIdRegExpOne: RegExp;
|
|
|
3638
3702
|
export declare const workSpacesGetIdParams: zod.ZodObject<{
|
|
3639
3703
|
id: zod.ZodString;
|
|
3640
3704
|
}, zod.core.$strict>;
|
|
3705
|
+
export declare const workSpacesGetIdResponseConnectorsItemIdRegExpOne: RegExp;
|
|
3641
3706
|
export declare const workSpacesGetIdResponseDataSpacesItemDataSetsItemDataSpaceIdRegExpOne: RegExp;
|
|
3642
3707
|
export declare const workSpacesGetIdResponseDataSpacesItemDataSetsItemFlowActiveFlowDefinitionIdRegExpOne: RegExp;
|
|
3643
3708
|
export declare const workSpacesGetIdResponseDataSpacesItemDataSetsItemFlowIdRegExpOne: RegExp;
|
|
@@ -3657,6 +3722,11 @@ export declare const workSpacesGetIdResponseModelConfigurationsItemModelDeployme
|
|
|
3657
3722
|
export declare const workSpacesGetIdResponseModelConfigurationsItemModelIdRegExpOne: RegExp;
|
|
3658
3723
|
export declare const workSpacesGetIdResponseSandBoxThreadIdRegExpOne: RegExp;
|
|
3659
3724
|
export declare const workSpacesGetIdResponse: zod.ZodObject<{
|
|
3725
|
+
connectors: zod.ZodArray<zod.ZodObject<{
|
|
3726
|
+
id: zod.ZodString;
|
|
3727
|
+
kind: zod.ZodString;
|
|
3728
|
+
name: zod.ZodString;
|
|
3729
|
+
}, zod.core.$strip>>;
|
|
3660
3730
|
createdAt: zod.ZodISODateTime;
|
|
3661
3731
|
createdByUserId: zod.ZodString;
|
|
3662
3732
|
dataSpaces: zod.ZodArray<zod.ZodObject<{
|
|
@@ -4006,6 +4076,28 @@ export declare const workSpacesPutModelConfigurationBody: zod.ZodObject<{
|
|
|
4006
4076
|
temperature: zod.ZodNumber;
|
|
4007
4077
|
topP: zod.ZodNumber;
|
|
4008
4078
|
}, zod.core.$strict>;
|
|
4079
|
+
/**
|
|
4080
|
+
* @summary Detaches a connector from a workspace. Flows still referencing it
|
|
4081
|
+
fail at resolve time rather than silently keeping access.
|
|
4082
|
+
*/
|
|
4083
|
+
export declare const workSpacesRemoveConnectorPathWorkspaceIdRegExp: RegExp;
|
|
4084
|
+
export declare const workSpacesRemoveConnectorPathConnectorIdRegExp: RegExp;
|
|
4085
|
+
export declare const workSpacesRemoveConnectorParams: zod.ZodObject<{
|
|
4086
|
+
workspaceId: zod.ZodString;
|
|
4087
|
+
connectorId: zod.ZodString;
|
|
4088
|
+
}, zod.core.$strict>;
|
|
4089
|
+
/**
|
|
4090
|
+
* @summary Attaches a connector to a workspace — the access model for external
|
|
4091
|
+
connectors, mirroring dataspaces. Only after this can a flow in the
|
|
4092
|
+
workspace reference the connector, and the resolve endpoint checks
|
|
4093
|
+
the same attachment at call time.
|
|
4094
|
+
*/
|
|
4095
|
+
export declare const workSpacesAddConnectorPathWorkspaceIdRegExp: RegExp;
|
|
4096
|
+
export declare const workSpacesAddConnectorPathConnectorIdRegExp: RegExp;
|
|
4097
|
+
export declare const workSpacesAddConnectorParams: zod.ZodObject<{
|
|
4098
|
+
workspaceId: zod.ZodString;
|
|
4099
|
+
connectorId: zod.ZodString;
|
|
4100
|
+
}, zod.core.$strict>;
|
|
4009
4101
|
/**
|
|
4010
4102
|
* @summary Removes a data space from a workspace.
|
|
4011
4103
|
*/
|
|
@@ -4272,6 +4364,128 @@ export declare const workSpacesSetActiveFlowLayoutParams: zod.ZodObject<{
|
|
|
4272
4364
|
workspaceId: zod.ZodString;
|
|
4273
4365
|
}, zod.core.$strict>;
|
|
4274
4366
|
export declare const workSpacesSetActiveFlowLayoutBody: zod.ZodAny;
|
|
4367
|
+
/**
|
|
4368
|
+
* @summary Lists connectors with their auth settings — never a credential.
|
|
4369
|
+
*/
|
|
4370
|
+
export declare const connectorsGetConnectorsQueryParams: zod.ZodObject<{
|
|
4371
|
+
kind: zod.ZodOptional<zod.ZodString>;
|
|
4372
|
+
}, zod.core.$strict>;
|
|
4373
|
+
export declare const connectorsGetConnectorsResponseIdRegExp: RegExp;
|
|
4374
|
+
export declare const connectorsGetConnectorsResponseItem: zod.ZodObject<{
|
|
4375
|
+
authHeaderName: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
4376
|
+
authScheme: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
4377
|
+
authType: zod.ZodString;
|
|
4378
|
+
createdAt: zod.ZodISODateTime;
|
|
4379
|
+
createdByUserId: zod.ZodString;
|
|
4380
|
+
hasSecret: zod.ZodBoolean;
|
|
4381
|
+
id: zod.ZodString;
|
|
4382
|
+
kind: zod.ZodString;
|
|
4383
|
+
modifiedAt: zod.ZodISODateTime;
|
|
4384
|
+
modifiedByUserId: zod.ZodString;
|
|
4385
|
+
name: zod.ZodString;
|
|
4386
|
+
url: zod.ZodString;
|
|
4387
|
+
}, zod.core.$strip>;
|
|
4388
|
+
export declare const connectorsGetConnectorsResponse: zod.ZodArray<zod.ZodObject<{
|
|
4389
|
+
authHeaderName: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
4390
|
+
authScheme: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
4391
|
+
authType: zod.ZodString;
|
|
4392
|
+
createdAt: zod.ZodISODateTime;
|
|
4393
|
+
createdByUserId: zod.ZodString;
|
|
4394
|
+
hasSecret: zod.ZodBoolean;
|
|
4395
|
+
id: zod.ZodString;
|
|
4396
|
+
kind: zod.ZodString;
|
|
4397
|
+
modifiedAt: zod.ZodISODateTime;
|
|
4398
|
+
modifiedByUserId: zod.ZodString;
|
|
4399
|
+
name: zod.ZodString;
|
|
4400
|
+
url: zod.ZodString;
|
|
4401
|
+
}, zod.core.$strip>>;
|
|
4402
|
+
/**
|
|
4403
|
+
* @summary Creates a connector and its shared credential in one call: the value
|
|
4404
|
+
goes to Key Vault, the row stores only the reference.
|
|
4405
|
+
*/
|
|
4406
|
+
export declare const connectorsCreateConnectorBody: zod.ZodObject<{
|
|
4407
|
+
authHeaderName: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
4408
|
+
authScheme: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
4409
|
+
authType: zod.ZodString;
|
|
4410
|
+
kind: zod.ZodString;
|
|
4411
|
+
name: zod.ZodString;
|
|
4412
|
+
secret: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
4413
|
+
url: zod.ZodString;
|
|
4414
|
+
}, zod.core.$strict>;
|
|
4415
|
+
/**
|
|
4416
|
+
* @summary Picker list for workspace editors: id, name and kind only. Gated on
|
|
4417
|
+
WorkspaceEdit rather than Admin because attaching a connector to a
|
|
4418
|
+
workspace is a workspace-editor action, and the picker is how they
|
|
4419
|
+
choose one. Admins pass this gate via the role bypass.
|
|
4420
|
+
*/
|
|
4421
|
+
export declare const connectorsGetConnectorSummariesQueryParams: zod.ZodObject<{
|
|
4422
|
+
kind: zod.ZodOptional<zod.ZodString>;
|
|
4423
|
+
}, zod.core.$strict>;
|
|
4424
|
+
export declare const connectorsGetConnectorSummariesResponseIdRegExp: RegExp;
|
|
4425
|
+
export declare const connectorsGetConnectorSummariesResponseItem: zod.ZodObject<{
|
|
4426
|
+
id: zod.ZodString;
|
|
4427
|
+
kind: zod.ZodString;
|
|
4428
|
+
name: zod.ZodString;
|
|
4429
|
+
}, zod.core.$strip>;
|
|
4430
|
+
export declare const connectorsGetConnectorSummariesResponse: zod.ZodArray<zod.ZodObject<{
|
|
4431
|
+
id: zod.ZodString;
|
|
4432
|
+
kind: zod.ZodString;
|
|
4433
|
+
name: zod.ZodString;
|
|
4434
|
+
}, zod.core.$strip>>;
|
|
4435
|
+
export declare const connectorsDeleteConnectorPathIdRegExp: RegExp;
|
|
4436
|
+
export declare const connectorsDeleteConnectorParams: zod.ZodObject<{
|
|
4437
|
+
id: zod.ZodString;
|
|
4438
|
+
}, zod.core.$strict>;
|
|
4439
|
+
export declare const connectorsGetConnectorPathIdRegExp: RegExp;
|
|
4440
|
+
export declare const connectorsGetConnectorParams: zod.ZodObject<{
|
|
4441
|
+
id: zod.ZodString;
|
|
4442
|
+
}, zod.core.$strict>;
|
|
4443
|
+
export declare const connectorsGetConnectorResponseIdRegExp: RegExp;
|
|
4444
|
+
export declare const connectorsGetConnectorResponse: zod.ZodObject<{
|
|
4445
|
+
authHeaderName: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
4446
|
+
authScheme: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
4447
|
+
authType: zod.ZodString;
|
|
4448
|
+
createdAt: zod.ZodISODateTime;
|
|
4449
|
+
createdByUserId: zod.ZodString;
|
|
4450
|
+
hasSecret: zod.ZodBoolean;
|
|
4451
|
+
id: zod.ZodString;
|
|
4452
|
+
kind: zod.ZodString;
|
|
4453
|
+
modifiedAt: zod.ZodISODateTime;
|
|
4454
|
+
modifiedByUserId: zod.ZodString;
|
|
4455
|
+
name: zod.ZodString;
|
|
4456
|
+
url: zod.ZodString;
|
|
4457
|
+
}, zod.core.$strip>;
|
|
4458
|
+
/**
|
|
4459
|
+
* @summary Updates a connector. Omit `Secret` to leave the credential
|
|
4460
|
+
untouched; supply one to rotate it.
|
|
4461
|
+
*/
|
|
4462
|
+
export declare const connectorsUpdateConnectorPathIdRegExp: RegExp;
|
|
4463
|
+
export declare const connectorsUpdateConnectorParams: zod.ZodObject<{
|
|
4464
|
+
id: zod.ZodString;
|
|
4465
|
+
}, zod.core.$strict>;
|
|
4466
|
+
export declare const connectorsUpdateConnectorBody: zod.ZodObject<{
|
|
4467
|
+
authHeaderName: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
4468
|
+
authScheme: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
4469
|
+
authType: zod.ZodString;
|
|
4470
|
+
name: zod.ZodString;
|
|
4471
|
+
secret: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
4472
|
+
url: zod.ZodString;
|
|
4473
|
+
}, zod.core.$strict>;
|
|
4474
|
+
export declare const connectorsUpdateConnectorResponseIdRegExp: RegExp;
|
|
4475
|
+
export declare const connectorsUpdateConnectorResponse: zod.ZodObject<{
|
|
4476
|
+
authHeaderName: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
4477
|
+
authScheme: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
4478
|
+
authType: zod.ZodString;
|
|
4479
|
+
createdAt: zod.ZodISODateTime;
|
|
4480
|
+
createdByUserId: zod.ZodString;
|
|
4481
|
+
hasSecret: zod.ZodBoolean;
|
|
4482
|
+
id: zod.ZodString;
|
|
4483
|
+
kind: zod.ZodString;
|
|
4484
|
+
modifiedAt: zod.ZodISODateTime;
|
|
4485
|
+
modifiedByUserId: zod.ZodString;
|
|
4486
|
+
name: zod.ZodString;
|
|
4487
|
+
url: zod.ZodString;
|
|
4488
|
+
}, zod.core.$strip>;
|
|
4275
4489
|
/**
|
|
4276
4490
|
* @summary Retrieve a Shared Access Signature (SAS) for a specific item within a data space's documents in SmartSpace, using the dataSpaceId.
|
|
4277
4491
|
*/
|