@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 +6 -0
- package/dist/bundle.js +414 -313
- package/dist/bundle.js.map +1 -1
- package/dist/dts/accessors/external-event-subscriptions-accessors.d.ts +1 -0
- package/dist/dts/api-client.d.ts +1 -1
- package/dist/dts/index.browser.d.ts +1 -0
- package/dist/dts/self-hosting-tokens/index.d.ts +1 -0
- package/dist/dts/self-hosting-tokens/types.d.ts +38 -0
- package/dist/dts/ui.test.d.ts +1 -0
- package/dist/dts/workspace-elements/api/connections-api.d.ts +7 -2
- package/dist/dts/workspace-elements/api/connections-api.test.d.ts +1 -0
- package/dist/dts/workspace-elements/base/connectors/index.d.ts +38 -38
- package/dist/dts/workspace-elements/utils/index.d.ts +1 -0
- package/dist/dts/workspace-elements/utils/zod-schema-utils.d.ts +2 -0
- package/dist/dts/workspace-elements/utils/zod-schema-utils.test.d.ts +1 -0
- package/dist/index.browser.d.mts +87 -41
- package/dist/index.browser.d.ts +87 -41
- package/dist/index.browser.js +153 -39
- package/dist/index.browser.js.map +1 -1
- package/dist/index.browser.mjs +146 -39
- package/dist/index.browser.mjs.map +1 -1
- package/dist/index.node.d.mts +87 -41
- package/dist/index.node.d.ts +87 -41
- package/dist/index.node.js +153 -39
- package/dist/index.node.js.map +1 -1
- package/dist/index.node.mjs +146 -39
- package/dist/index.node.mjs.map +1 -1
- package/package.json +3 -3
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
|
}
|