@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.
@@ -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.ZodObject<{}, z.core.$strip>>;
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;