@membranehq/sdk 0.28.2 → 0.28.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 +6 -0
- package/dist/bundle.js +2 -2
- package/dist/bundle.js.map +1 -1
- package/dist/dts/accessors/connections-accessors.d.ts +2 -0
- package/dist/dts/accessors/integrations-accessors.d.ts +2 -0
- package/dist/dts/api-version.generated.d.ts +1 -1
- package/dist/dts/membrane-instances/types.d.ts +4 -0
- package/dist/dts/workspace-elements/api/connections-api.d.ts +6 -2
- package/dist/index.browser.d.mts +14 -2
- package/dist/index.browser.d.ts +14 -2
- package/dist/index.browser.js +6 -2
- package/dist/index.browser.js.map +1 -1
- package/dist/index.browser.mjs +6 -2
- package/dist/index.browser.mjs.map +1 -1
- package/dist/index.node.d.mts +14 -2
- package/dist/index.node.d.ts +14 -2
- package/dist/index.node.js +6 -2
- package/dist/index.node.js.map +1 -1
- package/dist/index.node.mjs +6 -2
- package/dist/index.node.mjs.map +1 -1
- package/package.json +1 -1
package/dist/bundle.d.ts
CHANGED
|
@@ -534,6 +534,8 @@ declare const ConnectionApiResponse: z.ZodObject<{
|
|
|
534
534
|
parameters: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
535
535
|
}, z.core.$strip>>>;
|
|
536
536
|
}, z.core.$strip>>;
|
|
537
|
+
connectorParameters: z.ZodOptional<z.ZodUnknown>;
|
|
538
|
+
input: z.ZodOptional<z.ZodUnknown>;
|
|
537
539
|
}, z.core.$strip>;
|
|
538
540
|
type ConnectionApiResponse = z.infer<typeof ConnectionApiResponse>;
|
|
539
541
|
declare const ConnectPayload: z.ZodObject<{
|
|
@@ -6746,6 +6748,8 @@ declare class ConnectionAccessor {
|
|
|
6746
6748
|
parameters?: Record<string, any> | undefined;
|
|
6747
6749
|
}> | undefined;
|
|
6748
6750
|
} | undefined;
|
|
6751
|
+
connectorParameters?: unknown;
|
|
6752
|
+
input?: unknown;
|
|
6749
6753
|
} | null>;
|
|
6750
6754
|
openReconnectUI(_options?: OpenConfigurationOptions): Promise<ConnectionApiResponse | null>;
|
|
6751
6755
|
refreshCredentials(): Promise<void>;
|
|
@@ -6984,6 +6988,8 @@ declare class IntegrationAccessor extends ElementAccessor<IntegrationApiResponse
|
|
|
6984
6988
|
parameters?: Record<string, any> | undefined;
|
|
6985
6989
|
}> | undefined;
|
|
6986
6990
|
} | undefined;
|
|
6991
|
+
connectorParameters?: unknown;
|
|
6992
|
+
input?: unknown;
|
|
6987
6993
|
} | null>;
|
|
6988
6994
|
createConnection({ parameters, name, }: {
|
|
6989
6995
|
parameters?: any;
|
package/dist/bundle.js
CHANGED
|
@@ -29682,11 +29682,11 @@
|
|
|
29682
29682
|
const ConnectionApiResponse = BaseConnection.extend({
|
|
29683
29683
|
user: BaseCustomer.optional(),
|
|
29684
29684
|
integration: BaseIntegration.optional(),
|
|
29685
|
+
connectorParameters: unknown().optional(),
|
|
29686
|
+
input: unknown().optional(),
|
|
29685
29687
|
});
|
|
29686
29688
|
ConnectionApiResponse.extend({
|
|
29687
29689
|
credentials: unknown().optional(),
|
|
29688
|
-
input: unknown().optional(),
|
|
29689
|
-
connectorParameters: unknown().optional(),
|
|
29690
29690
|
});
|
|
29691
29691
|
discriminatedUnion('type', [
|
|
29692
29692
|
object({
|