@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.
@@ -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({