@membranehq/sdk 0.8.3 → 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 +1 -0
- package/dist/dts/index.d.ts +1 -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 +307 -55
- package/dist/index.browser.d.ts +307 -55
- package/dist/index.browser.js +81 -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 +307 -55
- package/dist/index.node.d.ts +307 -55
- package/dist/index.node.js +81 -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.browser.js
CHANGED
|
@@ -3489,6 +3489,8 @@ const BaseMembraneInterfaceReadOnlyProperties = zod.z.object({
|
|
|
3489
3489
|
});
|
|
3490
3490
|
const BaseMembraneInterface = BaseWorkspaceElement.merge(BaseMembraneInterfaceEditableProperties).merge(BaseMembraneInterfaceReadOnlyProperties);
|
|
3491
3491
|
const BaseIntegrationLevelMembraneInterfaceEditableProperties = BaseMembraneInterfaceEditableProperties.extend({
|
|
3492
|
+
integrationUuid: zod.z.string().optional(),
|
|
3493
|
+
parentUuid: zod.z.string().optional(),
|
|
3492
3494
|
integrationId: zod.z.string().optional(),
|
|
3493
3495
|
parentId: zod.z.string().optional(),
|
|
3494
3496
|
});
|
|
@@ -3496,13 +3498,13 @@ const BaseIntegrationLevelMembraneInterfaceReadOnlyProperties = BaseMembraneInte
|
|
|
3496
3498
|
isCustomized: zod.z.boolean().optional(),
|
|
3497
3499
|
});
|
|
3498
3500
|
const IntegrationLevelMembraneInterfaceSelectorQuery = zod.z.object({
|
|
3501
|
+
layer: zod.z.enum(['universal', 'integration', 'connection']).optional(),
|
|
3499
3502
|
integrationKey: zod.z.string().optional(),
|
|
3503
|
+
integrationId: zod.z.string().optional(),
|
|
3500
3504
|
connectionId: zod.z.string().optional(),
|
|
3501
3505
|
instanceKey: zod.z.string().optional(),
|
|
3502
3506
|
});
|
|
3503
3507
|
const FindIntegrationLevelMembraneInterfaceQuery = IntegrationLevelMembraneInterfaceSelectorQuery.extend(CommonListElementsQuery.shape).extend({
|
|
3504
|
-
layer: zod.z.enum(['universal', 'integration', 'connection']).optional(),
|
|
3505
|
-
integrationId: zod.z.string().optional(),
|
|
3506
3508
|
parentId: zod.z.string().optional(),
|
|
3507
3509
|
universalParentId: zod.z.string().optional(),
|
|
3508
3510
|
userId: zod.z.string().optional(),
|
|
@@ -3548,6 +3550,8 @@ exports.FieldMappingDirection = void 0;
|
|
|
3548
3550
|
const FieldMappingEditableProperties = BaseIntegrationLevelMembraneInterfaceEditableProperties.omit({
|
|
3549
3551
|
parentId: true,
|
|
3550
3552
|
}).extend({
|
|
3553
|
+
connectionId: zod.z.string().optional(),
|
|
3554
|
+
fieldMappingId: zod.z.string().optional(),
|
|
3551
3555
|
universalFieldMappingId: zod.z.string().optional(),
|
|
3552
3556
|
dataSourceKey: zod.z.string().optional(),
|
|
3553
3557
|
dataSourceId: zod.z.string().optional(),
|
|
@@ -3685,9 +3689,7 @@ const ActionDependency = zod.z.object({
|
|
|
3685
3689
|
element: zod.z.any().optional(),
|
|
3686
3690
|
});
|
|
3687
3691
|
const ActionEditableProperties = BaseIntegrationLevelMembraneInterfaceEditableProperties.extend({
|
|
3688
|
-
integrationId: zod.z.string().optional(),
|
|
3689
3692
|
connectionId: zod.z.string().optional(),
|
|
3690
|
-
parentId: zod.z.string().optional(),
|
|
3691
3693
|
instanceKey: zod.z.string().optional(),
|
|
3692
3694
|
inputSchema: DataSchema.optional(),
|
|
3693
3695
|
type: zod.z.enum(exports.ActionType).optional(),
|
|
@@ -8406,6 +8408,8 @@ const MIN_PULL_UPDATES_INTERVAL_SECONDS = 1 * 60;
|
|
|
8406
8408
|
const DataSourceEditableProperties = BaseIntegrationLevelMembraneInterfaceEditableProperties.omit({
|
|
8407
8409
|
parentId: true,
|
|
8408
8410
|
}).extend({
|
|
8411
|
+
connectionId: zod.z.string().optional(),
|
|
8412
|
+
dataSourceId: zod.z.string().optional(),
|
|
8409
8413
|
universalDataSourceId: zod.z.string().optional(),
|
|
8410
8414
|
udm: zod.z.string().optional(),
|
|
8411
8415
|
pullUpdatesIntervalSeconds: zod.z.number().optional(),
|
|
@@ -8895,7 +8899,8 @@ const FLOW_NODE_SPECS = {
|
|
|
8895
8899
|
const FlowEditableProperties = BaseIntegrationLevelMembraneInterfaceEditableProperties.omit({
|
|
8896
8900
|
parentId: true,
|
|
8897
8901
|
}).extend({
|
|
8898
|
-
|
|
8902
|
+
connectionId: zod.z.string().optional(),
|
|
8903
|
+
flowId: zod.z.string().optional(),
|
|
8899
8904
|
universalFlowId: zod.z.string().optional(),
|
|
8900
8905
|
parametersSchema: DataSchema.optional(),
|
|
8901
8906
|
nodes: zod.z.record(zod.z.string(), FlowNode).optional(),
|
|
@@ -8962,6 +8967,7 @@ const PackageEditableProperties = BaseMembraneInterfaceEditableProperties.extend
|
|
|
8962
8967
|
scenarioTemplateId: zod.z.string().optional(),
|
|
8963
8968
|
elements: zod.z.array(PackageElement).optional(),
|
|
8964
8969
|
integrationId: zod.z.string().optional(),
|
|
8970
|
+
parentUuid: zod.z.string().optional(),
|
|
8965
8971
|
parentId: zod.z.string().optional(),
|
|
8966
8972
|
});
|
|
8967
8973
|
const PackageCalculatedProperties = zod.z.object({
|
|
@@ -9418,12 +9424,9 @@ const DataSourceApiResponse = BaseDataSource.extend({
|
|
|
9418
9424
|
integration: BaseIntegration.optional(),
|
|
9419
9425
|
appliedToIntegrations: AppliedToIntegrations(BaseDataSource).optional(),
|
|
9420
9426
|
});
|
|
9421
|
-
const FindDataSourcesQuery =
|
|
9422
|
-
|
|
9423
|
-
integrationKey: zod.z.string().optional(),
|
|
9427
|
+
const FindDataSourcesQuery = FindIntegrationLevelMembraneInterfaceQuery.omit({ parentId: true }).extend({
|
|
9428
|
+
dataSourceId: zod.z.string().optional(),
|
|
9424
9429
|
universalDataSourceId: zod.z.string().optional(),
|
|
9425
|
-
search: zod.z.string().optional(),
|
|
9426
|
-
includeArchived: zodBooleanCoercion().optional(),
|
|
9427
9430
|
});
|
|
9428
9431
|
const CreateDataSourceRequest = DataSourceEditableProperties;
|
|
9429
9432
|
const UpdateDataSourceRequest = CreateDataSourceRequest.extend({}).partial();
|
|
@@ -9508,12 +9511,9 @@ const FlowApiResponse = BaseFlow.extend({
|
|
|
9508
9511
|
})).optional(),
|
|
9509
9512
|
dependencies: zod.z.array(zod.z.any()).optional(),
|
|
9510
9513
|
});
|
|
9511
|
-
const FindFlowsQuery =
|
|
9512
|
-
|
|
9513
|
-
integrationKey: zod.z.string().optional(),
|
|
9514
|
+
const FindFlowsQuery = FindIntegrationLevelMembraneInterfaceQuery.omit({ parentId: true }).extend({
|
|
9515
|
+
flowId: zod.z.string().optional(),
|
|
9514
9516
|
universalFlowId: zod.z.string().optional(),
|
|
9515
|
-
search: zod.z.string().optional(),
|
|
9516
|
-
includeArchived: zodBooleanCoercion().optional(),
|
|
9517
9517
|
});
|
|
9518
9518
|
const CreateFlowRequest = FlowEditableProperties;
|
|
9519
9519
|
const UpdateFlowRequest = CreateFlowRequest.extend({}).partial();
|
|
@@ -9530,6 +9530,10 @@ const ResetFlowInstanceOptions = zod.z.object({
|
|
|
9530
9530
|
nodes: zod.z.record(zod.z.string(), zod.z.boolean()).optional(),
|
|
9531
9531
|
allNodes: zod.z.boolean().optional(),
|
|
9532
9532
|
});
|
|
9533
|
+
const RunFlowApiRequest = zod.z.object({
|
|
9534
|
+
nodeKey: zod.z.string().optional(),
|
|
9535
|
+
input: zod.z.any().optional(),
|
|
9536
|
+
});
|
|
9533
9537
|
const FlowInstanceApiResponse = BaseFlowInstance.extend({
|
|
9534
9538
|
user: zod.z.lazy(() => zod.z.any()).optional(),
|
|
9535
9539
|
connection: zod.z.lazy(() => zod.z.any()).optional(),
|
|
@@ -9611,15 +9615,9 @@ const PackageElementApi = zod.z.object({
|
|
|
9611
9615
|
type: zod.z.enum(exports.IntegrationElementType),
|
|
9612
9616
|
element: zod.z.any().optional(),
|
|
9613
9617
|
});
|
|
9614
|
-
const FindPackagesQuery =
|
|
9615
|
-
|
|
9616
|
-
|
|
9617
|
-
integrationKey: zod.z.string().optional(),
|
|
9618
|
-
parentId: zod.z.string().optional(),
|
|
9619
|
-
})
|
|
9620
|
-
.extend(SearchQuery.shape)
|
|
9621
|
-
.extend(PaginationQuery.shape)
|
|
9622
|
-
.extend(IncludeArchivedQuery.shape);
|
|
9618
|
+
const FindPackagesQuery = FindIntegrationLevelMembraneInterfaceQuery;
|
|
9619
|
+
const CreatePackageRequest = PackageEditableProperties;
|
|
9620
|
+
const UpdatePackageRequest = CreatePackageRequest.extend({}).partial();
|
|
9623
9621
|
const PackageApiResponse = BasePackage.extend({
|
|
9624
9622
|
appliedToIntegrations: AppliedToIntegrations(BasePackage).optional(),
|
|
9625
9623
|
});
|
|
@@ -9651,12 +9649,9 @@ const FieldMappingApiResponse = BaseFieldMapping.extend({
|
|
|
9651
9649
|
integration: BaseIntegration.optional(),
|
|
9652
9650
|
appliedToIntegrations: AppliedToIntegrations(BaseFieldMapping).optional(),
|
|
9653
9651
|
});
|
|
9654
|
-
const FindFieldMappingsQuery =
|
|
9655
|
-
|
|
9656
|
-
integrationKey: zod.z.string().optional(),
|
|
9652
|
+
const FindFieldMappingsQuery = FindIntegrationLevelMembraneInterfaceQuery.omit({ parentId: true }).extend({
|
|
9653
|
+
fieldMappingId: zod.z.string().optional(),
|
|
9657
9654
|
universalFieldMappingId: zod.z.string().optional(),
|
|
9658
|
-
search: zod.z.string().optional(),
|
|
9659
|
-
includeArchived: zodBooleanCoercion().optional(),
|
|
9660
9655
|
});
|
|
9661
9656
|
const CreateFieldMappingRequest = FieldMappingEditableProperties;
|
|
9662
9657
|
const UpdateFieldMappingRequest = CreateFieldMappingRequest.extend({}).partial();
|
|
@@ -9943,6 +9938,9 @@ const WorkspaceElementSpecs = {
|
|
|
9943
9938
|
name: 'Flow',
|
|
9944
9939
|
namePlural: 'Flows',
|
|
9945
9940
|
parentFieldKey: 'universalFlowId',
|
|
9941
|
+
editablePropertiesSchema: FlowEditableProperties,
|
|
9942
|
+
apiResponseSchema: FlowApiResponse,
|
|
9943
|
+
findQuerySchema: FindFlowsQuery,
|
|
9946
9944
|
isMembraneInterface: true,
|
|
9947
9945
|
isIntegrationLevel: true,
|
|
9948
9946
|
},
|
|
@@ -9954,6 +9952,7 @@ const WorkspaceElementSpecs = {
|
|
|
9954
9952
|
name: 'Flow',
|
|
9955
9953
|
namePlural: 'Flows',
|
|
9956
9954
|
parentFieldKey: 'flowId',
|
|
9955
|
+
universalParentFieldKey: 'universalFlowId',
|
|
9957
9956
|
isMembraneInterface: true,
|
|
9958
9957
|
},
|
|
9959
9958
|
[exports.WorkspaceElementType.FlowRun]: {
|
|
@@ -9968,6 +9967,9 @@ const WorkspaceElementSpecs = {
|
|
|
9968
9967
|
name: 'Field Mapping',
|
|
9969
9968
|
namePlural: 'Field Mappings',
|
|
9970
9969
|
parentFieldKey: 'universalFieldMappingId',
|
|
9970
|
+
editablePropertiesSchema: FieldMappingEditableProperties,
|
|
9971
|
+
apiResponseSchema: FieldMappingApiResponse,
|
|
9972
|
+
findQuerySchema: FindFieldMappingsQuery,
|
|
9971
9973
|
isMembraneInterface: true,
|
|
9972
9974
|
isIntegrationLevel: true,
|
|
9973
9975
|
},
|
|
@@ -9977,6 +9979,7 @@ const WorkspaceElementSpecs = {
|
|
|
9977
9979
|
name: 'Field Mapping Instance',
|
|
9978
9980
|
namePlural: 'Field Mapping Instances',
|
|
9979
9981
|
parentFieldKey: 'fieldMappingId',
|
|
9982
|
+
universalParentFieldKey: 'universalFieldMappingId',
|
|
9980
9983
|
isMembraneInterface: true,
|
|
9981
9984
|
},
|
|
9982
9985
|
[exports.WorkspaceElementType.DataCollection]: {
|
|
@@ -9991,6 +9994,9 @@ const WorkspaceElementSpecs = {
|
|
|
9991
9994
|
name: 'Data Source',
|
|
9992
9995
|
namePlural: 'Data Sources',
|
|
9993
9996
|
parentFieldKey: 'universalDataSourceId',
|
|
9997
|
+
editablePropertiesSchema: DataSourceEditableProperties,
|
|
9998
|
+
apiResponseSchema: DataSourceApiResponse,
|
|
9999
|
+
findQuerySchema: FindDataSourcesQuery,
|
|
9994
10000
|
isMembraneInterface: true,
|
|
9995
10001
|
isIntegrationLevel: true,
|
|
9996
10002
|
},
|
|
@@ -10000,6 +10006,7 @@ const WorkspaceElementSpecs = {
|
|
|
10000
10006
|
name: 'Data Source Instance',
|
|
10001
10007
|
namePlural: 'Data Source Instances',
|
|
10002
10008
|
parentFieldKey: 'dataSourceId',
|
|
10009
|
+
universalParentFieldKey: 'universalDataSourceId',
|
|
10003
10010
|
isMembraneInterface: true,
|
|
10004
10011
|
},
|
|
10005
10012
|
[exports.WorkspaceElementType.DataLinkTable]: {
|
|
@@ -10674,6 +10681,8 @@ exports.OrgLimitsType = void 0;
|
|
|
10674
10681
|
OrgLimitsType["NUMBER_OF_WORKSPACES"] = "numberOfWorkspaces";
|
|
10675
10682
|
OrgLimitsType["TODAY_USAGE"] = "todayUsage";
|
|
10676
10683
|
OrgLimitsType["LAST_THIRTY_DAY_USAGE"] = "lastThirtyDayUsage";
|
|
10684
|
+
OrgLimitsType["MEMBRANE_AGENT_MONTHLY_USAGE"] = "membraneAgentMonthlyUsage";
|
|
10685
|
+
OrgLimitsType["MEMBRANE_EXPERT_CREDITS_CAP"] = "membraneExpertCreditsCapPerMonth";
|
|
10677
10686
|
})(exports.OrgLimitsType || (exports.OrgLimitsType = {}));
|
|
10678
10687
|
exports.OrgUserRole = void 0;
|
|
10679
10688
|
(function (OrgUserRole) {
|
|
@@ -12412,6 +12421,43 @@ const ScenarioTemplate = zod.z.object({
|
|
|
12412
12421
|
handyElements: zod.z.array(HandyScenarioTemplateElement).optional(),
|
|
12413
12422
|
});
|
|
12414
12423
|
|
|
12424
|
+
exports.AgentSessionStatus = void 0;
|
|
12425
|
+
(function (AgentSessionStatus) {
|
|
12426
|
+
AgentSessionStatus["QUEUED"] = "queued";
|
|
12427
|
+
AgentSessionStatus["STARTING"] = "starting";
|
|
12428
|
+
AgentSessionStatus["RUNNING"] = "running";
|
|
12429
|
+
AgentSessionStatus["COMPLETED"] = "completed";
|
|
12430
|
+
AgentSessionStatus["FAILED"] = "failed";
|
|
12431
|
+
AgentSessionStatus["CANCELLED"] = "cancelled";
|
|
12432
|
+
})(exports.AgentSessionStatus || (exports.AgentSessionStatus = {}));
|
|
12433
|
+
const AgentSession = zod.z.object({
|
|
12434
|
+
id: zod.z.string(),
|
|
12435
|
+
workspaceId: zod.z.string(),
|
|
12436
|
+
workspaceElementType: zod.z.enum(exports.WorkspaceElementType),
|
|
12437
|
+
workspaceElementId: zod.z.string(),
|
|
12438
|
+
type: zod.z.string(),
|
|
12439
|
+
status: zod.z.enum(exports.AgentSessionStatus),
|
|
12440
|
+
workerId: zod.z.string().optional(),
|
|
12441
|
+
workerUrl: zod.z.string().url().optional(),
|
|
12442
|
+
prompt: zod.z.string(),
|
|
12443
|
+
error: ErrorDataSchema.optional(),
|
|
12444
|
+
createdBy: zod.z.string(),
|
|
12445
|
+
lastActivityAt: zod.z.iso.datetime(),
|
|
12446
|
+
createdAt: zod.z.iso.datetime(),
|
|
12447
|
+
updatedAt: zod.z.iso.datetime(),
|
|
12448
|
+
storedMessagesUri: zod.z.string().url().optional(),
|
|
12449
|
+
sessionFilesZipUri: zod.z.string().url().optional(),
|
|
12450
|
+
logs: zod.z.array(zod.z.any()).optional(),
|
|
12451
|
+
});
|
|
12452
|
+
const CreateAgentSession = zod.z.object({
|
|
12453
|
+
workspaceElementType: zod.z.enum(exports.WorkspaceElementType),
|
|
12454
|
+
workspaceElementId: zod.z.string().min(1),
|
|
12455
|
+
prompt: zod.z.string().min(1),
|
|
12456
|
+
});
|
|
12457
|
+
const AgentSessionInputSchema = zod.z.object({
|
|
12458
|
+
input: zod.z.string().optional(),
|
|
12459
|
+
});
|
|
12460
|
+
|
|
12415
12461
|
function decodeJWT(token) {
|
|
12416
12462
|
if (typeof token !== 'string') {
|
|
12417
12463
|
return undefined;
|
|
@@ -12719,6 +12765,8 @@ exports.ActionRunError = ActionRunError;
|
|
|
12719
12765
|
exports.ActionRunLogRecordApiResponse = ActionRunLogRecordApiResponse;
|
|
12720
12766
|
exports.ActionRunResponse = ActionRunResponse;
|
|
12721
12767
|
exports.ActionsAccessor = ActionsAccessor;
|
|
12768
|
+
exports.AgentSession = AgentSession;
|
|
12769
|
+
exports.AgentSessionInputSchema = AgentSessionInputSchema;
|
|
12722
12770
|
exports.ApiRequestSpec = ApiRequestSpec;
|
|
12723
12771
|
exports.AppDataSchemaAccessor = AppDataSchemaAccessor;
|
|
12724
12772
|
exports.AppDataSchemaApiResponse = AppDataSchemaApiResponse;
|
|
@@ -12809,6 +12857,7 @@ exports.ConnectorOperationMethodImplementationTypes = ConnectorOperationMethodIm
|
|
|
12809
12857
|
exports.CopilotActivityScope = CopilotActivityScope;
|
|
12810
12858
|
exports.CreateActionInstanceRequest = CreateActionInstanceRequest;
|
|
12811
12859
|
exports.CreateActionRequest = CreateActionRequest;
|
|
12860
|
+
exports.CreateAgentSession = CreateAgentSession;
|
|
12812
12861
|
exports.CreateConnectionRequest = CreateConnectionRequest;
|
|
12813
12862
|
exports.CreateCustomerRequest = CreateCustomerRequest;
|
|
12814
12863
|
exports.CreateDataSourceInstanceRequest = CreateDataSourceInstanceRequest;
|
|
@@ -12818,6 +12867,7 @@ exports.CreateFlowNodeRequest = CreateFlowNodeRequest;
|
|
|
12818
12867
|
exports.CreateFlowRequest = CreateFlowRequest;
|
|
12819
12868
|
exports.CreateFlowRunRequest = CreateFlowRunRequest;
|
|
12820
12869
|
exports.CreateIntegrationRequest = CreateIntegrationRequest;
|
|
12870
|
+
exports.CreatePackageRequest = CreatePackageRequest;
|
|
12821
12871
|
exports.CustomCodeError = CustomCodeError;
|
|
12822
12872
|
exports.CustomerAccessor = CustomerAccessor;
|
|
12823
12873
|
exports.CustomerApiResponse = CustomerApiResponse;
|
|
@@ -13005,6 +13055,7 @@ exports.RATE_LIMITS = RATE_LIMITS;
|
|
|
13005
13055
|
exports.RateLimitExceededError = RateLimitExceededError;
|
|
13006
13056
|
exports.ResetFlowInstanceOptions = ResetFlowInstanceOptions;
|
|
13007
13057
|
exports.RunActionRequest = RunActionRequest;
|
|
13058
|
+
exports.RunFlowApiRequest = RunFlowApiRequest;
|
|
13008
13059
|
exports.ScenarioAccessor = ScenarioAccessor;
|
|
13009
13060
|
exports.ScenarioTemplate = ScenarioTemplate;
|
|
13010
13061
|
exports.ScenarioTemplateElements = ScenarioTemplateElements;
|
|
@@ -13026,6 +13077,7 @@ exports.UpdateDataSourceRequest = UpdateDataSourceRequest;
|
|
|
13026
13077
|
exports.UpdateFieldMappingRequest = UpdateFieldMappingRequest;
|
|
13027
13078
|
exports.UpdateFlowRequest = UpdateFlowRequest;
|
|
13028
13079
|
exports.UpdateIntegrationRequest = UpdateIntegrationRequest;
|
|
13080
|
+
exports.UpdatePackageRequest = UpdatePackageRequest;
|
|
13029
13081
|
exports.UpstreamFlowNodeRunSchema = UpstreamFlowNodeRunSchema;
|
|
13030
13082
|
exports.UserAccessor = UserAccessor;
|
|
13031
13083
|
exports.UsersAccessor = UsersAccessor;
|