@smartspace/api-client 0.1.0-dev.f2f7d75 → 0.1.0-dev.f4388d0

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 (42) hide show
  1. package/dist/generated/chat/api.d.ts +2 -0
  2. package/dist/generated/chat/api.js +10 -1
  3. package/dist/generated/chat/api.msw.d.ts +1 -0
  4. package/dist/generated/chat/api.msw.js +18 -6
  5. package/dist/generated/chat/models/aiModel.d.ts +1 -0
  6. package/dist/generated/chat/models/aiModelSummary.d.ts +1 -0
  7. package/dist/generated/chat/models/dataSourceContainer.d.ts +2 -0
  8. package/dist/generated/chat/zod.d.ts +13 -0
  9. package/dist/generated/chat/zod.js +18 -5
  10. package/dist/generated/config/api.d.ts +19 -1
  11. package/dist/generated/config/api.js +88 -2
  12. package/dist/generated/config/api.msw.d.ts +14 -1
  13. package/dist/generated/config/api.msw.js +136 -20
  14. package/dist/generated/config/models/aiModel.d.ts +1 -0
  15. package/dist/generated/config/models/aiModelSummary.d.ts +1 -0
  16. package/dist/generated/config/models/blocksBlockSet.d.ts +3 -2
  17. package/dist/generated/config/models/{blocksUsedInWorkspaceRef.d.ts → blocksUsedInRef.d.ts} +1 -1
  18. package/dist/generated/config/models/dataSetsCreateDataSetContainer.d.ts +2 -0
  19. package/dist/generated/config/models/dataSetsUpsertDataSetProperty.d.ts +5 -1
  20. package/dist/generated/config/models/dataSourceContainer.d.ts +2 -0
  21. package/dist/generated/config/models/dataSourcesDataSourceContainer.d.ts +2 -0
  22. package/dist/generated/config/models/flowRunsGetWorkspaceRunsParams.d.ts +16 -0
  23. package/dist/generated/config/models/index.d.ts +8 -2
  24. package/dist/generated/config/models/index.js +8 -2
  25. package/dist/generated/config/models/integrationsSmartSpaceAiSmartSpaceAiPagedDataSystemCollectionsGenericICollectionIntegrationsSmartSpaceAiWorkspaceRun.d.ts +11 -0
  26. package/dist/generated/config/models/integrationsSmartSpaceAiSmartSpaceAiPagedDataSystemCollectionsGenericICollectionIntegrationsSmartSpaceAiWorkspaceRun.js +2 -0
  27. package/dist/generated/config/models/integrationsSmartSpaceAiWorkspaceRun.d.ts +27 -0
  28. package/dist/generated/config/models/integrationsSmartSpaceAiWorkspaceRun.js +8 -0
  29. package/dist/generated/config/models/pagedDataCollectionUsersServicePrincipalDetail.d.ts +11 -0
  30. package/dist/generated/config/models/pagedDataCollectionUsersServicePrincipalDetail.js +2 -0
  31. package/dist/generated/config/models/servicePrincipalsGetServicePrincipalsParams.d.ts +11 -0
  32. package/dist/generated/config/models/servicePrincipalsGetServicePrincipalsParams.js +8 -0
  33. package/dist/generated/config/models/syncsSyncDataSourceInfo.d.ts +3 -0
  34. package/dist/generated/config/models/{integrationsAzureActiveDirectoryServicePrincipal.d.ts → syncsSyncQueueState.d.ts} +3 -3
  35. package/dist/generated/config/models/syncsSyncQueueState.js +8 -0
  36. package/dist/generated/config/models/usersServicePrincipalDetail.d.ts +14 -0
  37. package/dist/generated/config/models/usersServicePrincipalDetail.js +2 -0
  38. package/dist/generated/config/zod.d.ts +200 -2
  39. package/dist/generated/config/zod.js +167 -19
  40. package/package.json +1 -1
  41. /package/dist/generated/config/models/{blocksUsedInWorkspaceRef.js → blocksUsedInRef.js} +0 -0
  42. /package/dist/generated/config/models/{integrationsAzureActiveDirectoryServicePrincipal.js → flowRunsGetWorkspaceRunsParams.js} +0 -0
@@ -323,6 +323,7 @@ export declare const blockSetsGetBlockSetsQueryParams: zod.ZodObject<{
323
323
  types: zod.ZodOptional<zod.ZodArray<zod.ZodString>>;
324
324
  }, zod.core.$strict>;
325
325
  export declare const blockSetsGetBlockSetsResponseIdRegExp: RegExp;
326
+ export declare const blockSetsGetBlockSetsResponseUsedInDataSetsItemIdRegExp: RegExp;
326
327
  export declare const blockSetsGetBlockSetsResponseUsedInWorkspacesItemIdRegExp: RegExp;
327
328
  export declare const blockSetsGetBlockSetsResponseItem: zod.ZodObject<{
328
329
  blockInterfaces: zod.ZodRecord<zod.ZodString, zod.ZodRecord<zod.ZodString, zod.ZodObject<{
@@ -393,6 +394,10 @@ export declare const blockSetsGetBlockSetsResponseItem: zod.ZodObject<{
393
394
  Custom: "Custom";
394
395
  Debug: "Debug";
395
396
  }>;
397
+ usedInDataSets: zod.ZodArray<zod.ZodObject<{
398
+ id: zod.ZodString;
399
+ name: zod.ZodString;
400
+ }, zod.core.$strip>>;
396
401
  usedInWorkspaces: zod.ZodArray<zod.ZodObject<{
397
402
  id: zod.ZodString;
398
403
  name: zod.ZodString;
@@ -467,6 +472,10 @@ export declare const blockSetsGetBlockSetsResponse: zod.ZodArray<zod.ZodObject<{
467
472
  Custom: "Custom";
468
473
  Debug: "Debug";
469
474
  }>;
475
+ usedInDataSets: zod.ZodArray<zod.ZodObject<{
476
+ id: zod.ZodString;
477
+ name: zod.ZodString;
478
+ }, zod.core.$strip>>;
470
479
  usedInWorkspaces: zod.ZodArray<zod.ZodObject<{
471
480
  id: zod.ZodString;
472
481
  name: zod.ZodString;
@@ -720,6 +729,7 @@ export declare const containersPostResponseItem: zod.ZodObject<{
720
729
  triggers: zod.ZodArray<zod.ZodObject<{
721
730
  dataSourceContainer: zod.ZodObject<{
722
731
  dataSourceId: zod.ZodString;
732
+ fields: zod.ZodOptional<zod.ZodNullable<zod.ZodArray<zod.ZodString>>>;
723
733
  filters: zod.ZodOptional<zod.ZodNullable<zod.ZodArray<zod.ZodObject<{
724
734
  operator: zod.ZodString;
725
735
  propertyName: zod.ZodString;
@@ -834,6 +844,7 @@ export declare const containersPostResponse: zod.ZodArray<zod.ZodObject<{
834
844
  triggers: zod.ZodArray<zod.ZodObject<{
835
845
  dataSourceContainer: zod.ZodObject<{
836
846
  dataSourceId: zod.ZodString;
847
+ fields: zod.ZodOptional<zod.ZodNullable<zod.ZodArray<zod.ZodString>>>;
837
848
  filters: zod.ZodOptional<zod.ZodNullable<zod.ZodArray<zod.ZodObject<{
838
849
  operator: zod.ZodString;
839
850
  propertyName: zod.ZodString;
@@ -981,6 +992,7 @@ export declare const dataSetsPutBodyIdRegExp: RegExp;
981
992
  export declare const dataSetsPutBody: zod.ZodObject<{
982
993
  containerInfo: zod.ZodOptional<zod.ZodNullable<zod.ZodArray<zod.ZodObject<{
983
994
  dataSourceId: zod.ZodString;
995
+ fields: zod.ZodOptional<zod.ZodNullable<zod.ZodArray<zod.ZodString>>>;
984
996
  filters: zod.ZodOptional<zod.ZodNullable<zod.ZodArray<zod.ZodObject<{
985
997
  operator: zod.ZodString;
986
998
  propertyName: zod.ZodString;
@@ -1204,6 +1216,11 @@ export declare const dataSetsDeleteItemParams: zod.ZodObject<{
1204
1216
  itemId: zod.ZodString;
1205
1217
  }, zod.core.$strict>;
1206
1218
  /**
1219
+ * The `isVector` field is deprecated: the platform no longer uses it,
1220
+ and it has no effect on ingestion or querying. It remains available as an
1221
+ optional field for backward compatibility with existing integrations —
1222
+ new integrations should omit it. When omitted, the stored value is
1223
+ preserved on update and defaults to `false` on create.
1207
1224
  * @summary Upsert a single property on a dataset.
1208
1225
  */
1209
1226
  export declare const dataSetsAddDataSetPropertyPathIdRegExp: RegExp;
@@ -1212,7 +1229,7 @@ export declare const dataSetsAddDataSetPropertyParams: zod.ZodObject<{
1212
1229
  }, zod.core.$strict>;
1213
1230
  export declare const dataSetsAddDataSetPropertyBody: zod.ZodObject<{
1214
1231
  description: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
1215
- isVector: zod.ZodBoolean;
1232
+ isVector: zod.ZodOptional<zod.ZodNullable<zod.ZodBoolean>>;
1216
1233
  name: zod.ZodString;
1217
1234
  }, zod.core.$strict>;
1218
1235
  export declare const dataSetsAddDataSetPropertyResponse: zod.ZodObject<{
@@ -1343,6 +1360,7 @@ export declare const dataSourceTypesGetAvailableContainersBody: zod.ZodObject<{
1343
1360
  }, zod.core.$strict>;
1344
1361
  export declare const dataSourceTypesGetAvailableContainersResponseItem: zod.ZodObject<{
1345
1362
  children: zod.ZodOptional<zod.ZodNullable<zod.ZodArray<zod.ZodAny>>>;
1363
+ fields: zod.ZodOptional<zod.ZodNullable<zod.ZodArray<zod.ZodString>>>;
1346
1364
  filters: zod.ZodOptional<zod.ZodNullable<zod.ZodArray<zod.ZodObject<{
1347
1365
  operator: zod.ZodString;
1348
1366
  propertyName: zod.ZodString;
@@ -1357,6 +1375,7 @@ export declare const dataSourceTypesGetAvailableContainersResponseItem: zod.ZodO
1357
1375
  }, zod.core.$strip>;
1358
1376
  export declare const dataSourceTypesGetAvailableContainersResponse: zod.ZodArray<zod.ZodObject<{
1359
1377
  children: zod.ZodOptional<zod.ZodNullable<zod.ZodArray<zod.ZodAny>>>;
1378
+ fields: zod.ZodOptional<zod.ZodNullable<zod.ZodArray<zod.ZodString>>>;
1360
1379
  filters: zod.ZodOptional<zod.ZodNullable<zod.ZodArray<zod.ZodObject<{
1361
1380
  operator: zod.ZodString;
1362
1381
  propertyName: zod.ZodString;
@@ -1401,6 +1420,7 @@ export declare const dataSourcesGetResponse: zod.ZodObject<{
1401
1420
  data: zod.ZodArray<zod.ZodObject<{
1402
1421
  containers: zod.ZodArray<zod.ZodObject<{
1403
1422
  dataSourceId: zod.ZodString;
1423
+ fields: zod.ZodOptional<zod.ZodNullable<zod.ZodArray<zod.ZodString>>>;
1404
1424
  filters: zod.ZodOptional<zod.ZodNullable<zod.ZodArray<zod.ZodObject<{
1405
1425
  operator: zod.ZodString;
1406
1426
  propertyName: zod.ZodString;
@@ -1461,6 +1481,7 @@ export declare const dataSourcesPostResponseIdRegExp: RegExp;
1461
1481
  export declare const dataSourcesPostResponse: zod.ZodObject<{
1462
1482
  containers: zod.ZodArray<zod.ZodObject<{
1463
1483
  dataSourceId: zod.ZodString;
1484
+ fields: zod.ZodOptional<zod.ZodNullable<zod.ZodArray<zod.ZodString>>>;
1464
1485
  filters: zod.ZodOptional<zod.ZodNullable<zod.ZodArray<zod.ZodObject<{
1465
1486
  operator: zod.ZodString;
1466
1487
  propertyName: zod.ZodString;
@@ -1524,6 +1545,7 @@ export declare const dataSourcesContainersResponseDataSourceIdRegExp: RegExp;
1524
1545
  export declare const dataSourcesContainersResponseIdRegExp: RegExp;
1525
1546
  export declare const dataSourcesContainersResponseItem: zod.ZodObject<{
1526
1547
  dataSourceId: zod.ZodString;
1548
+ fields: zod.ZodOptional<zod.ZodNullable<zod.ZodArray<zod.ZodString>>>;
1527
1549
  filters: zod.ZodOptional<zod.ZodNullable<zod.ZodArray<zod.ZodObject<{
1528
1550
  operator: zod.ZodString;
1529
1551
  propertyName: zod.ZodString;
@@ -1535,6 +1557,7 @@ export declare const dataSourcesContainersResponseItem: zod.ZodObject<{
1535
1557
  }, zod.core.$strip>;
1536
1558
  export declare const dataSourcesContainersResponse: zod.ZodArray<zod.ZodObject<{
1537
1559
  dataSourceId: zod.ZodString;
1560
+ fields: zod.ZodOptional<zod.ZodNullable<zod.ZodArray<zod.ZodString>>>;
1538
1561
  filters: zod.ZodOptional<zod.ZodNullable<zod.ZodArray<zod.ZodObject<{
1539
1562
  operator: zod.ZodString;
1540
1563
  propertyName: zod.ZodString;
@@ -1861,6 +1884,7 @@ export declare const dataSpacesPostDatasetBodyContainerInfoItemDataSourceIdRegEx
1861
1884
  export declare const dataSpacesPostDatasetBody: zod.ZodObject<{
1862
1885
  containerInfo: zod.ZodOptional<zod.ZodNullable<zod.ZodArray<zod.ZodObject<{
1863
1886
  dataSourceId: zod.ZodString;
1887
+ fields: zod.ZodOptional<zod.ZodNullable<zod.ZodArray<zod.ZodString>>>;
1864
1888
  filters: zod.ZodOptional<zod.ZodNullable<zod.ZodArray<zod.ZodObject<{
1865
1889
  operator: zod.ZodString;
1866
1890
  propertyName: zod.ZodString;
@@ -1877,6 +1901,13 @@ export declare const debugInvokeParams: zod.ZodObject<{
1877
1901
  }, zod.core.$strict>;
1878
1902
  export declare const debugInvokeBodyItem: zod.ZodAny;
1879
1903
  export declare const debugInvokeBody: zod.ZodArray<zod.ZodAny>;
1904
+ /**
1905
+ * @summary Mongo index health for the flow-runs store: planned-vs-existing
1906
+ indexes per collection, the latest index-ensure outcome per index
1907
+ (including repeated failures), and any in-flight index
1908
+ transformations with their progress (currentOp).
1909
+ */
1910
+ export declare const diagnosticsGetMongoIndexesResponse: zod.ZodAny;
1880
1911
  /**
1881
1912
  * @summary List the current user's drafts (without parsed interfaces — load detail to get those).
1882
1913
  */
@@ -2343,6 +2374,16 @@ export declare const flowRunsGetFlowRunPathIdRegExp: RegExp;
2343
2374
  export declare const flowRunsGetFlowRunParams: zod.ZodObject<{
2344
2375
  id: zod.ZodString;
2345
2376
  }, zod.core.$strict>;
2377
+ /**
2378
+ * @summary Requests cancellation of a queued or running flow run. Cancellation
2379
+ is cooperative: a queued run is stamped cancelled before it starts;
2380
+ a running flow stops between block executions, typically within
2381
+ seconds. Cancelled runs carry cancelledAt in their basic info.
2382
+ */
2383
+ export declare const flowRunsCancelFlowRunPathIdRegExpOne: RegExp;
2384
+ export declare const flowRunsCancelFlowRunParams: zod.ZodObject<{
2385
+ id: zod.ZodString;
2386
+ }, zod.core.$strict>;
2346
2387
  export declare const flowRunsAddFileIdFilesPathIdRegExp: RegExp;
2347
2388
  export declare const flowRunsAddFileIdFilesParams: zod.ZodObject<{
2348
2389
  id: zod.ZodString;
@@ -2593,6 +2634,7 @@ export declare const modelsGetModelsResponse: zod.ZodObject<{
2593
2634
  }>>;
2594
2635
  displayName: zod.ZodString;
2595
2636
  id: zod.ZodString;
2637
+ isDefault: zod.ZodBoolean;
2596
2638
  modelDeploymentProviderType: zod.ZodOptional<zod.ZodEnum<{
2597
2639
  OpenAi: "OpenAi";
2598
2640
  AzureOpenAi: "AzureOpenAi";
@@ -2681,6 +2723,59 @@ export declare const modelsCreateModelBody: zod.ZodObject<{
2681
2723
  Other: "Other";
2682
2724
  }>>;
2683
2725
  }, zod.core.$strict>;
2726
+ /**
2727
+ * @summary Retrieves the instance-wide default model — the one pre-selected on new LLM blocks and the default workspace flow.
2728
+ */
2729
+ export declare const modelsGetDefaultModelResponseIdRegExp: RegExp;
2730
+ export declare const modelsGetDefaultModelResponse: zod.ZodObject<{
2731
+ createdAt: zod.ZodOptional<zod.ZodNullable<zod.ZodISODateTime>>;
2732
+ createdByUserId: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
2733
+ deploymentStatus: zod.ZodOptional<zod.ZodEnum<{
2734
+ Deploying: "Deploying";
2735
+ Ready: "Ready";
2736
+ Failed: "Failed";
2737
+ Deleting: "Deleting";
2738
+ Deleted: "Deleted";
2739
+ }>>;
2740
+ displayName: zod.ZodString;
2741
+ id: zod.ZodString;
2742
+ isDefault: zod.ZodBoolean;
2743
+ modelDeploymentProviderType: zod.ZodOptional<zod.ZodEnum<{
2744
+ OpenAi: "OpenAi";
2745
+ AzureOpenAi: "AzureOpenAi";
2746
+ HuggingFace: "HuggingFace";
2747
+ Cohere: "Cohere";
2748
+ Anthropic: "Anthropic";
2749
+ Gemini: "Gemini";
2750
+ VertexAi: "VertexAi";
2751
+ AzureFoundry: "AzureFoundry";
2752
+ }>>;
2753
+ modelPublisher: zod.ZodOptional<zod.ZodEnum<{
2754
+ OpenAi: "OpenAi";
2755
+ HuggingFace: "HuggingFace";
2756
+ Cohere: "Cohere";
2757
+ Anthropic: "Anthropic";
2758
+ Google: "Google";
2759
+ Meta: "Meta";
2760
+ Mistral: "Mistral";
2761
+ Microsoft: "Microsoft";
2762
+ DeepSeek: "DeepSeek";
2763
+ XAi: "XAi";
2764
+ Amazon: "Amazon";
2765
+ Qwen: "Qwen";
2766
+ Other: "Other";
2767
+ }>>;
2768
+ name: zod.ZodString;
2769
+ properties: zod.ZodArray<zod.ZodObject<{
2770
+ name: zod.ZodString;
2771
+ type: zod.ZodEnum<{
2772
+ Boolean: "Boolean";
2773
+ Number: "Number";
2774
+ String: "String";
2775
+ }>;
2776
+ }, zod.core.$strip>>;
2777
+ virtualMachineUrl: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
2778
+ }, zod.core.$strip>;
2684
2779
  export declare const modelsGetDefaultDockerFileQueryParams: zod.ZodObject<{
2685
2780
  serverType: zod.ZodOptional<zod.ZodEnum<{
2686
2781
  TextGenerationInference: "TextGenerationInference";
@@ -2753,6 +2848,7 @@ export declare const modelsGetModelResponse: zod.ZodObject<{
2753
2848
  }, zod.core.$strip>>;
2754
2849
  displayName: zod.ZodString;
2755
2850
  id: zod.ZodString;
2851
+ isDefault: zod.ZodBoolean;
2756
2852
  modelDeploymentProviderType: zod.ZodOptional<zod.ZodEnum<{
2757
2853
  OpenAi: "OpenAi";
2758
2854
  AzureOpenAi: "AzureOpenAi";
@@ -2842,6 +2938,20 @@ export declare const modelsUpsertModelBody: zod.ZodObject<{
2842
2938
  Other: "Other";
2843
2939
  }>>;
2844
2940
  }, zod.core.$strict>;
2941
+ /**
2942
+ * @summary Clears the default flag from the specified model, leaving the instance with no default.
2943
+ */
2944
+ export declare const modelsClearDefaultModelPathIdRegExp: RegExp;
2945
+ export declare const modelsClearDefaultModelParams: zod.ZodObject<{
2946
+ id: zod.ZodString;
2947
+ }, zod.core.$strict>;
2948
+ /**
2949
+ * @summary Makes the specified model the instance-wide default, replacing any previous default.
2950
+ */
2951
+ export declare const modelsSetDefaultModelPathIdRegExp: RegExp;
2952
+ export declare const modelsSetDefaultModelParams: zod.ZodObject<{
2953
+ id: zod.ZodString;
2954
+ }, zod.core.$strict>;
2845
2955
  /**
2846
2956
  * @summary Retrieves the Docker logs for a specific deployment of a model.
2847
2957
  */
@@ -2973,6 +3083,36 @@ export declare const reportingGetTokensResponse: zod.ZodObject<{
2973
3083
  name: zod.ZodString;
2974
3084
  }, zod.core.$strip>>;
2975
3085
  }, zod.core.$strip>;
3086
+ /**
3087
+ * @summary List API accounts: service principals holding the SmartSpace integration
3088
+ role, with their permission flags and last recorded activity.
3089
+ */
3090
+ export declare const servicePrincipalsGetServicePrincipalsQuerySkipDefault = 0;
3091
+ export declare const servicePrincipalsGetServicePrincipalsQueryTakeDefault = 20;
3092
+ export declare const servicePrincipalsGetServicePrincipalsQueryParams: zod.ZodObject<{
3093
+ skip: zod.ZodOptional<zod.ZodNumber>;
3094
+ take: zod.ZodDefault<zod.ZodNumber>;
3095
+ search: zod.ZodOptional<zod.ZodString>;
3096
+ }, zod.core.$strict>;
3097
+ export declare const servicePrincipalsGetServicePrincipalsResponse: zod.ZodObject<{
3098
+ data: zod.ZodArray<zod.ZodObject<{
3099
+ id: zod.ZodString;
3100
+ lastActiveAt: zod.ZodOptional<zod.ZodNullable<zod.ZodISODateTime>>;
3101
+ name: zod.ZodString;
3102
+ permissions: zod.ZodArray<zod.ZodEnum<{
3103
+ WorkspaceCreate: "WorkspaceCreate";
3104
+ WorkspaceEdit: "WorkspaceEdit";
3105
+ WorkspaceDelete: "WorkspaceDelete";
3106
+ DataSpaceCreate: "DataSpaceCreate";
3107
+ DataSpaceEdit: "DataSpaceEdit";
3108
+ DataSpaceDelete: "DataSpaceDelete";
3109
+ ConnectorCreate: "ConnectorCreate";
3110
+ ConnectorEdit: "ConnectorEdit";
3111
+ ConnectorDelete: "ConnectorDelete";
3112
+ }>>;
3113
+ }, zod.core.$strip>>;
3114
+ total: zod.ZodNumber;
3115
+ }, zod.core.$strip>;
2976
3116
  /**
2977
3117
  * @summary List configured syncs. status matches the data
2978
3118
  source's latest completed sync (e.g. Success / Failure), or "never"
@@ -3004,6 +3144,7 @@ export declare const syncsGetResponse: zod.ZodObject<{
3004
3144
  }, zod.core.$strip>>;
3005
3145
  dataSource: zod.ZodObject<{
3006
3146
  id: zod.ZodString;
3147
+ isQueued: zod.ZodBoolean;
3007
3148
  isSyncing: zod.ZodBoolean;
3008
3149
  name: zod.ZodString;
3009
3150
  sourceType: zod.ZodEnum<{
@@ -3019,6 +3160,7 @@ export declare const syncsGetResponse: zod.ZodObject<{
3019
3160
  File: "File";
3020
3161
  Sitemap: "Sitemap";
3021
3162
  }>;
3163
+ syncStartedAt: zod.ZodOptional<zod.ZodNullable<zod.ZodISODateTime>>;
3022
3164
  }, zod.core.$strip>;
3023
3165
  filters: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
3024
3166
  highwaterMark: zod.ZodOptional<zod.ZodNullable<zod.ZodISODateTime>>;
@@ -3040,6 +3182,28 @@ export declare const syncsGetResponse: zod.ZodObject<{
3040
3182
  }, zod.core.$strip>>;
3041
3183
  total: zod.ZodNumber;
3042
3184
  }, zod.core.$strip>;
3185
+ /**
3186
+ * @summary The sync-requests queue right now: approximate depth and which data
3187
+ sources have a request WAITING. In-flight requests are invisible to
3188
+ peek (visibility timeout) — that state is each data source's
3189
+ isSyncing flag. Literal route wins over the {containerId} template.
3190
+ */
3191
+ export declare const syncsGetQueueResponseWaitingDataSourceIdsItemRegExp: RegExp;
3192
+ export declare const syncsGetQueueResponse: zod.ZodObject<{
3193
+ depth: zod.ZodNumber;
3194
+ waitingDataSourceIds: zod.ZodArray<zod.ZodString>;
3195
+ }, zod.core.$strip>;
3196
+ /**
3197
+ * @summary Removes the sync: deletes its data source container config record, so
3198
+ the source selection stops being mirrored from the next sync cycle.
3199
+ Refused (DSC400) while any live dataset still subscribes to it via a
3200
+ container flow trigger. Config-only — already-landed items and copied
3201
+ blobs are not cleaned up here.
3202
+ */
3203
+ export declare const syncsDeletePathContainerIdRegExp: RegExp;
3204
+ export declare const syncsDeleteParams: zod.ZodObject<{
3205
+ containerId: zod.ZodString;
3206
+ }, zod.core.$strict>;
3043
3207
  export declare const syncsGetByIdPathContainerIdRegExp: RegExp;
3044
3208
  export declare const syncsGetByIdParams: zod.ZodObject<{
3045
3209
  containerId: zod.ZodString;
@@ -3056,6 +3220,7 @@ export declare const syncsGetByIdResponse: zod.ZodObject<{
3056
3220
  }, zod.core.$strip>>;
3057
3221
  dataSource: zod.ZodObject<{
3058
3222
  id: zod.ZodString;
3223
+ isQueued: zod.ZodBoolean;
3059
3224
  isSyncing: zod.ZodBoolean;
3060
3225
  name: zod.ZodString;
3061
3226
  sourceType: zod.ZodEnum<{
@@ -3071,6 +3236,7 @@ export declare const syncsGetByIdResponse: zod.ZodObject<{
3071
3236
  File: "File";
3072
3237
  Sitemap: "Sitemap";
3073
3238
  }>;
3239
+ syncStartedAt: zod.ZodOptional<zod.ZodNullable<zod.ZodISODateTime>>;
3074
3240
  }, zod.core.$strip>;
3075
3241
  filters: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
3076
3242
  highwaterMark: zod.ZodOptional<zod.ZodNullable<zod.ZodISODateTime>>;
@@ -3124,7 +3290,8 @@ export declare const syncsGetItemsResponse: zod.ZodObject<{
3124
3290
  */
3125
3291
  export declare const tenantIdGetResultResponse: zod.ZodString;
3126
3292
  /**
3127
- * @summary Retrieve list users in SmartSpace, filter by roleId, with optional pagination controls take and skip.
3293
+ * @summary Retrieve users assigned to the SmartSpace application (directly or via a group),
3294
+ with optional search and pagination controls take and skip.
3128
3295
  */
3129
3296
  export declare const usersGetUsersQuerySkipDefault = 0;
3130
3297
  export declare const usersGetUsersQueryTakeDefault = 20;
@@ -3487,6 +3654,7 @@ export declare const workSpacesGetGetResponse: zod.ZodObject<{
3487
3654
  triggers: zod.ZodArray<zod.ZodObject<{
3488
3655
  dataSourceContainer: zod.ZodObject<{
3489
3656
  dataSourceId: zod.ZodString;
3657
+ fields: zod.ZodOptional<zod.ZodNullable<zod.ZodArray<zod.ZodString>>>;
3490
3658
  filters: zod.ZodOptional<zod.ZodNullable<zod.ZodArray<zod.ZodObject<{
3491
3659
  operator: zod.ZodString;
3492
3660
  propertyName: zod.ZodString;
@@ -3783,6 +3951,7 @@ export declare const workSpacesGetIdResponse: zod.ZodObject<{
3783
3951
  triggers: zod.ZodArray<zod.ZodObject<{
3784
3952
  dataSourceContainer: zod.ZodObject<{
3785
3953
  dataSourceId: zod.ZodString;
3954
+ fields: zod.ZodOptional<zod.ZodNullable<zod.ZodArray<zod.ZodString>>>;
3786
3955
  filters: zod.ZodOptional<zod.ZodNullable<zod.ZodArray<zod.ZodObject<{
3787
3956
  operator: zod.ZodString;
3788
3957
  propertyName: zod.ZodString;
@@ -4654,6 +4823,35 @@ export declare const messageThreadsGetStepExecutionsResponse: zod.ZodObject<{
4654
4823
  }, zod.core.$strip>>;
4655
4824
  total: zod.ZodNumber;
4656
4825
  }, zod.core.$strip>;
4826
+ /**
4827
+ * @summary Lists a workspace's flow runs, newest first (chat threads, designer
4828
+ runs, CallFlow sub-runs). Proxies the AI API's workspace run store.
4829
+ */
4830
+ export declare const flowRunsGetWorkspaceRunsPathWorkspaceIdRegExp: RegExp;
4831
+ export declare const flowRunsGetWorkspaceRunsParams: zod.ZodObject<{
4832
+ workspaceId: zod.ZodString;
4833
+ }, zod.core.$strict>;
4834
+ export declare const flowRunsGetWorkspaceRunsQuerySkipDefault = 0;
4835
+ export declare const flowRunsGetWorkspaceRunsQueryTakeDefault = 20;
4836
+ export declare const flowRunsGetWorkspaceRunsQueryParams: zod.ZodObject<{
4837
+ skip: zod.ZodOptional<zod.ZodNumber>;
4838
+ take: zod.ZodDefault<zod.ZodNumber>;
4839
+ }, zod.core.$strict>;
4840
+ export declare const flowRunsGetWorkspaceRunsResponseDataItemFlowDefinitionIdRegExp: RegExp;
4841
+ export declare const flowRunsGetWorkspaceRunsResponseDataItemFlowIdRegExp: RegExp;
4842
+ export declare const flowRunsGetWorkspaceRunsResponseDataItemFlowRunIdRegExp: RegExp;
4843
+ export declare const flowRunsGetWorkspaceRunsResponse: zod.ZodObject<{
4844
+ data: zod.ZodArray<zod.ZodObject<{
4845
+ createdAt: zod.ZodOptional<zod.ZodNullable<zod.ZodISODateTime>>;
4846
+ finishedAt: zod.ZodOptional<zod.ZodNullable<zod.ZodISODateTime>>;
4847
+ flowDefinitionId: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
4848
+ flowId: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
4849
+ flowRunId: zod.ZodString;
4850
+ runAt: zod.ZodOptional<zod.ZodNullable<zod.ZodISODateTime>>;
4851
+ status: zod.ZodString;
4852
+ }, zod.core.$strip>>;
4853
+ total: zod.ZodNumber;
4854
+ }, zod.core.$strip>;
4657
4855
  /**
4658
4856
  * @summary Fetch details of the sandbox environment for a specific workspace in SmartSpace, using the workspaceId.
4659
4857
  */