@membranehq/sdk 0.8.2 → 0.8.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 +162 -40
- package/dist/bundle.js +4 -2
- package/dist/bundle.js.map +1 -1
- package/dist/dts/agent/session.d.ts +41 -0
- package/dist/dts/index.browser.d.ts +2 -0
- package/dist/dts/index.d.ts +2 -0
- package/dist/dts/orgs/types.d.ts +9 -1
- package/dist/dts/workspace-elements/api/action-run-log-records-api.d.ts +3 -1
- package/dist/dts/workspace-elements/api/actions-api.d.ts +48 -28
- package/dist/dts/workspace-elements/api/data-source-instances-api.d.ts +4 -0
- package/dist/dts/workspace-elements/api/data-sources-api.d.ts +32 -6
- package/dist/dts/workspace-elements/api/field-mapping-instances-api.d.ts +8 -0
- package/dist/dts/workspace-elements/api/field-mappings-api.d.ts +32 -6
- package/dist/dts/workspace-elements/api/flows-api.d.ts +48 -17
- package/dist/dts/workspace-elements/api/packages-api.d.ts +50 -5
- package/dist/dts/workspace-elements/base/action-instances/types.d.ts +3 -1
- package/dist/dts/workspace-elements/base/actions/index.d.ts +9 -3
- package/dist/dts/workspace-elements/base/data-sources/index.d.ts +8 -0
- package/dist/dts/workspace-elements/base/field-mappings/index.d.ts +8 -0
- package/dist/dts/workspace-elements/base/flows/index.d.ts +10 -2
- package/dist/dts/workspace-elements/base/packages/index.d.ts +2 -0
- package/dist/dts/workspace-elements/types.d.ts +16 -6
- package/dist/dts/workspace-elements-catalog/index.d.ts +1 -0
- package/dist/index.browser.d.mts +309 -55
- package/dist/index.browser.d.ts +309 -55
- package/dist/index.browser.js +82 -29
- package/dist/index.browser.js.map +1 -1
- package/dist/index.browser.mjs +76 -30
- package/dist/index.browser.mjs.map +1 -1
- package/dist/index.node.d.mts +309 -55
- package/dist/index.node.d.ts +309 -55
- package/dist/index.node.js +82 -29
- package/dist/index.node.js.map +1 -1
- package/dist/index.node.mjs +76 -30
- package/dist/index.node.mjs.map +1 -1
- package/package.json +2 -1
package/dist/index.node.js
CHANGED
|
@@ -3513,6 +3513,8 @@ const BaseMembraneInterfaceReadOnlyProperties = zod.z.object({
|
|
|
3513
3513
|
});
|
|
3514
3514
|
const BaseMembraneInterface = BaseWorkspaceElement.merge(BaseMembraneInterfaceEditableProperties).merge(BaseMembraneInterfaceReadOnlyProperties);
|
|
3515
3515
|
const BaseIntegrationLevelMembraneInterfaceEditableProperties = BaseMembraneInterfaceEditableProperties.extend({
|
|
3516
|
+
integrationUuid: zod.z.string().optional(),
|
|
3517
|
+
parentUuid: zod.z.string().optional(),
|
|
3516
3518
|
integrationId: zod.z.string().optional(),
|
|
3517
3519
|
parentId: zod.z.string().optional(),
|
|
3518
3520
|
});
|
|
@@ -3520,13 +3522,13 @@ const BaseIntegrationLevelMembraneInterfaceReadOnlyProperties = BaseMembraneInte
|
|
|
3520
3522
|
isCustomized: zod.z.boolean().optional(),
|
|
3521
3523
|
});
|
|
3522
3524
|
const IntegrationLevelMembraneInterfaceSelectorQuery = zod.z.object({
|
|
3525
|
+
layer: zod.z.enum(['universal', 'integration', 'connection']).optional(),
|
|
3523
3526
|
integrationKey: zod.z.string().optional(),
|
|
3527
|
+
integrationId: zod.z.string().optional(),
|
|
3524
3528
|
connectionId: zod.z.string().optional(),
|
|
3525
3529
|
instanceKey: zod.z.string().optional(),
|
|
3526
3530
|
});
|
|
3527
3531
|
const FindIntegrationLevelMembraneInterfaceQuery = IntegrationLevelMembraneInterfaceSelectorQuery.extend(CommonListElementsQuery.shape).extend({
|
|
3528
|
-
layer: zod.z.enum(['universal', 'integration', 'connection']).optional(),
|
|
3529
|
-
integrationId: zod.z.string().optional(),
|
|
3530
3532
|
parentId: zod.z.string().optional(),
|
|
3531
3533
|
universalParentId: zod.z.string().optional(),
|
|
3532
3534
|
userId: zod.z.string().optional(),
|
|
@@ -3572,6 +3574,8 @@ exports.FieldMappingDirection = void 0;
|
|
|
3572
3574
|
const FieldMappingEditableProperties = BaseIntegrationLevelMembraneInterfaceEditableProperties.omit({
|
|
3573
3575
|
parentId: true,
|
|
3574
3576
|
}).extend({
|
|
3577
|
+
connectionId: zod.z.string().optional(),
|
|
3578
|
+
fieldMappingId: zod.z.string().optional(),
|
|
3575
3579
|
universalFieldMappingId: zod.z.string().optional(),
|
|
3576
3580
|
dataSourceKey: zod.z.string().optional(),
|
|
3577
3581
|
dataSourceId: zod.z.string().optional(),
|
|
@@ -3709,9 +3713,7 @@ const ActionDependency = zod.z.object({
|
|
|
3709
3713
|
element: zod.z.any().optional(),
|
|
3710
3714
|
});
|
|
3711
3715
|
const ActionEditableProperties = BaseIntegrationLevelMembraneInterfaceEditableProperties.extend({
|
|
3712
|
-
integrationId: zod.z.string().optional(),
|
|
3713
3716
|
connectionId: zod.z.string().optional(),
|
|
3714
|
-
parentId: zod.z.string().optional(),
|
|
3715
3717
|
instanceKey: zod.z.string().optional(),
|
|
3716
3718
|
inputSchema: DataSchema.optional(),
|
|
3717
3719
|
type: zod.z.enum(exports.ActionType).optional(),
|
|
@@ -8430,6 +8432,8 @@ const MIN_PULL_UPDATES_INTERVAL_SECONDS = 1 * 60;
|
|
|
8430
8432
|
const DataSourceEditableProperties = BaseIntegrationLevelMembraneInterfaceEditableProperties.omit({
|
|
8431
8433
|
parentId: true,
|
|
8432
8434
|
}).extend({
|
|
8435
|
+
connectionId: zod.z.string().optional(),
|
|
8436
|
+
dataSourceId: zod.z.string().optional(),
|
|
8433
8437
|
universalDataSourceId: zod.z.string().optional(),
|
|
8434
8438
|
udm: zod.z.string().optional(),
|
|
8435
8439
|
pullUpdatesIntervalSeconds: zod.z.number().optional(),
|
|
@@ -8919,7 +8923,8 @@ const FLOW_NODE_SPECS = {
|
|
|
8919
8923
|
const FlowEditableProperties = BaseIntegrationLevelMembraneInterfaceEditableProperties.omit({
|
|
8920
8924
|
parentId: true,
|
|
8921
8925
|
}).extend({
|
|
8922
|
-
|
|
8926
|
+
connectionId: zod.z.string().optional(),
|
|
8927
|
+
flowId: zod.z.string().optional(),
|
|
8923
8928
|
universalFlowId: zod.z.string().optional(),
|
|
8924
8929
|
parametersSchema: DataSchema.optional(),
|
|
8925
8930
|
nodes: zod.z.record(zod.z.string(), FlowNode).optional(),
|
|
@@ -8986,6 +8991,7 @@ const PackageEditableProperties = BaseMembraneInterfaceEditableProperties.extend
|
|
|
8986
8991
|
scenarioTemplateId: zod.z.string().optional(),
|
|
8987
8992
|
elements: zod.z.array(PackageElement).optional(),
|
|
8988
8993
|
integrationId: zod.z.string().optional(),
|
|
8994
|
+
parentUuid: zod.z.string().optional(),
|
|
8989
8995
|
parentId: zod.z.string().optional(),
|
|
8990
8996
|
});
|
|
8991
8997
|
const PackageCalculatedProperties = zod.z.object({
|
|
@@ -9442,12 +9448,9 @@ const DataSourceApiResponse = BaseDataSource.extend({
|
|
|
9442
9448
|
integration: BaseIntegration.optional(),
|
|
9443
9449
|
appliedToIntegrations: AppliedToIntegrations(BaseDataSource).optional(),
|
|
9444
9450
|
});
|
|
9445
|
-
const FindDataSourcesQuery =
|
|
9446
|
-
|
|
9447
|
-
integrationKey: zod.z.string().optional(),
|
|
9451
|
+
const FindDataSourcesQuery = FindIntegrationLevelMembraneInterfaceQuery.omit({ parentId: true }).extend({
|
|
9452
|
+
dataSourceId: zod.z.string().optional(),
|
|
9448
9453
|
universalDataSourceId: zod.z.string().optional(),
|
|
9449
|
-
search: zod.z.string().optional(),
|
|
9450
|
-
includeArchived: zodBooleanCoercion().optional(),
|
|
9451
9454
|
});
|
|
9452
9455
|
const CreateDataSourceRequest = DataSourceEditableProperties;
|
|
9453
9456
|
const UpdateDataSourceRequest = CreateDataSourceRequest.extend({}).partial();
|
|
@@ -9532,12 +9535,9 @@ const FlowApiResponse = BaseFlow.extend({
|
|
|
9532
9535
|
})).optional(),
|
|
9533
9536
|
dependencies: zod.z.array(zod.z.any()).optional(),
|
|
9534
9537
|
});
|
|
9535
|
-
const FindFlowsQuery =
|
|
9536
|
-
|
|
9537
|
-
integrationKey: zod.z.string().optional(),
|
|
9538
|
+
const FindFlowsQuery = FindIntegrationLevelMembraneInterfaceQuery.omit({ parentId: true }).extend({
|
|
9539
|
+
flowId: zod.z.string().optional(),
|
|
9538
9540
|
universalFlowId: zod.z.string().optional(),
|
|
9539
|
-
search: zod.z.string().optional(),
|
|
9540
|
-
includeArchived: zodBooleanCoercion().optional(),
|
|
9541
9541
|
});
|
|
9542
9542
|
const CreateFlowRequest = FlowEditableProperties;
|
|
9543
9543
|
const UpdateFlowRequest = CreateFlowRequest.extend({}).partial();
|
|
@@ -9554,6 +9554,10 @@ const ResetFlowInstanceOptions = zod.z.object({
|
|
|
9554
9554
|
nodes: zod.z.record(zod.z.string(), zod.z.boolean()).optional(),
|
|
9555
9555
|
allNodes: zod.z.boolean().optional(),
|
|
9556
9556
|
});
|
|
9557
|
+
const RunFlowApiRequest = zod.z.object({
|
|
9558
|
+
nodeKey: zod.z.string().optional(),
|
|
9559
|
+
input: zod.z.any().optional(),
|
|
9560
|
+
});
|
|
9557
9561
|
const FlowInstanceApiResponse = BaseFlowInstance.extend({
|
|
9558
9562
|
user: zod.z.lazy(() => zod.z.any()).optional(),
|
|
9559
9563
|
connection: zod.z.lazy(() => zod.z.any()).optional(),
|
|
@@ -9635,15 +9639,9 @@ const PackageElementApi = zod.z.object({
|
|
|
9635
9639
|
type: zod.z.enum(exports.IntegrationElementType),
|
|
9636
9640
|
element: zod.z.any().optional(),
|
|
9637
9641
|
});
|
|
9638
|
-
const FindPackagesQuery =
|
|
9639
|
-
|
|
9640
|
-
|
|
9641
|
-
integrationKey: zod.z.string().optional(),
|
|
9642
|
-
parentId: zod.z.string().optional(),
|
|
9643
|
-
})
|
|
9644
|
-
.extend(SearchQuery.shape)
|
|
9645
|
-
.extend(PaginationQuery.shape)
|
|
9646
|
-
.extend(IncludeArchivedQuery.shape);
|
|
9642
|
+
const FindPackagesQuery = FindIntegrationLevelMembraneInterfaceQuery;
|
|
9643
|
+
const CreatePackageRequest = PackageEditableProperties;
|
|
9644
|
+
const UpdatePackageRequest = CreatePackageRequest.extend({}).partial();
|
|
9647
9645
|
const PackageApiResponse = BasePackage.extend({
|
|
9648
9646
|
appliedToIntegrations: AppliedToIntegrations(BasePackage).optional(),
|
|
9649
9647
|
});
|
|
@@ -9675,12 +9673,9 @@ const FieldMappingApiResponse = BaseFieldMapping.extend({
|
|
|
9675
9673
|
integration: BaseIntegration.optional(),
|
|
9676
9674
|
appliedToIntegrations: AppliedToIntegrations(BaseFieldMapping).optional(),
|
|
9677
9675
|
});
|
|
9678
|
-
const FindFieldMappingsQuery =
|
|
9679
|
-
|
|
9680
|
-
integrationKey: zod.z.string().optional(),
|
|
9676
|
+
const FindFieldMappingsQuery = FindIntegrationLevelMembraneInterfaceQuery.omit({ parentId: true }).extend({
|
|
9677
|
+
fieldMappingId: zod.z.string().optional(),
|
|
9681
9678
|
universalFieldMappingId: zod.z.string().optional(),
|
|
9682
|
-
search: zod.z.string().optional(),
|
|
9683
|
-
includeArchived: zodBooleanCoercion().optional(),
|
|
9684
9679
|
});
|
|
9685
9680
|
const CreateFieldMappingRequest = FieldMappingEditableProperties;
|
|
9686
9681
|
const UpdateFieldMappingRequest = CreateFieldMappingRequest.extend({}).partial();
|
|
@@ -9967,6 +9962,9 @@ const WorkspaceElementSpecs = {
|
|
|
9967
9962
|
name: 'Flow',
|
|
9968
9963
|
namePlural: 'Flows',
|
|
9969
9964
|
parentFieldKey: 'universalFlowId',
|
|
9965
|
+
editablePropertiesSchema: FlowEditableProperties,
|
|
9966
|
+
apiResponseSchema: FlowApiResponse,
|
|
9967
|
+
findQuerySchema: FindFlowsQuery,
|
|
9970
9968
|
isMembraneInterface: true,
|
|
9971
9969
|
isIntegrationLevel: true,
|
|
9972
9970
|
},
|
|
@@ -9978,6 +9976,7 @@ const WorkspaceElementSpecs = {
|
|
|
9978
9976
|
name: 'Flow',
|
|
9979
9977
|
namePlural: 'Flows',
|
|
9980
9978
|
parentFieldKey: 'flowId',
|
|
9979
|
+
universalParentFieldKey: 'universalFlowId',
|
|
9981
9980
|
isMembraneInterface: true,
|
|
9982
9981
|
},
|
|
9983
9982
|
[exports.WorkspaceElementType.FlowRun]: {
|
|
@@ -9992,6 +9991,9 @@ const WorkspaceElementSpecs = {
|
|
|
9992
9991
|
name: 'Field Mapping',
|
|
9993
9992
|
namePlural: 'Field Mappings',
|
|
9994
9993
|
parentFieldKey: 'universalFieldMappingId',
|
|
9994
|
+
editablePropertiesSchema: FieldMappingEditableProperties,
|
|
9995
|
+
apiResponseSchema: FieldMappingApiResponse,
|
|
9996
|
+
findQuerySchema: FindFieldMappingsQuery,
|
|
9995
9997
|
isMembraneInterface: true,
|
|
9996
9998
|
isIntegrationLevel: true,
|
|
9997
9999
|
},
|
|
@@ -10001,6 +10003,7 @@ const WorkspaceElementSpecs = {
|
|
|
10001
10003
|
name: 'Field Mapping Instance',
|
|
10002
10004
|
namePlural: 'Field Mapping Instances',
|
|
10003
10005
|
parentFieldKey: 'fieldMappingId',
|
|
10006
|
+
universalParentFieldKey: 'universalFieldMappingId',
|
|
10004
10007
|
isMembraneInterface: true,
|
|
10005
10008
|
},
|
|
10006
10009
|
[exports.WorkspaceElementType.DataCollection]: {
|
|
@@ -10015,6 +10018,9 @@ const WorkspaceElementSpecs = {
|
|
|
10015
10018
|
name: 'Data Source',
|
|
10016
10019
|
namePlural: 'Data Sources',
|
|
10017
10020
|
parentFieldKey: 'universalDataSourceId',
|
|
10021
|
+
editablePropertiesSchema: DataSourceEditableProperties,
|
|
10022
|
+
apiResponseSchema: DataSourceApiResponse,
|
|
10023
|
+
findQuerySchema: FindDataSourcesQuery,
|
|
10018
10024
|
isMembraneInterface: true,
|
|
10019
10025
|
isIntegrationLevel: true,
|
|
10020
10026
|
},
|
|
@@ -10024,6 +10030,7 @@ const WorkspaceElementSpecs = {
|
|
|
10024
10030
|
name: 'Data Source Instance',
|
|
10025
10031
|
namePlural: 'Data Source Instances',
|
|
10026
10032
|
parentFieldKey: 'dataSourceId',
|
|
10033
|
+
universalParentFieldKey: 'universalDataSourceId',
|
|
10027
10034
|
isMembraneInterface: true,
|
|
10028
10035
|
},
|
|
10029
10036
|
[exports.WorkspaceElementType.DataLinkTable]: {
|
|
@@ -10698,6 +10705,8 @@ exports.OrgLimitsType = void 0;
|
|
|
10698
10705
|
OrgLimitsType["NUMBER_OF_WORKSPACES"] = "numberOfWorkspaces";
|
|
10699
10706
|
OrgLimitsType["TODAY_USAGE"] = "todayUsage";
|
|
10700
10707
|
OrgLimitsType["LAST_THIRTY_DAY_USAGE"] = "lastThirtyDayUsage";
|
|
10708
|
+
OrgLimitsType["MEMBRANE_AGENT_MONTHLY_USAGE"] = "membraneAgentMonthlyUsage";
|
|
10709
|
+
OrgLimitsType["MEMBRANE_EXPERT_CREDITS_CAP"] = "membraneExpertCreditsCapPerMonth";
|
|
10701
10710
|
})(exports.OrgLimitsType || (exports.OrgLimitsType = {}));
|
|
10702
10711
|
exports.OrgUserRole = void 0;
|
|
10703
10712
|
(function (OrgUserRole) {
|
|
@@ -12436,6 +12445,43 @@ const ScenarioTemplate = zod.z.object({
|
|
|
12436
12445
|
handyElements: zod.z.array(HandyScenarioTemplateElement).optional(),
|
|
12437
12446
|
});
|
|
12438
12447
|
|
|
12448
|
+
exports.AgentSessionStatus = void 0;
|
|
12449
|
+
(function (AgentSessionStatus) {
|
|
12450
|
+
AgentSessionStatus["QUEUED"] = "queued";
|
|
12451
|
+
AgentSessionStatus["STARTING"] = "starting";
|
|
12452
|
+
AgentSessionStatus["RUNNING"] = "running";
|
|
12453
|
+
AgentSessionStatus["COMPLETED"] = "completed";
|
|
12454
|
+
AgentSessionStatus["FAILED"] = "failed";
|
|
12455
|
+
AgentSessionStatus["CANCELLED"] = "cancelled";
|
|
12456
|
+
})(exports.AgentSessionStatus || (exports.AgentSessionStatus = {}));
|
|
12457
|
+
const AgentSession = zod.z.object({
|
|
12458
|
+
id: zod.z.string(),
|
|
12459
|
+
workspaceId: zod.z.string(),
|
|
12460
|
+
workspaceElementType: zod.z.enum(exports.WorkspaceElementType),
|
|
12461
|
+
workspaceElementId: zod.z.string(),
|
|
12462
|
+
type: zod.z.string(),
|
|
12463
|
+
status: zod.z.enum(exports.AgentSessionStatus),
|
|
12464
|
+
workerId: zod.z.string().optional(),
|
|
12465
|
+
workerUrl: zod.z.string().url().optional(),
|
|
12466
|
+
prompt: zod.z.string(),
|
|
12467
|
+
error: ErrorDataSchema.optional(),
|
|
12468
|
+
createdBy: zod.z.string(),
|
|
12469
|
+
lastActivityAt: zod.z.iso.datetime(),
|
|
12470
|
+
createdAt: zod.z.iso.datetime(),
|
|
12471
|
+
updatedAt: zod.z.iso.datetime(),
|
|
12472
|
+
storedMessagesUri: zod.z.string().url().optional(),
|
|
12473
|
+
sessionFilesZipUri: zod.z.string().url().optional(),
|
|
12474
|
+
logs: zod.z.array(zod.z.any()).optional(),
|
|
12475
|
+
});
|
|
12476
|
+
const CreateAgentSession = zod.z.object({
|
|
12477
|
+
workspaceElementType: zod.z.enum(exports.WorkspaceElementType),
|
|
12478
|
+
workspaceElementId: zod.z.string().min(1),
|
|
12479
|
+
prompt: zod.z.string().min(1),
|
|
12480
|
+
});
|
|
12481
|
+
const AgentSessionInputSchema = zod.z.object({
|
|
12482
|
+
input: zod.z.string().optional(),
|
|
12483
|
+
});
|
|
12484
|
+
|
|
12439
12485
|
function decodeJWT(token) {
|
|
12440
12486
|
if (typeof token !== 'string') {
|
|
12441
12487
|
return undefined;
|
|
@@ -12909,6 +12955,8 @@ exports.ActionRunError = ActionRunError;
|
|
|
12909
12955
|
exports.ActionRunLogRecordApiResponse = ActionRunLogRecordApiResponse;
|
|
12910
12956
|
exports.ActionRunResponse = ActionRunResponse;
|
|
12911
12957
|
exports.ActionsAccessor = ActionsAccessor;
|
|
12958
|
+
exports.AgentSession = AgentSession;
|
|
12959
|
+
exports.AgentSessionInputSchema = AgentSessionInputSchema;
|
|
12912
12960
|
exports.ApiRequestSpec = ApiRequestSpec;
|
|
12913
12961
|
exports.AppDataSchemaAccessor = AppDataSchemaAccessor;
|
|
12914
12962
|
exports.AppDataSchemaApiResponse = AppDataSchemaApiResponse;
|
|
@@ -13000,6 +13048,7 @@ exports.ConnectorOperationMethodImplementationTypes = ConnectorOperationMethodIm
|
|
|
13000
13048
|
exports.CopilotActivityScope = CopilotActivityScope;
|
|
13001
13049
|
exports.CreateActionInstanceRequest = CreateActionInstanceRequest;
|
|
13002
13050
|
exports.CreateActionRequest = CreateActionRequest;
|
|
13051
|
+
exports.CreateAgentSession = CreateAgentSession;
|
|
13003
13052
|
exports.CreateConnectionRequest = CreateConnectionRequest;
|
|
13004
13053
|
exports.CreateCustomerRequest = CreateCustomerRequest;
|
|
13005
13054
|
exports.CreateDataSourceInstanceRequest = CreateDataSourceInstanceRequest;
|
|
@@ -13009,6 +13058,7 @@ exports.CreateFlowNodeRequest = CreateFlowNodeRequest;
|
|
|
13009
13058
|
exports.CreateFlowRequest = CreateFlowRequest;
|
|
13010
13059
|
exports.CreateFlowRunRequest = CreateFlowRunRequest;
|
|
13011
13060
|
exports.CreateIntegrationRequest = CreateIntegrationRequest;
|
|
13061
|
+
exports.CreatePackageRequest = CreatePackageRequest;
|
|
13012
13062
|
exports.CustomCodeError = CustomCodeError;
|
|
13013
13063
|
exports.CustomerAccessor = CustomerAccessor;
|
|
13014
13064
|
exports.CustomerApiResponse = CustomerApiResponse;
|
|
@@ -13174,6 +13224,7 @@ exports.ListExternalEventPullsQuery = ListExternalEventPullsQuery;
|
|
|
13174
13224
|
exports.ListFlowInstancesForConnectionQuery = ListFlowInstancesForConnectionQuery;
|
|
13175
13225
|
exports.MIN_FULL_SYNC_INTERVAL_SECONDS = MIN_FULL_SYNC_INTERVAL_SECONDS;
|
|
13176
13226
|
exports.MIN_PULL_UPDATES_INTERVAL_SECONDS = MIN_PULL_UPDATES_INTERVAL_SECONDS;
|
|
13227
|
+
exports.MembraneAxiosInstance = axios;
|
|
13177
13228
|
exports.MembraneClient = MembraneClient;
|
|
13178
13229
|
exports.MembraneConfigLoader = MembraneConfigLoader;
|
|
13179
13230
|
exports.MembraneError = MembraneError;
|
|
@@ -13196,6 +13247,7 @@ exports.RATE_LIMITS = RATE_LIMITS;
|
|
|
13196
13247
|
exports.RateLimitExceededError = RateLimitExceededError;
|
|
13197
13248
|
exports.ResetFlowInstanceOptions = ResetFlowInstanceOptions;
|
|
13198
13249
|
exports.RunActionRequest = RunActionRequest;
|
|
13250
|
+
exports.RunFlowApiRequest = RunFlowApiRequest;
|
|
13199
13251
|
exports.ScenarioAccessor = ScenarioAccessor;
|
|
13200
13252
|
exports.ScenarioTemplate = ScenarioTemplate;
|
|
13201
13253
|
exports.ScenarioTemplateElements = ScenarioTemplateElements;
|
|
@@ -13217,6 +13269,7 @@ exports.UpdateDataSourceRequest = UpdateDataSourceRequest;
|
|
|
13217
13269
|
exports.UpdateFieldMappingRequest = UpdateFieldMappingRequest;
|
|
13218
13270
|
exports.UpdateFlowRequest = UpdateFlowRequest;
|
|
13219
13271
|
exports.UpdateIntegrationRequest = UpdateIntegrationRequest;
|
|
13272
|
+
exports.UpdatePackageRequest = UpdatePackageRequest;
|
|
13220
13273
|
exports.UpstreamFlowNodeRunSchema = UpstreamFlowNodeRunSchema;
|
|
13221
13274
|
exports.UserAccessor = UserAccessor;
|
|
13222
13275
|
exports.UsersAccessor = UsersAccessor;
|