@appconda/sdk 1.0.668 → 1.0.670
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,12 @@ 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 ImportWorkerNotebookSourcesSchema: z.ZodObject<{
|
|
1951
|
+
tenantId: z.ZodString;
|
|
1952
|
+
workerId: z.ZodString;
|
|
1953
|
+
notebookId: z.ZodString;
|
|
1954
|
+
urls: z.ZodUnion<readonly [z.ZodArray<z.ZodString>, z.ZodString]>;
|
|
1955
|
+
}, z.core.$strip>;
|
|
1950
1956
|
export declare const UpdateWorkerNotebookSourceSchema: z.ZodObject<{
|
|
1951
1957
|
tenantId: z.ZodString;
|
|
1952
1958
|
workerId: z.ZodString;
|
|
@@ -1994,6 +2000,15 @@ export declare const CreateWorkerNotebookStudioOutputSchema: z.ZodObject<{
|
|
|
1994
2000
|
content: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1995
2001
|
metadata: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
1996
2002
|
}, z.core.$strip>;
|
|
2003
|
+
export declare const UpdateWorkerNotebookStudioOutputSchema: z.ZodObject<{
|
|
2004
|
+
tenantId: z.ZodString;
|
|
2005
|
+
workerId: z.ZodString;
|
|
2006
|
+
notebookId: z.ZodString;
|
|
2007
|
+
outputId: z.ZodString;
|
|
2008
|
+
title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2009
|
+
content: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2010
|
+
metadata: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
2011
|
+
}, z.core.$strip>;
|
|
1997
2012
|
export declare const DeleteWorkerNotebookStudioOutputSchema: z.ZodObject<{
|
|
1998
2013
|
tenantId: z.ZodString;
|
|
1999
2014
|
workerId: z.ZodString;
|