@membranehq/sdk 0.22.1 → 0.22.3

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
@@ -6166,6 +6166,7 @@ declare const ExternalEventSubscriptionApiResponse: z.ZodObject<{
6166
6166
  requiresFullSync: z.ZodOptional<z.ZodBoolean>;
6167
6167
  createdAt: z.ZodOptional<z.ZodString>;
6168
6168
  archivedAt: z.ZodOptional<z.ZodString>;
6169
+ isDeactivated: z.ZodOptional<z.ZodBoolean>;
6169
6170
  stateData: z.ZodOptional<z.ZodAny>;
6170
6171
  nextPullEventsTimestamp: z.ZodOptional<z.ZodNumber>;
6171
6172
  pullUpdatesIntervalSeconds: z.ZodOptional<z.ZodNumber>;
package/dist/bundle.js CHANGED
@@ -21891,6 +21891,7 @@
21891
21891
  const iframe = document.createElement('iframe');
21892
21892
  iframe.id = POPUP_ELEMENT_ID;
21893
21893
  iframe.src = uri;
21894
+ iframe.setAttribute('allow', 'clipboard-write');
21894
21895
  document.body.classList.add(BODY_CLASS);
21895
21896
  showIframeLoader();
21896
21897
  appendToContainer(iframe);
@@ -21917,6 +21918,7 @@
21917
21918
  const iframe = document.createElement('iframe');
21918
21919
  iframe.id = POPUP_ELEMENT_ID;
21919
21920
  iframe.name = iframeName;
21921
+ iframe.setAttribute('allow', 'clipboard-write');
21920
21922
  const form = document.createElement('form');
21921
21923
  form.method = 'POST';
21922
21924
  form.action = url;