@appconda/sdk 1.0.665 → 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 +9 -0
- package/dist/modules/emploid/schema.js +10 -1
- package/dist/modules/emploid/service.d.ts +14 -0
- package/dist/modules/emploid/service.js +13 -1
- package/dist/modules/emploid/types.d.ts +49 -0
- package/dist/modules/emploid/types.js +1 -1
- package/package.json +1 -1
- package/src/modules/emploid/schema.ts +11 -0
- package/src/modules/emploid/service.ts +17 -0
- package/src/modules/emploid/types.ts +51 -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;
|