@smartspace/api-client 0.1.0-dev.793b98c → 0.1.0-dev.9ad9558

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.
Files changed (52) hide show
  1. package/dist/generated/chat/api.d.ts +12 -2
  2. package/dist/generated/chat/api.js +59 -1
  3. package/dist/generated/chat/models/dtosMessageThreadsMessageThreadDto.d.ts +23 -0
  4. package/dist/generated/chat/models/dtosMessageThreadsMessageThreadDto.js +8 -0
  5. package/dist/generated/chat/models/enumsModelPublisher.d.ts +22 -0
  6. package/dist/generated/chat/models/enumsModelPublisher.js +25 -0
  7. package/dist/generated/chat/models/index.d.ts +2 -0
  8. package/dist/generated/chat/models/index.js +2 -0
  9. package/dist/generated/chat/models/modelModel.d.ts +2 -0
  10. package/dist/generated/chat/models/modelModelSummary.d.ts +2 -0
  11. package/dist/generated/chat/zod.d.ts +216 -0
  12. package/dist/generated/chat/zod.js +159 -4
  13. package/dist/generated/config/api.d.ts +89 -9
  14. package/dist/generated/config/api.js +274 -7
  15. package/dist/generated/config/models/createModel.d.ts +2 -0
  16. package/dist/generated/config/models/enumsModelPublisher.d.ts +22 -0
  17. package/dist/generated/config/models/enumsModelPublisher.js +25 -0
  18. package/dist/generated/config/models/flowRunsAddFileIdFilesBody.d.ts +9 -0
  19. package/dist/generated/config/models/flowRunsCreateFlowRunParams.d.ts +13 -0
  20. package/dist/generated/config/models/index.d.ts +9 -3
  21. package/dist/generated/config/models/index.js +9 -3
  22. package/dist/generated/config/models/modelModel.d.ts +2 -0
  23. package/dist/generated/config/models/modelModelSummary.d.ts +2 -0
  24. package/dist/generated/config/models/modelProvidersGetProvidersParams.d.ts +16 -0
  25. package/dist/generated/config/models/modelsGetDefaultDockerFileParams.d.ts +10 -0
  26. package/dist/generated/config/models/modelsGetDefaultDockerFileParams.js +2 -0
  27. package/dist/generated/config/models/{sandBoxThreadMessagesWorkspacesWorkspaceIdSandboxMessagesParams.d.ts → sandBoxGetThreadMessagesParams.d.ts} +1 -1
  28. package/dist/generated/config/models/sandBoxGetThreadMessagesParams.js +8 -0
  29. package/dist/generated/config/models/usersAdminPermissionParams.d.ts +9 -0
  30. package/dist/generated/config/models/usersAdminPermissionParams.js +8 -0
  31. package/dist/generated/config/models/{workSpacesWorkspaceFilesWorkspaceIdFilesParams.d.ts → workSpacesGetWorkspaceFilesParams.d.ts} +1 -1
  32. package/dist/generated/config/models/workSpacesGetWorkspaceFilesParams.js +8 -0
  33. package/dist/generated/config/models/{workSpacesWorkspaceFilesWorkspaceIdFilesBody.d.ts → workSpacesWorkspaceFilesBody.d.ts} +1 -1
  34. package/dist/generated/config/models/workSpacesWorkspaceFilesBody.js +8 -0
  35. package/dist/generated/config/zod.d.ts +627 -18
  36. package/dist/generated/config/zod.js +420 -38
  37. package/dist/generated/signalr/SmartSpace.App.Business.Models.Comment.d.ts +24 -0
  38. package/dist/generated/signalr/SmartSpace.App.Business.Models.Comment.js +5 -0
  39. package/dist/generated/signalr/SmartSpace.App.Business.Models.MessageThread.d.ts +27 -0
  40. package/dist/generated/signalr/SmartSpace.App.Business.Models.MessageThread.js +5 -0
  41. package/dist/generated/signalr/TypedSignalR.Client/SmartSpace.App.Business.Hubs.Contracts.d.ts +71 -0
  42. package/dist/generated/signalr/TypedSignalR.Client/SmartSpace.App.Business.Hubs.Contracts.js +2 -0
  43. package/dist/generated/signalr/TypedSignalR.Client/index.d.ts +21 -0
  44. package/dist/generated/signalr/TypedSignalR.Client/index.js +114 -0
  45. package/dist/index.d.ts +1 -0
  46. package/dist/index.js +2 -1
  47. package/dist/signalr.d.ts +4 -0
  48. package/dist/signalr.js +18 -0
  49. package/package.json +6 -2
  50. /package/dist/generated/config/models/{sandBoxThreadMessagesWorkspacesWorkspaceIdSandboxMessagesParams.js → flowRunsAddFileIdFilesBody.js} +0 -0
  51. /package/dist/generated/config/models/{workSpacesWorkspaceFilesWorkspaceIdFilesBody.js → flowRunsCreateFlowRunParams.js} +0 -0
  52. /package/dist/generated/config/models/{workSpacesWorkspaceFilesWorkspaceIdFilesParams.js → modelProvidersGetProvidersParams.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
  */
@@ -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
  */
@@ -1931,6 +2118,21 @@ export declare const modelsGetModelsResponse: zod.ZodObject<{
1931
2118
  VertexAi: "VertexAi";
1932
2119
  AzureFoundry: "AzureFoundry";
1933
2120
  }>>;
2121
+ modelPublisher: zod.ZodOptional<zod.ZodEnum<{
2122
+ OpenAi: "OpenAi";
2123
+ HuggingFace: "HuggingFace";
2124
+ Cohere: "Cohere";
2125
+ Anthropic: "Anthropic";
2126
+ Google: "Google";
2127
+ Meta: "Meta";
2128
+ Mistral: "Mistral";
2129
+ Microsoft: "Microsoft";
2130
+ DeepSeek: "DeepSeek";
2131
+ XAi: "XAi";
2132
+ Amazon: "Amazon";
2133
+ Qwen: "Qwen";
2134
+ Other: "Other";
2135
+ }>>;
1934
2136
  name: zod.ZodString;
1935
2137
  properties: zod.ZodArray<zod.ZodObject<{
1936
2138
  name: zod.ZodString;
@@ -1978,7 +2180,29 @@ export declare const modelsCreateModelBody: zod.ZodObject<{
1978
2180
  }, zod.core.$strict>>;
1979
2181
  displayName: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
1980
2182
  name: zod.ZodString;
2183
+ publisher: zod.ZodOptional<zod.ZodEnum<{
2184
+ OpenAi: "OpenAi";
2185
+ HuggingFace: "HuggingFace";
2186
+ Cohere: "Cohere";
2187
+ Anthropic: "Anthropic";
2188
+ Google: "Google";
2189
+ Meta: "Meta";
2190
+ Mistral: "Mistral";
2191
+ Microsoft: "Microsoft";
2192
+ DeepSeek: "DeepSeek";
2193
+ XAi: "XAi";
2194
+ Amazon: "Amazon";
2195
+ Qwen: "Qwen";
2196
+ Other: "Other";
2197
+ }>>;
1981
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;
1982
2206
  /**
1983
2207
  * @summary Deletes a model with the specified ID.
1984
2208
  */
@@ -2054,6 +2278,21 @@ export declare const modelsGetModelResponse: zod.ZodObject<{
2054
2278
  VertexAi: "VertexAi";
2055
2279
  AzureFoundry: "AzureFoundry";
2056
2280
  }>>;
2281
+ modelPublisher: zod.ZodOptional<zod.ZodEnum<{
2282
+ OpenAi: "OpenAi";
2283
+ HuggingFace: "HuggingFace";
2284
+ Cohere: "Cohere";
2285
+ Anthropic: "Anthropic";
2286
+ Google: "Google";
2287
+ Meta: "Meta";
2288
+ Mistral: "Mistral";
2289
+ Microsoft: "Microsoft";
2290
+ DeepSeek: "DeepSeek";
2291
+ XAi: "XAi";
2292
+ Amazon: "Amazon";
2293
+ Qwen: "Qwen";
2294
+ Other: "Other";
2295
+ }>>;
2057
2296
  name: zod.ZodString;
2058
2297
  properties: zod.ZodArray<zod.ZodObject<{
2059
2298
  name: zod.ZodString;
@@ -2102,6 +2341,21 @@ export declare const modelsUpsertModelBody: zod.ZodObject<{
2102
2341
  }, zod.core.$strict>>;
2103
2342
  displayName: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
2104
2343
  name: zod.ZodString;
2344
+ publisher: zod.ZodOptional<zod.ZodEnum<{
2345
+ OpenAi: "OpenAi";
2346
+ HuggingFace: "HuggingFace";
2347
+ Cohere: "Cohere";
2348
+ Anthropic: "Anthropic";
2349
+ Google: "Google";
2350
+ Meta: "Meta";
2351
+ Mistral: "Mistral";
2352
+ Microsoft: "Microsoft";
2353
+ DeepSeek: "DeepSeek";
2354
+ XAi: "XAi";
2355
+ Amazon: "Amazon";
2356
+ Qwen: "Qwen";
2357
+ Other: "Other";
2358
+ }>>;
2105
2359
  }, zod.core.$strict>;
2106
2360
  /**
2107
2361
  * @summary Retrieves the Docker logs for a specific deployment of a model.
@@ -2161,6 +2415,18 @@ export declare const notificationGetResponse: zod.ZodObject<{
2161
2415
  export declare const notificationPutUpdateBodyRegExpOne: RegExp;
2162
2416
  export declare const notificationPutUpdateBodyItem: zod.ZodString;
2163
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>;
2164
2430
  /**
2165
2431
  * @summary Gets the number of requests by a specified duration
2166
2432
  */
@@ -2258,6 +2524,32 @@ export declare const usersGetUsersResponse: zod.ZodObject<{
2258
2524
  }, zod.core.$strip>>;
2259
2525
  total: zod.ZodNumber;
2260
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
+ }>;
2261
2553
  /**
2262
2554
  * @summary Disable user (Remove all assigned WorkSpaces by UserId)
2263
2555
  */
@@ -2369,6 +2661,45 @@ export declare const usersGetAccessWorkSpacesResponse: zod.ZodArray<zod.ZodObjec
2369
2661
  workSpaceId: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
2370
2662
  workSpaceName: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
2371
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>;
2372
2703
  /**
2373
2704
  * @summary Returns a list of available Azure locations for deploying virtual machines
2374
2705
  */
@@ -2625,6 +2956,21 @@ export declare const workSpacesGetGetResponse: zod.ZodObject<{
2625
2956
  VertexAi: "VertexAi";
2626
2957
  AzureFoundry: "AzureFoundry";
2627
2958
  }>>;
2959
+ modelPublisher: zod.ZodOptional<zod.ZodEnum<{
2960
+ OpenAi: "OpenAi";
2961
+ HuggingFace: "HuggingFace";
2962
+ Cohere: "Cohere";
2963
+ Anthropic: "Anthropic";
2964
+ Google: "Google";
2965
+ Meta: "Meta";
2966
+ Mistral: "Mistral";
2967
+ Microsoft: "Microsoft";
2968
+ DeepSeek: "DeepSeek";
2969
+ XAi: "XAi";
2970
+ Amazon: "Amazon";
2971
+ Qwen: "Qwen";
2972
+ Other: "Other";
2973
+ }>>;
2628
2974
  name: zod.ZodString;
2629
2975
  properties: zod.ZodArray<zod.ZodObject<{
2630
2976
  name: zod.ZodString;
@@ -2881,6 +3227,21 @@ export declare const workSpacesPostResponse: zod.ZodObject<{
2881
3227
  VertexAi: "VertexAi";
2882
3228
  AzureFoundry: "AzureFoundry";
2883
3229
  }>>;
3230
+ modelPublisher: zod.ZodOptional<zod.ZodEnum<{
3231
+ OpenAi: "OpenAi";
3232
+ HuggingFace: "HuggingFace";
3233
+ Cohere: "Cohere";
3234
+ Anthropic: "Anthropic";
3235
+ Google: "Google";
3236
+ Meta: "Meta";
3237
+ Mistral: "Mistral";
3238
+ Microsoft: "Microsoft";
3239
+ DeepSeek: "DeepSeek";
3240
+ XAi: "XAi";
3241
+ Amazon: "Amazon";
3242
+ Qwen: "Qwen";
3243
+ Other: "Other";
3244
+ }>>;
2884
3245
  name: zod.ZodString;
2885
3246
  properties: zod.ZodArray<zod.ZodObject<{
2886
3247
  name: zod.ZodString;
@@ -3122,6 +3483,21 @@ export declare const workSpacesGetIdResponse: zod.ZodObject<{
3122
3483
  VertexAi: "VertexAi";
3123
3484
  AzureFoundry: "AzureFoundry";
3124
3485
  }>>;
3486
+ modelPublisher: zod.ZodOptional<zod.ZodEnum<{
3487
+ OpenAi: "OpenAi";
3488
+ HuggingFace: "HuggingFace";
3489
+ Cohere: "Cohere";
3490
+ Anthropic: "Anthropic";
3491
+ Google: "Google";
3492
+ Meta: "Meta";
3493
+ Mistral: "Mistral";
3494
+ Microsoft: "Microsoft";
3495
+ DeepSeek: "DeepSeek";
3496
+ XAi: "XAi";
3497
+ Amazon: "Amazon";
3498
+ Qwen: "Qwen";
3499
+ Other: "Other";
3500
+ }>>;
3125
3501
  name: zod.ZodString;
3126
3502
  properties: zod.ZodArray<zod.ZodObject<{
3127
3503
  name: zod.ZodString;
@@ -3160,6 +3536,52 @@ export declare const workSpacesGetIdResponse: zod.ZodObject<{
3160
3536
  schema: zod.ZodRecord<zod.ZodString, zod.ZodAny>;
3161
3537
  }, zod.core.$strip>>;
3162
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>>;
3163
3585
  /**
3164
3586
  * @summary Update basic information of a specific workspace in SmartSpace, such as name and summary, using the workspace's ID.
3165
3587
  */
@@ -3175,6 +3597,14 @@ export declare const workSpacesPutBody: zod.ZodObject<{
3175
3597
  summary: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
3176
3598
  tags: zod.ZodOptional<zod.ZodNullable<zod.ZodArray<zod.ZodString>>>;
3177
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;
3178
3608
  /**
3179
3609
  * @summary Retrieve all message threads associated with a specific workspace in SmartSpace, identified by workspaceId, with pagination options take and skip.
3180
3610
  */
@@ -3208,11 +3638,23 @@ export declare const workSpacesGetThreadsResponse: zod.ZodObject<{
3208
3638
  }, zod.core.$strip>>;
3209
3639
  total: zod.ZodNumber;
3210
3640
  }, zod.core.$strip>;
3641
+ /**
3642
+ * @summary Deletes the model configuration for a specific workspace and role.
3643
+ */
3644
+ export declare const workSpacesPutModelConfigurationIdModelconfigurationRoleDeletePathIdRegExp: RegExp;
3645
+ export declare const workSpacesPutModelConfigurationIdModelconfigurationRoleDeleteParams: zod.ZodObject<{
3646
+ id: zod.ZodString;
3647
+ role: zod.ZodEnum<{
3648
+ Document: "Document";
3649
+ Agent: "Agent";
3650
+ Analyzer: "Analyzer";
3651
+ }>;
3652
+ }, zod.core.$strict>;
3211
3653
  /**
3212
3654
  * @summary Configure AI models for a specific role within a workspace in SmartSpace, identified by workspaceId and role.
3213
3655
  */
3214
- export declare const workSpacesPutModelConfigurationIdModelconfigurationRolePathIdRegExpOne: RegExp;
3215
- export declare const workSpacesPutModelConfigurationIdModelconfigurationRoleParams: zod.ZodObject<{
3656
+ export declare const workSpacesPutModelConfigurationIdModelconfigurationRolePutPathIdRegExp: RegExp;
3657
+ export declare const workSpacesPutModelConfigurationIdModelconfigurationRolePutParams: zod.ZodObject<{
3216
3658
  id: zod.ZodString;
3217
3659
  role: zod.ZodEnum<{
3218
3660
  Document: "Document";
@@ -3220,8 +3662,8 @@ export declare const workSpacesPutModelConfigurationIdModelconfigurationRolePara
3220
3662
  Analyzer: "Analyzer";
3221
3663
  }>;
3222
3664
  }, zod.core.$strict>;
3223
- export declare const workSpacesPutModelConfigurationIdModelconfigurationRoleBodyModelIdRegExp: RegExp;
3224
- export declare const workSpacesPutModelConfigurationIdModelconfigurationRoleBody: zod.ZodObject<{
3665
+ export declare const workSpacesPutModelConfigurationIdModelconfigurationRolePutBodyModelIdRegExp: RegExp;
3666
+ export declare const workSpacesPutModelConfigurationIdModelconfigurationRolePutBody: zod.ZodObject<{
3225
3667
  frequencyPenalty: zod.ZodNumber;
3226
3668
  modelDisplayText: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
3227
3669
  modelId: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
@@ -3253,20 +3695,65 @@ export declare const workSpacesAddDataSpaceParams: zod.ZodObject<{
3253
3695
  workspaceId: zod.ZodString;
3254
3696
  dataspaceId: zod.ZodString;
3255
3697
  }, zod.core.$strict>;
3698
+ /**
3699
+ * @summary Gets a list of all the files that are uploaded directly to the workspace
3700
+ */
3701
+ export declare const workSpacesGetWorkspaceFilesPathWorkspaceIdRegExp: RegExp;
3702
+ export declare const workSpacesGetWorkspaceFilesParams: zod.ZodObject<{
3703
+ workspaceId: zod.ZodString;
3704
+ }, zod.core.$strict>;
3705
+ export declare const workSpacesGetWorkspaceFilesQueryTakeDefault = 20;
3706
+ export declare const workSpacesGetWorkspaceFilesQuerySkipDefault = 0;
3707
+ export declare const workSpacesGetWorkspaceFilesQueryParams: zod.ZodObject<{
3708
+ take: zod.ZodDefault<zod.ZodNumber>;
3709
+ skip: zod.ZodOptional<zod.ZodNumber>;
3710
+ }, zod.core.$strict>;
3711
+ export declare const workSpacesGetWorkspaceFilesResponseDataItemFileIdRegExp: RegExp;
3712
+ export declare const workSpacesGetWorkspaceFilesResponseDataItemFileThreadIdRegExp: RegExp;
3713
+ export declare const workSpacesGetWorkspaceFilesResponseDataItemFileWorkspaceIdRegExp: RegExp;
3714
+ export declare const workSpacesGetWorkspaceFilesResponse: zod.ZodObject<{
3715
+ data: zod.ZodArray<zod.ZodObject<{
3716
+ createdAt: zod.ZodOptional<zod.ZodNullable<zod.ZodISODateTime>>;
3717
+ createdByUserId: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
3718
+ createdByUserName: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
3719
+ dataSetId: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
3720
+ file: zod.ZodOptional<zod.ZodObject<{
3721
+ createdAt: zod.ZodISODateTime;
3722
+ createdByUserId: zod.ZodString;
3723
+ id: zod.ZodString;
3724
+ modifiedAt: zod.ZodISODateTime;
3725
+ modifiedByUserId: zod.ZodString;
3726
+ name: zod.ZodString;
3727
+ size: zod.ZodNumber;
3728
+ threadId: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
3729
+ workspaceId: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
3730
+ }, zod.core.$strip>>;
3731
+ flowRunId: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
3732
+ id: zod.ZodString;
3733
+ modifiedAt: zod.ZodOptional<zod.ZodNullable<zod.ZodISODateTime>>;
3734
+ modifiedByUserId: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
3735
+ status: zod.ZodEnum<{
3736
+ Uploaded: "Uploaded";
3737
+ Ingested: "Ingested";
3738
+ Ingesting: "Ingesting";
3739
+ }>;
3740
+ }, zod.core.$strip>>;
3741
+ total: zod.ZodNumber;
3742
+ }, zod.core.$strip>;
3256
3743
  /**
3257
3744
  * @summary Uploads a list of files directly to the workspace
3258
3745
  */
3259
- export declare const workSpacesWorkspaceFilesWorkspaceIdFilesPathWorkspaceIdRegExpOne: RegExp;
3260
- export declare const workSpacesWorkspaceFilesWorkspaceIdFilesParams: zod.ZodObject<{
3746
+ export declare const workSpacesWorkspaceFilesPathWorkspaceIdRegExp: RegExp;
3747
+ export declare const workSpacesWorkspaceFilesParams: zod.ZodObject<{
3261
3748
  workspaceId: zod.ZodString;
3262
3749
  }, zod.core.$strict>;
3263
- export declare const workSpacesWorkspaceFilesWorkspaceIdFilesBody: zod.ZodObject<{
3750
+ export declare const workSpacesWorkspaceFilesBody: zod.ZodObject<{
3264
3751
  files: zod.ZodOptional<zod.ZodArray<zod.ZodCustom<import("node:buffer").File, import("node:buffer").File>>>;
3265
3752
  }, zod.core.$strict>;
3266
- export declare const workSpacesWorkspaceFilesWorkspaceIdFilesResponseFileIdRegExp: RegExp;
3267
- export declare const workSpacesWorkspaceFilesWorkspaceIdFilesResponseFileThreadIdRegExp: RegExp;
3268
- export declare const workSpacesWorkspaceFilesWorkspaceIdFilesResponseFileWorkspaceIdRegExp: RegExp;
3269
- export declare const workSpacesWorkspaceFilesWorkspaceIdFilesResponseItem: zod.ZodObject<{
3753
+ export declare const workSpacesWorkspaceFilesResponseFileIdRegExp: RegExp;
3754
+ export declare const workSpacesWorkspaceFilesResponseFileThreadIdRegExp: RegExp;
3755
+ export declare const workSpacesWorkspaceFilesResponseFileWorkspaceIdRegExp: RegExp;
3756
+ export declare const workSpacesWorkspaceFilesResponseItem: zod.ZodObject<{
3270
3757
  createdAt: zod.ZodOptional<zod.ZodNullable<zod.ZodISODateTime>>;
3271
3758
  createdByUserId: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
3272
3759
  createdByUserName: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
@@ -3292,7 +3779,7 @@ export declare const workSpacesWorkspaceFilesWorkspaceIdFilesResponseItem: zod.Z
3292
3779
  Ingesting: "Ingesting";
3293
3780
  }>;
3294
3781
  }, zod.core.$strip>;
3295
- export declare const workSpacesWorkspaceFilesWorkspaceIdFilesResponse: zod.ZodArray<zod.ZodObject<{
3782
+ export declare const workSpacesWorkspaceFilesResponse: zod.ZodArray<zod.ZodObject<{
3296
3783
  createdAt: zod.ZodOptional<zod.ZodNullable<zod.ZodISODateTime>>;
3297
3784
  createdByUserId: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
3298
3785
  createdByUserName: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
@@ -3327,14 +3814,18 @@ export declare const workSpacesDeleteWorkspaceFileParams: zod.ZodObject<{
3327
3814
  workspaceId: zod.ZodString;
3328
3815
  fileId: zod.ZodString;
3329
3816
  }, zod.core.$strict>;
3817
+ export declare const workSpacesGetActiveFlowPathWorkspaceIdRegExp: RegExp;
3818
+ export declare const workSpacesGetActiveFlowParams: zod.ZodObject<{
3819
+ workspaceId: zod.ZodString;
3820
+ }, zod.core.$strict>;
3330
3821
  /**
3331
3822
  * @summary Creates a flow
3332
3823
  */
3333
- export declare const workSpacesSetActiveFlowWorkspaceIdFlowsActivePathWorkspaceIdRegExpOne: RegExp;
3334
- export declare const workSpacesSetActiveFlowWorkspaceIdFlowsActiveParams: zod.ZodObject<{
3824
+ export declare const workSpacesSetActiveFlowPathWorkspaceIdRegExp: RegExp;
3825
+ export declare const workSpacesSetActiveFlowParams: zod.ZodObject<{
3335
3826
  workspaceId: zod.ZodString;
3336
3827
  }, zod.core.$strict>;
3337
- export declare const workSpacesSetActiveFlowWorkspaceIdFlowsActiveBody: zod.ZodObject<{
3828
+ export declare const workSpacesSetActiveFlowBody: zod.ZodObject<{
3338
3829
  blocks: zod.ZodOptional<zod.ZodNullable<zod.ZodRecord<zod.ZodString, zod.ZodObject<{
3339
3830
  constants: zod.ZodOptional<zod.ZodNullable<zod.ZodArray<zod.ZodObject<{
3340
3831
  target: zod.ZodObject<{
@@ -3580,20 +4071,138 @@ export declare const sandBoxClearSandboxMessagesPathWorkspaceIdRegExp: RegExp;
3580
4071
  export declare const sandBoxClearSandboxMessagesParams: zod.ZodObject<{
3581
4072
  workspaceId: zod.ZodString;
3582
4073
  }, zod.core.$strict>;
4074
+ /**
4075
+ * @summary Retrieve messages from the sandbox environment of a specific workspace in SmartSpace, with options for pagination take and skip
4076
+ */
4077
+ export declare const sandBoxGetThreadMessagesPathWorkspaceIdRegExp: RegExp;
4078
+ export declare const sandBoxGetThreadMessagesParams: zod.ZodObject<{
4079
+ workspaceId: zod.ZodString;
4080
+ }, zod.core.$strict>;
4081
+ export declare const sandBoxGetThreadMessagesQueryTakeDefault = 50;
4082
+ export declare const sandBoxGetThreadMessagesQuerySkipDefault = 0;
4083
+ export declare const sandBoxGetThreadMessagesQueryParams: zod.ZodObject<{
4084
+ take: zod.ZodDefault<zod.ZodNumber>;
4085
+ skip: zod.ZodOptional<zod.ZodNumber>;
4086
+ }, zod.core.$strict>;
4087
+ export declare const sandBoxGetThreadMessagesResponseIdRegExp: RegExp;
4088
+ export declare const sandBoxGetThreadMessagesResponseMessageThreadIdRegExp: RegExp;
4089
+ export declare const sandBoxGetThreadMessagesResponseValuesItemIdRegExp: RegExp;
4090
+ export declare const sandBoxGetThreadMessagesResponseItem: zod.ZodObject<{
4091
+ createdAt: zod.ZodISODateTime;
4092
+ createdBy: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
4093
+ createdByUserId: zod.ZodString;
4094
+ errors: zod.ZodArray<zod.ZodObject<{
4095
+ blockId: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
4096
+ code: zod.ZodNumber;
4097
+ data: zod.ZodOptional<zod.ZodNullable<zod.ZodAny>>;
4098
+ message: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
4099
+ }, zod.core.$strip>>;
4100
+ hasComments: zod.ZodBoolean;
4101
+ id: zod.ZodString;
4102
+ messageThreadId: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
4103
+ values: zod.ZodArray<zod.ZodObject<{
4104
+ channels: zod.ZodRecord<zod.ZodString, zod.ZodNumber>;
4105
+ createdAt: zod.ZodISODateTime;
4106
+ createdBy: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
4107
+ createdByUserId: zod.ZodString;
4108
+ id: zod.ZodString;
4109
+ name: zod.ZodString;
4110
+ type: zod.ZodEnum<{
4111
+ Input: "Input";
4112
+ Output: "Output";
4113
+ }>;
4114
+ value: zod.ZodOptional<zod.ZodNullable<zod.ZodAny>>;
4115
+ }, zod.core.$strip>>;
4116
+ }, zod.core.$strip>;
4117
+ export declare const sandBoxGetThreadMessagesResponse: zod.ZodArray<zod.ZodObject<{
4118
+ createdAt: zod.ZodISODateTime;
4119
+ createdBy: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
4120
+ createdByUserId: zod.ZodString;
4121
+ errors: zod.ZodArray<zod.ZodObject<{
4122
+ blockId: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
4123
+ code: zod.ZodNumber;
4124
+ data: zod.ZodOptional<zod.ZodNullable<zod.ZodAny>>;
4125
+ message: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
4126
+ }, zod.core.$strip>>;
4127
+ hasComments: zod.ZodBoolean;
4128
+ id: zod.ZodString;
4129
+ messageThreadId: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
4130
+ values: zod.ZodArray<zod.ZodObject<{
4131
+ channels: zod.ZodRecord<zod.ZodString, zod.ZodNumber>;
4132
+ createdAt: zod.ZodISODateTime;
4133
+ createdBy: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
4134
+ createdByUserId: zod.ZodString;
4135
+ id: zod.ZodString;
4136
+ name: zod.ZodString;
4137
+ type: zod.ZodEnum<{
4138
+ Input: "Input";
4139
+ Output: "Output";
4140
+ }>;
4141
+ value: zod.ZodOptional<zod.ZodNullable<zod.ZodAny>>;
4142
+ }, zod.core.$strip>>;
4143
+ }, zod.core.$strip>>;
3583
4144
  /**
3584
4145
  * @summary Send a new message to the sandbox environment of a specific workspace in SmartSpace, using the workspaceId.
4146
+ Returns the initial SmartSpace.App.Business.Models.Message.Message synchronously; the flow
4147
+ continues in a background task with deltas streaming via
4148
+ `/workspaces/{workspaceId}/sandbox/messages/stream` and a
4149
+ SignalR `ReceiveThreadUpdate` broadcast on terminal. Frontend
4150
+ should subscribe to the SSE endpoint for live token-by-token updates.
3585
4151
  */
3586
- export declare const sandBoxThreadMessagesWorkspacesWorkspaceIdSandboxMessagesPathWorkspaceIdRegExpOne: RegExp;
3587
- export declare const sandBoxThreadMessagesWorkspacesWorkspaceIdSandboxMessagesParams: zod.ZodObject<{
4152
+ export declare const sandBoxThreadMessagesPathWorkspaceIdRegExp: RegExp;
4153
+ export declare const sandBoxThreadMessagesParams: zod.ZodObject<{
3588
4154
  workspaceId: zod.ZodString;
3589
4155
  }, zod.core.$strict>;
3590
- export declare const sandBoxThreadMessagesWorkspacesWorkspaceIdSandboxMessagesBody: zod.ZodObject<{
4156
+ export declare const sandBoxThreadMessagesBody: zod.ZodObject<{
3591
4157
  inputs: zod.ZodArray<zod.ZodObject<{
3592
4158
  channels: zod.ZodOptional<zod.ZodNullable<zod.ZodRecord<zod.ZodString, zod.ZodNumber>>>;
3593
4159
  name: zod.ZodString;
3594
4160
  value: zod.ZodOptional<zod.ZodNullable<zod.ZodAny>>;
3595
4161
  }, zod.core.$strict>>;
3596
4162
  }, zod.core.$strict>;
4163
+ export declare const sandBoxThreadMessagesResponseIdRegExp: RegExp;
4164
+ export declare const sandBoxThreadMessagesResponseMessageThreadIdRegExp: RegExp;
4165
+ export declare const sandBoxThreadMessagesResponseValuesItemIdRegExp: RegExp;
4166
+ export declare const sandBoxThreadMessagesResponse: zod.ZodObject<{
4167
+ createdAt: zod.ZodISODateTime;
4168
+ createdBy: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
4169
+ createdByUserId: zod.ZodString;
4170
+ errors: zod.ZodArray<zod.ZodObject<{
4171
+ blockId: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
4172
+ code: zod.ZodNumber;
4173
+ data: zod.ZodOptional<zod.ZodNullable<zod.ZodAny>>;
4174
+ message: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
4175
+ }, zod.core.$strip>>;
4176
+ hasComments: zod.ZodBoolean;
4177
+ id: zod.ZodString;
4178
+ messageThreadId: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
4179
+ values: zod.ZodArray<zod.ZodObject<{
4180
+ channels: zod.ZodRecord<zod.ZodString, zod.ZodNumber>;
4181
+ createdAt: zod.ZodISODateTime;
4182
+ createdBy: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
4183
+ createdByUserId: zod.ZodString;
4184
+ id: zod.ZodString;
4185
+ name: zod.ZodString;
4186
+ type: zod.ZodEnum<{
4187
+ Input: "Input";
4188
+ Output: "Output";
4189
+ }>;
4190
+ value: zod.ZodOptional<zod.ZodNullable<zod.ZodAny>>;
4191
+ }, zod.core.$strip>>;
4192
+ }, zod.core.$strip>;
4193
+ /**
4194
+ * @summary SSE stream of all messages on the workspace's sandbox thread. First
4195
+ frame is a snapshot (current messages with in-flight Redis state
4196
+ already overlaid by `GetMessagesByThreadIdAsync`); subsequent
4197
+ frames are per-message chunk updates as they arrive. Cumulative
4198
+ deltas mean reconnect is just "re-open" — no cursor handshake.
4199
+ Mirrors the ChatApi pattern at
4200
+ `GET /messagethreads/{id}/messages/stream`.
4201
+ */
4202
+ export declare const sandBoxStreamSandboxMessagesPathWorkspaceIdRegExp: RegExp;
4203
+ export declare const sandBoxStreamSandboxMessagesParams: zod.ZodObject<{
4204
+ workspaceId: zod.ZodString;
4205
+ }, zod.core.$strict>;
3597
4206
  export declare const sandBoxAddValueToMessagePathWorkspaceIdRegExp: RegExp;
3598
4207
  export declare const sandBoxAddValueToMessagePathIdRegExp: RegExp;
3599
4208
  export declare const sandBoxAddValueToMessageParams: zod.ZodObject<{