@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 +1 -0
- package/dist/bundle.js +2 -0
- package/dist/bundle.js.map +1 -1
- package/dist/dts/agent/session.d.ts +9 -5
- package/dist/dts/agent/worker-contracts.d.ts +4 -0
- package/dist/dts/index.browser.d.ts +1 -1
- package/dist/dts/membrane-instances/types.d.ts +19 -0
- package/dist/dts/orgs/types.d.ts +0 -1
- package/dist/dts/workspace-elements/api/external-event-log-records-api.d.ts +1 -0
- package/dist/dts/workspace-elements/api/external-event-pulls-api.d.ts +1 -0
- package/dist/dts/workspace-elements/api/external-event-subscriptions-api.d.ts +1 -0
- package/dist/dts/workspace-elements/api/incoming-webhooks-api.d.ts +1 -0
- package/dist/dts/workspace-elements/base/external-event-subscriptions/index.d.ts +1 -0
- package/dist/dts/workspaces/types.d.ts +0 -4
- package/dist/index.browser.d.mts +26 -18
- package/dist/index.browser.d.ts +26 -18
- package/dist/index.browser.js +15 -11
- package/dist/index.browser.js.map +1 -1
- package/dist/index.browser.mjs +13 -9
- package/dist/index.browser.mjs.map +1 -1
- package/dist/index.node.d.mts +26 -18
- package/dist/index.node.d.ts +26 -18
- package/dist/index.node.js +15 -11
- package/dist/index.node.js.map +1 -1
- package/dist/index.node.mjs +13 -9
- package/dist/index.node.mjs.map +1 -1
- package/package.json +1 -1
- package/dist/dts/clusters/types.d.ts +0 -19
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;
|