@appconda/sdk 1.0.668 → 1.0.669
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
|
@@ -1994,6 +1994,15 @@ export declare const CreateWorkerNotebookStudioOutputSchema: z.ZodObject<{
|
|
|
1994
1994
|
content: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1995
1995
|
metadata: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
1996
1996
|
}, z.core.$strip>;
|
|
1997
|
+
export declare const UpdateWorkerNotebookStudioOutputSchema: z.ZodObject<{
|
|
1998
|
+
tenantId: z.ZodString;
|
|
1999
|
+
workerId: z.ZodString;
|
|
2000
|
+
notebookId: z.ZodString;
|
|
2001
|
+
outputId: z.ZodString;
|
|
2002
|
+
title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2003
|
+
content: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2004
|
+
metadata: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
2005
|
+
}, z.core.$strip>;
|
|
1997
2006
|
export declare const DeleteWorkerNotebookStudioOutputSchema: z.ZodObject<{
|
|
1998
2007
|
tenantId: z.ZodString;
|
|
1999
2008
|
workerId: z.ZodString;
|