@membranehq/sdk 0.11.4-beta.0 → 0.11.4

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 CHANGED
@@ -4494,6 +4494,7 @@ declare const UpdateCustomerRequest: z.ZodObject<{
4494
4494
  type UpdateCustomerRequest = z.infer<typeof UpdateCustomerRequest>;
4495
4495
  declare const FindCustomersQuery: z.ZodObject<{
4496
4496
  isTest: z.ZodOptional<z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>>;
4497
+ isActive: z.ZodOptional<z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>>;
4497
4498
  limit: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
4498
4499
  cursor: z.ZodOptional<z.ZodString>;
4499
4500
  search: z.ZodOptional<z.ZodString>;
@@ -5227,6 +5228,7 @@ declare const FindDataLinkTableInstancesQuery: z.ZodObject<{
5227
5228
  dataLinkTableId: z.ZodOptional<z.ZodString>;
5228
5229
  connectionId: z.ZodOptional<z.ZodString>;
5229
5230
  integrationId: z.ZodOptional<z.ZodString>;
5231
+ instanceKey: z.ZodOptional<z.ZodString>;
5230
5232
  }, z.core.$strip>;
5231
5233
  type FindDataLinkTableInstancesQuery = z.infer<typeof FindDataLinkTableInstancesQuery>;
5232
5234
  interface DataLinkTableInstanceSelector extends ConnectionSelector, ElementInstanceSelector {