@smartspace/api-client 0.1.0-dev.6a4b425 → 0.1.0-dev.6c9d984

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 (47) 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/models/flowsFlowTrigger.d.ts +1 -0
  9. package/dist/generated/chat/zod.d.ts +15 -0
  10. package/dist/generated/chat/zod.js +20 -5
  11. package/dist/generated/config/api.d.ts +19 -1
  12. package/dist/generated/config/api.js +97 -2
  13. package/dist/generated/config/api.msw.d.ts +13 -1
  14. package/dist/generated/config/api.msw.js +154 -36
  15. package/dist/generated/config/models/aiModel.d.ts +1 -0
  16. package/dist/generated/config/models/aiModelSummary.d.ts +1 -0
  17. package/dist/generated/config/models/blocksBlockSet.d.ts +3 -2
  18. package/dist/generated/config/models/{blocksUsedInWorkspaceRef.d.ts → blocksUsedInRef.d.ts} +1 -1
  19. package/dist/generated/config/models/containerItem.d.ts +2 -0
  20. package/dist/generated/config/models/dataSetsCreateDataSetContainer.d.ts +2 -0
  21. package/dist/generated/config/models/dataSetsDataSet.d.ts +2 -0
  22. package/dist/generated/config/models/dataSetsGetParams.d.ts +2 -0
  23. package/dist/generated/config/models/dataSetsSetDataSetSourceDeletes.d.ts +11 -0
  24. package/dist/generated/config/models/dataSetsUpsertDataSetProperty.d.ts +5 -1
  25. package/dist/generated/config/models/dataSourceContainer.d.ts +2 -0
  26. package/dist/generated/config/models/dataSourcesDataSourceContainer.d.ts +2 -0
  27. package/dist/generated/config/models/dataSpacesGetDataSetsParams.d.ts +2 -0
  28. package/dist/generated/config/models/flowRunsGetStepExecutionsParams.d.ts +19 -0
  29. package/dist/generated/config/models/flowsFlowTrigger.d.ts +1 -0
  30. package/dist/generated/config/models/functionExecutionDebugModel.d.ts +4 -0
  31. package/dist/generated/config/models/index.d.ts +5 -2
  32. package/dist/generated/config/models/index.js +5 -2
  33. package/dist/generated/config/models/integrationsSmartSpaceAiContainerItemRunHistory.d.ts +2 -0
  34. package/dist/generated/config/models/integrationsSmartSpaceAiFlowValueModel.d.ts +4 -0
  35. package/dist/generated/config/models/integrationsSmartSpaceAiFunctionExecutionDebugModel.d.ts +4 -0
  36. package/dist/generated/config/models/pagedDataCollectionUsersServicePrincipalDetail.d.ts +11 -0
  37. package/dist/generated/config/models/pagedDataCollectionUsersServicePrincipalDetail.js +2 -0
  38. package/dist/generated/config/models/servicePrincipalsGetServicePrincipalsParams.d.ts +11 -0
  39. package/dist/generated/config/models/{integrationsAzureActiveDirectoryServicePrincipal.d.ts → servicePrincipalsGetServicePrincipalsParams.js} +2 -4
  40. package/dist/generated/config/models/syncsSyncDataSourceInfo.d.ts +1 -0
  41. package/dist/generated/config/models/usersServicePrincipalDetail.d.ts +14 -0
  42. package/dist/generated/config/models/usersServicePrincipalDetail.js +2 -0
  43. package/dist/generated/config/zod.d.ts +278 -3
  44. package/dist/generated/config/zod.js +254 -29
  45. package/package.json +1 -1
  46. /package/dist/generated/config/models/{blocksUsedInWorkspaceRef.js → blocksUsedInRef.js} +0 -0
  47. /package/dist/generated/config/models/{integrationsAzureActiveDirectoryServicePrincipal.js → dataSetsSetDataSetSourceDeletes.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;
@@ -730,6 +740,7 @@ export declare const containersPostResponseItem: zod.ZodObject<{
730
740
  path: zod.ZodString;
731
741
  }, zod.core.$strip>;
732
742
  flowId: zod.ZodString;
743
+ honourSourceDeletes: zod.ZodBoolean;
733
744
  id: zod.ZodString;
734
745
  inputName: zod.ZodString;
735
746
  type: zod.ZodEnum<{
@@ -834,6 +845,7 @@ export declare const containersPostResponse: zod.ZodArray<zod.ZodObject<{
834
845
  triggers: zod.ZodArray<zod.ZodObject<{
835
846
  dataSourceContainer: zod.ZodObject<{
836
847
  dataSourceId: zod.ZodString;
848
+ fields: zod.ZodOptional<zod.ZodNullable<zod.ZodArray<zod.ZodString>>>;
837
849
  filters: zod.ZodOptional<zod.ZodNullable<zod.ZodArray<zod.ZodObject<{
838
850
  operator: zod.ZodString;
839
851
  propertyName: zod.ZodString;
@@ -844,6 +856,7 @@ export declare const containersPostResponse: zod.ZodArray<zod.ZodObject<{
844
856
  path: zod.ZodString;
845
857
  }, zod.core.$strip>;
846
858
  flowId: zod.ZodString;
859
+ honourSourceDeletes: zod.ZodBoolean;
847
860
  id: zod.ZodString;
848
861
  inputName: zod.ZodString;
849
862
  type: zod.ZodEnum<{
@@ -880,9 +893,12 @@ export declare const dataSetsGetQueryParams: zod.ZodObject<{
880
893
  take: zod.ZodDefault<zod.ZodNumber>;
881
894
  skip: zod.ZodOptional<zod.ZodNumber>;
882
895
  search: zod.ZodOptional<zod.ZodString>;
896
+ sortBy: zod.ZodOptional<zod.ZodString>;
897
+ sortDirection: zod.ZodOptional<zod.ZodString>;
883
898
  }, zod.core.$strict>;
884
899
  export declare const dataSetsGetResponseDataItemDataSpaceIdRegExp: RegExp;
885
900
  export declare const dataSetsGetResponseDataItemFlowIdRegExp: RegExp;
901
+ export declare const dataSetsGetResponseDataItemHonourDeletesContainerIdsItemRegExp: RegExp;
886
902
  export declare const dataSetsGetResponseDataItemIdRegExp: RegExp;
887
903
  export declare const dataSetsGetResponseDataItemVersionRegExp: RegExp;
888
904
  export declare const dataSetsGetResponse: zod.ZodObject<{
@@ -892,6 +908,7 @@ export declare const dataSetsGetResponse: zod.ZodObject<{
892
908
  dataSpaceId: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
893
909
  description: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
894
910
  flowId: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
911
+ honourDeletesContainerIds: zod.ZodOptional<zod.ZodNullable<zod.ZodArray<zod.ZodString>>>;
895
912
  id: zod.ZodString;
896
913
  modifiedAt: zod.ZodISODateTime;
897
914
  modifiedByUserId: zod.ZodString;
@@ -946,6 +963,7 @@ export declare const dataSetsGetByIdParams: zod.ZodObject<{
946
963
  }, zod.core.$strict>;
947
964
  export declare const dataSetsGetByIdResponseDataSpaceIdRegExp: RegExp;
948
965
  export declare const dataSetsGetByIdResponseFlowIdRegExp: RegExp;
966
+ export declare const dataSetsGetByIdResponseHonourDeletesContainerIdsItemRegExp: RegExp;
949
967
  export declare const dataSetsGetByIdResponseIdRegExp: RegExp;
950
968
  export declare const dataSetsGetByIdResponseVersionRegExp: RegExp;
951
969
  export declare const dataSetsGetByIdResponse: zod.ZodObject<{
@@ -954,6 +972,7 @@ export declare const dataSetsGetByIdResponse: zod.ZodObject<{
954
972
  dataSpaceId: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
955
973
  description: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
956
974
  flowId: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
975
+ honourDeletesContainerIds: zod.ZodOptional<zod.ZodNullable<zod.ZodArray<zod.ZodString>>>;
957
976
  id: zod.ZodString;
958
977
  modifiedAt: zod.ZodISODateTime;
959
978
  modifiedByUserId: zod.ZodString;
@@ -981,6 +1000,7 @@ export declare const dataSetsPutBodyIdRegExp: RegExp;
981
1000
  export declare const dataSetsPutBody: zod.ZodObject<{
982
1001
  containerInfo: zod.ZodOptional<zod.ZodNullable<zod.ZodArray<zod.ZodObject<{
983
1002
  dataSourceId: zod.ZodString;
1003
+ fields: zod.ZodOptional<zod.ZodNullable<zod.ZodArray<zod.ZodString>>>;
984
1004
  filters: zod.ZodOptional<zod.ZodNullable<zod.ZodArray<zod.ZodObject<{
985
1005
  operator: zod.ZodString;
986
1006
  propertyName: zod.ZodString;
@@ -994,6 +1014,7 @@ export declare const dataSetsPutBody: zod.ZodObject<{
994
1014
  }, zod.core.$strict>;
995
1015
  export declare const dataSetsPutResponseDataSpaceIdRegExp: RegExp;
996
1016
  export declare const dataSetsPutResponseFlowIdRegExp: RegExp;
1017
+ export declare const dataSetsPutResponseHonourDeletesContainerIdsItemRegExp: RegExp;
997
1018
  export declare const dataSetsPutResponseIdRegExp: RegExp;
998
1019
  export declare const dataSetsPutResponseVersionRegExp: RegExp;
999
1020
  export declare const dataSetsPutResponse: zod.ZodObject<{
@@ -1002,6 +1023,7 @@ export declare const dataSetsPutResponse: zod.ZodObject<{
1002
1023
  dataSpaceId: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
1003
1024
  description: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
1004
1025
  flowId: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
1026
+ honourDeletesContainerIds: zod.ZodOptional<zod.ZodNullable<zod.ZodArray<zod.ZodString>>>;
1005
1027
  id: zod.ZodString;
1006
1028
  modifiedAt: zod.ZodISODateTime;
1007
1029
  modifiedByUserId: zod.ZodString;
@@ -1051,6 +1073,7 @@ export declare const dataSetsGetContainerItemsRunHistoryResponse: zod.ZodObject<
1051
1073
  data: zod.ZodArray<zod.ZodObject<{
1052
1074
  containerId: zod.ZodString;
1053
1075
  createdAt: zod.ZodISODateTime;
1076
+ deletedAt: zod.ZodOptional<zod.ZodNullable<zod.ZodISODateTime>>;
1054
1077
  flowRuns: zod.ZodArray<zod.ZodObject<{
1055
1078
  errors: zod.ZodArray<zod.ZodObject<{
1056
1079
  blockId: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
@@ -1080,6 +1103,7 @@ export declare const dataSetsSetDataspaceBodyRegExp: RegExp;
1080
1103
  export declare const dataSetsSetDataspaceBody: zod.ZodString;
1081
1104
  export declare const dataSetsSetDataspaceResponseDataSpaceIdRegExp: RegExp;
1082
1105
  export declare const dataSetsSetDataspaceResponseFlowIdRegExp: RegExp;
1106
+ export declare const dataSetsSetDataspaceResponseHonourDeletesContainerIdsItemRegExp: RegExp;
1083
1107
  export declare const dataSetsSetDataspaceResponseIdRegExp: RegExp;
1084
1108
  export declare const dataSetsSetDataspaceResponseVersionRegExp: RegExp;
1085
1109
  export declare const dataSetsSetDataspaceResponse: zod.ZodObject<{
@@ -1088,6 +1112,7 @@ export declare const dataSetsSetDataspaceResponse: zod.ZodObject<{
1088
1112
  dataSpaceId: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
1089
1113
  description: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
1090
1114
  flowId: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
1115
+ honourDeletesContainerIds: zod.ZodOptional<zod.ZodNullable<zod.ZodArray<zod.ZodString>>>;
1091
1116
  id: zod.ZodString;
1092
1117
  modifiedAt: zod.ZodISODateTime;
1093
1118
  modifiedByUserId: zod.ZodString;
@@ -1204,6 +1229,11 @@ export declare const dataSetsDeleteItemParams: zod.ZodObject<{
1204
1229
  itemId: zod.ZodString;
1205
1230
  }, zod.core.$strict>;
1206
1231
  /**
1232
+ * The `isVector` field is deprecated: the platform no longer uses it,
1233
+ and it has no effect on ingestion or querying. It remains available as an
1234
+ optional field for backward compatibility with existing integrations —
1235
+ new integrations should omit it. When omitted, the stored value is
1236
+ preserved on update and defaults to `false` on create.
1207
1237
  * @summary Upsert a single property on a dataset.
1208
1238
  */
1209
1239
  export declare const dataSetsAddDataSetPropertyPathIdRegExp: RegExp;
@@ -1212,7 +1242,7 @@ export declare const dataSetsAddDataSetPropertyParams: zod.ZodObject<{
1212
1242
  }, zod.core.$strict>;
1213
1243
  export declare const dataSetsAddDataSetPropertyBody: zod.ZodObject<{
1214
1244
  description: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
1215
- isVector: zod.ZodBoolean;
1245
+ isVector: zod.ZodOptional<zod.ZodNullable<zod.ZodBoolean>>;
1216
1246
  name: zod.ZodString;
1217
1247
  }, zod.core.$strict>;
1218
1248
  export declare const dataSetsAddDataSetPropertyResponse: zod.ZodObject<{
@@ -1293,6 +1323,22 @@ export declare const dataSetsPutScopingBody: zod.ZodObject<{
1293
1323
  }>;
1294
1324
  subjectPath: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
1295
1325
  }, zod.core.$strict>;
1326
+ /**
1327
+ * @summary Whether this dataset hides items whose source file was deleted in the given
1328
+ container. Per container, because the setting belongs to that subscription.
1329
+ Off is the default and does not disable detection — deletions are always
1330
+ recorded and always marked on the affected rows; this only decides whether a
1331
+ marked row is returned. Nothing here deletes anything.
1332
+ */
1333
+ export declare const dataSetsPutSourceDeletesPathIdRegExp: RegExp;
1334
+ export declare const dataSetsPutSourceDeletesParams: zod.ZodObject<{
1335
+ id: zod.ZodString;
1336
+ }, zod.core.$strict>;
1337
+ export declare const dataSetsPutSourceDeletesBodyContainerIdRegExp: RegExp;
1338
+ export declare const dataSetsPutSourceDeletesBody: zod.ZodObject<{
1339
+ containerId: zod.ZodString;
1340
+ honourSourceDeletes: zod.ZodBoolean;
1341
+ }, zod.core.$strict>;
1296
1342
  /**
1297
1343
  * @summary Fetch a list of all available data source types in SmartSpace.
1298
1344
  */
@@ -1343,6 +1389,7 @@ export declare const dataSourceTypesGetAvailableContainersBody: zod.ZodObject<{
1343
1389
  }, zod.core.$strict>;
1344
1390
  export declare const dataSourceTypesGetAvailableContainersResponseItem: zod.ZodObject<{
1345
1391
  children: zod.ZodOptional<zod.ZodNullable<zod.ZodArray<zod.ZodAny>>>;
1392
+ fields: zod.ZodOptional<zod.ZodNullable<zod.ZodArray<zod.ZodString>>>;
1346
1393
  filters: zod.ZodOptional<zod.ZodNullable<zod.ZodArray<zod.ZodObject<{
1347
1394
  operator: zod.ZodString;
1348
1395
  propertyName: zod.ZodString;
@@ -1357,6 +1404,7 @@ export declare const dataSourceTypesGetAvailableContainersResponseItem: zod.ZodO
1357
1404
  }, zod.core.$strip>;
1358
1405
  export declare const dataSourceTypesGetAvailableContainersResponse: zod.ZodArray<zod.ZodObject<{
1359
1406
  children: zod.ZodOptional<zod.ZodNullable<zod.ZodArray<zod.ZodAny>>>;
1407
+ fields: zod.ZodOptional<zod.ZodNullable<zod.ZodArray<zod.ZodString>>>;
1360
1408
  filters: zod.ZodOptional<zod.ZodNullable<zod.ZodArray<zod.ZodObject<{
1361
1409
  operator: zod.ZodString;
1362
1410
  propertyName: zod.ZodString;
@@ -1401,6 +1449,7 @@ export declare const dataSourcesGetResponse: zod.ZodObject<{
1401
1449
  data: zod.ZodArray<zod.ZodObject<{
1402
1450
  containers: zod.ZodArray<zod.ZodObject<{
1403
1451
  dataSourceId: zod.ZodString;
1452
+ fields: zod.ZodOptional<zod.ZodNullable<zod.ZodArray<zod.ZodString>>>;
1404
1453
  filters: zod.ZodOptional<zod.ZodNullable<zod.ZodArray<zod.ZodObject<{
1405
1454
  operator: zod.ZodString;
1406
1455
  propertyName: zod.ZodString;
@@ -1461,6 +1510,7 @@ export declare const dataSourcesPostResponseIdRegExp: RegExp;
1461
1510
  export declare const dataSourcesPostResponse: zod.ZodObject<{
1462
1511
  containers: zod.ZodArray<zod.ZodObject<{
1463
1512
  dataSourceId: zod.ZodString;
1513
+ fields: zod.ZodOptional<zod.ZodNullable<zod.ZodArray<zod.ZodString>>>;
1464
1514
  filters: zod.ZodOptional<zod.ZodNullable<zod.ZodArray<zod.ZodObject<{
1465
1515
  operator: zod.ZodString;
1466
1516
  propertyName: zod.ZodString;
@@ -1524,6 +1574,7 @@ export declare const dataSourcesContainersResponseDataSourceIdRegExp: RegExp;
1524
1574
  export declare const dataSourcesContainersResponseIdRegExp: RegExp;
1525
1575
  export declare const dataSourcesContainersResponseItem: zod.ZodObject<{
1526
1576
  dataSourceId: zod.ZodString;
1577
+ fields: zod.ZodOptional<zod.ZodNullable<zod.ZodArray<zod.ZodString>>>;
1527
1578
  filters: zod.ZodOptional<zod.ZodNullable<zod.ZodArray<zod.ZodObject<{
1528
1579
  operator: zod.ZodString;
1529
1580
  propertyName: zod.ZodString;
@@ -1535,6 +1586,7 @@ export declare const dataSourcesContainersResponseItem: zod.ZodObject<{
1535
1586
  }, zod.core.$strip>;
1536
1587
  export declare const dataSourcesContainersResponse: zod.ZodArray<zod.ZodObject<{
1537
1588
  dataSourceId: zod.ZodString;
1589
+ fields: zod.ZodOptional<zod.ZodNullable<zod.ZodArray<zod.ZodString>>>;
1538
1590
  filters: zod.ZodOptional<zod.ZodNullable<zod.ZodArray<zod.ZodObject<{
1539
1591
  operator: zod.ZodString;
1540
1592
  propertyName: zod.ZodString;
@@ -1628,6 +1680,7 @@ export declare const dataSpacesGetQueryParams: zod.ZodObject<{
1628
1680
  }, zod.core.$strict>;
1629
1681
  export declare const dataSpacesGetResponseDataItemDataSetsItemDataSpaceIdRegExp: RegExp;
1630
1682
  export declare const dataSpacesGetResponseDataItemDataSetsItemFlowIdRegExp: RegExp;
1683
+ export declare const dataSpacesGetResponseDataItemDataSetsItemHonourDeletesContainerIdsItemRegExp: RegExp;
1631
1684
  export declare const dataSpacesGetResponseDataItemDataSetsItemIdRegExp: RegExp;
1632
1685
  export declare const dataSpacesGetResponseDataItemDataSetsItemVersionRegExp: RegExp;
1633
1686
  export declare const dataSpacesGetResponseDataItemIdRegExp: RegExp;
@@ -1643,6 +1696,7 @@ export declare const dataSpacesGetResponse: zod.ZodObject<{
1643
1696
  dataSpaceId: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
1644
1697
  description: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
1645
1698
  flowId: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
1699
+ honourDeletesContainerIds: zod.ZodOptional<zod.ZodNullable<zod.ZodArray<zod.ZodString>>>;
1646
1700
  id: zod.ZodString;
1647
1701
  modifiedAt: zod.ZodISODateTime;
1648
1702
  modifiedByUserId: zod.ZodString;
@@ -1689,6 +1743,7 @@ export declare const dataSpacesGetByIdParams: zod.ZodObject<{
1689
1743
  }, zod.core.$strict>;
1690
1744
  export declare const dataSpacesGetByIdResponseDataSetsItemDataSpaceIdRegExp: RegExp;
1691
1745
  export declare const dataSpacesGetByIdResponseDataSetsItemFlowIdRegExp: RegExp;
1746
+ export declare const dataSpacesGetByIdResponseDataSetsItemHonourDeletesContainerIdsItemRegExp: RegExp;
1692
1747
  export declare const dataSpacesGetByIdResponseDataSetsItemIdRegExp: RegExp;
1693
1748
  export declare const dataSpacesGetByIdResponseDataSetsItemVersionRegExp: RegExp;
1694
1749
  export declare const dataSpacesGetByIdResponseIdRegExp: RegExp;
@@ -1703,6 +1758,7 @@ export declare const dataSpacesGetByIdResponse: zod.ZodObject<{
1703
1758
  dataSpaceId: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
1704
1759
  description: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
1705
1760
  flowId: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
1761
+ honourDeletesContainerIds: zod.ZodOptional<zod.ZodNullable<zod.ZodArray<zod.ZodString>>>;
1706
1762
  id: zod.ZodString;
1707
1763
  modifiedAt: zod.ZodISODateTime;
1708
1764
  modifiedByUserId: zod.ZodString;
@@ -1745,6 +1801,7 @@ export declare const dataSpacesPutBody: zod.ZodObject<{
1745
1801
  }, zod.core.$strict>;
1746
1802
  export declare const dataSpacesPutResponseDataSetsItemDataSpaceIdRegExp: RegExp;
1747
1803
  export declare const dataSpacesPutResponseDataSetsItemFlowIdRegExp: RegExp;
1804
+ export declare const dataSpacesPutResponseDataSetsItemHonourDeletesContainerIdsItemRegExp: RegExp;
1748
1805
  export declare const dataSpacesPutResponseDataSetsItemIdRegExp: RegExp;
1749
1806
  export declare const dataSpacesPutResponseDataSetsItemVersionRegExp: RegExp;
1750
1807
  export declare const dataSpacesPutResponseIdRegExp: RegExp;
@@ -1759,6 +1816,7 @@ export declare const dataSpacesPutResponse: zod.ZodObject<{
1759
1816
  dataSpaceId: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
1760
1817
  description: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
1761
1818
  flowId: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
1819
+ honourDeletesContainerIds: zod.ZodOptional<zod.ZodNullable<zod.ZodArray<zod.ZodString>>>;
1762
1820
  id: zod.ZodString;
1763
1821
  modifiedAt: zod.ZodISODateTime;
1764
1822
  modifiedByUserId: zod.ZodString;
@@ -1820,9 +1878,12 @@ export declare const dataSpacesGetDataSetsQueryParams: zod.ZodObject<{
1820
1878
  take: zod.ZodDefault<zod.ZodNumber>;
1821
1879
  skip: zod.ZodOptional<zod.ZodNumber>;
1822
1880
  search: zod.ZodOptional<zod.ZodString>;
1881
+ sortBy: zod.ZodOptional<zod.ZodString>;
1882
+ sortDirection: zod.ZodOptional<zod.ZodString>;
1823
1883
  }, zod.core.$strict>;
1824
1884
  export declare const dataSpacesGetDataSetsResponseDataItemDataSpaceIdRegExp: RegExp;
1825
1885
  export declare const dataSpacesGetDataSetsResponseDataItemFlowIdRegExp: RegExp;
1886
+ export declare const dataSpacesGetDataSetsResponseDataItemHonourDeletesContainerIdsItemRegExp: RegExp;
1826
1887
  export declare const dataSpacesGetDataSetsResponseDataItemIdRegExp: RegExp;
1827
1888
  export declare const dataSpacesGetDataSetsResponseDataItemVersionRegExp: RegExp;
1828
1889
  export declare const dataSpacesGetDataSetsResponse: zod.ZodObject<{
@@ -1832,6 +1893,7 @@ export declare const dataSpacesGetDataSetsResponse: zod.ZodObject<{
1832
1893
  dataSpaceId: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
1833
1894
  description: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
1834
1895
  flowId: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
1896
+ honourDeletesContainerIds: zod.ZodOptional<zod.ZodNullable<zod.ZodArray<zod.ZodString>>>;
1835
1897
  id: zod.ZodString;
1836
1898
  modifiedAt: zod.ZodISODateTime;
1837
1899
  modifiedByUserId: zod.ZodString;
@@ -1861,6 +1923,7 @@ export declare const dataSpacesPostDatasetBodyContainerInfoItemDataSourceIdRegEx
1861
1923
  export declare const dataSpacesPostDatasetBody: zod.ZodObject<{
1862
1924
  containerInfo: zod.ZodOptional<zod.ZodNullable<zod.ZodArray<zod.ZodObject<{
1863
1925
  dataSourceId: zod.ZodString;
1926
+ fields: zod.ZodOptional<zod.ZodNullable<zod.ZodArray<zod.ZodString>>>;
1864
1927
  filters: zod.ZodOptional<zod.ZodNullable<zod.ZodArray<zod.ZodObject<{
1865
1928
  operator: zod.ZodString;
1866
1929
  propertyName: zod.ZodString;
@@ -1877,6 +1940,13 @@ export declare const debugInvokeParams: zod.ZodObject<{
1877
1940
  }, zod.core.$strict>;
1878
1941
  export declare const debugInvokeBodyItem: zod.ZodAny;
1879
1942
  export declare const debugInvokeBody: zod.ZodArray<zod.ZodAny>;
1943
+ /**
1944
+ * @summary Mongo index health for the flow-runs store: planned-vs-existing
1945
+ indexes per collection, the latest index-ensure outcome per index
1946
+ (including repeated failures), and any in-flight index
1947
+ transformations with their progress (currentOp).
1948
+ */
1949
+ export declare const diagnosticsGetMongoIndexesResponse: zod.ZodAny;
1880
1950
  /**
1881
1951
  * @summary List the current user's drafts (without parsed interfaces — load detail to get those).
1882
1952
  */
@@ -2349,7 +2419,7 @@ is cooperative: a queued run is stamped cancelled before it starts;
2349
2419
  a running flow stops between block executions, typically within
2350
2420
  seconds. Cancelled runs carry cancelledAt in their basic info.
2351
2421
  */
2352
- export declare const flowRunsCancelFlowRunPathIdRegExp: RegExp;
2422
+ export declare const flowRunsCancelFlowRunPathIdRegExpOne: RegExp;
2353
2423
  export declare const flowRunsCancelFlowRunParams: zod.ZodObject<{
2354
2424
  id: zod.ZodString;
2355
2425
  }, zod.core.$strict>;
@@ -2369,6 +2439,9 @@ export declare const flowRunsAddFileIdFilesExistingBody: zod.ZodObject<{
2369
2439
  blobUri: zod.ZodString;
2370
2440
  flowRunId: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
2371
2441
  }, zod.core.$strict>;
2442
+ /**
2443
+ * @summary Lists a run's function executions, newest first.
2444
+ */
2372
2445
  export declare const flowRunsGetStepExecutionsPathIdRegExp: RegExp;
2373
2446
  export declare const flowRunsGetStepExecutionsParams: zod.ZodObject<{
2374
2447
  id: zod.ZodString;
@@ -2381,6 +2454,7 @@ export declare const flowRunsGetStepExecutionsQueryParams: zod.ZodObject<{
2381
2454
  take: zod.ZodDefault<zod.ZodNumber>;
2382
2455
  search: zod.ZodOptional<zod.ZodString>;
2383
2456
  "blockIds[]": zod.ZodOptional<zod.ZodArray<zod.ZodString>>;
2457
+ includeValues: zod.ZodOptional<zod.ZodBoolean>;
2384
2458
  }, zod.core.$strict>;
2385
2459
  export declare const flowRunsGetStepExecutionsResponseLogsItemIdRegExp: RegExp;
2386
2460
  export declare const flowRunsGetStepExecutionsResponseLogsItemInputsItemIdRegExp: RegExp;
@@ -2405,6 +2479,8 @@ export declare const flowRunsGetStepExecutionsResponse: zod.ZodObject<{
2405
2479
  createdAt: zod.ZodISODateTime;
2406
2480
  data: zod.ZodAny;
2407
2481
  id: zod.ZodString;
2482
+ isBlob: zod.ZodOptional<zod.ZodNullable<zod.ZodBoolean>>;
2483
+ sizeBytes: zod.ZodOptional<zod.ZodNullable<zod.ZodNumber>>;
2408
2484
  source: zod.ZodObject<{
2409
2485
  node: zod.ZodString;
2410
2486
  pin: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
@@ -2417,15 +2493,92 @@ export declare const flowRunsGetStepExecutionsResponse: zod.ZodObject<{
2417
2493
  createdAt: zod.ZodISODateTime;
2418
2494
  data: zod.ZodAny;
2419
2495
  id: zod.ZodString;
2496
+ isBlob: zod.ZodOptional<zod.ZodNullable<zod.ZodBoolean>>;
2497
+ sizeBytes: zod.ZodOptional<zod.ZodNullable<zod.ZodNumber>>;
2420
2498
  source: zod.ZodObject<{
2421
2499
  node: zod.ZodString;
2422
2500
  pin: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
2423
2501
  port: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
2424
2502
  }, zod.core.$strip>;
2425
2503
  }, zod.core.$strip>>;
2504
+ seq: zod.ZodOptional<zod.ZodNullable<zod.ZodNumber>>;
2505
+ startedAt: zod.ZodOptional<zod.ZodNullable<zod.ZodISODateTime>>;
2426
2506
  }, zod.core.$strip>>;
2427
2507
  total: zod.ZodNumber;
2428
2508
  }, zod.core.$strip>;
2509
+ /**
2510
+ * Inline values are returned as stored. Values spilled to blob storage come
2511
+ back by reference (`isBlob`, `sizeBytes`, `data` null) and are
2512
+ fetched with M:SmartSpace.App.ConfigApi.Controllers.FlowRunsController.GetFlowValueDownload(System.Guid,System.Guid); they are never downloaded on
2513
+ this read, so expanding a large step costs the same as a small one.
2514
+ * @summary Gets one execution of a run with its input/output values — the detail read
2515
+ behind `functionexecutions?includeValues=false`.
2516
+ */
2517
+ export declare const flowRunsGetStepExecutionPathIdRegExp: RegExp;
2518
+ export declare const flowRunsGetStepExecutionPathExecutionIdRegExp: RegExp;
2519
+ export declare const flowRunsGetStepExecutionParams: zod.ZodObject<{
2520
+ id: zod.ZodString;
2521
+ executionId: zod.ZodString;
2522
+ }, zod.core.$strict>;
2523
+ export declare const flowRunsGetStepExecutionResponseIdRegExp: RegExp;
2524
+ export declare const flowRunsGetStepExecutionResponseInputsItemIdRegExp: RegExp;
2525
+ export declare const flowRunsGetStepExecutionResponseInputsItemValueIdRegExp: RegExp;
2526
+ export declare const flowRunsGetStepExecutionResponseOutputsItemIdRegExp: RegExp;
2527
+ export declare const flowRunsGetStepExecutionResponse: zod.ZodObject<{
2528
+ blockId: zod.ZodString;
2529
+ createdAt: zod.ZodISODateTime;
2530
+ finishedAt: zod.ZodOptional<zod.ZodNullable<zod.ZodISODateTime>>;
2531
+ functionName: zod.ZodString;
2532
+ id: zod.ZodString;
2533
+ inputs: zod.ZodArray<zod.ZodObject<{
2534
+ blockId: zod.ZodString;
2535
+ createdAt: zod.ZodISODateTime;
2536
+ id: zod.ZodString;
2537
+ pin: zod.ZodString;
2538
+ port: zod.ZodString;
2539
+ sticky: zod.ZodBoolean;
2540
+ value: zod.ZodObject<{
2541
+ channels: zod.ZodRecord<zod.ZodString, zod.ZodNumber>;
2542
+ createdAt: zod.ZodISODateTime;
2543
+ data: zod.ZodAny;
2544
+ id: zod.ZodString;
2545
+ isBlob: zod.ZodOptional<zod.ZodNullable<zod.ZodBoolean>>;
2546
+ sizeBytes: zod.ZodOptional<zod.ZodNullable<zod.ZodNumber>>;
2547
+ source: zod.ZodObject<{
2548
+ node: zod.ZodString;
2549
+ pin: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
2550
+ port: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
2551
+ }, zod.core.$strip>;
2552
+ }, zod.core.$strip>;
2553
+ }, zod.core.$strip>>;
2554
+ outputs: zod.ZodArray<zod.ZodObject<{
2555
+ channels: zod.ZodRecord<zod.ZodString, zod.ZodNumber>;
2556
+ createdAt: zod.ZodISODateTime;
2557
+ data: zod.ZodAny;
2558
+ id: zod.ZodString;
2559
+ isBlob: zod.ZodOptional<zod.ZodNullable<zod.ZodBoolean>>;
2560
+ sizeBytes: zod.ZodOptional<zod.ZodNullable<zod.ZodNumber>>;
2561
+ source: zod.ZodObject<{
2562
+ node: zod.ZodString;
2563
+ pin: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
2564
+ port: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
2565
+ }, zod.core.$strip>;
2566
+ }, zod.core.$strip>>;
2567
+ seq: zod.ZodOptional<zod.ZodNullable<zod.ZodNumber>>;
2568
+ startedAt: zod.ZodOptional<zod.ZodNullable<zod.ZodISODateTime>>;
2569
+ }, zod.core.$strip>;
2570
+ /**
2571
+ * Redirects to short-lived direct-from-storage link, so the payload never
2572
+ transits this service — the same pattern as file downloads. Only values the
2573
+ per-execution read returned by reference resolve here.
2574
+ * @summary Downloads a blob-spilled value's payload.
2575
+ */
2576
+ export declare const flowRunsGetFlowValueDownloadPathIdRegExp: RegExp;
2577
+ export declare const flowRunsGetFlowValueDownloadPathValueIdRegExp: RegExp;
2578
+ export declare const flowRunsGetFlowValueDownloadParams: zod.ZodObject<{
2579
+ id: zod.ZodString;
2580
+ valueId: zod.ZodString;
2581
+ }, zod.core.$strict>;
2429
2582
  export declare const flowRunsGetVariablesPathIdRegExpOne: RegExp;
2430
2583
  export declare const flowRunsGetVariablesParams: zod.ZodObject<{
2431
2584
  id: zod.ZodString;
@@ -2603,6 +2756,7 @@ export declare const modelsGetModelsResponse: zod.ZodObject<{
2603
2756
  }>>;
2604
2757
  displayName: zod.ZodString;
2605
2758
  id: zod.ZodString;
2759
+ isDefault: zod.ZodBoolean;
2606
2760
  modelDeploymentProviderType: zod.ZodOptional<zod.ZodEnum<{
2607
2761
  OpenAi: "OpenAi";
2608
2762
  AzureOpenAi: "AzureOpenAi";
@@ -2691,6 +2845,59 @@ export declare const modelsCreateModelBody: zod.ZodObject<{
2691
2845
  Other: "Other";
2692
2846
  }>>;
2693
2847
  }, zod.core.$strict>;
2848
+ /**
2849
+ * @summary Retrieves the instance-wide default model — the one pre-selected on new LLM blocks and the default workspace flow.
2850
+ */
2851
+ export declare const modelsGetDefaultModelResponseIdRegExp: RegExp;
2852
+ export declare const modelsGetDefaultModelResponse: zod.ZodObject<{
2853
+ createdAt: zod.ZodOptional<zod.ZodNullable<zod.ZodISODateTime>>;
2854
+ createdByUserId: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
2855
+ deploymentStatus: zod.ZodOptional<zod.ZodEnum<{
2856
+ Deploying: "Deploying";
2857
+ Ready: "Ready";
2858
+ Failed: "Failed";
2859
+ Deleting: "Deleting";
2860
+ Deleted: "Deleted";
2861
+ }>>;
2862
+ displayName: zod.ZodString;
2863
+ id: zod.ZodString;
2864
+ isDefault: zod.ZodBoolean;
2865
+ modelDeploymentProviderType: zod.ZodOptional<zod.ZodEnum<{
2866
+ OpenAi: "OpenAi";
2867
+ AzureOpenAi: "AzureOpenAi";
2868
+ HuggingFace: "HuggingFace";
2869
+ Cohere: "Cohere";
2870
+ Anthropic: "Anthropic";
2871
+ Gemini: "Gemini";
2872
+ VertexAi: "VertexAi";
2873
+ AzureFoundry: "AzureFoundry";
2874
+ }>>;
2875
+ modelPublisher: zod.ZodOptional<zod.ZodEnum<{
2876
+ OpenAi: "OpenAi";
2877
+ HuggingFace: "HuggingFace";
2878
+ Cohere: "Cohere";
2879
+ Anthropic: "Anthropic";
2880
+ Google: "Google";
2881
+ Meta: "Meta";
2882
+ Mistral: "Mistral";
2883
+ Microsoft: "Microsoft";
2884
+ DeepSeek: "DeepSeek";
2885
+ XAi: "XAi";
2886
+ Amazon: "Amazon";
2887
+ Qwen: "Qwen";
2888
+ Other: "Other";
2889
+ }>>;
2890
+ name: zod.ZodString;
2891
+ properties: zod.ZodArray<zod.ZodObject<{
2892
+ name: zod.ZodString;
2893
+ type: zod.ZodEnum<{
2894
+ Boolean: "Boolean";
2895
+ Number: "Number";
2896
+ String: "String";
2897
+ }>;
2898
+ }, zod.core.$strip>>;
2899
+ virtualMachineUrl: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
2900
+ }, zod.core.$strip>;
2694
2901
  export declare const modelsGetDefaultDockerFileQueryParams: zod.ZodObject<{
2695
2902
  serverType: zod.ZodOptional<zod.ZodEnum<{
2696
2903
  TextGenerationInference: "TextGenerationInference";
@@ -2763,6 +2970,7 @@ export declare const modelsGetModelResponse: zod.ZodObject<{
2763
2970
  }, zod.core.$strip>>;
2764
2971
  displayName: zod.ZodString;
2765
2972
  id: zod.ZodString;
2973
+ isDefault: zod.ZodBoolean;
2766
2974
  modelDeploymentProviderType: zod.ZodOptional<zod.ZodEnum<{
2767
2975
  OpenAi: "OpenAi";
2768
2976
  AzureOpenAi: "AzureOpenAi";
@@ -2852,6 +3060,20 @@ export declare const modelsUpsertModelBody: zod.ZodObject<{
2852
3060
  Other: "Other";
2853
3061
  }>>;
2854
3062
  }, zod.core.$strict>;
3063
+ /**
3064
+ * @summary Clears the default flag from the specified model, leaving the instance with no default.
3065
+ */
3066
+ export declare const modelsClearDefaultModelPathIdRegExp: RegExp;
3067
+ export declare const modelsClearDefaultModelParams: zod.ZodObject<{
3068
+ id: zod.ZodString;
3069
+ }, zod.core.$strict>;
3070
+ /**
3071
+ * @summary Makes the specified model the instance-wide default, replacing any previous default.
3072
+ */
3073
+ export declare const modelsSetDefaultModelPathIdRegExp: RegExp;
3074
+ export declare const modelsSetDefaultModelParams: zod.ZodObject<{
3075
+ id: zod.ZodString;
3076
+ }, zod.core.$strict>;
2855
3077
  /**
2856
3078
  * @summary Retrieves the Docker logs for a specific deployment of a model.
2857
3079
  */
@@ -2983,6 +3205,36 @@ export declare const reportingGetTokensResponse: zod.ZodObject<{
2983
3205
  name: zod.ZodString;
2984
3206
  }, zod.core.$strip>>;
2985
3207
  }, zod.core.$strip>;
3208
+ /**
3209
+ * @summary List API accounts: service principals holding the SmartSpace integration
3210
+ role, with their permission flags and last recorded activity.
3211
+ */
3212
+ export declare const servicePrincipalsGetServicePrincipalsQuerySkipDefault = 0;
3213
+ export declare const servicePrincipalsGetServicePrincipalsQueryTakeDefault = 20;
3214
+ export declare const servicePrincipalsGetServicePrincipalsQueryParams: zod.ZodObject<{
3215
+ skip: zod.ZodOptional<zod.ZodNumber>;
3216
+ take: zod.ZodDefault<zod.ZodNumber>;
3217
+ search: zod.ZodOptional<zod.ZodString>;
3218
+ }, zod.core.$strict>;
3219
+ export declare const servicePrincipalsGetServicePrincipalsResponse: zod.ZodObject<{
3220
+ data: zod.ZodArray<zod.ZodObject<{
3221
+ id: zod.ZodString;
3222
+ lastActiveAt: zod.ZodOptional<zod.ZodNullable<zod.ZodISODateTime>>;
3223
+ name: zod.ZodString;
3224
+ permissions: zod.ZodArray<zod.ZodEnum<{
3225
+ WorkspaceCreate: "WorkspaceCreate";
3226
+ WorkspaceEdit: "WorkspaceEdit";
3227
+ WorkspaceDelete: "WorkspaceDelete";
3228
+ DataSpaceCreate: "DataSpaceCreate";
3229
+ DataSpaceEdit: "DataSpaceEdit";
3230
+ DataSpaceDelete: "DataSpaceDelete";
3231
+ ConnectorCreate: "ConnectorCreate";
3232
+ ConnectorEdit: "ConnectorEdit";
3233
+ ConnectorDelete: "ConnectorDelete";
3234
+ }>>;
3235
+ }, zod.core.$strip>>;
3236
+ total: zod.ZodNumber;
3237
+ }, zod.core.$strip>;
2986
3238
  /**
2987
3239
  * @summary List configured syncs. status matches the data
2988
3240
  source's latest completed sync (e.g. Success / Failure), or "never"
@@ -3030,6 +3282,7 @@ export declare const syncsGetResponse: zod.ZodObject<{
3030
3282
  File: "File";
3031
3283
  Sitemap: "Sitemap";
3032
3284
  }>;
3285
+ supportsDeleteDetection: zod.ZodBoolean;
3033
3286
  syncStartedAt: zod.ZodOptional<zod.ZodNullable<zod.ZodISODateTime>>;
3034
3287
  }, zod.core.$strip>;
3035
3288
  filters: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
@@ -3063,6 +3316,17 @@ export declare const syncsGetQueueResponse: zod.ZodObject<{
3063
3316
  depth: zod.ZodNumber;
3064
3317
  waitingDataSourceIds: zod.ZodArray<zod.ZodString>;
3065
3318
  }, zod.core.$strip>;
3319
+ /**
3320
+ * @summary Removes the sync: deletes its data source container config record, so
3321
+ the source selection stops being mirrored from the next sync cycle.
3322
+ Refused (DSC400) while any live dataset still subscribes to it via a
3323
+ container flow trigger. Config-only — already-landed items and copied
3324
+ blobs are not cleaned up here.
3325
+ */
3326
+ export declare const syncsDeletePathContainerIdRegExp: RegExp;
3327
+ export declare const syncsDeleteParams: zod.ZodObject<{
3328
+ containerId: zod.ZodString;
3329
+ }, zod.core.$strict>;
3066
3330
  export declare const syncsGetByIdPathContainerIdRegExp: RegExp;
3067
3331
  export declare const syncsGetByIdParams: zod.ZodObject<{
3068
3332
  containerId: zod.ZodString;
@@ -3095,6 +3359,7 @@ export declare const syncsGetByIdResponse: zod.ZodObject<{
3095
3359
  File: "File";
3096
3360
  Sitemap: "Sitemap";
3097
3361
  }>;
3362
+ supportsDeleteDetection: zod.ZodBoolean;
3098
3363
  syncStartedAt: zod.ZodOptional<zod.ZodNullable<zod.ZodISODateTime>>;
3099
3364
  }, zod.core.$strip>;
3100
3365
  filters: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
@@ -3136,6 +3401,7 @@ export declare const syncsGetItemsResponse: zod.ZodObject<{
3136
3401
  blobUri: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
3137
3402
  bytes: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
3138
3403
  containerId: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
3404
+ deletedAt: zod.ZodOptional<zod.ZodNullable<zod.ZodISODateTime>>;
3139
3405
  id: zod.ZodString;
3140
3406
  isJson: zod.ZodOptional<zod.ZodNullable<zod.ZodBoolean>>;
3141
3407
  name: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
@@ -3149,7 +3415,8 @@ export declare const syncsGetItemsResponse: zod.ZodObject<{
3149
3415
  */
3150
3416
  export declare const tenantIdGetResultResponse: zod.ZodString;
3151
3417
  /**
3152
- * @summary Retrieve list users in SmartSpace, filter by roleId, with optional pagination controls take and skip.
3418
+ * @summary Retrieve users assigned to the SmartSpace application (directly or via a group),
3419
+ with optional search and pagination controls take and skip.
3153
3420
  */
3154
3421
  export declare const usersGetUsersQuerySkipDefault = 0;
3155
3422
  export declare const usersGetUsersQueryTakeDefault = 20;
@@ -3512,6 +3779,7 @@ export declare const workSpacesGetGetResponse: zod.ZodObject<{
3512
3779
  triggers: zod.ZodArray<zod.ZodObject<{
3513
3780
  dataSourceContainer: zod.ZodObject<{
3514
3781
  dataSourceId: zod.ZodString;
3782
+ fields: zod.ZodOptional<zod.ZodNullable<zod.ZodArray<zod.ZodString>>>;
3515
3783
  filters: zod.ZodOptional<zod.ZodNullable<zod.ZodArray<zod.ZodObject<{
3516
3784
  operator: zod.ZodString;
3517
3785
  propertyName: zod.ZodString;
@@ -3522,6 +3790,7 @@ export declare const workSpacesGetGetResponse: zod.ZodObject<{
3522
3790
  path: zod.ZodString;
3523
3791
  }, zod.core.$strip>;
3524
3792
  flowId: zod.ZodString;
3793
+ honourSourceDeletes: zod.ZodBoolean;
3525
3794
  id: zod.ZodString;
3526
3795
  inputName: zod.ZodString;
3527
3796
  type: zod.ZodEnum<{
@@ -3808,6 +4077,7 @@ export declare const workSpacesGetIdResponse: zod.ZodObject<{
3808
4077
  triggers: zod.ZodArray<zod.ZodObject<{
3809
4078
  dataSourceContainer: zod.ZodObject<{
3810
4079
  dataSourceId: zod.ZodString;
4080
+ fields: zod.ZodOptional<zod.ZodNullable<zod.ZodArray<zod.ZodString>>>;
3811
4081
  filters: zod.ZodOptional<zod.ZodNullable<zod.ZodArray<zod.ZodObject<{
3812
4082
  operator: zod.ZodString;
3813
4083
  propertyName: zod.ZodString;
@@ -3818,6 +4088,7 @@ export declare const workSpacesGetIdResponse: zod.ZodObject<{
3818
4088
  path: zod.ZodString;
3819
4089
  }, zod.core.$strip>;
3820
4090
  flowId: zod.ZodString;
4091
+ honourSourceDeletes: zod.ZodBoolean;
3821
4092
  id: zod.ZodString;
3822
4093
  inputName: zod.ZodString;
3823
4094
  type: zod.ZodEnum<{
@@ -4617,6 +4888,8 @@ export declare const messageThreadsGetWorkspaceExecutionsResponse: zod.ZodObject
4617
4888
  port: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
4618
4889
  }, zod.core.$strip>;
4619
4890
  }, zod.core.$strip>>;
4891
+ seq: zod.ZodOptional<zod.ZodNullable<zod.ZodNumber>>;
4892
+ startedAt: zod.ZodOptional<zod.ZodNullable<zod.ZodISODateTime>>;
4620
4893
  }, zod.core.$strip>>;
4621
4894
  total: zod.ZodNumber;
4622
4895
  }, zod.core.$strip>;
@@ -4676,6 +4949,8 @@ export declare const messageThreadsGetStepExecutionsResponse: zod.ZodObject<{
4676
4949
  port: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
4677
4950
  }, zod.core.$strip>;
4678
4951
  }, zod.core.$strip>>;
4952
+ seq: zod.ZodOptional<zod.ZodNullable<zod.ZodNumber>>;
4953
+ startedAt: zod.ZodOptional<zod.ZodNullable<zod.ZodISODateTime>>;
4679
4954
  }, zod.core.$strip>>;
4680
4955
  total: zod.ZodNumber;
4681
4956
  }, zod.core.$strip>;