@membranehq/sdk 0.7.0 → 0.7.1

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.
@@ -8977,7 +8977,6 @@ const BaseFlowInstance = BaseMembraneInterface.extend({
8977
8977
  createdAt: z.string(),
8978
8978
  updatedAt: z.string(),
8979
8979
  state: z.nativeEnum(WorkspaceElementState).optional(),
8980
- outdated: z.boolean().optional(),
8981
8980
  customized: z
8982
8981
  .object({
8983
8982
  name: z.boolean().optional(),
@@ -9076,7 +9075,6 @@ const BaseActionInstance = BaseMembraneInterface.extend({
9076
9075
  inputSchema: z.any().optional(),
9077
9076
  config: z.any().optional(),
9078
9077
  outputSchema: z.any().optional(),
9079
- isOutdated: z.boolean().optional(),
9080
9078
  });
9081
9079
 
9082
9080
  const BaseFieldMappingInstance = BaseMembraneInterface.extend({
@@ -9604,7 +9602,13 @@ const RunFlowOptions = z.object({
9604
9602
  });
9605
9603
  const FlowApiResponse = BaseFlow.extend({
9606
9604
  integration: BaseIntegration.optional(),
9607
- appliedToIntegrations: AppliedToIntegrations(BaseFlow).optional(),
9605
+ appliedToIntegrations: AppliedToIntegrations(z.object({
9606
+ id: z.string(),
9607
+ integrationId: z.string().optional(),
9608
+ customized: z.boolean().optional(),
9609
+ universalFlowId: z.string().optional(),
9610
+ })).optional(),
9611
+ dependencies: z.array(z.any()).optional(),
9608
9612
  });
9609
9613
  const FlowInstanceApiResponse = BaseFlowInstance.extend({
9610
9614
  user: z.lazy(() => z.any()).optional(),