@appconda/sdk 1.0.670 → 1.0.671
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 +2 -1
- package/dist/modules/emploid/service.js +4 -1
- package/package.json +1 -1
- package/src/modules/emploid/schema.ts +10 -0
- package/src/modules/emploid/service.ts +5 -1
|
@@ -1947,6 +1947,15 @@ export declare const CreateWorkerNotebookSourceSchema: z.ZodObject<{
|
|
|
1947
1947
|
content: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1948
1948
|
metadata: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
1949
1949
|
}, z.core.$strip>;
|
|
1950
|
+
export declare const CreateWorkerNotebookFileSourceSchema: z.ZodObject<{
|
|
1951
|
+
tenantId: z.ZodString;
|
|
1952
|
+
workerId: z.ZodString;
|
|
1953
|
+
notebookId: z.ZodString;
|
|
1954
|
+
fileName: z.ZodString;
|
|
1955
|
+
fileType: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1956
|
+
fileData: z.ZodString;
|
|
1957
|
+
attachmentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1958
|
+
}, z.core.$strip>;
|
|
1950
1959
|
export declare const ImportWorkerNotebookSourcesSchema: z.ZodObject<{
|
|
1951
1960
|
tenantId: z.ZodString;
|
|
1952
1961
|
workerId: z.ZodString;
|