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