@membranehq/sdk 0.15.6 → 0.17.0

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/bundle.d.ts CHANGED
@@ -504,6 +504,11 @@ declare const ConnectUIOptions: z.ZodObject<{
504
504
  connectionParameters: z.ZodOptional<z.ZodAny>;
505
505
  allowMultipleConnections: z.ZodOptional<z.ZodBoolean>;
506
506
  customState: z.ZodOptional<z.ZodString>;
507
+ theme: z.ZodOptional<z.ZodEnum<{
508
+ light: "light";
509
+ dark: "dark";
510
+ auto: "auto";
511
+ }>>;
507
512
  }, z.core.$strip>;
508
513
  type ConnectUIOptions = z.infer<typeof ConnectUIOptions>;
509
514
  type ConnectOptions = ConnectPayload & {
@@ -6528,6 +6533,7 @@ declare class ExternalEventSubscriptionAccessor {
6528
6533
  subscribe(): Promise<void>;
6529
6534
  unsubscribe(): Promise<void>;
6530
6535
  resubscribe(): Promise<void>;
6536
+ refreshWebhook(): Promise<void>;
6531
6537
  pullEvents(): Promise<void>;
6532
6538
  private getPath;
6533
6539
  }