@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.
- package/dist/bundle.d.ts +10 -638
- package/dist/dts/orgs/types.d.ts +1 -0
- package/dist/dts/workspace-elements/api/action-instances-api.d.ts +0 -3
- package/dist/dts/workspace-elements/api/flow-runs-api.d.ts +0 -12
- package/dist/dts/workspace-elements/api/flows-api.d.ts +10 -623
- package/dist/dts/workspace-elements/base/action-instances/types.d.ts +0 -3
- package/dist/dts/workspace-elements/base/flow-instances/types.d.ts +0 -3
- package/dist/index.d.ts +11 -644
- package/dist/index.js +7 -3
- package/dist/index.js.map +1 -1
- package/dist/index.module.d.mts +11 -644
- package/dist/index.module.mjs +7 -3
- package/dist/index.module.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.module.mjs
CHANGED
|
@@ -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(
|
|
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(),
|