@appconda/sdk 1.0.632 → 1.0.636
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/modules/emploid/schema.d.ts +140 -2
- package/dist/modules/emploid/schema.js +112 -4
- package/dist/modules/emploid/service.d.ts +38 -2
- package/dist/modules/emploid/service.js +64 -1
- package/dist/modules/emploid/types.d.ts +78 -2
- package/dist/modules/emploid/types.js +1 -1
- package/package.json +1 -1
- package/src/modules/emploid/schema.ts +130 -4
- package/src/modules/emploid/service.ts +120 -2
- package/src/modules/emploid/types.ts +103 -2
- package/dist/modules/rbac/index.d.ts +0 -3
- package/dist/modules/rbac/index.js +0 -4
- package/dist/modules/rbac/schema.d.ts +0 -64
- package/dist/modules/rbac/schema.js +0 -55
- package/dist/modules/rbac/service.d.ts +0 -45
- package/dist/modules/rbac/service.js +0 -67
- package/dist/modules/rbac/types.d.ts +0 -55
- package/dist/modules/rbac/types.js +0 -2
|
@@ -267,10 +267,113 @@ export declare const DeleteDriveItemSchema: z.ZodObject<{
|
|
|
267
267
|
export declare const ResolveDriveDownloadSchema: z.ZodObject<{
|
|
268
268
|
itemId: z.ZodString;
|
|
269
269
|
}, z.core.$strip>;
|
|
270
|
+
export declare const ListDriveRootsSchema: z.ZodObject<{
|
|
271
|
+
tenantId: z.ZodString;
|
|
272
|
+
}, z.core.$strip>;
|
|
273
|
+
export declare const EnsureDriveProviderCredentialSchema: z.ZodObject<{
|
|
274
|
+
tenantId: z.ZodString;
|
|
275
|
+
provider: z.ZodEnum<{
|
|
276
|
+
LOCAL: "LOCAL";
|
|
277
|
+
GOOGLE_DRIVE: "GOOGLE_DRIVE";
|
|
278
|
+
DROPBOX: "DROPBOX";
|
|
279
|
+
}>;
|
|
280
|
+
}, z.core.$strip>;
|
|
281
|
+
export declare const ListDriveProviderFoldersSchema: z.ZodObject<{
|
|
282
|
+
tenantId: z.ZodString;
|
|
283
|
+
provider: z.ZodEnum<{
|
|
284
|
+
LOCAL: "LOCAL";
|
|
285
|
+
GOOGLE_DRIVE: "GOOGLE_DRIVE";
|
|
286
|
+
DROPBOX: "DROPBOX";
|
|
287
|
+
}>;
|
|
288
|
+
parentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
289
|
+
credentialId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
290
|
+
}, z.core.$strip>;
|
|
291
|
+
export declare const CreateDriveRootSchema: z.ZodObject<{
|
|
292
|
+
tenantId: z.ZodString;
|
|
293
|
+
provider: z.ZodEnum<{
|
|
294
|
+
LOCAL: "LOCAL";
|
|
295
|
+
GOOGLE_DRIVE: "GOOGLE_DRIVE";
|
|
296
|
+
DROPBOX: "DROPBOX";
|
|
297
|
+
}>;
|
|
298
|
+
name: z.ZodString;
|
|
299
|
+
credentialId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
300
|
+
remoteRootId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
301
|
+
remoteRootPath: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
302
|
+
}, z.core.$strip>;
|
|
303
|
+
export declare const DeleteDriveRootSchema: z.ZodObject<{
|
|
304
|
+
tenantId: z.ZodString;
|
|
305
|
+
rootId: z.ZodString;
|
|
306
|
+
}, z.core.$strip>;
|
|
307
|
+
export declare const ListDriveRootItemsSchema: z.ZodObject<{
|
|
308
|
+
tenantId: z.ZodString;
|
|
309
|
+
rootId: z.ZodString;
|
|
310
|
+
folderId: z.ZodOptional<z.ZodString>;
|
|
311
|
+
}, z.core.$strip>;
|
|
312
|
+
export declare const ListDriveRootTreeSchema: z.ZodObject<{
|
|
313
|
+
tenantId: z.ZodString;
|
|
314
|
+
rootId: z.ZodString;
|
|
315
|
+
}, z.core.$strip>;
|
|
316
|
+
export declare const SearchDriveRootItemsSchema: z.ZodObject<{
|
|
317
|
+
tenantId: z.ZodString;
|
|
318
|
+
rootId: z.ZodString;
|
|
319
|
+
query: z.ZodString;
|
|
320
|
+
}, z.core.$strip>;
|
|
321
|
+
export declare const CreateDriveRootFolderSchema: z.ZodObject<{
|
|
322
|
+
tenantId: z.ZodString;
|
|
323
|
+
rootId: z.ZodString;
|
|
324
|
+
name: z.ZodString;
|
|
325
|
+
parentId: z.ZodOptional<z.ZodString>;
|
|
326
|
+
}, z.core.$strip>;
|
|
327
|
+
export declare const UploadDriveRootFilesSchema: z.ZodObject<{
|
|
328
|
+
tenantId: z.ZodString;
|
|
329
|
+
rootId: z.ZodString;
|
|
330
|
+
parentId: z.ZodOptional<z.ZodString>;
|
|
331
|
+
files: z.ZodArray<z.ZodObject<{
|
|
332
|
+
name: z.ZodString;
|
|
333
|
+
base64: z.ZodString;
|
|
334
|
+
mimeType: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
335
|
+
}, z.core.$strip>>;
|
|
336
|
+
}, z.core.$strip>;
|
|
337
|
+
export declare const RenameDriveRootItemSchema: z.ZodObject<{
|
|
338
|
+
tenantId: z.ZodString;
|
|
339
|
+
rootId: z.ZodString;
|
|
340
|
+
itemId: z.ZodString;
|
|
341
|
+
name: z.ZodString;
|
|
342
|
+
}, z.core.$strip>;
|
|
343
|
+
export declare const MoveDriveRootItemSchema: z.ZodObject<{
|
|
344
|
+
tenantId: z.ZodString;
|
|
345
|
+
rootId: z.ZodString;
|
|
346
|
+
itemId: z.ZodString;
|
|
347
|
+
targetParentId: z.ZodOptional<z.ZodString>;
|
|
348
|
+
}, z.core.$strip>;
|
|
349
|
+
export declare const GetDriveRootDeleteImpactSchema: z.ZodObject<{
|
|
350
|
+
tenantId: z.ZodString;
|
|
351
|
+
rootId: z.ZodString;
|
|
352
|
+
itemId: z.ZodString;
|
|
353
|
+
}, z.core.$strip>;
|
|
354
|
+
export declare const DeleteDriveRootItemSchema: z.ZodObject<{
|
|
355
|
+
tenantId: z.ZodString;
|
|
356
|
+
rootId: z.ZodString;
|
|
357
|
+
itemId: z.ZodString;
|
|
358
|
+
}, z.core.$strip>;
|
|
359
|
+
export declare const ReadDriveRootFileContentSchema: z.ZodObject<{
|
|
360
|
+
tenantId: z.ZodString;
|
|
361
|
+
rootId: z.ZodString;
|
|
362
|
+
itemId: z.ZodString;
|
|
363
|
+
}, z.core.$strip>;
|
|
364
|
+
export declare const ResolveDriveRootDownloadSchema: z.ZodObject<{
|
|
365
|
+
tenantId: z.ZodString;
|
|
366
|
+
rootId: z.ZodString;
|
|
367
|
+
itemId: z.ZodString;
|
|
368
|
+
}, z.core.$strip>;
|
|
270
369
|
export declare const CreateExtensionSchema: z.ZodObject<{
|
|
271
370
|
extensionId: z.ZodString;
|
|
272
371
|
tenantId: z.ZodString;
|
|
273
|
-
config: z.ZodOptional<z.
|
|
372
|
+
config: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
373
|
+
}, z.core.$strip>;
|
|
374
|
+
export declare const UpdateExtensionSchema: z.ZodObject<{
|
|
375
|
+
id: z.ZodString;
|
|
376
|
+
config: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
274
377
|
}, z.core.$strip>;
|
|
275
378
|
export declare const ListExtensionsSchema: z.ZodObject<{
|
|
276
379
|
tenantId: z.ZodString;
|
|
@@ -674,6 +777,7 @@ export declare const CreateDataModelSchema: z.ZodObject<{
|
|
|
674
777
|
tenantId: z.ZodString;
|
|
675
778
|
displayName: z.ZodString;
|
|
676
779
|
name: z.ZodString;
|
|
780
|
+
description: z.ZodOptional<z.ZodString>;
|
|
677
781
|
}, z.core.$strip>;
|
|
678
782
|
/**
|
|
679
783
|
* DataModel güncelleme (partial)
|
|
@@ -681,7 +785,11 @@ export declare const CreateDataModelSchema: z.ZodObject<{
|
|
|
681
785
|
export declare const UpdateDataModelSchema: z.ZodObject<{
|
|
682
786
|
tenantId: z.ZodString;
|
|
683
787
|
dataModelId: z.ZodString;
|
|
684
|
-
|
|
788
|
+
data: z.ZodObject<{
|
|
789
|
+
name: z.ZodOptional<z.ZodString>;
|
|
790
|
+
displayName: z.ZodOptional<z.ZodString>;
|
|
791
|
+
description: z.ZodOptional<z.ZodString>;
|
|
792
|
+
}, z.core.$loose>;
|
|
685
793
|
}, z.core.$strip>;
|
|
686
794
|
/**
|
|
687
795
|
* DataModel soft delete (archive)
|
|
@@ -1233,6 +1341,21 @@ export declare const CreateCollectionAutomationRuleSchema: z.ZodObject<{
|
|
|
1233
1341
|
unlinked: "unlinked";
|
|
1234
1342
|
schedule: "schedule";
|
|
1235
1343
|
}>;
|
|
1344
|
+
triggerConfig: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
1345
|
+
updatedFieldId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1346
|
+
}, z.core.$strip>>>;
|
|
1347
|
+
conditions: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1348
|
+
id: z.ZodString;
|
|
1349
|
+
fieldId: z.ZodString;
|
|
1350
|
+
operator: z.ZodEnum<{
|
|
1351
|
+
contains: "contains";
|
|
1352
|
+
is: "is";
|
|
1353
|
+
"is-not": "is-not";
|
|
1354
|
+
"is-empty": "is-empty";
|
|
1355
|
+
"is-not-empty": "is-not-empty";
|
|
1356
|
+
}>;
|
|
1357
|
+
value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>, z.ZodBoolean, z.ZodNull]>>;
|
|
1358
|
+
}, z.core.$strip>>>;
|
|
1236
1359
|
actions: z.ZodArray<z.ZodObject<{}, z.core.$catchall<z.ZodAny>>>;
|
|
1237
1360
|
}, z.core.$strip>;
|
|
1238
1361
|
export declare const UpdateCollectionAutomationRuleSchema: z.ZodObject<{
|
|
@@ -1249,6 +1372,21 @@ export declare const UpdateCollectionAutomationRuleSchema: z.ZodObject<{
|
|
|
1249
1372
|
unlinked: "unlinked";
|
|
1250
1373
|
schedule: "schedule";
|
|
1251
1374
|
}>>;
|
|
1375
|
+
triggerConfig: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
1376
|
+
updatedFieldId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1377
|
+
}, z.core.$strip>>>;
|
|
1378
|
+
conditions: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1379
|
+
id: z.ZodString;
|
|
1380
|
+
fieldId: z.ZodString;
|
|
1381
|
+
operator: z.ZodEnum<{
|
|
1382
|
+
contains: "contains";
|
|
1383
|
+
is: "is";
|
|
1384
|
+
"is-not": "is-not";
|
|
1385
|
+
"is-empty": "is-empty";
|
|
1386
|
+
"is-not-empty": "is-not-empty";
|
|
1387
|
+
}>;
|
|
1388
|
+
value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>, z.ZodBoolean, z.ZodNull]>>;
|
|
1389
|
+
}, z.core.$strip>>>;
|
|
1252
1390
|
actions: z.ZodOptional<z.ZodArray<z.ZodObject<{}, z.core.$catchall<z.ZodAny>>>>;
|
|
1253
1391
|
}, z.core.$strip>;
|
|
1254
1392
|
export declare const DeleteCollectionAutomationRuleSchema: z.ZodObject<{
|