@appconda/sdk 1.0.662 → 1.0.667
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 +15 -0
- package/dist/modules/emploid/schema.js +16 -1
- package/dist/modules/emploid/service.d.ts +39 -2
- package/dist/modules/emploid/service.js +32 -1
- package/dist/modules/emploid/types.d.ts +59 -0
- package/dist/modules/emploid/types.js +1 -1
- package/package.json +1 -1
- package/src/modules/emploid/schema.ts +18 -0
- package/src/modules/emploid/service.ts +46 -2
- package/src/modules/emploid/types.ts +62 -0
|
@@ -109,6 +109,15 @@ export declare const UpdateScopeSchema: z.ZodObject<{
|
|
|
109
109
|
export declare const DeleteScopeSchema: z.ZodObject<{
|
|
110
110
|
scopeId: z.ZodString;
|
|
111
111
|
}, z.core.$strip>;
|
|
112
|
+
export declare const ExportKnowledgeTreeSchema: z.ZodObject<{
|
|
113
|
+
tenantId: z.ZodString;
|
|
114
|
+
workerId: z.ZodString;
|
|
115
|
+
}, z.core.$strip>;
|
|
116
|
+
export declare const ImportKnowledgeTreeSchema: z.ZodObject<{
|
|
117
|
+
tenantId: z.ZodString;
|
|
118
|
+
workerId: z.ZodString;
|
|
119
|
+
importData: z.ZodAny;
|
|
120
|
+
}, z.core.$strip>;
|
|
112
121
|
export declare const CreateJobDefinitionSchema: z.ZodObject<{
|
|
113
122
|
tenantId: z.ZodString;
|
|
114
123
|
workerId: z.ZodString;
|
|
@@ -370,6 +379,11 @@ export declare const ReadDriveRootFileContentSchema: z.ZodObject<{
|
|
|
370
379
|
rootId: z.ZodString;
|
|
371
380
|
itemId: z.ZodString;
|
|
372
381
|
}, z.core.$strip>;
|
|
382
|
+
export declare const ReadDriveRootFileTextSchema: z.ZodObject<{
|
|
383
|
+
tenantId: z.ZodString;
|
|
384
|
+
rootId: z.ZodString;
|
|
385
|
+
itemId: z.ZodString;
|
|
386
|
+
}, z.core.$strip>;
|
|
373
387
|
export declare const ResolveDriveRootDownloadSchema: z.ZodObject<{
|
|
374
388
|
tenantId: z.ZodString;
|
|
375
389
|
rootId: z.ZodString;
|
|
@@ -511,6 +525,7 @@ export declare const UpdateWorkerSchema: z.ZodObject<{
|
|
|
511
525
|
description: z.ZodOptional<z.ZodString>;
|
|
512
526
|
emploidId: z.ZodOptional<z.ZodString>;
|
|
513
527
|
avatar: z.ZodOptional<z.ZodString>;
|
|
528
|
+
modelSettings: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
514
529
|
}, z.core.$strip>;
|
|
515
530
|
export declare const DeleteWorkerSchema: z.ZodObject<{
|
|
516
531
|
workerId: z.ZodString;
|