@smartspace/api-client 0.1.0-pr.762.542ee21 → 0.1.0-pr.763.a698272
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/config/api.d.ts +71 -1
- package/dist/generated/config/api.js +223 -1
- package/dist/generated/config/models/flowRunsAddFileIdFilesBody.d.ts +9 -0
- package/dist/generated/config/models/flowRunsAddFileIdFilesBody.js +8 -0
- package/dist/generated/config/models/flowRunsCreateFlowRunParams.d.ts +13 -0
- package/dist/generated/config/models/flowRunsCreateFlowRunParams.js +8 -0
- package/dist/generated/config/models/index.d.ts +5 -0
- package/dist/generated/config/models/index.js +5 -0
- package/dist/generated/config/models/modelProvidersGetProvidersParams.d.ts +16 -0
- package/dist/generated/config/models/modelProvidersGetProvidersParams.js +8 -0
- package/dist/generated/config/models/modelsGetDefaultDockerFileParams.d.ts +10 -0
- package/dist/generated/config/models/modelsGetDefaultDockerFileParams.js +2 -0
- package/dist/generated/config/models/usersAdminPermissionParams.d.ts +9 -0
- package/dist/generated/config/models/usersAdminPermissionParams.js +8 -0
- package/dist/generated/config/zod.d.ts +325 -0
- package/dist/generated/config/zod.js +246 -11
- package/package.json +1 -1
|
@@ -137,6 +137,8 @@ __exportStar(require("./flowInput"), exports);
|
|
|
137
137
|
__exportStar(require("./flowInputSchema"), exports);
|
|
138
138
|
__exportStar(require("./flowOutput"), exports);
|
|
139
139
|
__exportStar(require("./flowOutputSchema"), exports);
|
|
140
|
+
__exportStar(require("./flowRunsAddFileIdFilesBody"), exports);
|
|
141
|
+
__exportStar(require("./flowRunsCreateFlowRunParams"), exports);
|
|
140
142
|
__exportStar(require("./flowRunsGetStepExecutionsParams"), exports);
|
|
141
143
|
__exportStar(require("./flowRunsGetVariables200One"), exports);
|
|
142
144
|
__exportStar(require("./flowRunsGetVariables200Three"), exports);
|
|
@@ -193,6 +195,8 @@ __exportStar(require("./modelModel"), exports);
|
|
|
193
195
|
__exportStar(require("./modelModelDeployment"), exports);
|
|
194
196
|
__exportStar(require("./modelModelDeploymentStep"), exports);
|
|
195
197
|
__exportStar(require("./modelModelSummary"), exports);
|
|
198
|
+
__exportStar(require("./modelProvidersGetProvidersParams"), exports);
|
|
199
|
+
__exportStar(require("./modelsGetDefaultDockerFileParams"), exports);
|
|
196
200
|
__exportStar(require("./modelsGetModelsParams"), exports);
|
|
197
201
|
__exportStar(require("./notificationGetParams"), exports);
|
|
198
202
|
__exportStar(require("./notificationNotification"), exports);
|
|
@@ -239,6 +243,7 @@ __exportStar(require("./updateDataSource"), exports);
|
|
|
239
243
|
__exportStar(require("./updateDataSourceCredentials"), exports);
|
|
240
244
|
__exportStar(require("./updateDataSourceCredentialsCredentials"), exports);
|
|
241
245
|
__exportStar(require("./updateDataSpace"), exports);
|
|
246
|
+
__exportStar(require("./usersAdminPermissionParams"), exports);
|
|
242
247
|
__exportStar(require("./usersGetAccessWorkSpacesParams"), exports);
|
|
243
248
|
__exportStar(require("./usersGetUsersParams"), exports);
|
|
244
249
|
__exportStar(require("./usersRemoveUserFromAllWorkSpacesParams"), exports);
|
|
@@ -0,0 +1,16 @@
|
|
|
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 ModelProvidersGetProvidersParams = {
|
|
8
|
+
/**
|
|
9
|
+
* The number of providers to retrieve.
|
|
10
|
+
*/
|
|
11
|
+
take?: number;
|
|
12
|
+
/**
|
|
13
|
+
* The number of providers to skip.
|
|
14
|
+
*/
|
|
15
|
+
skip?: number;
|
|
16
|
+
};
|
|
@@ -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
|
+
import type { EnumsVirtualMachineServerType } from './enumsVirtualMachineServerType';
|
|
8
|
+
export type ModelsGetDefaultDockerFileParams = {
|
|
9
|
+
serverType?: EnumsVirtualMachineServerType;
|
|
10
|
+
};
|
|
@@ -326,6 +326,37 @@ export declare const activityGetLoggingResponse: zod.ZodObject<{
|
|
|
326
326
|
}, zod.core.$strip>>;
|
|
327
327
|
total: zod.ZodNumber;
|
|
328
328
|
}, zod.core.$strip>;
|
|
329
|
+
/**
|
|
330
|
+
* @summary Gets the state of an update that was triggered by ApplyLatestAvailableVersion.
|
|
331
|
+
*/
|
|
332
|
+
export declare const applicationUpdateGetLatestDeploymentResponse: zod.ZodObject<{
|
|
333
|
+
name: zod.ZodString;
|
|
334
|
+
startTimeUtc: zod.ZodOptional<zod.ZodNullable<zod.ZodISODateTime>>;
|
|
335
|
+
state: zod.ZodEnum<{
|
|
336
|
+
Unknown: "Unknown";
|
|
337
|
+
Failed: "Failed";
|
|
338
|
+
Deleted: "Deleted";
|
|
339
|
+
InProgress: "InProgress";
|
|
340
|
+
Succeeded: "Succeeded";
|
|
341
|
+
}>;
|
|
342
|
+
versionNumber: zod.ZodString;
|
|
343
|
+
}, zod.core.$strip>;
|
|
344
|
+
/**
|
|
345
|
+
* @summary Returns the current version of the application.
|
|
346
|
+
*/
|
|
347
|
+
export declare const applicationUpdateGetCurrentVersionResponse: zod.ZodObject<{
|
|
348
|
+
description: zod.ZodString;
|
|
349
|
+
versionNumber: zod.ZodString;
|
|
350
|
+
}, zod.core.$strip>;
|
|
351
|
+
/**
|
|
352
|
+
* @summary Not necessarily the latest version, but the latest version that is available for the application at its current version.
|
|
353
|
+
For instance, if app is currently on version 1.0, it might need to first be updated to 1.1 before it can be updated to 1.2.
|
|
354
|
+
Returns 204 if no new version available.
|
|
355
|
+
*/
|
|
356
|
+
export declare const applicationUpdateGetLatestAvailableVersionResponse: zod.ZodObject<{
|
|
357
|
+
description: zod.ZodString;
|
|
358
|
+
versionNumber: zod.ZodString;
|
|
359
|
+
}, zod.core.$strip>;
|
|
329
360
|
/**
|
|
330
361
|
* @summary Get a list of all block interfaces
|
|
331
362
|
*/
|
|
@@ -1220,6 +1251,26 @@ export declare const dataSourcesUpdateCredentialsParams: zod.ZodObject<{
|
|
|
1220
1251
|
export declare const dataSourcesUpdateCredentialsBody: zod.ZodObject<{
|
|
1221
1252
|
credentials: zod.ZodRecord<zod.ZodString, zod.ZodNullable<zod.ZodString>>;
|
|
1222
1253
|
}, zod.core.$strict>;
|
|
1254
|
+
export declare const dataSourcesGetAdminUsersPathIdRegExp: RegExp;
|
|
1255
|
+
export declare const dataSourcesGetAdminUsersParams: zod.ZodObject<{
|
|
1256
|
+
id: zod.ZodString;
|
|
1257
|
+
}, zod.core.$strict>;
|
|
1258
|
+
export declare const dataSourcesGetAdminUsersResponseItem: zod.ZodString;
|
|
1259
|
+
export declare const dataSourcesGetAdminUsersResponse: zod.ZodArray<zod.ZodString>;
|
|
1260
|
+
export declare const dataSourcesDeleteAdminPathIdRegExp: RegExp;
|
|
1261
|
+
export declare const dataSourcesDeleteAdminParams: zod.ZodObject<{
|
|
1262
|
+
id: zod.ZodString;
|
|
1263
|
+
userId: zod.ZodString;
|
|
1264
|
+
}, zod.core.$strict>;
|
|
1265
|
+
export declare const dataSourcesDeleteAdminResponseItem: zod.ZodString;
|
|
1266
|
+
export declare const dataSourcesDeleteAdminResponse: zod.ZodArray<zod.ZodString>;
|
|
1267
|
+
export declare const dataSourcesAddAdminPathIdRegExp: RegExp;
|
|
1268
|
+
export declare const dataSourcesAddAdminParams: zod.ZodObject<{
|
|
1269
|
+
id: zod.ZodString;
|
|
1270
|
+
userId: zod.ZodString;
|
|
1271
|
+
}, zod.core.$strict>;
|
|
1272
|
+
export declare const dataSourcesAddAdminResponseItem: zod.ZodString;
|
|
1273
|
+
export declare const dataSourcesAddAdminResponse: zod.ZodArray<zod.ZodString>;
|
|
1223
1274
|
/**
|
|
1224
1275
|
* @summary Retrieve a list of all data spaces in SmartSpace, with options for pagination to manage large sets of data spaces.
|
|
1225
1276
|
*/
|
|
@@ -1502,6 +1553,26 @@ export declare const dataSpacesPutBody: zod.ZodObject<{
|
|
|
1502
1553
|
id: zod.ZodString;
|
|
1503
1554
|
name: zod.ZodString;
|
|
1504
1555
|
}, zod.core.$strict>;
|
|
1556
|
+
export declare const dataSpacesGetAdminUsersPathIdRegExp: RegExp;
|
|
1557
|
+
export declare const dataSpacesGetAdminUsersParams: zod.ZodObject<{
|
|
1558
|
+
id: zod.ZodString;
|
|
1559
|
+
}, zod.core.$strict>;
|
|
1560
|
+
export declare const dataSpacesGetAdminUsersResponseItem: zod.ZodString;
|
|
1561
|
+
export declare const dataSpacesGetAdminUsersResponse: zod.ZodArray<zod.ZodString>;
|
|
1562
|
+
export declare const dataSpacesDeleteAdminPathIdRegExp: RegExp;
|
|
1563
|
+
export declare const dataSpacesDeleteAdminParams: zod.ZodObject<{
|
|
1564
|
+
id: zod.ZodString;
|
|
1565
|
+
userId: zod.ZodString;
|
|
1566
|
+
}, zod.core.$strict>;
|
|
1567
|
+
export declare const dataSpacesDeleteAdminResponseItem: zod.ZodString;
|
|
1568
|
+
export declare const dataSpacesDeleteAdminResponse: zod.ZodArray<zod.ZodString>;
|
|
1569
|
+
export declare const dataSpacesAddAdminPathIdRegExp: RegExp;
|
|
1570
|
+
export declare const dataSpacesAddAdminParams: zod.ZodObject<{
|
|
1571
|
+
id: zod.ZodString;
|
|
1572
|
+
userId: zod.ZodString;
|
|
1573
|
+
}, zod.core.$strict>;
|
|
1574
|
+
export declare const dataSpacesAddAdminResponseItem: zod.ZodString;
|
|
1575
|
+
export declare const dataSpacesAddAdminResponse: zod.ZodArray<zod.ZodString>;
|
|
1505
1576
|
/**
|
|
1506
1577
|
* @summary Retrieve a list of all data sets in SmartSpace, with options for pagination to manage large sets of data sets.
|
|
1507
1578
|
*/
|
|
@@ -1733,6 +1804,21 @@ export declare const filesGetUriQueryParams: zod.ZodObject<{
|
|
|
1733
1804
|
workspaceId: zod.ZodOptional<zod.ZodString>;
|
|
1734
1805
|
}, zod.core.$strict>;
|
|
1735
1806
|
export declare const filesGetUriResponse: zod.ZodString;
|
|
1807
|
+
/**
|
|
1808
|
+
* @summary Creates a new flow run with the specified parameters
|
|
1809
|
+
*/
|
|
1810
|
+
export declare const flowRunsCreateFlowRunQueryFlowIdRegExp: RegExp;
|
|
1811
|
+
export declare const flowRunsCreateFlowRunQueryParams: zod.ZodObject<{
|
|
1812
|
+
flowId: zod.ZodOptional<zod.ZodString>;
|
|
1813
|
+
}, zod.core.$strict>;
|
|
1814
|
+
export declare const flowRunsCreateFlowRunBody: zod.ZodObject<{
|
|
1815
|
+
debug: zod.ZodBoolean;
|
|
1816
|
+
inputs: zod.ZodOptional<zod.ZodNullable<zod.ZodArray<zod.ZodObject<{
|
|
1817
|
+
channels: zod.ZodRecord<zod.ZodString, zod.ZodNumber>;
|
|
1818
|
+
name: zod.ZodString;
|
|
1819
|
+
value: zod.ZodOptional<zod.ZodNullable<zod.ZodAny>>;
|
|
1820
|
+
}, zod.core.$strict>>>>;
|
|
1821
|
+
}, zod.core.$strict>;
|
|
1736
1822
|
/**
|
|
1737
1823
|
* @summary Searches for flow runs based on search term
|
|
1738
1824
|
*/
|
|
@@ -1766,6 +1852,29 @@ export declare const flowRunsGetFileFromFlowRunIdResponse: zod.ZodObject<{
|
|
|
1766
1852
|
threadId: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
1767
1853
|
workspaceId: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
1768
1854
|
}, zod.core.$strip>;
|
|
1855
|
+
/**
|
|
1856
|
+
* @summary Gets a flow run including its context
|
|
1857
|
+
*/
|
|
1858
|
+
export declare const flowRunsGetFlowRunPathIdRegExp: RegExp;
|
|
1859
|
+
export declare const flowRunsGetFlowRunParams: zod.ZodObject<{
|
|
1860
|
+
id: zod.ZodString;
|
|
1861
|
+
}, zod.core.$strict>;
|
|
1862
|
+
export declare const flowRunsAddFileIdFilesPathIdRegExp: RegExp;
|
|
1863
|
+
export declare const flowRunsAddFileIdFilesParams: zod.ZodObject<{
|
|
1864
|
+
id: zod.ZodString;
|
|
1865
|
+
}, zod.core.$strict>;
|
|
1866
|
+
export declare const flowRunsAddFileIdFilesBody: zod.ZodObject<{
|
|
1867
|
+
file: zod.ZodOptional<zod.ZodCustom<import("node:buffer").File, import("node:buffer").File>>;
|
|
1868
|
+
}, zod.core.$strict>;
|
|
1869
|
+
export declare const flowRunsAddFileIdFilesExistingPathIdRegExp: RegExp;
|
|
1870
|
+
export declare const flowRunsAddFileIdFilesExistingParams: zod.ZodObject<{
|
|
1871
|
+
id: zod.ZodString;
|
|
1872
|
+
}, zod.core.$strict>;
|
|
1873
|
+
export declare const flowRunsAddFileIdFilesExistingBodyFlowRunIdRegExp: RegExp;
|
|
1874
|
+
export declare const flowRunsAddFileIdFilesExistingBody: zod.ZodObject<{
|
|
1875
|
+
blobUri: zod.ZodString;
|
|
1876
|
+
flowRunId: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
1877
|
+
}, zod.core.$strict>;
|
|
1769
1878
|
export declare const flowRunsGetStepExecutionsPathIdRegExp: RegExp;
|
|
1770
1879
|
export declare const flowRunsGetStepExecutionsParams: zod.ZodObject<{
|
|
1771
1880
|
id: zod.ZodString;
|
|
@@ -1896,6 +2005,84 @@ export declare const flowsSetActiveFlowDefinitionBody: zod.ZodObject<{
|
|
|
1896
2005
|
schema: zod.ZodRecord<zod.ZodString, zod.ZodAny>;
|
|
1897
2006
|
}, zod.core.$strict>>>>;
|
|
1898
2007
|
}, zod.core.$strict>;
|
|
2008
|
+
/**
|
|
2009
|
+
* @summary Retrieves a list of model deployment providers.
|
|
2010
|
+
*/
|
|
2011
|
+
export declare const modelProvidersGetProvidersQueryTakeDefault = 50;
|
|
2012
|
+
export declare const modelProvidersGetProvidersQuerySkipDefault = 0;
|
|
2013
|
+
export declare const modelProvidersGetProvidersQueryParams: zod.ZodObject<{
|
|
2014
|
+
take: zod.ZodDefault<zod.ZodNumber>;
|
|
2015
|
+
skip: zod.ZodOptional<zod.ZodNumber>;
|
|
2016
|
+
}, zod.core.$strict>;
|
|
2017
|
+
/**
|
|
2018
|
+
* @summary Creates a new model deployment provider.
|
|
2019
|
+
*/
|
|
2020
|
+
export declare const modelProvidersCreateProviderBodyIdRegExp: RegExp;
|
|
2021
|
+
export declare const modelProvidersCreateProviderBody: zod.ZodObject<{
|
|
2022
|
+
apiKey: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
2023
|
+
apiVersion: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
2024
|
+
baseUrl: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
2025
|
+
googleCredentials: zod.ZodOptional<zod.ZodNullable<zod.ZodRecord<zod.ZodString, zod.ZodAny>>>;
|
|
2026
|
+
id: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
2027
|
+
location: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
2028
|
+
name: zod.ZodString;
|
|
2029
|
+
type: zod.ZodEnum<{
|
|
2030
|
+
OpenAi: "OpenAi";
|
|
2031
|
+
AzureOpenAi: "AzureOpenAi";
|
|
2032
|
+
HuggingFace: "HuggingFace";
|
|
2033
|
+
Cohere: "Cohere";
|
|
2034
|
+
Anthropic: "Anthropic";
|
|
2035
|
+
Gemini: "Gemini";
|
|
2036
|
+
VertexAi: "VertexAi";
|
|
2037
|
+
AzureFoundry: "AzureFoundry";
|
|
2038
|
+
}>;
|
|
2039
|
+
}, zod.core.$strict>;
|
|
2040
|
+
/**
|
|
2041
|
+
* @summary Retrieves the deployable models for a model provider
|
|
2042
|
+
*/
|
|
2043
|
+
export declare const modelProvidersGetModelProviderTypeDeployableModelsParams: zod.ZodObject<{
|
|
2044
|
+
providerType: zod.ZodEnum<{
|
|
2045
|
+
OpenAi: "OpenAi";
|
|
2046
|
+
AzureOpenAi: "AzureOpenAi";
|
|
2047
|
+
HuggingFace: "HuggingFace";
|
|
2048
|
+
Cohere: "Cohere";
|
|
2049
|
+
Anthropic: "Anthropic";
|
|
2050
|
+
Gemini: "Gemini";
|
|
2051
|
+
VertexAi: "VertexAi";
|
|
2052
|
+
AzureFoundry: "AzureFoundry";
|
|
2053
|
+
}>;
|
|
2054
|
+
}, zod.core.$strict>;
|
|
2055
|
+
export declare const modelProvidersGetProviderPathIdRegExp: RegExp;
|
|
2056
|
+
export declare const modelProvidersGetProviderParams: zod.ZodObject<{
|
|
2057
|
+
id: zod.ZodString;
|
|
2058
|
+
}, zod.core.$strict>;
|
|
2059
|
+
/**
|
|
2060
|
+
* @summary Updates or inserts a model deployment provider.
|
|
2061
|
+
*/
|
|
2062
|
+
export declare const modelProvidersUpsertProviderPathIdRegExp: RegExp;
|
|
2063
|
+
export declare const modelProvidersUpsertProviderParams: zod.ZodObject<{
|
|
2064
|
+
id: zod.ZodString;
|
|
2065
|
+
}, zod.core.$strict>;
|
|
2066
|
+
export declare const modelProvidersUpsertProviderBodyIdRegExp: RegExp;
|
|
2067
|
+
export declare const modelProvidersUpsertProviderBody: zod.ZodObject<{
|
|
2068
|
+
apiKey: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
2069
|
+
apiVersion: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
2070
|
+
baseUrl: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
2071
|
+
googleCredentials: zod.ZodOptional<zod.ZodNullable<zod.ZodRecord<zod.ZodString, zod.ZodAny>>>;
|
|
2072
|
+
id: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
2073
|
+
location: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
2074
|
+
name: zod.ZodString;
|
|
2075
|
+
type: zod.ZodEnum<{
|
|
2076
|
+
OpenAi: "OpenAi";
|
|
2077
|
+
AzureOpenAi: "AzureOpenAi";
|
|
2078
|
+
HuggingFace: "HuggingFace";
|
|
2079
|
+
Cohere: "Cohere";
|
|
2080
|
+
Anthropic: "Anthropic";
|
|
2081
|
+
Gemini: "Gemini";
|
|
2082
|
+
VertexAi: "VertexAi";
|
|
2083
|
+
AzureFoundry: "AzureFoundry";
|
|
2084
|
+
}>;
|
|
2085
|
+
}, zod.core.$strict>;
|
|
1899
2086
|
/**
|
|
1900
2087
|
* @summary Retrieves a list of models.
|
|
1901
2088
|
*/
|
|
@@ -2009,6 +2196,13 @@ export declare const modelsCreateModelBody: zod.ZodObject<{
|
|
|
2009
2196
|
Other: "Other";
|
|
2010
2197
|
}>>;
|
|
2011
2198
|
}, zod.core.$strict>;
|
|
2199
|
+
export declare const modelsGetDefaultDockerFileQueryParams: zod.ZodObject<{
|
|
2200
|
+
serverType: zod.ZodOptional<zod.ZodEnum<{
|
|
2201
|
+
TextGenerationInference: "TextGenerationInference";
|
|
2202
|
+
VLlm: "VLlm";
|
|
2203
|
+
}>>;
|
|
2204
|
+
}, zod.core.$strict>;
|
|
2205
|
+
export declare const modelsGetDefaultDockerFileResponse: zod.ZodString;
|
|
2012
2206
|
/**
|
|
2013
2207
|
* @summary Deletes a model with the specified ID.
|
|
2014
2208
|
*/
|
|
@@ -2221,6 +2415,18 @@ export declare const notificationGetResponse: zod.ZodObject<{
|
|
|
2221
2415
|
export declare const notificationPutUpdateBodyRegExpOne: RegExp;
|
|
2222
2416
|
export declare const notificationPutUpdateBodyItem: zod.ZodString;
|
|
2223
2417
|
export declare const notificationPutUpdateBody: zod.ZodArray<zod.ZodString>;
|
|
2418
|
+
/**
|
|
2419
|
+
* @summary Update the upgrade component of the smartspace plan
|
|
2420
|
+
*/
|
|
2421
|
+
export declare const planUpdateSmartSpaceUpgradeBody: zod.ZodObject<{
|
|
2422
|
+
workSpaceQuota: zod.ZodNumber;
|
|
2423
|
+
}, zod.core.$strict>;
|
|
2424
|
+
/**
|
|
2425
|
+
* @summary Calculate the cost of an upgrade change
|
|
2426
|
+
*/
|
|
2427
|
+
export declare const planCalculateSmartSpaceUpgradeCostBody: zod.ZodObject<{
|
|
2428
|
+
workSpaceQuota: zod.ZodNumber;
|
|
2429
|
+
}, zod.core.$strict>;
|
|
2224
2430
|
/**
|
|
2225
2431
|
* @summary Gets the number of requests by a specified duration
|
|
2226
2432
|
*/
|
|
@@ -2318,6 +2524,32 @@ export declare const usersGetUsersResponse: zod.ZodObject<{
|
|
|
2318
2524
|
}, zod.core.$strip>>;
|
|
2319
2525
|
total: zod.ZodNumber;
|
|
2320
2526
|
}, zod.core.$strip>;
|
|
2527
|
+
export declare const usersGetUsersByFilterParams: zod.ZodObject<{
|
|
2528
|
+
permissions: zod.ZodEnum<{
|
|
2529
|
+
None: "None";
|
|
2530
|
+
WorkspaceCreate: "WorkspaceCreate";
|
|
2531
|
+
WorkspaceEdit: "WorkspaceEdit";
|
|
2532
|
+
WorkspaceDelete: "WorkspaceDelete";
|
|
2533
|
+
DataSpaceCreate: "DataSpaceCreate";
|
|
2534
|
+
DataSpaceEdit: "DataSpaceEdit";
|
|
2535
|
+
DataSpaceDelete: "DataSpaceDelete";
|
|
2536
|
+
ConnectorCreate: "ConnectorCreate";
|
|
2537
|
+
ConnectorEdit: "ConnectorEdit";
|
|
2538
|
+
ConnectorDelete: "ConnectorDelete";
|
|
2539
|
+
}>;
|
|
2540
|
+
}, zod.core.$strict>;
|
|
2541
|
+
export declare const usersGetMyPermissionsResponse: zod.ZodEnum<{
|
|
2542
|
+
None: "None";
|
|
2543
|
+
WorkspaceCreate: "WorkspaceCreate";
|
|
2544
|
+
WorkspaceEdit: "WorkspaceEdit";
|
|
2545
|
+
WorkspaceDelete: "WorkspaceDelete";
|
|
2546
|
+
DataSpaceCreate: "DataSpaceCreate";
|
|
2547
|
+
DataSpaceEdit: "DataSpaceEdit";
|
|
2548
|
+
DataSpaceDelete: "DataSpaceDelete";
|
|
2549
|
+
ConnectorCreate: "ConnectorCreate";
|
|
2550
|
+
ConnectorEdit: "ConnectorEdit";
|
|
2551
|
+
ConnectorDelete: "ConnectorDelete";
|
|
2552
|
+
}>;
|
|
2321
2553
|
/**
|
|
2322
2554
|
* @summary Disable user (Remove all assigned WorkSpaces by UserId)
|
|
2323
2555
|
*/
|
|
@@ -2429,6 +2661,45 @@ export declare const usersGetAccessWorkSpacesResponse: zod.ZodArray<zod.ZodObjec
|
|
|
2429
2661
|
workSpaceId: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
2430
2662
|
workSpaceName: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
2431
2663
|
}, zod.core.$strip>>;
|
|
2664
|
+
export declare const usersAdminPermissionPathUserIdRegExp: RegExp;
|
|
2665
|
+
export declare const usersAdminPermissionParams: zod.ZodObject<{
|
|
2666
|
+
userId: zod.ZodString;
|
|
2667
|
+
}, zod.core.$strict>;
|
|
2668
|
+
export declare const usersAdminPermissionQueryParams: zod.ZodObject<{
|
|
2669
|
+
isAdmin: zod.ZodOptional<zod.ZodBoolean>;
|
|
2670
|
+
}, zod.core.$strict>;
|
|
2671
|
+
export declare const usersAddUserPermissionPathUserIdRegExp: RegExp;
|
|
2672
|
+
export declare const usersAddUserPermissionParams: zod.ZodObject<{
|
|
2673
|
+
userId: zod.ZodString;
|
|
2674
|
+
}, zod.core.$strict>;
|
|
2675
|
+
export declare const usersAddUserPermissionBody: zod.ZodEnum<{
|
|
2676
|
+
None: "None";
|
|
2677
|
+
WorkspaceCreate: "WorkspaceCreate";
|
|
2678
|
+
WorkspaceEdit: "WorkspaceEdit";
|
|
2679
|
+
WorkspaceDelete: "WorkspaceDelete";
|
|
2680
|
+
DataSpaceCreate: "DataSpaceCreate";
|
|
2681
|
+
DataSpaceEdit: "DataSpaceEdit";
|
|
2682
|
+
DataSpaceDelete: "DataSpaceDelete";
|
|
2683
|
+
ConnectorCreate: "ConnectorCreate";
|
|
2684
|
+
ConnectorEdit: "ConnectorEdit";
|
|
2685
|
+
ConnectorDelete: "ConnectorDelete";
|
|
2686
|
+
}>;
|
|
2687
|
+
export declare const usersRemoveUserPermissionPathUserIdRegExp: RegExp;
|
|
2688
|
+
export declare const usersRemoveUserPermissionParams: zod.ZodObject<{
|
|
2689
|
+
userId: zod.ZodString;
|
|
2690
|
+
permission: zod.ZodEnum<{
|
|
2691
|
+
None: "None";
|
|
2692
|
+
WorkspaceCreate: "WorkspaceCreate";
|
|
2693
|
+
WorkspaceEdit: "WorkspaceEdit";
|
|
2694
|
+
WorkspaceDelete: "WorkspaceDelete";
|
|
2695
|
+
DataSpaceCreate: "DataSpaceCreate";
|
|
2696
|
+
DataSpaceEdit: "DataSpaceEdit";
|
|
2697
|
+
DataSpaceDelete: "DataSpaceDelete";
|
|
2698
|
+
ConnectorCreate: "ConnectorCreate";
|
|
2699
|
+
ConnectorEdit: "ConnectorEdit";
|
|
2700
|
+
ConnectorDelete: "ConnectorDelete";
|
|
2701
|
+
}>;
|
|
2702
|
+
}, zod.core.$strict>;
|
|
2432
2703
|
/**
|
|
2433
2704
|
* @summary Returns a list of available Azure locations for deploying virtual machines
|
|
2434
2705
|
*/
|
|
@@ -3265,6 +3536,52 @@ export declare const workSpacesGetIdResponse: zod.ZodObject<{
|
|
|
3265
3536
|
schema: zod.ZodRecord<zod.ZodString, zod.ZodAny>;
|
|
3266
3537
|
}, zod.core.$strip>>;
|
|
3267
3538
|
}, zod.core.$strip>;
|
|
3539
|
+
export declare const workSpacesGetWorkspaceAdminsPathIdRegExp: RegExp;
|
|
3540
|
+
export declare const workSpacesGetWorkspaceAdminsParams: zod.ZodObject<{
|
|
3541
|
+
id: zod.ZodString;
|
|
3542
|
+
}, zod.core.$strict>;
|
|
3543
|
+
export declare const workSpacesGetWorkspaceAdminsResponseItem: zod.ZodObject<{
|
|
3544
|
+
id: zod.ZodString;
|
|
3545
|
+
isAdmin: zod.ZodBoolean;
|
|
3546
|
+
name: zod.ZodString;
|
|
3547
|
+
}, zod.core.$strip>;
|
|
3548
|
+
export declare const workSpacesGetWorkspaceAdminsResponse: zod.ZodArray<zod.ZodObject<{
|
|
3549
|
+
id: zod.ZodString;
|
|
3550
|
+
isAdmin: zod.ZodBoolean;
|
|
3551
|
+
name: zod.ZodString;
|
|
3552
|
+
}, zod.core.$strip>>;
|
|
3553
|
+
export declare const workSpacesDeleteAdminPathIdRegExp: RegExp;
|
|
3554
|
+
export declare const workSpacesDeleteAdminPathUserIdRegExp: RegExp;
|
|
3555
|
+
export declare const workSpacesDeleteAdminParams: zod.ZodObject<{
|
|
3556
|
+
id: zod.ZodString;
|
|
3557
|
+
userId: zod.ZodString;
|
|
3558
|
+
}, zod.core.$strict>;
|
|
3559
|
+
export declare const workSpacesDeleteAdminResponseItem: zod.ZodObject<{
|
|
3560
|
+
id: zod.ZodString;
|
|
3561
|
+
isAdmin: zod.ZodBoolean;
|
|
3562
|
+
name: zod.ZodString;
|
|
3563
|
+
}, zod.core.$strip>;
|
|
3564
|
+
export declare const workSpacesDeleteAdminResponse: zod.ZodArray<zod.ZodObject<{
|
|
3565
|
+
id: zod.ZodString;
|
|
3566
|
+
isAdmin: zod.ZodBoolean;
|
|
3567
|
+
name: zod.ZodString;
|
|
3568
|
+
}, zod.core.$strip>>;
|
|
3569
|
+
export declare const workSpacesAddWorkspaceAdminPathIdRegExp: RegExp;
|
|
3570
|
+
export declare const workSpacesAddWorkspaceAdminPathUserIdRegExp: RegExp;
|
|
3571
|
+
export declare const workSpacesAddWorkspaceAdminParams: zod.ZodObject<{
|
|
3572
|
+
id: zod.ZodString;
|
|
3573
|
+
userId: zod.ZodString;
|
|
3574
|
+
}, zod.core.$strict>;
|
|
3575
|
+
export declare const workSpacesAddWorkspaceAdminResponseItem: zod.ZodObject<{
|
|
3576
|
+
id: zod.ZodString;
|
|
3577
|
+
isAdmin: zod.ZodBoolean;
|
|
3578
|
+
name: zod.ZodString;
|
|
3579
|
+
}, zod.core.$strip>;
|
|
3580
|
+
export declare const workSpacesAddWorkspaceAdminResponse: zod.ZodArray<zod.ZodObject<{
|
|
3581
|
+
id: zod.ZodString;
|
|
3582
|
+
isAdmin: zod.ZodBoolean;
|
|
3583
|
+
name: zod.ZodString;
|
|
3584
|
+
}, zod.core.$strip>>;
|
|
3268
3585
|
/**
|
|
3269
3586
|
* @summary Update basic information of a specific workspace in SmartSpace, such as name and summary, using the workspace's ID.
|
|
3270
3587
|
*/
|
|
@@ -3280,6 +3597,14 @@ export declare const workSpacesPutBody: zod.ZodObject<{
|
|
|
3280
3597
|
summary: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
3281
3598
|
tags: zod.ZodOptional<zod.ZodNullable<zod.ZodArray<zod.ZodString>>>;
|
|
3282
3599
|
}, zod.core.$strict>;
|
|
3600
|
+
/**
|
|
3601
|
+
* @summary Mark a workspace as favorited or not in SmartSpace, using the workspaces's ID and a boolean value in the request.
|
|
3602
|
+
*/
|
|
3603
|
+
export declare const workSpacesSetFavoritedPathIdRegExp: RegExp;
|
|
3604
|
+
export declare const workSpacesSetFavoritedParams: zod.ZodObject<{
|
|
3605
|
+
id: zod.ZodString;
|
|
3606
|
+
}, zod.core.$strict>;
|
|
3607
|
+
export declare const workSpacesSetFavoritedBody: zod.ZodBoolean;
|
|
3283
3608
|
/**
|
|
3284
3609
|
* @summary Retrieve all message threads associated with a specific workspace in SmartSpace, identified by workspaceId, with pagination options take and skip.
|
|
3285
3610
|
*/
|