@appconda/sdk 1.0.630 → 1.0.634
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 +5 -1
- package/dist/modules/emploid/schema.js +6 -2
- 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 +6 -1
- package/src/modules/emploid/service.ts +5 -1
|
@@ -270,7 +270,11 @@ export declare const ResolveDriveDownloadSchema: z.ZodObject<{
|
|
|
270
270
|
export declare const CreateExtensionSchema: z.ZodObject<{
|
|
271
271
|
extensionId: z.ZodString;
|
|
272
272
|
tenantId: z.ZodString;
|
|
273
|
-
config: z.ZodOptional<z.
|
|
273
|
+
config: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
274
|
+
}, z.core.$strip>;
|
|
275
|
+
export declare const UpdateExtensionSchema: z.ZodObject<{
|
|
276
|
+
id: z.ZodString;
|
|
277
|
+
config: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
274
278
|
}, z.core.$strip>;
|
|
275
279
|
export declare const ListExtensionsSchema: z.ZodObject<{
|
|
276
280
|
tenantId: z.ZodString;
|