@smartspace/api-client 0.1.0-pr.930.6c9dbf5 → 0.1.0-pr.932.47d58f1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/generated/config/api.d.ts +17 -1
- package/dist/generated/config/api.js +65 -1
- package/dist/generated/config/api.msw.d.ts +16 -1
- package/dist/generated/config/api.msw.js +116 -5
- package/dist/generated/config/models/containerItem.d.ts +27 -0
- package/dist/generated/config/models/containerItem.js +8 -0
- package/dist/generated/config/models/dataSetsGetIngestionRunsParams.d.ts +15 -0
- package/dist/generated/config/models/dataSetsGetIngestionRunsParams.js +8 -0
- package/dist/generated/config/models/enumsActivityType.d.ts +1 -0
- package/dist/generated/config/models/enumsActivityType.js +1 -0
- package/dist/generated/config/models/index.d.ts +14 -0
- package/dist/generated/config/models/index.js +14 -0
- package/dist/generated/config/models/integrationsSmartSpaceAiIngestionRun.d.ts +57 -0
- package/dist/generated/config/models/integrationsSmartSpaceAiIngestionRun.js +2 -0
- package/dist/generated/config/models/integrationsSmartSpaceAiIngestionRunTrigger.d.ts +11 -0
- package/dist/generated/config/models/integrationsSmartSpaceAiIngestionRunTrigger.js +8 -0
- package/dist/generated/config/models/managedSecretsCreateManagedSecret.d.ts +10 -0
- package/dist/generated/config/models/managedSecretsCreateManagedSecret.js +8 -0
- package/dist/generated/config/models/managedSecretsManagedSecret.d.ts +15 -0
- package/dist/generated/config/models/managedSecretsManagedSecret.js +8 -0
- package/dist/generated/config/models/managedSecretsUpdateManagedSecretValue.d.ts +9 -0
- package/dist/generated/config/models/managedSecretsUpdateManagedSecretValue.js +8 -0
- package/dist/generated/config/models/pagedDataCollectionContainerItem.d.ts +11 -0
- package/dist/generated/config/models/pagedDataCollectionContainerItem.js +2 -0
- package/dist/generated/config/models/pagedDataCollectionSyncsSync.d.ts +11 -0
- package/dist/generated/config/models/pagedDataCollectionSyncsSync.js +2 -0
- package/dist/generated/config/models/pagedDataSystemCollectionsGenericICollectionIntegrationsSmartSpaceAiIngestionRun.d.ts +11 -0
- package/dist/generated/config/models/pagedDataSystemCollectionsGenericICollectionIntegrationsSmartSpaceAiIngestionRun.js +2 -0
- package/dist/generated/config/models/syncsGetItemsParams.d.ts +10 -0
- package/dist/generated/config/models/syncsGetItemsParams.js +8 -0
- package/dist/generated/config/models/syncsGetParams.d.ts +11 -0
- package/dist/generated/config/models/syncsGetParams.js +8 -0
- package/dist/generated/config/models/syncsSync.d.ts +22 -0
- package/dist/generated/config/models/syncsSync.js +2 -0
- package/dist/generated/config/models/syncsSyncDataSourceInfo.d.ts +14 -0
- package/dist/generated/config/models/syncsSyncDataSourceInfo.js +2 -0
- package/dist/generated/config/zod.d.ts +224 -0
- package/dist/generated/config/zod.js +205 -14
- package/package.json +1 -1
|
@@ -224,6 +224,7 @@ export declare const activityExportLoggingsQueryParams: zod.ZodObject<{
|
|
|
224
224
|
Created: "Created";
|
|
225
225
|
Updated: "Updated";
|
|
226
226
|
Chat: "Chat";
|
|
227
|
+
Resolved: "Resolved";
|
|
227
228
|
}>>;
|
|
228
229
|
}, zod.core.$strict>;
|
|
229
230
|
export declare const activityExportLoggingsResponse: zod.ZodString;
|
|
@@ -243,6 +244,7 @@ export declare const activityGetLoggingQueryParams: zod.ZodObject<{
|
|
|
243
244
|
Created: "Created";
|
|
244
245
|
Updated: "Updated";
|
|
245
246
|
Chat: "Chat";
|
|
247
|
+
Resolved: "Resolved";
|
|
246
248
|
}>>;
|
|
247
249
|
take: zod.ZodDefault<zod.ZodNumber>;
|
|
248
250
|
skip: zod.ZodOptional<zod.ZodNumber>;
|
|
@@ -257,6 +259,7 @@ export declare const activityGetLoggingResponse: zod.ZodObject<{
|
|
|
257
259
|
Created: "Created";
|
|
258
260
|
Updated: "Updated";
|
|
259
261
|
Chat: "Chat";
|
|
262
|
+
Resolved: "Resolved";
|
|
260
263
|
}>>;
|
|
261
264
|
durationMs: zod.ZodOptional<zod.ZodNullable<zod.ZodNumber>>;
|
|
262
265
|
eventDescription: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
@@ -1220,6 +1223,60 @@ export declare const dataSetsDeleteDataSetPropertyParams: zod.ZodObject<{
|
|
|
1220
1223
|
id: zod.ZodString;
|
|
1221
1224
|
name: zod.ZodString;
|
|
1222
1225
|
}, zod.core.$strict>;
|
|
1226
|
+
/**
|
|
1227
|
+
* @summary Run-centric ingestion history for the dataset (newest first), from the
|
|
1228
|
+
AI API's provenance-stamped run store. `trigger` filters by cause
|
|
1229
|
+
(sync / sweep / manual / reset / unknown); `itemId` narrows to one
|
|
1230
|
+
container item, including runs superseded by later re-ingests.
|
|
1231
|
+
*/
|
|
1232
|
+
export declare const dataSetsGetIngestionRunsPathIdRegExp: RegExp;
|
|
1233
|
+
export declare const dataSetsGetIngestionRunsParams: zod.ZodObject<{
|
|
1234
|
+
id: zod.ZodString;
|
|
1235
|
+
}, zod.core.$strict>;
|
|
1236
|
+
export declare const dataSetsGetIngestionRunsQuerySkipDefault = 0;
|
|
1237
|
+
export declare const dataSetsGetIngestionRunsQueryTakeDefault = 50;
|
|
1238
|
+
export declare const dataSetsGetIngestionRunsQueryItemIdRegExp: RegExp;
|
|
1239
|
+
export declare const dataSetsGetIngestionRunsQueryParams: zod.ZodObject<{
|
|
1240
|
+
skip: zod.ZodOptional<zod.ZodNumber>;
|
|
1241
|
+
take: zod.ZodDefault<zod.ZodNumber>;
|
|
1242
|
+
trigger: zod.ZodOptional<zod.ZodString>;
|
|
1243
|
+
itemId: zod.ZodOptional<zod.ZodString>;
|
|
1244
|
+
}, zod.core.$strict>;
|
|
1245
|
+
export declare const dataSetsGetIngestionRunsResponseDataItemCausedByRegExp: RegExp;
|
|
1246
|
+
export declare const dataSetsGetIngestionRunsResponseDataItemContainerIdRegExp: RegExp;
|
|
1247
|
+
export declare const dataSetsGetIngestionRunsResponseDataItemDataSetIdRegExp: RegExp;
|
|
1248
|
+
export declare const dataSetsGetIngestionRunsResponseDataItemDataSetVersionRegExp: RegExp;
|
|
1249
|
+
export declare const dataSetsGetIngestionRunsResponseDataItemFlowRunIdRegExp: RegExp;
|
|
1250
|
+
export declare const dataSetsGetIngestionRunsResponseDataItemItemIdRegExp: RegExp;
|
|
1251
|
+
export declare const dataSetsGetIngestionRunsResponseDataItemRetryOfRegExp: RegExp;
|
|
1252
|
+
export declare const dataSetsGetIngestionRunsResponse: zod.ZodObject<{
|
|
1253
|
+
data: zod.ZodArray<zod.ZodObject<{
|
|
1254
|
+
causedBy: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
1255
|
+
containerId: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
1256
|
+
createdAt: zod.ZodOptional<zod.ZodNullable<zod.ZodISODateTime>>;
|
|
1257
|
+
dataSetId: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
1258
|
+
dataSetVersion: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
1259
|
+
errors: zod.ZodArray<zod.ZodObject<{
|
|
1260
|
+
blockId: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
1261
|
+
code: zod.ZodOptional<zod.ZodNullable<zod.ZodNumber>>;
|
|
1262
|
+
message: zod.ZodString;
|
|
1263
|
+
}, zod.core.$strip>>;
|
|
1264
|
+
finishedAt: zod.ZodOptional<zod.ZodNullable<zod.ZodISODateTime>>;
|
|
1265
|
+
flowRunId: zod.ZodString;
|
|
1266
|
+
itemId: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
1267
|
+
itemName: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
1268
|
+
itemPath: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
1269
|
+
itemVersion: zod.ZodOptional<zod.ZodNullable<zod.ZodISODateTime>>;
|
|
1270
|
+
retryOf: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
1271
|
+
runAt: zod.ZodOptional<zod.ZodNullable<zod.ZodISODateTime>>;
|
|
1272
|
+
status: zod.ZodString;
|
|
1273
|
+
trigger: zod.ZodObject<{
|
|
1274
|
+
kind: zod.ZodString;
|
|
1275
|
+
principal: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
1276
|
+
}, zod.core.$strip>;
|
|
1277
|
+
}, zod.core.$strip>>;
|
|
1278
|
+
total: zod.ZodNumber;
|
|
1279
|
+
}, zod.core.$strip>;
|
|
1223
1280
|
/**
|
|
1224
1281
|
* @summary Set the per-document scoping config (mode + subject path) on a dataset.
|
|
1225
1282
|
*/
|
|
@@ -2903,6 +2960,119 @@ export declare const reportingGetTokensResponse: zod.ZodObject<{
|
|
|
2903
2960
|
name: zod.ZodString;
|
|
2904
2961
|
}, zod.core.$strip>>;
|
|
2905
2962
|
}, zod.core.$strip>;
|
|
2963
|
+
export declare const syncsGetQueryTakeDefault = 50;
|
|
2964
|
+
export declare const syncsGetQuerySkipDefault = 0;
|
|
2965
|
+
export declare const syncsGetQueryParams: zod.ZodObject<{
|
|
2966
|
+
take: zod.ZodDefault<zod.ZodNumber>;
|
|
2967
|
+
skip: zod.ZodOptional<zod.ZodNumber>;
|
|
2968
|
+
search: zod.ZodOptional<zod.ZodString>;
|
|
2969
|
+
}, zod.core.$strict>;
|
|
2970
|
+
export declare const syncsGetResponseDataItemDataSetsItemIdRegExp: RegExp;
|
|
2971
|
+
export declare const syncsGetResponseDataItemDataSetsItemVersionRegExp: RegExp;
|
|
2972
|
+
export declare const syncsGetResponseDataItemDataSourceIdRegExp: RegExp;
|
|
2973
|
+
export declare const syncsGetResponseDataItemIdRegExp: RegExp;
|
|
2974
|
+
export declare const syncsGetResponse: zod.ZodObject<{
|
|
2975
|
+
data: zod.ZodArray<zod.ZodObject<{
|
|
2976
|
+
dataSets: zod.ZodArray<zod.ZodObject<{
|
|
2977
|
+
id: zod.ZodString;
|
|
2978
|
+
name: zod.ZodString;
|
|
2979
|
+
version: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
2980
|
+
}, zod.core.$strip>>;
|
|
2981
|
+
dataSource: zod.ZodObject<{
|
|
2982
|
+
id: zod.ZodString;
|
|
2983
|
+
isSyncing: zod.ZodBoolean;
|
|
2984
|
+
name: zod.ZodString;
|
|
2985
|
+
sourceType: zod.ZodEnum<{
|
|
2986
|
+
BlobStorage: "BlobStorage";
|
|
2987
|
+
SqlServer: "SqlServer";
|
|
2988
|
+
AzureSql: "AzureSql";
|
|
2989
|
+
Cosmos: "Cosmos";
|
|
2990
|
+
GoogleDrive: "GoogleDrive";
|
|
2991
|
+
SharePoint: "SharePoint";
|
|
2992
|
+
SharePointSite: "SharePointSite";
|
|
2993
|
+
HubSpot: "HubSpot";
|
|
2994
|
+
AzureStorage: "AzureStorage";
|
|
2995
|
+
File: "File";
|
|
2996
|
+
Sitemap: "Sitemap";
|
|
2997
|
+
}>;
|
|
2998
|
+
}, zod.core.$strip>;
|
|
2999
|
+
filters: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
3000
|
+
highwaterMark: zod.ZodOptional<zod.ZodNullable<zod.ZodISODateTime>>;
|
|
3001
|
+
id: zod.ZodString;
|
|
3002
|
+
name: zod.ZodString;
|
|
3003
|
+
path: zod.ZodString;
|
|
3004
|
+
statusMessage: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
3005
|
+
}, zod.core.$strip>>;
|
|
3006
|
+
total: zod.ZodNumber;
|
|
3007
|
+
}, zod.core.$strip>;
|
|
3008
|
+
export declare const syncsGetByIdPathContainerIdRegExp: RegExp;
|
|
3009
|
+
export declare const syncsGetByIdParams: zod.ZodObject<{
|
|
3010
|
+
containerId: zod.ZodString;
|
|
3011
|
+
}, zod.core.$strict>;
|
|
3012
|
+
export declare const syncsGetByIdResponseDataSetsItemIdRegExp: RegExp;
|
|
3013
|
+
export declare const syncsGetByIdResponseDataSetsItemVersionRegExp: RegExp;
|
|
3014
|
+
export declare const syncsGetByIdResponseDataSourceIdRegExp: RegExp;
|
|
3015
|
+
export declare const syncsGetByIdResponseIdRegExp: RegExp;
|
|
3016
|
+
export declare const syncsGetByIdResponse: zod.ZodObject<{
|
|
3017
|
+
dataSets: zod.ZodArray<zod.ZodObject<{
|
|
3018
|
+
id: zod.ZodString;
|
|
3019
|
+
name: zod.ZodString;
|
|
3020
|
+
version: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
3021
|
+
}, zod.core.$strip>>;
|
|
3022
|
+
dataSource: zod.ZodObject<{
|
|
3023
|
+
id: zod.ZodString;
|
|
3024
|
+
isSyncing: zod.ZodBoolean;
|
|
3025
|
+
name: zod.ZodString;
|
|
3026
|
+
sourceType: zod.ZodEnum<{
|
|
3027
|
+
BlobStorage: "BlobStorage";
|
|
3028
|
+
SqlServer: "SqlServer";
|
|
3029
|
+
AzureSql: "AzureSql";
|
|
3030
|
+
Cosmos: "Cosmos";
|
|
3031
|
+
GoogleDrive: "GoogleDrive";
|
|
3032
|
+
SharePoint: "SharePoint";
|
|
3033
|
+
SharePointSite: "SharePointSite";
|
|
3034
|
+
HubSpot: "HubSpot";
|
|
3035
|
+
AzureStorage: "AzureStorage";
|
|
3036
|
+
File: "File";
|
|
3037
|
+
Sitemap: "Sitemap";
|
|
3038
|
+
}>;
|
|
3039
|
+
}, zod.core.$strip>;
|
|
3040
|
+
filters: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
3041
|
+
highwaterMark: zod.ZodOptional<zod.ZodNullable<zod.ZodISODateTime>>;
|
|
3042
|
+
id: zod.ZodString;
|
|
3043
|
+
name: zod.ZodString;
|
|
3044
|
+
path: zod.ZodString;
|
|
3045
|
+
statusMessage: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
3046
|
+
}, zod.core.$strip>;
|
|
3047
|
+
/**
|
|
3048
|
+
* @summary The sync's landed items (read-only metadata), proxied from the AI API's
|
|
3049
|
+
container-items endpoint.
|
|
3050
|
+
*/
|
|
3051
|
+
export declare const syncsGetItemsPathContainerIdRegExp: RegExp;
|
|
3052
|
+
export declare const syncsGetItemsParams: zod.ZodObject<{
|
|
3053
|
+
containerId: zod.ZodString;
|
|
3054
|
+
}, zod.core.$strict>;
|
|
3055
|
+
export declare const syncsGetItemsQuerySkipDefault = 0;
|
|
3056
|
+
export declare const syncsGetItemsQueryTakeDefault = 50;
|
|
3057
|
+
export declare const syncsGetItemsQueryParams: zod.ZodObject<{
|
|
3058
|
+
skip: zod.ZodOptional<zod.ZodNumber>;
|
|
3059
|
+
take: zod.ZodDefault<zod.ZodNumber>;
|
|
3060
|
+
}, zod.core.$strict>;
|
|
3061
|
+
export declare const syncsGetItemsResponseDataItemContainerIdRegExp: RegExp;
|
|
3062
|
+
export declare const syncsGetItemsResponseDataItemIdRegExp: RegExp;
|
|
3063
|
+
export declare const syncsGetItemsResponse: zod.ZodObject<{
|
|
3064
|
+
data: zod.ZodArray<zod.ZodObject<{
|
|
3065
|
+
blobUri: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
3066
|
+
bytes: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
3067
|
+
containerId: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
3068
|
+
id: zod.ZodString;
|
|
3069
|
+
isJson: zod.ZodOptional<zod.ZodNullable<zod.ZodBoolean>>;
|
|
3070
|
+
name: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
3071
|
+
path: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
3072
|
+
pending: zod.ZodOptional<zod.ZodNullable<zod.ZodBoolean>>;
|
|
3073
|
+
}, zod.core.$strip>>;
|
|
3074
|
+
total: zod.ZodNumber;
|
|
3075
|
+
}, zod.core.$strip>;
|
|
2906
3076
|
/**
|
|
2907
3077
|
* @summary Gets Tenant Id
|
|
2908
3078
|
*/
|
|
@@ -4108,6 +4278,60 @@ export declare const documentsGetDocumentSasQueryParams: zod.ZodObject<{
|
|
|
4108
4278
|
export declare const documentsGetDocumentSasResponse: zod.ZodObject<{
|
|
4109
4279
|
uri: zod.ZodURL;
|
|
4110
4280
|
}, zod.core.$strip>;
|
|
4281
|
+
/**
|
|
4282
|
+
* @summary Lists all managed secrets — names and audit metadata only, never values.
|
|
4283
|
+
*/
|
|
4284
|
+
export declare const managedSecretsGetManagedSecretsResponseIdRegExp: RegExp;
|
|
4285
|
+
export declare const managedSecretsGetManagedSecretsResponseItem: zod.ZodObject<{
|
|
4286
|
+
createdAt: zod.ZodISODateTime;
|
|
4287
|
+
createdByUserId: zod.ZodString;
|
|
4288
|
+
id: zod.ZodString;
|
|
4289
|
+
modifiedAt: zod.ZodISODateTime;
|
|
4290
|
+
modifiedByUserId: zod.ZodString;
|
|
4291
|
+
name: zod.ZodString;
|
|
4292
|
+
}, zod.core.$strip>;
|
|
4293
|
+
export declare const managedSecretsGetManagedSecretsResponse: zod.ZodArray<zod.ZodObject<{
|
|
4294
|
+
createdAt: zod.ZodISODateTime;
|
|
4295
|
+
createdByUserId: zod.ZodString;
|
|
4296
|
+
id: zod.ZodString;
|
|
4297
|
+
modifiedAt: zod.ZodISODateTime;
|
|
4298
|
+
modifiedByUserId: zod.ZodString;
|
|
4299
|
+
name: zod.ZodString;
|
|
4300
|
+
}, zod.core.$strip>>;
|
|
4301
|
+
/**
|
|
4302
|
+
* @summary Creates a named secret: writes the value to Key Vault and stores only
|
|
4303
|
+
the vault reference.
|
|
4304
|
+
*/
|
|
4305
|
+
export declare const managedSecretsCreateManagedSecretBody: zod.ZodObject<{
|
|
4306
|
+
name: zod.ZodString;
|
|
4307
|
+
value: zod.ZodString;
|
|
4308
|
+
}, zod.core.$strict>;
|
|
4309
|
+
/**
|
|
4310
|
+
* @summary Deletes a secret: removes the Key Vault secret and hard-deletes the row.
|
|
4311
|
+
*/
|
|
4312
|
+
export declare const managedSecretsDeleteManagedSecretParams: zod.ZodObject<{
|
|
4313
|
+
name: zod.ZodString;
|
|
4314
|
+
}, zod.core.$strict>;
|
|
4315
|
+
/**
|
|
4316
|
+
* @summary Overwrites (rotates) a secret's value — a new Key Vault version under
|
|
4317
|
+
the same vault key. The value is write-only; nothing is returned but
|
|
4318
|
+
audit metadata.
|
|
4319
|
+
*/
|
|
4320
|
+
export declare const managedSecretsOverwriteManagedSecretValueParams: zod.ZodObject<{
|
|
4321
|
+
name: zod.ZodString;
|
|
4322
|
+
}, zod.core.$strict>;
|
|
4323
|
+
export declare const managedSecretsOverwriteManagedSecretValueBody: zod.ZodObject<{
|
|
4324
|
+
value: zod.ZodString;
|
|
4325
|
+
}, zod.core.$strict>;
|
|
4326
|
+
export declare const managedSecretsOverwriteManagedSecretValueResponseIdRegExp: RegExp;
|
|
4327
|
+
export declare const managedSecretsOverwriteManagedSecretValueResponse: zod.ZodObject<{
|
|
4328
|
+
createdAt: zod.ZodISODateTime;
|
|
4329
|
+
createdByUserId: zod.ZodString;
|
|
4330
|
+
id: zod.ZodString;
|
|
4331
|
+
modifiedAt: zod.ZodISODateTime;
|
|
4332
|
+
modifiedByUserId: zod.ZodString;
|
|
4333
|
+
name: zod.ZodString;
|
|
4334
|
+
}, zod.core.$strip>;
|
|
4111
4335
|
export declare const messageThreadsGetWorkspaceExecutionsPathWorkSpaceIdRegExp: RegExp;
|
|
4112
4336
|
export declare const messageThreadsGetWorkspaceExecutionsParams: zod.ZodObject<{
|
|
4113
4337
|
workSpaceId: zod.ZodString;
|