@smartspace/api-client 0.1.0-pr.759.386c9a6 → 0.1.0-pr.760.f4591dc
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 +1 -71
- package/dist/generated/config/api.js +1 -223
- package/dist/generated/config/models/dataSourcesGetParams.d.ts +8 -0
- package/dist/generated/config/models/dataSpacesGetParams.d.ts +8 -0
- package/dist/generated/config/models/index.d.ts +0 -5
- package/dist/generated/config/models/index.js +0 -5
- package/dist/generated/config/models/workSpacesGetGetParams.d.ts +8 -0
- package/dist/generated/config/zod.d.ts +6 -325
- package/dist/generated/config/zod.js +19 -248
- package/package.json +1 -1
- package/dist/generated/config/models/flowRunsAddFileIdFilesBody.d.ts +0 -9
- package/dist/generated/config/models/flowRunsAddFileIdFilesBody.js +0 -8
- package/dist/generated/config/models/flowRunsCreateFlowRunParams.d.ts +0 -13
- package/dist/generated/config/models/flowRunsCreateFlowRunParams.js +0 -8
- package/dist/generated/config/models/modelProvidersGetProvidersParams.d.ts +0 -16
- package/dist/generated/config/models/modelProvidersGetProvidersParams.js +0 -8
- package/dist/generated/config/models/modelsGetDefaultDockerFileParams.d.ts +0 -10
- package/dist/generated/config/models/modelsGetDefaultDockerFileParams.js +0 -2
- package/dist/generated/config/models/usersAdminPermissionParams.d.ts +0 -9
- package/dist/generated/config/models/usersAdminPermissionParams.js +0 -8
|
@@ -17,4 +17,12 @@ export type WorkSpacesGetGetParams = {
|
|
|
17
17
|
* The search query to filter workspaces.
|
|
18
18
|
*/
|
|
19
19
|
search?: string;
|
|
20
|
+
/**
|
|
21
|
+
* The column to sort by (e.g. name, createdAt, modifiedAt).
|
|
22
|
+
*/
|
|
23
|
+
sortBy?: string;
|
|
24
|
+
/**
|
|
25
|
+
* The sort direction: asc or desc.
|
|
26
|
+
*/
|
|
27
|
+
sortDirection?: string;
|
|
20
28
|
};
|
|
@@ -326,37 +326,6 @@ 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>;
|
|
360
329
|
/**
|
|
361
330
|
* @summary Get a list of all block interfaces
|
|
362
331
|
*/
|
|
@@ -1124,6 +1093,8 @@ export declare const dataSourcesGetQueryParams: zod.ZodObject<{
|
|
|
1124
1093
|
take: zod.ZodDefault<zod.ZodNumber>;
|
|
1125
1094
|
skip: zod.ZodOptional<zod.ZodNumber>;
|
|
1126
1095
|
search: zod.ZodOptional<zod.ZodString>;
|
|
1096
|
+
sortBy: zod.ZodOptional<zod.ZodString>;
|
|
1097
|
+
sortDirection: zod.ZodOptional<zod.ZodString>;
|
|
1127
1098
|
}, zod.core.$strict>;
|
|
1128
1099
|
export declare const dataSourcesGetResponseDataItemContainersItemDataSourceIdRegExp: RegExp;
|
|
1129
1100
|
export declare const dataSourcesGetResponseDataItemContainersItemIdRegExp: RegExp;
|
|
@@ -1251,26 +1222,6 @@ export declare const dataSourcesUpdateCredentialsParams: zod.ZodObject<{
|
|
|
1251
1222
|
export declare const dataSourcesUpdateCredentialsBody: zod.ZodObject<{
|
|
1252
1223
|
credentials: zod.ZodRecord<zod.ZodString, zod.ZodNullable<zod.ZodString>>;
|
|
1253
1224
|
}, 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>;
|
|
1274
1225
|
/**
|
|
1275
1226
|
* @summary Retrieve a list of all data spaces in SmartSpace, with options for pagination to manage large sets of data spaces.
|
|
1276
1227
|
*/
|
|
@@ -1280,6 +1231,8 @@ export declare const dataSpacesGetQueryParams: zod.ZodObject<{
|
|
|
1280
1231
|
take: zod.ZodDefault<zod.ZodNumber>;
|
|
1281
1232
|
skip: zod.ZodOptional<zod.ZodNumber>;
|
|
1282
1233
|
search: zod.ZodOptional<zod.ZodString>;
|
|
1234
|
+
sortBy: zod.ZodOptional<zod.ZodString>;
|
|
1235
|
+
sortDirection: zod.ZodOptional<zod.ZodString>;
|
|
1283
1236
|
}, zod.core.$strict>;
|
|
1284
1237
|
export declare const dataSpacesGetResponseDataItemDataSetsItemDataSpaceIdRegExp: RegExp;
|
|
1285
1238
|
export declare const dataSpacesGetResponseDataItemDataSetsItemFlowActiveFlowDefinitionIdRegExp: RegExp;
|
|
@@ -1553,26 +1506,6 @@ export declare const dataSpacesPutBody: zod.ZodObject<{
|
|
|
1553
1506
|
id: zod.ZodString;
|
|
1554
1507
|
name: zod.ZodString;
|
|
1555
1508
|
}, 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>;
|
|
1576
1509
|
/**
|
|
1577
1510
|
* @summary Retrieve a list of all data sets in SmartSpace, with options for pagination to manage large sets of data sets.
|
|
1578
1511
|
*/
|
|
@@ -1804,21 +1737,6 @@ export declare const filesGetUriQueryParams: zod.ZodObject<{
|
|
|
1804
1737
|
workspaceId: zod.ZodOptional<zod.ZodString>;
|
|
1805
1738
|
}, zod.core.$strict>;
|
|
1806
1739
|
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>;
|
|
1822
1740
|
/**
|
|
1823
1741
|
* @summary Searches for flow runs based on search term
|
|
1824
1742
|
*/
|
|
@@ -1852,29 +1770,6 @@ export declare const flowRunsGetFileFromFlowRunIdResponse: zod.ZodObject<{
|
|
|
1852
1770
|
threadId: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
1853
1771
|
workspaceId: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
1854
1772
|
}, 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>;
|
|
1878
1773
|
export declare const flowRunsGetStepExecutionsPathIdRegExp: RegExp;
|
|
1879
1774
|
export declare const flowRunsGetStepExecutionsParams: zod.ZodObject<{
|
|
1880
1775
|
id: zod.ZodString;
|
|
@@ -2005,84 +1900,6 @@ export declare const flowsSetActiveFlowDefinitionBody: zod.ZodObject<{
|
|
|
2005
1900
|
schema: zod.ZodRecord<zod.ZodString, zod.ZodAny>;
|
|
2006
1901
|
}, zod.core.$strict>>>>;
|
|
2007
1902
|
}, 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>;
|
|
2086
1903
|
/**
|
|
2087
1904
|
* @summary Retrieves a list of models.
|
|
2088
1905
|
*/
|
|
@@ -2196,13 +2013,6 @@ export declare const modelsCreateModelBody: zod.ZodObject<{
|
|
|
2196
2013
|
Other: "Other";
|
|
2197
2014
|
}>>;
|
|
2198
2015
|
}, 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;
|
|
2206
2016
|
/**
|
|
2207
2017
|
* @summary Deletes a model with the specified ID.
|
|
2208
2018
|
*/
|
|
@@ -2415,18 +2225,6 @@ export declare const notificationGetResponse: zod.ZodObject<{
|
|
|
2415
2225
|
export declare const notificationPutUpdateBodyRegExpOne: RegExp;
|
|
2416
2226
|
export declare const notificationPutUpdateBodyItem: zod.ZodString;
|
|
2417
2227
|
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>;
|
|
2430
2228
|
/**
|
|
2431
2229
|
* @summary Gets the number of requests by a specified duration
|
|
2432
2230
|
*/
|
|
@@ -2524,32 +2322,6 @@ export declare const usersGetUsersResponse: zod.ZodObject<{
|
|
|
2524
2322
|
}, zod.core.$strip>>;
|
|
2525
2323
|
total: zod.ZodNumber;
|
|
2526
2324
|
}, 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
|
-
}>;
|
|
2553
2325
|
/**
|
|
2554
2326
|
* @summary Disable user (Remove all assigned WorkSpaces by UserId)
|
|
2555
2327
|
*/
|
|
@@ -2661,45 +2433,6 @@ export declare const usersGetAccessWorkSpacesResponse: zod.ZodArray<zod.ZodObjec
|
|
|
2661
2433
|
workSpaceId: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
2662
2434
|
workSpaceName: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
2663
2435
|
}, 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>;
|
|
2703
2436
|
/**
|
|
2704
2437
|
* @summary Returns a list of available Azure locations for deploying virtual machines
|
|
2705
2438
|
*/
|
|
@@ -2765,6 +2498,8 @@ export declare const workSpacesGetGetQueryParams: zod.ZodObject<{
|
|
|
2765
2498
|
take: zod.ZodDefault<zod.ZodNumber>;
|
|
2766
2499
|
skip: zod.ZodOptional<zod.ZodNumber>;
|
|
2767
2500
|
search: zod.ZodOptional<zod.ZodString>;
|
|
2501
|
+
sortBy: zod.ZodOptional<zod.ZodString>;
|
|
2502
|
+
sortDirection: zod.ZodOptional<zod.ZodString>;
|
|
2768
2503
|
}, zod.core.$strict>;
|
|
2769
2504
|
export declare const workSpacesGetGetResponseDataItemDataSpacesItemDataSetsItemDataSpaceIdRegExpOne: RegExp;
|
|
2770
2505
|
export declare const workSpacesGetGetResponseDataItemDataSpacesItemDataSetsItemFlowActiveFlowDefinitionIdRegExpOne: RegExp;
|
|
@@ -3536,52 +3271,6 @@ export declare const workSpacesGetIdResponse: zod.ZodObject<{
|
|
|
3536
3271
|
schema: zod.ZodRecord<zod.ZodString, zod.ZodAny>;
|
|
3537
3272
|
}, zod.core.$strip>>;
|
|
3538
3273
|
}, 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>>;
|
|
3585
3274
|
/**
|
|
3586
3275
|
* @summary Update basic information of a specific workspace in SmartSpace, such as name and summary, using the workspace's ID.
|
|
3587
3276
|
*/
|
|
@@ -3597,14 +3286,6 @@ export declare const workSpacesPutBody: zod.ZodObject<{
|
|
|
3597
3286
|
summary: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
3598
3287
|
tags: zod.ZodOptional<zod.ZodNullable<zod.ZodArray<zod.ZodString>>>;
|
|
3599
3288
|
}, 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;
|
|
3608
3289
|
/**
|
|
3609
3290
|
* @summary Retrieve all message threads associated with a specific workspace in SmartSpace, identified by workspaceId, with pagination options take and skip.
|
|
3610
3291
|
*/
|