@smartspace/api-client 0.1.0-dev.9b4ddb9 → 0.1.0-dev.9c69a4d
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.d.ts +10 -4
- package/dist/generated/chat/api.js +48 -1
- package/dist/generated/chat/models/fileUriResponse.d.ts +9 -0
- package/dist/generated/chat/models/fileUriResponse.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/modelModel.d.ts +2 -2
- package/dist/generated/chat/models/modelModelSummary.d.ts +2 -2
- package/dist/generated/chat/models/workSpace.d.ts +0 -2
- package/dist/generated/chat/zod.d.ts +157 -43
- package/dist/generated/chat/zod.js +122 -14
- package/dist/generated/config/api.d.ts +91 -13
- package/dist/generated/config/api.js +282 -15
- package/dist/generated/config/models/createModel.d.ts +2 -0
- package/dist/generated/config/models/fileUriResponse.d.ts +9 -0
- package/dist/generated/config/models/flowRunsAddFileIdFilesBody.d.ts +9 -0
- package/dist/generated/config/models/flowRunsCreateFlowRunParams.d.ts +13 -0
- package/dist/generated/config/models/index.d.ts +10 -4
- package/dist/generated/config/models/index.js +10 -4
- package/dist/generated/config/models/messageSandBoxMessageRequest.d.ts +3 -0
- package/dist/generated/config/models/messageSandBoxMessageRequestVariables.d.ts +12 -0
- package/dist/generated/config/models/modelModel.d.ts +2 -2
- package/dist/generated/config/models/modelModelSummary.d.ts +2 -2
- 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/{sandBoxThreadMessagesWorkspacesWorkspaceIdSandboxMessagesParams.d.ts → sandBoxGetThreadMessagesParams.d.ts} +1 -1
- package/dist/generated/config/models/sandBoxGetThreadMessagesParams.js +8 -0
- package/dist/generated/config/models/usersAdminPermissionParams.d.ts +9 -0
- package/dist/generated/config/models/usersAdminPermissionParams.js +8 -0
- package/dist/generated/config/models/workSpace.d.ts +0 -2
- package/dist/generated/config/models/{workSpacesWorkspaceFilesWorkspaceIdFilesParams.d.ts → workSpacesGetWorkspaceFilesParams.d.ts} +1 -1
- package/dist/generated/config/models/workSpacesGetWorkspaceFilesParams.js +8 -0
- package/dist/generated/config/models/{workSpacesWorkspaceFilesWorkspaceIdFilesBody.d.ts → workSpacesWorkspaceFilesBody.d.ts} +1 -1
- package/dist/generated/config/models/workSpacesWorkspaceFilesBody.js +8 -0
- package/dist/generated/config/zod.d.ts +614 -82
- package/dist/generated/config/zod.js +436 -61
- package/dist/generated/signalr/SmartSpace.App.Business.Models.Comment.d.ts +24 -0
- package/dist/generated/signalr/SmartSpace.App.Business.Models.Comment.js +5 -0
- package/dist/generated/signalr/SmartSpace.App.Business.Models.MessageThread.d.ts +27 -0
- package/dist/generated/signalr/SmartSpace.App.Business.Models.MessageThread.js +5 -0
- package/dist/generated/signalr/TypedSignalR.Client/SmartSpace.App.Business.Hubs.Contracts.d.ts +71 -0
- package/dist/generated/signalr/TypedSignalR.Client/SmartSpace.App.Business.Hubs.Contracts.js +2 -0
- package/dist/generated/signalr/TypedSignalR.Client/index.d.ts +21 -0
- package/dist/generated/signalr/TypedSignalR.Client/index.js +114 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +2 -1
- package/dist/signalr.d.ts +4 -0
- package/dist/signalr.js +18 -0
- package/package.json +6 -2
- package/dist/generated/config/models/workSpacesUpdatePromptResponseFlagParams.d.ts +0 -12
- /package/dist/generated/config/models/{sandBoxThreadMessagesWorkspacesWorkspaceIdSandboxMessagesParams.js → fileUriResponse.js} +0 -0
- /package/dist/generated/config/models/{workSpacesUpdatePromptResponseFlagParams.js → flowRunsAddFileIdFilesBody.js} +0 -0
- /package/dist/generated/config/models/{workSpacesWorkspaceFilesWorkspaceIdFilesBody.js → flowRunsCreateFlowRunParams.js} +0 -0
- /package/dist/generated/config/models/{workSpacesWorkspaceFilesWorkspaceIdFilesParams.js → messageSandBoxMessageRequestVariables.js} +0 -0
|
@@ -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
|
*/
|
|
@@ -1732,7 +1803,24 @@ export declare const filesGetUriQueryParams: zod.ZodObject<{
|
|
|
1732
1803
|
threadId: zod.ZodOptional<zod.ZodString>;
|
|
1733
1804
|
workspaceId: zod.ZodOptional<zod.ZodString>;
|
|
1734
1805
|
}, zod.core.$strict>;
|
|
1735
|
-
export declare const filesGetUriResponse: zod.
|
|
1806
|
+
export declare const filesGetUriResponse: zod.ZodObject<{
|
|
1807
|
+
uri: zod.ZodString;
|
|
1808
|
+
}, zod.core.$strip>;
|
|
1809
|
+
/**
|
|
1810
|
+
* @summary Creates a new flow run with the specified parameters
|
|
1811
|
+
*/
|
|
1812
|
+
export declare const flowRunsCreateFlowRunQueryFlowIdRegExp: RegExp;
|
|
1813
|
+
export declare const flowRunsCreateFlowRunQueryParams: zod.ZodObject<{
|
|
1814
|
+
flowId: zod.ZodOptional<zod.ZodString>;
|
|
1815
|
+
}, zod.core.$strict>;
|
|
1816
|
+
export declare const flowRunsCreateFlowRunBody: zod.ZodObject<{
|
|
1817
|
+
debug: zod.ZodBoolean;
|
|
1818
|
+
inputs: zod.ZodOptional<zod.ZodNullable<zod.ZodArray<zod.ZodObject<{
|
|
1819
|
+
channels: zod.ZodRecord<zod.ZodString, zod.ZodNumber>;
|
|
1820
|
+
name: zod.ZodString;
|
|
1821
|
+
value: zod.ZodOptional<zod.ZodNullable<zod.ZodAny>>;
|
|
1822
|
+
}, zod.core.$strict>>>>;
|
|
1823
|
+
}, zod.core.$strict>;
|
|
1736
1824
|
/**
|
|
1737
1825
|
* @summary Searches for flow runs based on search term
|
|
1738
1826
|
*/
|
|
@@ -1766,6 +1854,29 @@ export declare const flowRunsGetFileFromFlowRunIdResponse: zod.ZodObject<{
|
|
|
1766
1854
|
threadId: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
1767
1855
|
workspaceId: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
1768
1856
|
}, zod.core.$strip>;
|
|
1857
|
+
/**
|
|
1858
|
+
* @summary Gets a flow run including its context
|
|
1859
|
+
*/
|
|
1860
|
+
export declare const flowRunsGetFlowRunPathIdRegExp: RegExp;
|
|
1861
|
+
export declare const flowRunsGetFlowRunParams: zod.ZodObject<{
|
|
1862
|
+
id: zod.ZodString;
|
|
1863
|
+
}, zod.core.$strict>;
|
|
1864
|
+
export declare const flowRunsAddFileIdFilesPathIdRegExp: RegExp;
|
|
1865
|
+
export declare const flowRunsAddFileIdFilesParams: zod.ZodObject<{
|
|
1866
|
+
id: zod.ZodString;
|
|
1867
|
+
}, zod.core.$strict>;
|
|
1868
|
+
export declare const flowRunsAddFileIdFilesBody: zod.ZodObject<{
|
|
1869
|
+
file: zod.ZodOptional<zod.ZodCustom<import("node:buffer").File, import("node:buffer").File>>;
|
|
1870
|
+
}, zod.core.$strict>;
|
|
1871
|
+
export declare const flowRunsAddFileIdFilesExistingPathIdRegExp: RegExp;
|
|
1872
|
+
export declare const flowRunsAddFileIdFilesExistingParams: zod.ZodObject<{
|
|
1873
|
+
id: zod.ZodString;
|
|
1874
|
+
}, zod.core.$strict>;
|
|
1875
|
+
export declare const flowRunsAddFileIdFilesExistingBodyFlowRunIdRegExp: RegExp;
|
|
1876
|
+
export declare const flowRunsAddFileIdFilesExistingBody: zod.ZodObject<{
|
|
1877
|
+
blobUri: zod.ZodString;
|
|
1878
|
+
flowRunId: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
1879
|
+
}, zod.core.$strict>;
|
|
1769
1880
|
export declare const flowRunsGetStepExecutionsPathIdRegExp: RegExp;
|
|
1770
1881
|
export declare const flowRunsGetStepExecutionsParams: zod.ZodObject<{
|
|
1771
1882
|
id: zod.ZodString;
|
|
@@ -1896,6 +2007,84 @@ export declare const flowsSetActiveFlowDefinitionBody: zod.ZodObject<{
|
|
|
1896
2007
|
schema: zod.ZodRecord<zod.ZodString, zod.ZodAny>;
|
|
1897
2008
|
}, zod.core.$strict>>>>;
|
|
1898
2009
|
}, zod.core.$strict>;
|
|
2010
|
+
/**
|
|
2011
|
+
* @summary Retrieves a list of model deployment providers.
|
|
2012
|
+
*/
|
|
2013
|
+
export declare const modelProvidersGetProvidersQueryTakeDefault = 50;
|
|
2014
|
+
export declare const modelProvidersGetProvidersQuerySkipDefault = 0;
|
|
2015
|
+
export declare const modelProvidersGetProvidersQueryParams: zod.ZodObject<{
|
|
2016
|
+
take: zod.ZodDefault<zod.ZodNumber>;
|
|
2017
|
+
skip: zod.ZodOptional<zod.ZodNumber>;
|
|
2018
|
+
}, zod.core.$strict>;
|
|
2019
|
+
/**
|
|
2020
|
+
* @summary Creates a new model deployment provider.
|
|
2021
|
+
*/
|
|
2022
|
+
export declare const modelProvidersCreateProviderBodyIdRegExp: RegExp;
|
|
2023
|
+
export declare const modelProvidersCreateProviderBody: zod.ZodObject<{
|
|
2024
|
+
apiKey: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
2025
|
+
apiVersion: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
2026
|
+
baseUrl: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
2027
|
+
googleCredentials: zod.ZodOptional<zod.ZodNullable<zod.ZodRecord<zod.ZodString, zod.ZodAny>>>;
|
|
2028
|
+
id: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
2029
|
+
location: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
2030
|
+
name: zod.ZodString;
|
|
2031
|
+
type: zod.ZodEnum<{
|
|
2032
|
+
OpenAi: "OpenAi";
|
|
2033
|
+
AzureOpenAi: "AzureOpenAi";
|
|
2034
|
+
HuggingFace: "HuggingFace";
|
|
2035
|
+
Cohere: "Cohere";
|
|
2036
|
+
Anthropic: "Anthropic";
|
|
2037
|
+
Gemini: "Gemini";
|
|
2038
|
+
VertexAi: "VertexAi";
|
|
2039
|
+
AzureFoundry: "AzureFoundry";
|
|
2040
|
+
}>;
|
|
2041
|
+
}, zod.core.$strict>;
|
|
2042
|
+
/**
|
|
2043
|
+
* @summary Retrieves the deployable models for a model provider
|
|
2044
|
+
*/
|
|
2045
|
+
export declare const modelProvidersGetModelProviderTypeDeployableModelsParams: zod.ZodObject<{
|
|
2046
|
+
providerType: zod.ZodEnum<{
|
|
2047
|
+
OpenAi: "OpenAi";
|
|
2048
|
+
AzureOpenAi: "AzureOpenAi";
|
|
2049
|
+
HuggingFace: "HuggingFace";
|
|
2050
|
+
Cohere: "Cohere";
|
|
2051
|
+
Anthropic: "Anthropic";
|
|
2052
|
+
Gemini: "Gemini";
|
|
2053
|
+
VertexAi: "VertexAi";
|
|
2054
|
+
AzureFoundry: "AzureFoundry";
|
|
2055
|
+
}>;
|
|
2056
|
+
}, zod.core.$strict>;
|
|
2057
|
+
export declare const modelProvidersGetProviderPathIdRegExp: RegExp;
|
|
2058
|
+
export declare const modelProvidersGetProviderParams: zod.ZodObject<{
|
|
2059
|
+
id: zod.ZodString;
|
|
2060
|
+
}, zod.core.$strict>;
|
|
2061
|
+
/**
|
|
2062
|
+
* @summary Updates or inserts a model deployment provider.
|
|
2063
|
+
*/
|
|
2064
|
+
export declare const modelProvidersUpsertProviderPathIdRegExp: RegExp;
|
|
2065
|
+
export declare const modelProvidersUpsertProviderParams: zod.ZodObject<{
|
|
2066
|
+
id: zod.ZodString;
|
|
2067
|
+
}, zod.core.$strict>;
|
|
2068
|
+
export declare const modelProvidersUpsertProviderBodyIdRegExp: RegExp;
|
|
2069
|
+
export declare const modelProvidersUpsertProviderBody: zod.ZodObject<{
|
|
2070
|
+
apiKey: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
2071
|
+
apiVersion: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
2072
|
+
baseUrl: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
2073
|
+
googleCredentials: zod.ZodOptional<zod.ZodNullable<zod.ZodRecord<zod.ZodString, zod.ZodAny>>>;
|
|
2074
|
+
id: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
2075
|
+
location: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
2076
|
+
name: zod.ZodString;
|
|
2077
|
+
type: zod.ZodEnum<{
|
|
2078
|
+
OpenAi: "OpenAi";
|
|
2079
|
+
AzureOpenAi: "AzureOpenAi";
|
|
2080
|
+
HuggingFace: "HuggingFace";
|
|
2081
|
+
Cohere: "Cohere";
|
|
2082
|
+
Anthropic: "Anthropic";
|
|
2083
|
+
Gemini: "Gemini";
|
|
2084
|
+
VertexAi: "VertexAi";
|
|
2085
|
+
AzureFoundry: "AzureFoundry";
|
|
2086
|
+
}>;
|
|
2087
|
+
}, zod.core.$strict>;
|
|
1899
2088
|
/**
|
|
1900
2089
|
* @summary Retrieves a list of models.
|
|
1901
2090
|
*/
|
|
@@ -1931,16 +2120,7 @@ export declare const modelsGetModelsResponse: zod.ZodObject<{
|
|
|
1931
2120
|
VertexAi: "VertexAi";
|
|
1932
2121
|
AzureFoundry: "AzureFoundry";
|
|
1933
2122
|
}>>;
|
|
1934
|
-
|
|
1935
|
-
properties: zod.ZodArray<zod.ZodObject<{
|
|
1936
|
-
name: zod.ZodString;
|
|
1937
|
-
type: zod.ZodEnum<{
|
|
1938
|
-
Boolean: "Boolean";
|
|
1939
|
-
Number: "Number";
|
|
1940
|
-
String: "String";
|
|
1941
|
-
}>;
|
|
1942
|
-
}, zod.core.$strip>>;
|
|
1943
|
-
publisher: zod.ZodOptional<zod.ZodEnum<{
|
|
2123
|
+
modelPublisher: zod.ZodOptional<zod.ZodEnum<{
|
|
1944
2124
|
OpenAi: "OpenAi";
|
|
1945
2125
|
HuggingFace: "HuggingFace";
|
|
1946
2126
|
Cohere: "Cohere";
|
|
@@ -1955,6 +2135,15 @@ export declare const modelsGetModelsResponse: zod.ZodObject<{
|
|
|
1955
2135
|
Qwen: "Qwen";
|
|
1956
2136
|
Other: "Other";
|
|
1957
2137
|
}>>;
|
|
2138
|
+
name: zod.ZodString;
|
|
2139
|
+
properties: zod.ZodArray<zod.ZodObject<{
|
|
2140
|
+
name: zod.ZodString;
|
|
2141
|
+
type: zod.ZodEnum<{
|
|
2142
|
+
Boolean: "Boolean";
|
|
2143
|
+
Number: "Number";
|
|
2144
|
+
String: "String";
|
|
2145
|
+
}>;
|
|
2146
|
+
}, zod.core.$strip>>;
|
|
1958
2147
|
virtualMachineUrl: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
1959
2148
|
}, zod.core.$strip>>;
|
|
1960
2149
|
total: zod.ZodNumber;
|
|
@@ -1993,7 +2182,29 @@ export declare const modelsCreateModelBody: zod.ZodObject<{
|
|
|
1993
2182
|
}, zod.core.$strict>>;
|
|
1994
2183
|
displayName: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
1995
2184
|
name: zod.ZodString;
|
|
2185
|
+
publisher: zod.ZodOptional<zod.ZodEnum<{
|
|
2186
|
+
OpenAi: "OpenAi";
|
|
2187
|
+
HuggingFace: "HuggingFace";
|
|
2188
|
+
Cohere: "Cohere";
|
|
2189
|
+
Anthropic: "Anthropic";
|
|
2190
|
+
Google: "Google";
|
|
2191
|
+
Meta: "Meta";
|
|
2192
|
+
Mistral: "Mistral";
|
|
2193
|
+
Microsoft: "Microsoft";
|
|
2194
|
+
DeepSeek: "DeepSeek";
|
|
2195
|
+
XAi: "XAi";
|
|
2196
|
+
Amazon: "Amazon";
|
|
2197
|
+
Qwen: "Qwen";
|
|
2198
|
+
Other: "Other";
|
|
2199
|
+
}>>;
|
|
1996
2200
|
}, zod.core.$strict>;
|
|
2201
|
+
export declare const modelsGetDefaultDockerFileQueryParams: zod.ZodObject<{
|
|
2202
|
+
serverType: zod.ZodOptional<zod.ZodEnum<{
|
|
2203
|
+
TextGenerationInference: "TextGenerationInference";
|
|
2204
|
+
VLlm: "VLlm";
|
|
2205
|
+
}>>;
|
|
2206
|
+
}, zod.core.$strict>;
|
|
2207
|
+
export declare const modelsGetDefaultDockerFileResponse: zod.ZodString;
|
|
1997
2208
|
/**
|
|
1998
2209
|
* @summary Deletes a model with the specified ID.
|
|
1999
2210
|
*/
|
|
@@ -2069,16 +2280,7 @@ export declare const modelsGetModelResponse: zod.ZodObject<{
|
|
|
2069
2280
|
VertexAi: "VertexAi";
|
|
2070
2281
|
AzureFoundry: "AzureFoundry";
|
|
2071
2282
|
}>>;
|
|
2072
|
-
|
|
2073
|
-
properties: zod.ZodArray<zod.ZodObject<{
|
|
2074
|
-
name: zod.ZodString;
|
|
2075
|
-
type: zod.ZodEnum<{
|
|
2076
|
-
Boolean: "Boolean";
|
|
2077
|
-
Number: "Number";
|
|
2078
|
-
String: "String";
|
|
2079
|
-
}>;
|
|
2080
|
-
}, zod.core.$strip>>;
|
|
2081
|
-
publisher: zod.ZodOptional<zod.ZodEnum<{
|
|
2283
|
+
modelPublisher: zod.ZodOptional<zod.ZodEnum<{
|
|
2082
2284
|
OpenAi: "OpenAi";
|
|
2083
2285
|
HuggingFace: "HuggingFace";
|
|
2084
2286
|
Cohere: "Cohere";
|
|
@@ -2093,6 +2295,15 @@ export declare const modelsGetModelResponse: zod.ZodObject<{
|
|
|
2093
2295
|
Qwen: "Qwen";
|
|
2094
2296
|
Other: "Other";
|
|
2095
2297
|
}>>;
|
|
2298
|
+
name: zod.ZodString;
|
|
2299
|
+
properties: zod.ZodArray<zod.ZodObject<{
|
|
2300
|
+
name: zod.ZodString;
|
|
2301
|
+
type: zod.ZodEnum<{
|
|
2302
|
+
Boolean: "Boolean";
|
|
2303
|
+
Number: "Number";
|
|
2304
|
+
String: "String";
|
|
2305
|
+
}>;
|
|
2306
|
+
}, zod.core.$strip>>;
|
|
2096
2307
|
}, zod.core.$strip>;
|
|
2097
2308
|
/**
|
|
2098
2309
|
* @summary Updates or inserts a model with the specified ID.
|
|
@@ -2132,6 +2343,21 @@ export declare const modelsUpsertModelBody: zod.ZodObject<{
|
|
|
2132
2343
|
}, zod.core.$strict>>;
|
|
2133
2344
|
displayName: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
2134
2345
|
name: zod.ZodString;
|
|
2346
|
+
publisher: zod.ZodOptional<zod.ZodEnum<{
|
|
2347
|
+
OpenAi: "OpenAi";
|
|
2348
|
+
HuggingFace: "HuggingFace";
|
|
2349
|
+
Cohere: "Cohere";
|
|
2350
|
+
Anthropic: "Anthropic";
|
|
2351
|
+
Google: "Google";
|
|
2352
|
+
Meta: "Meta";
|
|
2353
|
+
Mistral: "Mistral";
|
|
2354
|
+
Microsoft: "Microsoft";
|
|
2355
|
+
DeepSeek: "DeepSeek";
|
|
2356
|
+
XAi: "XAi";
|
|
2357
|
+
Amazon: "Amazon";
|
|
2358
|
+
Qwen: "Qwen";
|
|
2359
|
+
Other: "Other";
|
|
2360
|
+
}>>;
|
|
2135
2361
|
}, zod.core.$strict>;
|
|
2136
2362
|
/**
|
|
2137
2363
|
* @summary Retrieves the Docker logs for a specific deployment of a model.
|
|
@@ -2191,6 +2417,18 @@ export declare const notificationGetResponse: zod.ZodObject<{
|
|
|
2191
2417
|
export declare const notificationPutUpdateBodyRegExpOne: RegExp;
|
|
2192
2418
|
export declare const notificationPutUpdateBodyItem: zod.ZodString;
|
|
2193
2419
|
export declare const notificationPutUpdateBody: zod.ZodArray<zod.ZodString>;
|
|
2420
|
+
/**
|
|
2421
|
+
* @summary Update the upgrade component of the smartspace plan
|
|
2422
|
+
*/
|
|
2423
|
+
export declare const planUpdateSmartSpaceUpgradeBody: zod.ZodObject<{
|
|
2424
|
+
workSpaceQuota: zod.ZodNumber;
|
|
2425
|
+
}, zod.core.$strict>;
|
|
2426
|
+
/**
|
|
2427
|
+
* @summary Calculate the cost of an upgrade change
|
|
2428
|
+
*/
|
|
2429
|
+
export declare const planCalculateSmartSpaceUpgradeCostBody: zod.ZodObject<{
|
|
2430
|
+
workSpaceQuota: zod.ZodNumber;
|
|
2431
|
+
}, zod.core.$strict>;
|
|
2194
2432
|
/**
|
|
2195
2433
|
* @summary Gets the number of requests by a specified duration
|
|
2196
2434
|
*/
|
|
@@ -2288,6 +2526,32 @@ export declare const usersGetUsersResponse: zod.ZodObject<{
|
|
|
2288
2526
|
}, zod.core.$strip>>;
|
|
2289
2527
|
total: zod.ZodNumber;
|
|
2290
2528
|
}, zod.core.$strip>;
|
|
2529
|
+
export declare const usersGetUsersByFilterParams: zod.ZodObject<{
|
|
2530
|
+
permissions: zod.ZodEnum<{
|
|
2531
|
+
None: "None";
|
|
2532
|
+
WorkspaceCreate: "WorkspaceCreate";
|
|
2533
|
+
WorkspaceEdit: "WorkspaceEdit";
|
|
2534
|
+
WorkspaceDelete: "WorkspaceDelete";
|
|
2535
|
+
DataSpaceCreate: "DataSpaceCreate";
|
|
2536
|
+
DataSpaceEdit: "DataSpaceEdit";
|
|
2537
|
+
DataSpaceDelete: "DataSpaceDelete";
|
|
2538
|
+
ConnectorCreate: "ConnectorCreate";
|
|
2539
|
+
ConnectorEdit: "ConnectorEdit";
|
|
2540
|
+
ConnectorDelete: "ConnectorDelete";
|
|
2541
|
+
}>;
|
|
2542
|
+
}, zod.core.$strict>;
|
|
2543
|
+
export declare const usersGetMyPermissionsResponse: zod.ZodEnum<{
|
|
2544
|
+
None: "None";
|
|
2545
|
+
WorkspaceCreate: "WorkspaceCreate";
|
|
2546
|
+
WorkspaceEdit: "WorkspaceEdit";
|
|
2547
|
+
WorkspaceDelete: "WorkspaceDelete";
|
|
2548
|
+
DataSpaceCreate: "DataSpaceCreate";
|
|
2549
|
+
DataSpaceEdit: "DataSpaceEdit";
|
|
2550
|
+
DataSpaceDelete: "DataSpaceDelete";
|
|
2551
|
+
ConnectorCreate: "ConnectorCreate";
|
|
2552
|
+
ConnectorEdit: "ConnectorEdit";
|
|
2553
|
+
ConnectorDelete: "ConnectorDelete";
|
|
2554
|
+
}>;
|
|
2291
2555
|
/**
|
|
2292
2556
|
* @summary Disable user (Remove all assigned WorkSpaces by UserId)
|
|
2293
2557
|
*/
|
|
@@ -2399,6 +2663,45 @@ export declare const usersGetAccessWorkSpacesResponse: zod.ZodArray<zod.ZodObjec
|
|
|
2399
2663
|
workSpaceId: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
2400
2664
|
workSpaceName: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
2401
2665
|
}, zod.core.$strip>>;
|
|
2666
|
+
export declare const usersAdminPermissionPathUserIdRegExp: RegExp;
|
|
2667
|
+
export declare const usersAdminPermissionParams: zod.ZodObject<{
|
|
2668
|
+
userId: zod.ZodString;
|
|
2669
|
+
}, zod.core.$strict>;
|
|
2670
|
+
export declare const usersAdminPermissionQueryParams: zod.ZodObject<{
|
|
2671
|
+
isAdmin: zod.ZodOptional<zod.ZodBoolean>;
|
|
2672
|
+
}, zod.core.$strict>;
|
|
2673
|
+
export declare const usersAddUserPermissionPathUserIdRegExp: RegExp;
|
|
2674
|
+
export declare const usersAddUserPermissionParams: zod.ZodObject<{
|
|
2675
|
+
userId: zod.ZodString;
|
|
2676
|
+
}, zod.core.$strict>;
|
|
2677
|
+
export declare const usersAddUserPermissionBody: zod.ZodEnum<{
|
|
2678
|
+
None: "None";
|
|
2679
|
+
WorkspaceCreate: "WorkspaceCreate";
|
|
2680
|
+
WorkspaceEdit: "WorkspaceEdit";
|
|
2681
|
+
WorkspaceDelete: "WorkspaceDelete";
|
|
2682
|
+
DataSpaceCreate: "DataSpaceCreate";
|
|
2683
|
+
DataSpaceEdit: "DataSpaceEdit";
|
|
2684
|
+
DataSpaceDelete: "DataSpaceDelete";
|
|
2685
|
+
ConnectorCreate: "ConnectorCreate";
|
|
2686
|
+
ConnectorEdit: "ConnectorEdit";
|
|
2687
|
+
ConnectorDelete: "ConnectorDelete";
|
|
2688
|
+
}>;
|
|
2689
|
+
export declare const usersRemoveUserPermissionPathUserIdRegExp: RegExp;
|
|
2690
|
+
export declare const usersRemoveUserPermissionParams: zod.ZodObject<{
|
|
2691
|
+
userId: zod.ZodString;
|
|
2692
|
+
permission: zod.ZodEnum<{
|
|
2693
|
+
None: "None";
|
|
2694
|
+
WorkspaceCreate: "WorkspaceCreate";
|
|
2695
|
+
WorkspaceEdit: "WorkspaceEdit";
|
|
2696
|
+
WorkspaceDelete: "WorkspaceDelete";
|
|
2697
|
+
DataSpaceCreate: "DataSpaceCreate";
|
|
2698
|
+
DataSpaceEdit: "DataSpaceEdit";
|
|
2699
|
+
DataSpaceDelete: "DataSpaceDelete";
|
|
2700
|
+
ConnectorCreate: "ConnectorCreate";
|
|
2701
|
+
ConnectorEdit: "ConnectorEdit";
|
|
2702
|
+
ConnectorDelete: "ConnectorDelete";
|
|
2703
|
+
}>;
|
|
2704
|
+
}, zod.core.$strict>;
|
|
2402
2705
|
/**
|
|
2403
2706
|
* @summary Returns a list of available Azure locations for deploying virtual machines
|
|
2404
2707
|
*/
|
|
@@ -2595,7 +2898,6 @@ export declare const workSpacesGetGetResponse: zod.ZodObject<{
|
|
|
2595
2898
|
inputs: zod.ZodRecord<zod.ZodString, zod.ZodObject<{
|
|
2596
2899
|
schema: zod.ZodRecord<zod.ZodString, zod.ZodAny>;
|
|
2597
2900
|
}, zod.core.$strip>>;
|
|
2598
|
-
isPromptAndResponseLoggingEnabled: zod.ZodOptional<zod.ZodNullable<zod.ZodBoolean>>;
|
|
2599
2901
|
modelConfigurations: zod.ZodArray<zod.ZodObject<{
|
|
2600
2902
|
frequencyPenalty: zod.ZodNumber;
|
|
2601
2903
|
model: zod.ZodObject<{
|
|
@@ -2655,16 +2957,7 @@ export declare const workSpacesGetGetResponse: zod.ZodObject<{
|
|
|
2655
2957
|
VertexAi: "VertexAi";
|
|
2656
2958
|
AzureFoundry: "AzureFoundry";
|
|
2657
2959
|
}>>;
|
|
2658
|
-
|
|
2659
|
-
properties: zod.ZodArray<zod.ZodObject<{
|
|
2660
|
-
name: zod.ZodString;
|
|
2661
|
-
type: zod.ZodEnum<{
|
|
2662
|
-
Boolean: "Boolean";
|
|
2663
|
-
Number: "Number";
|
|
2664
|
-
String: "String";
|
|
2665
|
-
}>;
|
|
2666
|
-
}, zod.core.$strip>>;
|
|
2667
|
-
publisher: zod.ZodOptional<zod.ZodEnum<{
|
|
2960
|
+
modelPublisher: zod.ZodOptional<zod.ZodEnum<{
|
|
2668
2961
|
OpenAi: "OpenAi";
|
|
2669
2962
|
HuggingFace: "HuggingFace";
|
|
2670
2963
|
Cohere: "Cohere";
|
|
@@ -2679,6 +2972,15 @@ export declare const workSpacesGetGetResponse: zod.ZodObject<{
|
|
|
2679
2972
|
Qwen: "Qwen";
|
|
2680
2973
|
Other: "Other";
|
|
2681
2974
|
}>>;
|
|
2975
|
+
name: zod.ZodString;
|
|
2976
|
+
properties: zod.ZodArray<zod.ZodObject<{
|
|
2977
|
+
name: zod.ZodString;
|
|
2978
|
+
type: zod.ZodEnum<{
|
|
2979
|
+
Boolean: "Boolean";
|
|
2980
|
+
Number: "Number";
|
|
2981
|
+
String: "String";
|
|
2982
|
+
}>;
|
|
2983
|
+
}, zod.core.$strip>>;
|
|
2682
2984
|
}, zod.core.$strip>;
|
|
2683
2985
|
prePrompt: zod.ZodString;
|
|
2684
2986
|
presencePenalty: zod.ZodNumber;
|
|
@@ -2866,7 +3168,6 @@ export declare const workSpacesPostResponse: zod.ZodObject<{
|
|
|
2866
3168
|
inputs: zod.ZodRecord<zod.ZodString, zod.ZodObject<{
|
|
2867
3169
|
schema: zod.ZodRecord<zod.ZodString, zod.ZodAny>;
|
|
2868
3170
|
}, zod.core.$strip>>;
|
|
2869
|
-
isPromptAndResponseLoggingEnabled: zod.ZodOptional<zod.ZodNullable<zod.ZodBoolean>>;
|
|
2870
3171
|
modelConfigurations: zod.ZodArray<zod.ZodObject<{
|
|
2871
3172
|
frequencyPenalty: zod.ZodNumber;
|
|
2872
3173
|
model: zod.ZodObject<{
|
|
@@ -2926,16 +3227,7 @@ export declare const workSpacesPostResponse: zod.ZodObject<{
|
|
|
2926
3227
|
VertexAi: "VertexAi";
|
|
2927
3228
|
AzureFoundry: "AzureFoundry";
|
|
2928
3229
|
}>>;
|
|
2929
|
-
|
|
2930
|
-
properties: zod.ZodArray<zod.ZodObject<{
|
|
2931
|
-
name: zod.ZodString;
|
|
2932
|
-
type: zod.ZodEnum<{
|
|
2933
|
-
Boolean: "Boolean";
|
|
2934
|
-
Number: "Number";
|
|
2935
|
-
String: "String";
|
|
2936
|
-
}>;
|
|
2937
|
-
}, zod.core.$strip>>;
|
|
2938
|
-
publisher: zod.ZodOptional<zod.ZodEnum<{
|
|
3230
|
+
modelPublisher: zod.ZodOptional<zod.ZodEnum<{
|
|
2939
3231
|
OpenAi: "OpenAi";
|
|
2940
3232
|
HuggingFace: "HuggingFace";
|
|
2941
3233
|
Cohere: "Cohere";
|
|
@@ -2950,6 +3242,15 @@ export declare const workSpacesPostResponse: zod.ZodObject<{
|
|
|
2950
3242
|
Qwen: "Qwen";
|
|
2951
3243
|
Other: "Other";
|
|
2952
3244
|
}>>;
|
|
3245
|
+
name: zod.ZodString;
|
|
3246
|
+
properties: zod.ZodArray<zod.ZodObject<{
|
|
3247
|
+
name: zod.ZodString;
|
|
3248
|
+
type: zod.ZodEnum<{
|
|
3249
|
+
Boolean: "Boolean";
|
|
3250
|
+
Number: "Number";
|
|
3251
|
+
String: "String";
|
|
3252
|
+
}>;
|
|
3253
|
+
}, zod.core.$strip>>;
|
|
2953
3254
|
}, zod.core.$strip>;
|
|
2954
3255
|
prePrompt: zod.ZodString;
|
|
2955
3256
|
presencePenalty: zod.ZodNumber;
|
|
@@ -3122,7 +3423,6 @@ export declare const workSpacesGetIdResponse: zod.ZodObject<{
|
|
|
3122
3423
|
inputs: zod.ZodRecord<zod.ZodString, zod.ZodObject<{
|
|
3123
3424
|
schema: zod.ZodRecord<zod.ZodString, zod.ZodAny>;
|
|
3124
3425
|
}, zod.core.$strip>>;
|
|
3125
|
-
isPromptAndResponseLoggingEnabled: zod.ZodOptional<zod.ZodNullable<zod.ZodBoolean>>;
|
|
3126
3426
|
modelConfigurations: zod.ZodArray<zod.ZodObject<{
|
|
3127
3427
|
frequencyPenalty: zod.ZodNumber;
|
|
3128
3428
|
model: zod.ZodObject<{
|
|
@@ -3182,16 +3482,7 @@ export declare const workSpacesGetIdResponse: zod.ZodObject<{
|
|
|
3182
3482
|
VertexAi: "VertexAi";
|
|
3183
3483
|
AzureFoundry: "AzureFoundry";
|
|
3184
3484
|
}>>;
|
|
3185
|
-
|
|
3186
|
-
properties: zod.ZodArray<zod.ZodObject<{
|
|
3187
|
-
name: zod.ZodString;
|
|
3188
|
-
type: zod.ZodEnum<{
|
|
3189
|
-
Boolean: "Boolean";
|
|
3190
|
-
Number: "Number";
|
|
3191
|
-
String: "String";
|
|
3192
|
-
}>;
|
|
3193
|
-
}, zod.core.$strip>>;
|
|
3194
|
-
publisher: zod.ZodOptional<zod.ZodEnum<{
|
|
3485
|
+
modelPublisher: zod.ZodOptional<zod.ZodEnum<{
|
|
3195
3486
|
OpenAi: "OpenAi";
|
|
3196
3487
|
HuggingFace: "HuggingFace";
|
|
3197
3488
|
Cohere: "Cohere";
|
|
@@ -3206,6 +3497,15 @@ export declare const workSpacesGetIdResponse: zod.ZodObject<{
|
|
|
3206
3497
|
Qwen: "Qwen";
|
|
3207
3498
|
Other: "Other";
|
|
3208
3499
|
}>>;
|
|
3500
|
+
name: zod.ZodString;
|
|
3501
|
+
properties: zod.ZodArray<zod.ZodObject<{
|
|
3502
|
+
name: zod.ZodString;
|
|
3503
|
+
type: zod.ZodEnum<{
|
|
3504
|
+
Boolean: "Boolean";
|
|
3505
|
+
Number: "Number";
|
|
3506
|
+
String: "String";
|
|
3507
|
+
}>;
|
|
3508
|
+
}, zod.core.$strip>>;
|
|
3209
3509
|
}, zod.core.$strip>;
|
|
3210
3510
|
prePrompt: zod.ZodString;
|
|
3211
3511
|
presencePenalty: zod.ZodNumber;
|
|
@@ -3235,6 +3535,52 @@ export declare const workSpacesGetIdResponse: zod.ZodObject<{
|
|
|
3235
3535
|
schema: zod.ZodRecord<zod.ZodString, zod.ZodAny>;
|
|
3236
3536
|
}, zod.core.$strip>>;
|
|
3237
3537
|
}, zod.core.$strip>;
|
|
3538
|
+
export declare const workSpacesGetWorkspaceAdminsPathIdRegExp: RegExp;
|
|
3539
|
+
export declare const workSpacesGetWorkspaceAdminsParams: zod.ZodObject<{
|
|
3540
|
+
id: zod.ZodString;
|
|
3541
|
+
}, zod.core.$strict>;
|
|
3542
|
+
export declare const workSpacesGetWorkspaceAdminsResponseItem: zod.ZodObject<{
|
|
3543
|
+
id: zod.ZodString;
|
|
3544
|
+
isAdmin: zod.ZodBoolean;
|
|
3545
|
+
name: zod.ZodString;
|
|
3546
|
+
}, zod.core.$strip>;
|
|
3547
|
+
export declare const workSpacesGetWorkspaceAdminsResponse: zod.ZodArray<zod.ZodObject<{
|
|
3548
|
+
id: zod.ZodString;
|
|
3549
|
+
isAdmin: zod.ZodBoolean;
|
|
3550
|
+
name: zod.ZodString;
|
|
3551
|
+
}, zod.core.$strip>>;
|
|
3552
|
+
export declare const workSpacesDeleteAdminPathIdRegExp: RegExp;
|
|
3553
|
+
export declare const workSpacesDeleteAdminPathUserIdRegExp: RegExp;
|
|
3554
|
+
export declare const workSpacesDeleteAdminParams: zod.ZodObject<{
|
|
3555
|
+
id: zod.ZodString;
|
|
3556
|
+
userId: zod.ZodString;
|
|
3557
|
+
}, zod.core.$strict>;
|
|
3558
|
+
export declare const workSpacesDeleteAdminResponseItem: zod.ZodObject<{
|
|
3559
|
+
id: zod.ZodString;
|
|
3560
|
+
isAdmin: zod.ZodBoolean;
|
|
3561
|
+
name: zod.ZodString;
|
|
3562
|
+
}, zod.core.$strip>;
|
|
3563
|
+
export declare const workSpacesDeleteAdminResponse: zod.ZodArray<zod.ZodObject<{
|
|
3564
|
+
id: zod.ZodString;
|
|
3565
|
+
isAdmin: zod.ZodBoolean;
|
|
3566
|
+
name: zod.ZodString;
|
|
3567
|
+
}, zod.core.$strip>>;
|
|
3568
|
+
export declare const workSpacesAddWorkspaceAdminPathIdRegExp: RegExp;
|
|
3569
|
+
export declare const workSpacesAddWorkspaceAdminPathUserIdRegExp: RegExp;
|
|
3570
|
+
export declare const workSpacesAddWorkspaceAdminParams: zod.ZodObject<{
|
|
3571
|
+
id: zod.ZodString;
|
|
3572
|
+
userId: zod.ZodString;
|
|
3573
|
+
}, zod.core.$strict>;
|
|
3574
|
+
export declare const workSpacesAddWorkspaceAdminResponseItem: zod.ZodObject<{
|
|
3575
|
+
id: zod.ZodString;
|
|
3576
|
+
isAdmin: zod.ZodBoolean;
|
|
3577
|
+
name: zod.ZodString;
|
|
3578
|
+
}, zod.core.$strip>;
|
|
3579
|
+
export declare const workSpacesAddWorkspaceAdminResponse: zod.ZodArray<zod.ZodObject<{
|
|
3580
|
+
id: zod.ZodString;
|
|
3581
|
+
isAdmin: zod.ZodBoolean;
|
|
3582
|
+
name: zod.ZodString;
|
|
3583
|
+
}, zod.core.$strip>>;
|
|
3238
3584
|
/**
|
|
3239
3585
|
* @summary Update basic information of a specific workspace in SmartSpace, such as name and summary, using the workspace's ID.
|
|
3240
3586
|
*/
|
|
@@ -3250,6 +3596,14 @@ export declare const workSpacesPutBody: zod.ZodObject<{
|
|
|
3250
3596
|
summary: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
3251
3597
|
tags: zod.ZodOptional<zod.ZodNullable<zod.ZodArray<zod.ZodString>>>;
|
|
3252
3598
|
}, zod.core.$strict>;
|
|
3599
|
+
/**
|
|
3600
|
+
* @summary Mark a workspace as favorited or not in SmartSpace, using the workspaces's ID and a boolean value in the request.
|
|
3601
|
+
*/
|
|
3602
|
+
export declare const workSpacesSetFavoritedPathIdRegExp: RegExp;
|
|
3603
|
+
export declare const workSpacesSetFavoritedParams: zod.ZodObject<{
|
|
3604
|
+
id: zod.ZodString;
|
|
3605
|
+
}, zod.core.$strict>;
|
|
3606
|
+
export declare const workSpacesSetFavoritedBody: zod.ZodBoolean;
|
|
3253
3607
|
/**
|
|
3254
3608
|
* @summary Retrieve all message threads associated with a specific workspace in SmartSpace, identified by workspaceId, with pagination options take and skip.
|
|
3255
3609
|
*/
|
|
@@ -3283,11 +3637,23 @@ export declare const workSpacesGetThreadsResponse: zod.ZodObject<{
|
|
|
3283
3637
|
}, zod.core.$strip>>;
|
|
3284
3638
|
total: zod.ZodNumber;
|
|
3285
3639
|
}, zod.core.$strip>;
|
|
3640
|
+
/**
|
|
3641
|
+
* @summary Deletes the model configuration for a specific workspace and role.
|
|
3642
|
+
*/
|
|
3643
|
+
export declare const workSpacesPutModelConfigurationIdModelconfigurationRoleDeletePathIdRegExp: RegExp;
|
|
3644
|
+
export declare const workSpacesPutModelConfigurationIdModelconfigurationRoleDeleteParams: zod.ZodObject<{
|
|
3645
|
+
id: zod.ZodString;
|
|
3646
|
+
role: zod.ZodEnum<{
|
|
3647
|
+
Document: "Document";
|
|
3648
|
+
Agent: "Agent";
|
|
3649
|
+
Analyzer: "Analyzer";
|
|
3650
|
+
}>;
|
|
3651
|
+
}, zod.core.$strict>;
|
|
3286
3652
|
/**
|
|
3287
3653
|
* @summary Configure AI models for a specific role within a workspace in SmartSpace, identified by workspaceId and role.
|
|
3288
3654
|
*/
|
|
3289
|
-
export declare const
|
|
3290
|
-
export declare const
|
|
3655
|
+
export declare const workSpacesPutModelConfigurationIdModelconfigurationRolePutPathIdRegExp: RegExp;
|
|
3656
|
+
export declare const workSpacesPutModelConfigurationIdModelconfigurationRolePutParams: zod.ZodObject<{
|
|
3291
3657
|
id: zod.ZodString;
|
|
3292
3658
|
role: zod.ZodEnum<{
|
|
3293
3659
|
Document: "Document";
|
|
@@ -3295,8 +3661,8 @@ export declare const workSpacesPutModelConfigurationIdModelconfigurationRolePara
|
|
|
3295
3661
|
Analyzer: "Analyzer";
|
|
3296
3662
|
}>;
|
|
3297
3663
|
}, zod.core.$strict>;
|
|
3298
|
-
export declare const
|
|
3299
|
-
export declare const
|
|
3664
|
+
export declare const workSpacesPutModelConfigurationIdModelconfigurationRolePutBodyModelIdRegExp: RegExp;
|
|
3665
|
+
export declare const workSpacesPutModelConfigurationIdModelconfigurationRolePutBody: zod.ZodObject<{
|
|
3300
3666
|
frequencyPenalty: zod.ZodNumber;
|
|
3301
3667
|
modelDisplayText: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
3302
3668
|
modelId: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
@@ -3328,20 +3694,65 @@ export declare const workSpacesAddDataSpaceParams: zod.ZodObject<{
|
|
|
3328
3694
|
workspaceId: zod.ZodString;
|
|
3329
3695
|
dataspaceId: zod.ZodString;
|
|
3330
3696
|
}, zod.core.$strict>;
|
|
3697
|
+
/**
|
|
3698
|
+
* @summary Gets a list of all the files that are uploaded directly to the workspace
|
|
3699
|
+
*/
|
|
3700
|
+
export declare const workSpacesGetWorkspaceFilesPathWorkspaceIdRegExp: RegExp;
|
|
3701
|
+
export declare const workSpacesGetWorkspaceFilesParams: zod.ZodObject<{
|
|
3702
|
+
workspaceId: zod.ZodString;
|
|
3703
|
+
}, zod.core.$strict>;
|
|
3704
|
+
export declare const workSpacesGetWorkspaceFilesQueryTakeDefault = 20;
|
|
3705
|
+
export declare const workSpacesGetWorkspaceFilesQuerySkipDefault = 0;
|
|
3706
|
+
export declare const workSpacesGetWorkspaceFilesQueryParams: zod.ZodObject<{
|
|
3707
|
+
take: zod.ZodDefault<zod.ZodNumber>;
|
|
3708
|
+
skip: zod.ZodOptional<zod.ZodNumber>;
|
|
3709
|
+
}, zod.core.$strict>;
|
|
3710
|
+
export declare const workSpacesGetWorkspaceFilesResponseDataItemFileIdRegExp: RegExp;
|
|
3711
|
+
export declare const workSpacesGetWorkspaceFilesResponseDataItemFileThreadIdRegExp: RegExp;
|
|
3712
|
+
export declare const workSpacesGetWorkspaceFilesResponseDataItemFileWorkspaceIdRegExp: RegExp;
|
|
3713
|
+
export declare const workSpacesGetWorkspaceFilesResponse: zod.ZodObject<{
|
|
3714
|
+
data: zod.ZodArray<zod.ZodObject<{
|
|
3715
|
+
createdAt: zod.ZodOptional<zod.ZodNullable<zod.ZodISODateTime>>;
|
|
3716
|
+
createdByUserId: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
3717
|
+
createdByUserName: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
3718
|
+
dataSetId: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
3719
|
+
file: zod.ZodOptional<zod.ZodObject<{
|
|
3720
|
+
createdAt: zod.ZodISODateTime;
|
|
3721
|
+
createdByUserId: zod.ZodString;
|
|
3722
|
+
id: zod.ZodString;
|
|
3723
|
+
modifiedAt: zod.ZodISODateTime;
|
|
3724
|
+
modifiedByUserId: zod.ZodString;
|
|
3725
|
+
name: zod.ZodString;
|
|
3726
|
+
size: zod.ZodNumber;
|
|
3727
|
+
threadId: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
3728
|
+
workspaceId: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
3729
|
+
}, zod.core.$strip>>;
|
|
3730
|
+
flowRunId: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
3731
|
+
id: zod.ZodString;
|
|
3732
|
+
modifiedAt: zod.ZodOptional<zod.ZodNullable<zod.ZodISODateTime>>;
|
|
3733
|
+
modifiedByUserId: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
3734
|
+
status: zod.ZodEnum<{
|
|
3735
|
+
Uploaded: "Uploaded";
|
|
3736
|
+
Ingested: "Ingested";
|
|
3737
|
+
Ingesting: "Ingesting";
|
|
3738
|
+
}>;
|
|
3739
|
+
}, zod.core.$strip>>;
|
|
3740
|
+
total: zod.ZodNumber;
|
|
3741
|
+
}, zod.core.$strip>;
|
|
3331
3742
|
/**
|
|
3332
3743
|
* @summary Uploads a list of files directly to the workspace
|
|
3333
3744
|
*/
|
|
3334
|
-
export declare const
|
|
3335
|
-
export declare const
|
|
3745
|
+
export declare const workSpacesWorkspaceFilesPathWorkspaceIdRegExp: RegExp;
|
|
3746
|
+
export declare const workSpacesWorkspaceFilesParams: zod.ZodObject<{
|
|
3336
3747
|
workspaceId: zod.ZodString;
|
|
3337
3748
|
}, zod.core.$strict>;
|
|
3338
|
-
export declare const
|
|
3749
|
+
export declare const workSpacesWorkspaceFilesBody: zod.ZodObject<{
|
|
3339
3750
|
files: zod.ZodOptional<zod.ZodArray<zod.ZodCustom<import("node:buffer").File, import("node:buffer").File>>>;
|
|
3340
3751
|
}, zod.core.$strict>;
|
|
3341
|
-
export declare const
|
|
3342
|
-
export declare const
|
|
3343
|
-
export declare const
|
|
3344
|
-
export declare const
|
|
3752
|
+
export declare const workSpacesWorkspaceFilesResponseFileIdRegExp: RegExp;
|
|
3753
|
+
export declare const workSpacesWorkspaceFilesResponseFileThreadIdRegExp: RegExp;
|
|
3754
|
+
export declare const workSpacesWorkspaceFilesResponseFileWorkspaceIdRegExp: RegExp;
|
|
3755
|
+
export declare const workSpacesWorkspaceFilesResponseItem: zod.ZodObject<{
|
|
3345
3756
|
createdAt: zod.ZodOptional<zod.ZodNullable<zod.ZodISODateTime>>;
|
|
3346
3757
|
createdByUserId: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
3347
3758
|
createdByUserName: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
@@ -3367,7 +3778,7 @@ export declare const workSpacesWorkspaceFilesWorkspaceIdFilesResponseItem: zod.Z
|
|
|
3367
3778
|
Ingesting: "Ingesting";
|
|
3368
3779
|
}>;
|
|
3369
3780
|
}, zod.core.$strip>;
|
|
3370
|
-
export declare const
|
|
3781
|
+
export declare const workSpacesWorkspaceFilesResponse: zod.ZodArray<zod.ZodObject<{
|
|
3371
3782
|
createdAt: zod.ZodOptional<zod.ZodNullable<zod.ZodISODateTime>>;
|
|
3372
3783
|
createdByUserId: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
3373
3784
|
createdByUserName: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
@@ -3402,14 +3813,18 @@ export declare const workSpacesDeleteWorkspaceFileParams: zod.ZodObject<{
|
|
|
3402
3813
|
workspaceId: zod.ZodString;
|
|
3403
3814
|
fileId: zod.ZodString;
|
|
3404
3815
|
}, zod.core.$strict>;
|
|
3816
|
+
export declare const workSpacesGetActiveFlowPathWorkspaceIdRegExp: RegExp;
|
|
3817
|
+
export declare const workSpacesGetActiveFlowParams: zod.ZodObject<{
|
|
3818
|
+
workspaceId: zod.ZodString;
|
|
3819
|
+
}, zod.core.$strict>;
|
|
3405
3820
|
/**
|
|
3406
3821
|
* @summary Creates a flow
|
|
3407
3822
|
*/
|
|
3408
|
-
export declare const
|
|
3409
|
-
export declare const
|
|
3823
|
+
export declare const workSpacesSetActiveFlowPathWorkspaceIdRegExp: RegExp;
|
|
3824
|
+
export declare const workSpacesSetActiveFlowParams: zod.ZodObject<{
|
|
3410
3825
|
workspaceId: zod.ZodString;
|
|
3411
3826
|
}, zod.core.$strict>;
|
|
3412
|
-
export declare const
|
|
3827
|
+
export declare const workSpacesSetActiveFlowBody: zod.ZodObject<{
|
|
3413
3828
|
blocks: zod.ZodOptional<zod.ZodNullable<zod.ZodRecord<zod.ZodString, zod.ZodObject<{
|
|
3414
3829
|
constants: zod.ZodOptional<zod.ZodNullable<zod.ZodArray<zod.ZodObject<{
|
|
3415
3830
|
target: zod.ZodObject<{
|
|
@@ -3471,16 +3886,6 @@ export declare const workSpacesSetActiveFlowLayoutParams: zod.ZodObject<{
|
|
|
3471
3886
|
workspaceId: zod.ZodString;
|
|
3472
3887
|
}, zod.core.$strict>;
|
|
3473
3888
|
export declare const workSpacesSetActiveFlowLayoutBody: zod.ZodAny;
|
|
3474
|
-
/**
|
|
3475
|
-
* @summary Updates the flag that determines whether to store the prompt and response within a specific workspace.
|
|
3476
|
-
*/
|
|
3477
|
-
export declare const workSpacesUpdatePromptResponseFlagPathWorkspaceIdRegExp: RegExp;
|
|
3478
|
-
export declare const workSpacesUpdatePromptResponseFlagParams: zod.ZodObject<{
|
|
3479
|
-
workspaceId: zod.ZodString;
|
|
3480
|
-
}, zod.core.$strict>;
|
|
3481
|
-
export declare const workSpacesUpdatePromptResponseFlagQueryParams: zod.ZodObject<{
|
|
3482
|
-
isPromptAndResponseLoggingEnabled: zod.ZodOptional<zod.ZodBoolean>;
|
|
3483
|
-
}, zod.core.$strict>;
|
|
3484
3889
|
/**
|
|
3485
3890
|
* @summary Retrieve a Shared Access Signature (SAS) for a specific item within a data space's documents in SmartSpace, using the dataSpaceId.
|
|
3486
3891
|
*/
|
|
@@ -3655,20 +4060,147 @@ export declare const sandBoxClearSandboxMessagesPathWorkspaceIdRegExp: RegExp;
|
|
|
3655
4060
|
export declare const sandBoxClearSandboxMessagesParams: zod.ZodObject<{
|
|
3656
4061
|
workspaceId: zod.ZodString;
|
|
3657
4062
|
}, zod.core.$strict>;
|
|
4063
|
+
/**
|
|
4064
|
+
* @summary Retrieve messages from the sandbox environment of a specific workspace in SmartSpace, with options for pagination take and skip
|
|
4065
|
+
*/
|
|
4066
|
+
export declare const sandBoxGetThreadMessagesPathWorkspaceIdRegExp: RegExp;
|
|
4067
|
+
export declare const sandBoxGetThreadMessagesParams: zod.ZodObject<{
|
|
4068
|
+
workspaceId: zod.ZodString;
|
|
4069
|
+
}, zod.core.$strict>;
|
|
4070
|
+
export declare const sandBoxGetThreadMessagesQueryTakeDefault = 50;
|
|
4071
|
+
export declare const sandBoxGetThreadMessagesQuerySkipDefault = 0;
|
|
4072
|
+
export declare const sandBoxGetThreadMessagesQueryParams: zod.ZodObject<{
|
|
4073
|
+
take: zod.ZodDefault<zod.ZodNumber>;
|
|
4074
|
+
skip: zod.ZodOptional<zod.ZodNumber>;
|
|
4075
|
+
}, zod.core.$strict>;
|
|
4076
|
+
export declare const sandBoxGetThreadMessagesResponseIdRegExp: RegExp;
|
|
4077
|
+
export declare const sandBoxGetThreadMessagesResponseMessageThreadIdRegExp: RegExp;
|
|
4078
|
+
export declare const sandBoxGetThreadMessagesResponseValuesItemIdRegExp: RegExp;
|
|
4079
|
+
export declare const sandBoxGetThreadMessagesResponseItem: zod.ZodObject<{
|
|
4080
|
+
createdAt: zod.ZodISODateTime;
|
|
4081
|
+
createdBy: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
4082
|
+
createdByUserId: zod.ZodString;
|
|
4083
|
+
errors: zod.ZodArray<zod.ZodObject<{
|
|
4084
|
+
blockId: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
4085
|
+
code: zod.ZodNumber;
|
|
4086
|
+
data: zod.ZodOptional<zod.ZodNullable<zod.ZodAny>>;
|
|
4087
|
+
message: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
4088
|
+
}, zod.core.$strip>>;
|
|
4089
|
+
hasComments: zod.ZodBoolean;
|
|
4090
|
+
id: zod.ZodString;
|
|
4091
|
+
messageThreadId: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
4092
|
+
values: zod.ZodArray<zod.ZodObject<{
|
|
4093
|
+
channels: zod.ZodRecord<zod.ZodString, zod.ZodNumber>;
|
|
4094
|
+
createdAt: zod.ZodISODateTime;
|
|
4095
|
+
createdBy: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
4096
|
+
createdByUserId: zod.ZodString;
|
|
4097
|
+
id: zod.ZodString;
|
|
4098
|
+
name: zod.ZodString;
|
|
4099
|
+
type: zod.ZodEnum<{
|
|
4100
|
+
Input: "Input";
|
|
4101
|
+
Output: "Output";
|
|
4102
|
+
}>;
|
|
4103
|
+
value: zod.ZodOptional<zod.ZodNullable<zod.ZodAny>>;
|
|
4104
|
+
}, zod.core.$strip>>;
|
|
4105
|
+
}, zod.core.$strip>;
|
|
4106
|
+
export declare const sandBoxGetThreadMessagesResponse: zod.ZodArray<zod.ZodObject<{
|
|
4107
|
+
createdAt: zod.ZodISODateTime;
|
|
4108
|
+
createdBy: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
4109
|
+
createdByUserId: zod.ZodString;
|
|
4110
|
+
errors: zod.ZodArray<zod.ZodObject<{
|
|
4111
|
+
blockId: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
4112
|
+
code: zod.ZodNumber;
|
|
4113
|
+
data: zod.ZodOptional<zod.ZodNullable<zod.ZodAny>>;
|
|
4114
|
+
message: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
4115
|
+
}, zod.core.$strip>>;
|
|
4116
|
+
hasComments: zod.ZodBoolean;
|
|
4117
|
+
id: zod.ZodString;
|
|
4118
|
+
messageThreadId: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
4119
|
+
values: zod.ZodArray<zod.ZodObject<{
|
|
4120
|
+
channels: zod.ZodRecord<zod.ZodString, zod.ZodNumber>;
|
|
4121
|
+
createdAt: zod.ZodISODateTime;
|
|
4122
|
+
createdBy: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
4123
|
+
createdByUserId: zod.ZodString;
|
|
4124
|
+
id: zod.ZodString;
|
|
4125
|
+
name: zod.ZodString;
|
|
4126
|
+
type: zod.ZodEnum<{
|
|
4127
|
+
Input: "Input";
|
|
4128
|
+
Output: "Output";
|
|
4129
|
+
}>;
|
|
4130
|
+
value: zod.ZodOptional<zod.ZodNullable<zod.ZodAny>>;
|
|
4131
|
+
}, zod.core.$strip>>;
|
|
4132
|
+
}, zod.core.$strip>>;
|
|
3658
4133
|
/**
|
|
3659
4134
|
* @summary Send a new message to the sandbox environment of a specific workspace in SmartSpace, using the workspaceId.
|
|
4135
|
+
Returns the initial SmartSpace.App.Business.Models.Message.Message synchronously; the flow
|
|
4136
|
+
continues in a background task with deltas streaming via
|
|
4137
|
+
`/workspaces/{workspaceId}/sandbox/messages/stream` and a
|
|
4138
|
+
SignalR `ReceiveThreadUpdate` broadcast on terminal. Frontend
|
|
4139
|
+
should subscribe to the SSE endpoint for live token-by-token updates.
|
|
3660
4140
|
*/
|
|
3661
|
-
export declare const
|
|
3662
|
-
export declare const
|
|
4141
|
+
export declare const sandBoxThreadMessagesPathWorkspaceIdRegExp: RegExp;
|
|
4142
|
+
export declare const sandBoxThreadMessagesParams: zod.ZodObject<{
|
|
3663
4143
|
workspaceId: zod.ZodString;
|
|
3664
4144
|
}, zod.core.$strict>;
|
|
3665
|
-
export declare const
|
|
4145
|
+
export declare const sandBoxThreadMessagesBody: zod.ZodObject<{
|
|
3666
4146
|
inputs: zod.ZodArray<zod.ZodObject<{
|
|
3667
4147
|
channels: zod.ZodOptional<zod.ZodNullable<zod.ZodRecord<zod.ZodString, zod.ZodNumber>>>;
|
|
3668
4148
|
name: zod.ZodString;
|
|
3669
4149
|
value: zod.ZodOptional<zod.ZodNullable<zod.ZodAny>>;
|
|
3670
4150
|
}, zod.core.$strict>>;
|
|
4151
|
+
variables: zod.ZodOptional<zod.ZodNullable<zod.ZodRecord<zod.ZodString, zod.ZodAny>>>;
|
|
4152
|
+
}, zod.core.$strict>;
|
|
4153
|
+
export declare const sandBoxThreadMessagesResponseIdRegExp: RegExp;
|
|
4154
|
+
export declare const sandBoxThreadMessagesResponseMessageThreadIdRegExp: RegExp;
|
|
4155
|
+
export declare const sandBoxThreadMessagesResponseValuesItemIdRegExp: RegExp;
|
|
4156
|
+
export declare const sandBoxThreadMessagesResponse: zod.ZodObject<{
|
|
4157
|
+
createdAt: zod.ZodISODateTime;
|
|
4158
|
+
createdBy: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
4159
|
+
createdByUserId: zod.ZodString;
|
|
4160
|
+
errors: zod.ZodArray<zod.ZodObject<{
|
|
4161
|
+
blockId: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
4162
|
+
code: zod.ZodNumber;
|
|
4163
|
+
data: zod.ZodOptional<zod.ZodNullable<zod.ZodAny>>;
|
|
4164
|
+
message: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
4165
|
+
}, zod.core.$strip>>;
|
|
4166
|
+
hasComments: zod.ZodBoolean;
|
|
4167
|
+
id: zod.ZodString;
|
|
4168
|
+
messageThreadId: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
4169
|
+
values: zod.ZodArray<zod.ZodObject<{
|
|
4170
|
+
channels: zod.ZodRecord<zod.ZodString, zod.ZodNumber>;
|
|
4171
|
+
createdAt: zod.ZodISODateTime;
|
|
4172
|
+
createdBy: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
4173
|
+
createdByUserId: zod.ZodString;
|
|
4174
|
+
id: zod.ZodString;
|
|
4175
|
+
name: zod.ZodString;
|
|
4176
|
+
type: zod.ZodEnum<{
|
|
4177
|
+
Input: "Input";
|
|
4178
|
+
Output: "Output";
|
|
4179
|
+
}>;
|
|
4180
|
+
value: zod.ZodOptional<zod.ZodNullable<zod.ZodAny>>;
|
|
4181
|
+
}, zod.core.$strip>>;
|
|
4182
|
+
}, zod.core.$strip>;
|
|
4183
|
+
/**
|
|
4184
|
+
* @summary SSE stream of all messages on the workspace's sandbox thread. First
|
|
4185
|
+
frame is a snapshot (current messages with in-flight Redis state
|
|
4186
|
+
already overlaid by `GetMessagesByThreadIdAsync`); subsequent
|
|
4187
|
+
frames are per-message chunk updates as they arrive. Cumulative
|
|
4188
|
+
deltas mean reconnect is just "re-open" — no cursor handshake.
|
|
4189
|
+
Mirrors the ChatApi pattern at
|
|
4190
|
+
`GET /messagethreads/{id}/messages/stream`.
|
|
4191
|
+
*/
|
|
4192
|
+
export declare const sandBoxStreamSandboxMessagesPathWorkspaceIdRegExp: RegExp;
|
|
4193
|
+
export declare const sandBoxStreamSandboxMessagesParams: zod.ZodObject<{
|
|
4194
|
+
workspaceId: zod.ZodString;
|
|
3671
4195
|
}, zod.core.$strict>;
|
|
4196
|
+
/**
|
|
4197
|
+
* @summary Append a new input value to an in-flight sandbox message and stream
|
|
4198
|
+
successive snapshots back to the client. Each frame is a full
|
|
4199
|
+
SmartSpace.App.Business.Models.Message.Message with the latest cumulative state — the SDK
|
|
4200
|
+
should treat the response as a stream of SmartSpace.App.Business.Models.Message.Message frames
|
|
4201
|
+
(NDJSON / SSE), with the final frame being the authoritative completed
|
|
4202
|
+
message. Mirrors the chat-api `POST /messages/{id}/values`.
|
|
4203
|
+
*/
|
|
3672
4204
|
export declare const sandBoxAddValueToMessagePathWorkspaceIdRegExp: RegExp;
|
|
3673
4205
|
export declare const sandBoxAddValueToMessagePathIdRegExp: RegExp;
|
|
3674
4206
|
export declare const sandBoxAddValueToMessageParams: zod.ZodObject<{
|