@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/index.browser.mjs
CHANGED
|
@@ -10617,11 +10617,11 @@ const ConnectionSelector = z.object({
|
|
|
10617
10617
|
const ConnectionApiResponse = BaseConnection.extend({
|
|
10618
10618
|
user: BaseCustomer.optional(),
|
|
10619
10619
|
integration: BaseIntegration.optional(),
|
|
10620
|
+
connectorParameters: z.unknown().optional(),
|
|
10621
|
+
input: z.unknown().optional(),
|
|
10620
10622
|
});
|
|
10621
10623
|
const ConnectionApiResponseWithSecrets = ConnectionApiResponse.extend({
|
|
10622
10624
|
credentials: z.unknown().optional(),
|
|
10623
|
-
input: z.unknown().optional(),
|
|
10624
|
-
connectorParameters: z.unknown().optional(),
|
|
10625
10625
|
});
|
|
10626
10626
|
const ConnectionMessagePayload = z.discriminatedUnion('type', [
|
|
10627
10627
|
z.object({
|
|
@@ -16164,6 +16164,8 @@ const membraneInstanceInfraFields = {
|
|
|
16164
16164
|
helmValuesPath: z.url().optional(),
|
|
16165
16165
|
awsAccountName: z.string().optional(),
|
|
16166
16166
|
awsSsoUrl: z.url().optional(),
|
|
16167
|
+
sentryConsoleProjectId: z.string().optional(),
|
|
16168
|
+
sentryApiProjectId: z.string().optional(),
|
|
16167
16169
|
};
|
|
16168
16170
|
const MembraneInstanceAdmin = MembraneInstance.extend({
|
|
16169
16171
|
...membraneInstanceInfraFields,
|
|
@@ -16190,6 +16192,8 @@ const UpdateMembraneInstanceRequest = z
|
|
|
16190
16192
|
helmValuesPath: z.url().nullable().optional(),
|
|
16191
16193
|
awsAccountName: z.string().nullable().optional(),
|
|
16192
16194
|
awsSsoUrl: z.url().nullable().optional(),
|
|
16195
|
+
sentryConsoleProjectId: z.string().nullable().optional(),
|
|
16196
|
+
sentryApiProjectId: z.string().nullable().optional(),
|
|
16193
16197
|
})
|
|
16194
16198
|
.strict();
|
|
16195
16199
|
const ListMembraneInstancesQuery = PaginationQuery.extend({
|