@appconda/sdk 1.0.669 → 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 +15 -0
- package/dist/modules/emploid/schema.js +16 -1
- package/dist/modules/emploid/service.d.ts +3 -1
- package/dist/modules/emploid/service.js +7 -1
- package/package.json +1 -1
- package/src/modules/emploid/schema.ts +17 -0
- package/src/modules/emploid/service.ts +9 -1
|
@@ -1947,6 +1947,21 @@ 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>;
|
|
1959
|
+
export declare const ImportWorkerNotebookSourcesSchema: z.ZodObject<{
|
|
1960
|
+
tenantId: z.ZodString;
|
|
1961
|
+
workerId: z.ZodString;
|
|
1962
|
+
notebookId: z.ZodString;
|
|
1963
|
+
urls: z.ZodUnion<readonly [z.ZodArray<z.ZodString>, z.ZodString]>;
|
|
1964
|
+
}, z.core.$strip>;
|
|
1950
1965
|
export declare const UpdateWorkerNotebookSourceSchema: z.ZodObject<{
|
|
1951
1966
|
tenantId: z.ZodString;
|
|
1952
1967
|
workerId: z.ZodString;
|