@appconda/sdk 1.0.661 → 1.0.665
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 +6 -0
- package/dist/modules/emploid/schema.js +7 -1
- package/dist/modules/emploid/service.d.ts +25 -2
- package/dist/modules/emploid/service.js +20 -1
- package/dist/modules/emploid/types.d.ts +10 -0
- package/dist/modules/emploid/types.js +1 -1
- package/package.json +1 -1
- package/src/modules/emploid/schema.ts +7 -0
- package/src/modules/emploid/service.ts +29 -2
- package/src/modules/emploid/types.ts +11 -0
|
@@ -370,6 +370,11 @@ export declare const ReadDriveRootFileContentSchema: z.ZodObject<{
|
|
|
370
370
|
rootId: z.ZodString;
|
|
371
371
|
itemId: z.ZodString;
|
|
372
372
|
}, z.core.$strip>;
|
|
373
|
+
export declare const ReadDriveRootFileTextSchema: z.ZodObject<{
|
|
374
|
+
tenantId: z.ZodString;
|
|
375
|
+
rootId: z.ZodString;
|
|
376
|
+
itemId: z.ZodString;
|
|
377
|
+
}, z.core.$strip>;
|
|
373
378
|
export declare const ResolveDriveRootDownloadSchema: z.ZodObject<{
|
|
374
379
|
tenantId: z.ZodString;
|
|
375
380
|
rootId: z.ZodString;
|
|
@@ -511,6 +516,7 @@ export declare const UpdateWorkerSchema: z.ZodObject<{
|
|
|
511
516
|
description: z.ZodOptional<z.ZodString>;
|
|
512
517
|
emploidId: z.ZodOptional<z.ZodString>;
|
|
513
518
|
avatar: z.ZodOptional<z.ZodString>;
|
|
519
|
+
modelSettings: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
514
520
|
}, z.core.$strip>;
|
|
515
521
|
export declare const DeleteWorkerSchema: z.ZodObject<{
|
|
516
522
|
workerId: z.ZodString;
|