@appconda/sdk 1.0.658 → 1.0.661
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 +4 -1
- package/dist/modules/emploid/schema.js +7 -4
- package/dist/modules/emploid/service.js +2 -2
- package/dist/modules/emploid/types.d.ts +3 -2
- package/dist/modules/emploid/types.js +1 -1
- package/dist/service-client.d.ts +1 -1
- package/dist/service-client.js +2 -2
- package/package.json +1 -1
- package/src/modules/emploid/schema.ts +6 -3
- package/src/modules/emploid/service.ts +1 -1
- package/src/modules/emploid/types.ts +3 -2
- package/src/service-client.ts +2 -2
|
@@ -764,7 +764,8 @@ export declare const CreateTaskTemplateSchema: z.ZodObject<{
|
|
|
764
764
|
task: z.ZodString;
|
|
765
765
|
description: z.ZodOptional<z.ZodString>;
|
|
766
766
|
tenantId: z.ZodString;
|
|
767
|
-
emploidId: z.ZodString
|
|
767
|
+
emploidId: z.ZodOptional<z.ZodString>;
|
|
768
|
+
workerId: z.ZodOptional<z.ZodString>;
|
|
768
769
|
}, z.core.$strip>;
|
|
769
770
|
export declare const UpdateTaskTemplateSchema: z.ZodObject<{
|
|
770
771
|
id: z.ZodString;
|
|
@@ -772,12 +773,14 @@ export declare const UpdateTaskTemplateSchema: z.ZodObject<{
|
|
|
772
773
|
description: z.ZodOptional<z.ZodString>;
|
|
773
774
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
774
775
|
emploidId: z.ZodOptional<z.ZodString>;
|
|
776
|
+
workerId: z.ZodOptional<z.ZodString>;
|
|
775
777
|
}, z.core.$strip>;
|
|
776
778
|
export declare const DeleteTaskTemplateSchema: z.ZodObject<{
|
|
777
779
|
id: z.ZodString;
|
|
778
780
|
}, z.core.$strip>;
|
|
779
781
|
export declare const ListTaskTemplatesSchema: z.ZodObject<{
|
|
780
782
|
emploidId: z.ZodOptional<z.ZodString>;
|
|
783
|
+
workerId: z.ZodOptional<z.ZodString>;
|
|
781
784
|
}, z.core.$strip>;
|
|
782
785
|
/**
|
|
783
786
|
* DataModel oluşturma
|