@membranehq/sdk 0.9.6 → 0.9.8
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/dts/agent/session.d.ts +14 -0
- package/dist/dts/config/index.d.ts +1 -0
- package/dist/dts/functions/base.d.ts +28 -0
- package/dist/dts/functions/function-types/graphql-api-mapping.d.ts +67 -0
- package/dist/dts/functions/function-types/index.d.ts +61 -0
- package/dist/dts/functions/function-types/javascript.d.ts +7 -0
- package/dist/dts/functions/function-types/mapping.d.ts +9 -0
- package/dist/dts/functions/function-types/operation-mapping.d.ts +17 -0
- package/dist/dts/functions/function-types/rest-api-mapping.d.ts +48 -0
- package/dist/dts/functions/index.d.ts +2 -0
- package/dist/dts/index.browser.d.ts +1 -0
- package/dist/dts/workspace-elements/base/actions/index.d.ts +1 -1
- package/dist/dts/workspace-elements/base/connectors/functions.d.ts +491 -0
- package/dist/dts/workspace-elements/base/connectors/types.d.ts +1476 -55
- package/dist/index.browser.d.mts +1721 -59
- package/dist/index.browser.d.ts +1721 -59
- package/dist/index.browser.js +196 -8
- package/dist/index.browser.js.map +1 -1
- package/dist/index.browser.mjs +174 -9
- package/dist/index.browser.mjs.map +1 -1
- package/dist/index.node.d.mts +1722 -59
- package/dist/index.node.d.ts +1722 -59
- package/dist/index.node.js +203 -8
- package/dist/index.node.js.map +1 -1
- package/dist/index.node.mjs +181 -9
- package/dist/index.node.mjs.map +1 -1
- package/package.json +2 -2
package/dist/index.node.js
CHANGED
|
@@ -3932,16 +3932,22 @@ const ConnectorAuthMethodTypes = {
|
|
|
3932
3932
|
},
|
|
3933
3933
|
getCredentialsFromAccessTokenResponse: {
|
|
3934
3934
|
authTypes: ['oauth2'],
|
|
3935
|
-
supportedImplementationTypes: [
|
|
3935
|
+
supportedImplementationTypes: [
|
|
3936
|
+
exports.ConnectorMethodImplementationType.mapping,
|
|
3937
|
+
exports.ConnectorMethodImplementationType.javascript,
|
|
3938
|
+
],
|
|
3936
3939
|
isRequired: false,
|
|
3937
3940
|
},
|
|
3938
3941
|
getCredentialsFromRefreshTokenResponse: {
|
|
3939
3942
|
authTypes: ['oauth2'],
|
|
3940
|
-
supportedImplementationTypes: [
|
|
3943
|
+
supportedImplementationTypes: [
|
|
3944
|
+
exports.ConnectorMethodImplementationType.mapping,
|
|
3945
|
+
exports.ConnectorMethodImplementationType.javascript,
|
|
3946
|
+
],
|
|
3941
3947
|
isRequired: false,
|
|
3942
3948
|
},
|
|
3943
3949
|
getCredentialsFromConnectionParameters: {
|
|
3944
|
-
authTypes: ['client-credentials'],
|
|
3950
|
+
authTypes: ['client-credentials', 'oauth2'],
|
|
3945
3951
|
getInputSchema: getDefaultAuthInputSchema,
|
|
3946
3952
|
getOutputSchema: ({ connectorSpec, authOptionKey }) => {
|
|
3947
3953
|
var _a;
|
|
@@ -4181,6 +4187,97 @@ const ConnectorOperationMethodImplementationTypes = [
|
|
|
4181
4187
|
exports.ConnectorMethodImplementationType.javascript,
|
|
4182
4188
|
];
|
|
4183
4189
|
|
|
4190
|
+
exports.FunctionType = void 0;
|
|
4191
|
+
(function (FunctionType) {
|
|
4192
|
+
FunctionType["mapping"] = "mapping";
|
|
4193
|
+
FunctionType["operationMapping"] = "operation-mapping";
|
|
4194
|
+
FunctionType["restApiMapping"] = "rest-api-mapping";
|
|
4195
|
+
FunctionType["graphqlApiMapping"] = "graphql-api-mapping";
|
|
4196
|
+
FunctionType["javascript"] = "javascript";
|
|
4197
|
+
})(exports.FunctionType || (exports.FunctionType = {}));
|
|
4198
|
+
const BaseFunctionDefinition = z.z.object({
|
|
4199
|
+
type: z.z.enum([
|
|
4200
|
+
exports.FunctionType.mapping,
|
|
4201
|
+
exports.FunctionType.operationMapping,
|
|
4202
|
+
exports.FunctionType.restApiMapping,
|
|
4203
|
+
exports.FunctionType.graphqlApiMapping,
|
|
4204
|
+
exports.FunctionType.javascript,
|
|
4205
|
+
]),
|
|
4206
|
+
});
|
|
4207
|
+
const GenericFunctionDefinition = z.z
|
|
4208
|
+
.object({
|
|
4209
|
+
type: z.z.enum(['mapping', 'operation-mapping', 'rest-api-mapping', 'graphql-api-mapping', 'javascript']),
|
|
4210
|
+
})
|
|
4211
|
+
.loose();
|
|
4212
|
+
|
|
4213
|
+
const GraphQLFieldMappingSchema = z.z.lazy(() => z.z.object({
|
|
4214
|
+
field: z.z.string(),
|
|
4215
|
+
args: z.z.record(z.z.string(), z.z.any()).optional(),
|
|
4216
|
+
subFields: z.z.array(GraphQLFieldMappingSchema).optional(),
|
|
4217
|
+
}));
|
|
4218
|
+
const GraphQLApiMappingSchema = z.z.object({
|
|
4219
|
+
path: z.z.string(),
|
|
4220
|
+
operationType: z.z.enum(['query', 'mutation']),
|
|
4221
|
+
requestMapping: z.z.array(GraphQLFieldMappingSchema),
|
|
4222
|
+
responseMapping: z.z.any().optional(),
|
|
4223
|
+
});
|
|
4224
|
+
const GraphqlApiMappingFunction = z.z.object({
|
|
4225
|
+
type: z.z.literal(exports.FunctionType.graphqlApiMapping),
|
|
4226
|
+
mapping: GraphQLApiMappingSchema,
|
|
4227
|
+
});
|
|
4228
|
+
|
|
4229
|
+
const JavascriptFunction = z.z.object({
|
|
4230
|
+
type: z.z.literal(exports.FunctionType.javascript),
|
|
4231
|
+
code: z.z.string(),
|
|
4232
|
+
});
|
|
4233
|
+
|
|
4234
|
+
const MappingSchema = z.z.any();
|
|
4235
|
+
const MappingFunction = z.z.object({
|
|
4236
|
+
type: z.z.literal(exports.FunctionType.mapping),
|
|
4237
|
+
mapping: MappingSchema,
|
|
4238
|
+
});
|
|
4239
|
+
|
|
4240
|
+
const OperationMappingSchema = z.z.object({
|
|
4241
|
+
operationKey: z.z.string(),
|
|
4242
|
+
inputMapping: z.z.any().optional(),
|
|
4243
|
+
outputMapping: z.z.any().optional(),
|
|
4244
|
+
});
|
|
4245
|
+
const OperationMappingFunction = z.z.object({
|
|
4246
|
+
type: z.z.literal(exports.FunctionType.operationMapping),
|
|
4247
|
+
mapping: OperationMappingSchema,
|
|
4248
|
+
});
|
|
4249
|
+
|
|
4250
|
+
const RequestMappingSchema = z.z.object({
|
|
4251
|
+
pathParameters: z.z.any().optional(),
|
|
4252
|
+
query: z.z.any().optional(),
|
|
4253
|
+
data: z.z.any().optional(),
|
|
4254
|
+
headers: z.z.any().optional(),
|
|
4255
|
+
});
|
|
4256
|
+
const RestApiMappingSchema = z.z.object({
|
|
4257
|
+
path: z.z.string(),
|
|
4258
|
+
method: z.z.string(),
|
|
4259
|
+
requestMapping: RequestMappingSchema,
|
|
4260
|
+
responseMapping: z.z.any().optional(),
|
|
4261
|
+
});
|
|
4262
|
+
const OpenapiMappingSchema = z.z.object({
|
|
4263
|
+
path: z.z.string(),
|
|
4264
|
+
method: z.z.string(),
|
|
4265
|
+
requestMapping: RequestMappingSchema,
|
|
4266
|
+
responseMapping: z.z.any().optional(),
|
|
4267
|
+
});
|
|
4268
|
+
const RestApiMappingFunction = z.z.object({
|
|
4269
|
+
type: z.z.literal(exports.FunctionType.restApiMapping),
|
|
4270
|
+
mapping: RestApiMappingSchema,
|
|
4271
|
+
});
|
|
4272
|
+
|
|
4273
|
+
const FunctionDefinition = z.z.union([
|
|
4274
|
+
MappingFunction,
|
|
4275
|
+
OperationMappingFunction,
|
|
4276
|
+
RestApiMappingFunction,
|
|
4277
|
+
GraphqlApiMappingFunction,
|
|
4278
|
+
JavascriptFunction,
|
|
4279
|
+
]);
|
|
4280
|
+
|
|
4184
4281
|
const CONNECTOR_VERSION_DEVELOPMENT = 'dev';
|
|
4185
4282
|
const CONNECTOR_VERSION_LATEST = 'latest';
|
|
4186
4283
|
const CONNECTOR_CATEGORIES = [
|
|
@@ -4241,7 +4338,40 @@ exports.ConnectorStatus = void 0;
|
|
|
4241
4338
|
ConnectorStatus["beta"] = "beta";
|
|
4242
4339
|
ConnectorStatus["planned"] = "planned";
|
|
4243
4340
|
})(exports.ConnectorStatus || (exports.ConnectorStatus = {}));
|
|
4244
|
-
const
|
|
4341
|
+
const ConnectorAuthWithFunctions = z.z.object({
|
|
4342
|
+
type: z.z
|
|
4343
|
+
.enum(['integration-app-token', 'membrane-token', 'oauth2', 'oauth1', 'client-credentials', 'proxy'])
|
|
4344
|
+
.optional(),
|
|
4345
|
+
customCredentialsSchema: DataSchema.optional(),
|
|
4346
|
+
ui: z.z
|
|
4347
|
+
.object({
|
|
4348
|
+
schema: DataSchema.optional(),
|
|
4349
|
+
description: z.z.string().optional(),
|
|
4350
|
+
helpUri: z.z.string().optional(),
|
|
4351
|
+
})
|
|
4352
|
+
.optional(),
|
|
4353
|
+
getCredentialsFromConnectionParameters: GenericFunctionDefinition.optional(),
|
|
4354
|
+
refreshCredentials: GenericFunctionDefinition.optional(),
|
|
4355
|
+
makeApiClient: GenericFunctionDefinition.optional(),
|
|
4356
|
+
getOAuthConfig: GenericFunctionDefinition.optional(),
|
|
4357
|
+
getTokenData: GenericFunctionDefinition.optional(),
|
|
4358
|
+
getCredentialsFromAccessTokenResponse: GenericFunctionDefinition.optional(),
|
|
4359
|
+
getCredentialsFromRefreshTokenResponse: GenericFunctionDefinition.optional(),
|
|
4360
|
+
proxyKey: z.z.string().optional(),
|
|
4361
|
+
});
|
|
4362
|
+
const ConnectorOption = ConnectorAuthWithFunctions.extend({
|
|
4363
|
+
title: z.z.string().optional(),
|
|
4364
|
+
description: z.z.string().optional(),
|
|
4365
|
+
enabled: z.z.any().optional(),
|
|
4366
|
+
});
|
|
4367
|
+
const ConnectorOptions = z.z.record(z.z.string(), ConnectorOption);
|
|
4368
|
+
const WritableConnectorVersionData = ConnectorAuthWithFunctions.extend({
|
|
4369
|
+
parametersSchema: DataSchema.optional(),
|
|
4370
|
+
test: GenericFunctionDefinition.optional(),
|
|
4371
|
+
options: ConnectorOptions.optional(),
|
|
4372
|
+
});
|
|
4373
|
+
const ConnectorVersionData = z.z
|
|
4374
|
+
.object({
|
|
4245
4375
|
baseUri: z.z.string(),
|
|
4246
4376
|
revision: z.z.string().optional(),
|
|
4247
4377
|
dataCollectionsCount: z.z.number().optional(),
|
|
@@ -4254,12 +4384,28 @@ const ConnectorVersionData = z.z.object({
|
|
|
4254
4384
|
hasData: z.z.boolean().optional(),
|
|
4255
4385
|
isReadOnly: z.z.boolean().optional(),
|
|
4256
4386
|
version: z.z.string(),
|
|
4257
|
-
|
|
4387
|
+
credentialsSchema: DataSchema.optional(),
|
|
4388
|
+
})
|
|
4389
|
+
.extend(WritableConnectorVersionData.shape);
|
|
4258
4390
|
const ConnectorVersion = ConnectorVersionData.extend({
|
|
4259
4391
|
id: z.z.string(),
|
|
4260
4392
|
connectorId: z.z.string(),
|
|
4261
4393
|
changelog: z.z.string(),
|
|
4262
4394
|
});
|
|
4395
|
+
const WriteableConnectorFields = z.z
|
|
4396
|
+
.object({
|
|
4397
|
+
key: z.z.string().optional(),
|
|
4398
|
+
name: z.z.string().optional(),
|
|
4399
|
+
logoUri: z.z.string().optional(),
|
|
4400
|
+
appUuid: z.z.string().optional(),
|
|
4401
|
+
categories: z.z.array(z.z.string()).optional(),
|
|
4402
|
+
})
|
|
4403
|
+
.extend(WritableConnectorVersionData.shape);
|
|
4404
|
+
const UpdateConnectorRequest = WriteableConnectorFields;
|
|
4405
|
+
const CreateConnectorRequest = WriteableConnectorFields.extend({
|
|
4406
|
+
name: z.z.string(),
|
|
4407
|
+
uuid: z.z.string().optional(),
|
|
4408
|
+
});
|
|
4263
4409
|
const BaseConnector = z.z.object({
|
|
4264
4410
|
id: z.z.string(),
|
|
4265
4411
|
key: z.z.string(),
|
|
@@ -10409,6 +10555,7 @@ function getMembraneElementPath(elementType, elementKey, integrationKey) {
|
|
|
10409
10555
|
return `${integrationTypePath}/${integrationKey}/${elementTypePath}/${elementKey}/${MEMBRANE_ELEMENT_CONFIG_FILE_NAME}`;
|
|
10410
10556
|
}
|
|
10411
10557
|
function parseMembraneElementPath(relativePath) {
|
|
10558
|
+
const normalizedPath = relativePath.split(/[\\/]/).join('/');
|
|
10412
10559
|
const typeByApiPath = new Map();
|
|
10413
10560
|
for (const spec of Object.values(WorkspaceElementSpecs)) {
|
|
10414
10561
|
typeByApiPath.set(spec.apiPath, spec.type);
|
|
@@ -10417,7 +10564,7 @@ function parseMembraneElementPath(relativePath) {
|
|
|
10417
10564
|
.map((spec) => spec.apiPath)
|
|
10418
10565
|
.join('|');
|
|
10419
10566
|
const universalPattern = new RegExp(`^(?<elementType>${elementTypes})/(?<elementKey>[^/]+)/${MEMBRANE_ELEMENT_CONFIG_FILE_NAME}$`);
|
|
10420
|
-
const universalMatch =
|
|
10567
|
+
const universalMatch = normalizedPath.match(universalPattern);
|
|
10421
10568
|
if (universalMatch === null || universalMatch === void 0 ? void 0 : universalMatch.groups) {
|
|
10422
10569
|
const { elementType: elementTypePath, elementKey } = universalMatch.groups;
|
|
10423
10570
|
const elementType = typeByApiPath.get(elementTypePath);
|
|
@@ -10425,8 +10572,12 @@ function parseMembraneElementPath(relativePath) {
|
|
|
10425
10572
|
return { type: elementType, key: elementKey };
|
|
10426
10573
|
}
|
|
10427
10574
|
}
|
|
10428
|
-
const
|
|
10429
|
-
|
|
10575
|
+
const integrationLevelElementTypes = Object.values(WorkspaceElementSpecs)
|
|
10576
|
+
.filter((spec) => spec.isIntegrationLevel)
|
|
10577
|
+
.map((spec) => spec.apiPath)
|
|
10578
|
+
.join('|');
|
|
10579
|
+
const integrationLevelPattern = new RegExp(`^integrations/(?<integrationKey>[^/]+)/(?<elementType>${integrationLevelElementTypes})/(?<elementKey>[^/]+)/${MEMBRANE_ELEMENT_CONFIG_FILE_NAME}$`);
|
|
10580
|
+
const integrationLevelMatch = normalizedPath.match(integrationLevelPattern);
|
|
10430
10581
|
if (integrationLevelMatch === null || integrationLevelMatch === void 0 ? void 0 : integrationLevelMatch.groups) {
|
|
10431
10582
|
const { integrationKey, elementType: elementTypePath, elementKey } = integrationLevelMatch.groups;
|
|
10432
10583
|
const elementType = typeByApiPath.get(elementTypePath);
|
|
@@ -12946,9 +13097,15 @@ exports.AgentSessionStatus = void 0;
|
|
|
12946
13097
|
AgentSessionStatus["FAILED"] = "failed";
|
|
12947
13098
|
AgentSessionStatus["CANCELLED"] = "cancelled";
|
|
12948
13099
|
})(exports.AgentSessionStatus || (exports.AgentSessionStatus = {}));
|
|
13100
|
+
exports.AgentSessionState = void 0;
|
|
13101
|
+
(function (AgentSessionState) {
|
|
13102
|
+
AgentSessionState["BUSY"] = "busy";
|
|
13103
|
+
AgentSessionState["IDLE"] = "idle";
|
|
13104
|
+
})(exports.AgentSessionState || (exports.AgentSessionState = {}));
|
|
12949
13105
|
const AgentSession = z.z.object({
|
|
12950
13106
|
id: z.z.string(),
|
|
12951
13107
|
workspaceId: z.z.string(),
|
|
13108
|
+
userId: z.z.string().optional(),
|
|
12952
13109
|
workspaceElementType: z.z.enum(exports.WorkspaceElementType),
|
|
12953
13110
|
workspaceElementId: z.z.string(),
|
|
12954
13111
|
type: z.z.string(),
|
|
@@ -12966,17 +13123,25 @@ const AgentSession = z.z.object({
|
|
|
12966
13123
|
logs: z.z.array(z.z.any()).optional(),
|
|
12967
13124
|
usage: z.z.number().optional(),
|
|
12968
13125
|
summary: z.z.string().optional(),
|
|
13126
|
+
state: z.z.enum(exports.AgentSessionState).default(exports.AgentSessionState.IDLE),
|
|
12969
13127
|
});
|
|
12970
13128
|
const CreateAgentSession = z.z.object({
|
|
12971
13129
|
workspaceElementType: z.z.enum(exports.WorkspaceElementType).optional(),
|
|
12972
13130
|
workspaceElementId: z.z.string().min(1).optional(),
|
|
12973
13131
|
prompt: z.z.string().min(1),
|
|
12974
13132
|
testCustomerId: z.z.string().optional(),
|
|
13133
|
+
isExternal: z.z.boolean().optional(),
|
|
12975
13134
|
});
|
|
12976
13135
|
const AgentSessionInputSchema = z.z.object({
|
|
12977
13136
|
input: z.z.string().min(1),
|
|
12978
13137
|
synthetic: z.z.boolean().optional(),
|
|
12979
13138
|
});
|
|
13139
|
+
const PatchAgentSessionSchema = z.z.object({
|
|
13140
|
+
state: z.z.enum(exports.AgentSessionState).optional(),
|
|
13141
|
+
lastActivityAt: z.z.iso.datetime().optional(),
|
|
13142
|
+
summary: z.z.string().optional(),
|
|
13143
|
+
status: z.z.enum(exports.AgentSessionStatus).optional(),
|
|
13144
|
+
});
|
|
12980
13145
|
|
|
12981
13146
|
const API_VERSIONS = {
|
|
12982
13147
|
LEGACY: 'legacy',
|
|
@@ -13292,6 +13457,7 @@ const membraneConfigSchema = z.z.object({
|
|
|
13292
13457
|
workspaceKey: z.z.string(),
|
|
13293
13458
|
workspaceSecret: z.z.string(),
|
|
13294
13459
|
apiUri: z.z.string().optional(),
|
|
13460
|
+
consoleUri: z.z.string().optional(),
|
|
13295
13461
|
testCustomerId: z.z.string().optional(),
|
|
13296
13462
|
});
|
|
13297
13463
|
class MembraneConfigLoader {
|
|
@@ -13409,6 +13575,9 @@ class MembraneConfigLoader {
|
|
|
13409
13575
|
if (parsedConfig === null || parsedConfig === void 0 ? void 0 : parsedConfig.apiUri) {
|
|
13410
13576
|
config.apiUri = String(parsedConfig.apiUri);
|
|
13411
13577
|
}
|
|
13578
|
+
if (parsedConfig === null || parsedConfig === void 0 ? void 0 : parsedConfig.consoleUri) {
|
|
13579
|
+
config.consoleUri = String(parsedConfig.consoleUri);
|
|
13580
|
+
}
|
|
13412
13581
|
if (parsedConfig === null || parsedConfig === void 0 ? void 0 : parsedConfig.testCustomerId) {
|
|
13413
13582
|
config.testCustomerId = String(parsedConfig.testCustomerId);
|
|
13414
13583
|
}
|
|
@@ -13425,6 +13594,9 @@ class MembraneConfigLoader {
|
|
|
13425
13594
|
if (process.env.MEMBRANE_API_URI) {
|
|
13426
13595
|
config.apiUri = process.env.MEMBRANE_API_URI;
|
|
13427
13596
|
}
|
|
13597
|
+
if (process.env.MEMBRANE_CONSOLE_URI) {
|
|
13598
|
+
config.consoleUri = process.env.MEMBRANE_CONSOLE_URI;
|
|
13599
|
+
}
|
|
13428
13600
|
if (process.env.MEMBRANE_TEST_CUSTOMER_ID) {
|
|
13429
13601
|
config.testCustomerId = process.env.MEMBRANE_TEST_CUSTOMER_ID;
|
|
13430
13602
|
}
|
|
@@ -13516,6 +13688,7 @@ exports.BaseFieldMappingInstance = BaseFieldMappingInstance;
|
|
|
13516
13688
|
exports.BaseFlow = BaseFlow;
|
|
13517
13689
|
exports.BaseFlowInstance = BaseFlowInstance;
|
|
13518
13690
|
exports.BaseFlowRun = BaseFlowRun;
|
|
13691
|
+
exports.BaseFunctionDefinition = BaseFunctionDefinition;
|
|
13519
13692
|
exports.BaseIntegration = BaseIntegration;
|
|
13520
13693
|
exports.BaseIntegrationLevelMembraneInterface = BaseIntegrationLevelMembraneInterface;
|
|
13521
13694
|
exports.BaseIntegrationLevelMembraneInterfaceEditableProperties = BaseIntegrationLevelMembraneInterfaceEditableProperties;
|
|
@@ -13574,6 +13747,7 @@ exports.ConnectorAuthOAuth1 = ConnectorAuthOAuth1;
|
|
|
13574
13747
|
exports.ConnectorAuthOAuth2 = ConnectorAuthOAuth2;
|
|
13575
13748
|
exports.ConnectorAuthProxy = ConnectorAuthProxy;
|
|
13576
13749
|
exports.ConnectorAuthSpec = ConnectorAuthSpec;
|
|
13750
|
+
exports.ConnectorAuthWithFunctions = ConnectorAuthWithFunctions;
|
|
13577
13751
|
exports.ConnectorDataCollectionEventImplementationType = ConnectorDataCollectionEventImplementationType;
|
|
13578
13752
|
exports.ConnectorDataCollectionMethodKeys = ConnectorDataCollectionMethodKeys;
|
|
13579
13753
|
exports.ConnectorDataLocationTypes = ConnectorDataLocationTypes;
|
|
@@ -13587,6 +13761,8 @@ exports.ConnectorMethodImplementationNotSupported = ConnectorMethodImplementatio
|
|
|
13587
13761
|
exports.ConnectorMethodImplementationOperationMapping = ConnectorMethodImplementationOperationMapping;
|
|
13588
13762
|
exports.ConnectorMethodImplementationRestApiMapping = ConnectorMethodImplementationRestApiMapping;
|
|
13589
13763
|
exports.ConnectorOperationMethodImplementationTypes = ConnectorOperationMethodImplementationTypes;
|
|
13764
|
+
exports.ConnectorOption = ConnectorOption;
|
|
13765
|
+
exports.ConnectorOptions = ConnectorOptions;
|
|
13590
13766
|
exports.ConnectorSpec = ConnectorSpec;
|
|
13591
13767
|
exports.ConnectorStatusValues = ConnectorStatusValues;
|
|
13592
13768
|
exports.ConnectorUdmCollectionMapping = ConnectorUdmCollectionMapping;
|
|
@@ -13599,6 +13775,7 @@ exports.CreateActionInstanceRequest = CreateActionInstanceRequest;
|
|
|
13599
13775
|
exports.CreateActionRequest = CreateActionRequest;
|
|
13600
13776
|
exports.CreateAgentSession = CreateAgentSession;
|
|
13601
13777
|
exports.CreateConnectionRequest = CreateConnectionRequest;
|
|
13778
|
+
exports.CreateConnectorRequest = CreateConnectorRequest;
|
|
13602
13779
|
exports.CreateCustomerRequest = CreateCustomerRequest;
|
|
13603
13780
|
exports.CreateDataLinkTableRequest = CreateDataLinkTableRequest;
|
|
13604
13781
|
exports.CreateDataSourceInstanceRequest = CreateDataSourceInstanceRequest;
|
|
@@ -13755,6 +13932,11 @@ exports.FlowRunsAccessor = FlowRunsAccessor;
|
|
|
13755
13932
|
exports.FlowsAccessor = FlowsAccessor;
|
|
13756
13933
|
exports.Formula = Formula;
|
|
13757
13934
|
exports.FullPlatformUser = FullPlatformUser;
|
|
13935
|
+
exports.FunctionDefinition = FunctionDefinition;
|
|
13936
|
+
exports.GenericFunctionDefinition = GenericFunctionDefinition;
|
|
13937
|
+
exports.GraphQLApiMappingSchema = GraphQLApiMappingSchema;
|
|
13938
|
+
exports.GraphQLFieldMappingSchema = GraphQLFieldMappingSchema;
|
|
13939
|
+
exports.GraphqlApiMappingFunction = GraphqlApiMappingFunction;
|
|
13758
13940
|
exports.HTTP_REQUEST_SCHEMA = HTTP_REQUEST_SCHEMA;
|
|
13759
13941
|
exports.HandyScenarioTemplateElement = HandyScenarioTemplateElement;
|
|
13760
13942
|
exports.HttpRequestSpec = HttpRequestSpec;
|
|
@@ -13779,6 +13961,7 @@ exports.IntegrationLevelMembraneInterfaceSelectorQuery = IntegrationLevelMembran
|
|
|
13779
13961
|
exports.IntegrationsAccessor = IntegrationsAccessor;
|
|
13780
13962
|
exports.InternalError = InternalError;
|
|
13781
13963
|
exports.InvalidLocatorError = InvalidLocatorError;
|
|
13964
|
+
exports.JavascriptFunction = JavascriptFunction;
|
|
13782
13965
|
exports.ListActionInstancesForConnectionQuery = ListActionInstancesForConnectionQuery;
|
|
13783
13966
|
exports.ListDataSourceInstancesForConnectionQuery = ListDataSourceInstancesForConnectionQuery;
|
|
13784
13967
|
exports.ListExternalEventLogRecordsQuery = ListExternalEventLogRecordsQuery;
|
|
@@ -13788,6 +13971,8 @@ exports.ListFlowInstancesForConnectionQuery = ListFlowInstancesForConnectionQuer
|
|
|
13788
13971
|
exports.MEMBRANE_ELEMENT_CONFIG_FILE_NAME = MEMBRANE_ELEMENT_CONFIG_FILE_NAME;
|
|
13789
13972
|
exports.MIN_FULL_SYNC_INTERVAL_SECONDS = MIN_FULL_SYNC_INTERVAL_SECONDS;
|
|
13790
13973
|
exports.MIN_PULL_UPDATES_INTERVAL_SECONDS = MIN_PULL_UPDATES_INTERVAL_SECONDS;
|
|
13974
|
+
exports.MappingFunction = MappingFunction;
|
|
13975
|
+
exports.MappingSchema = MappingSchema;
|
|
13791
13976
|
exports.MembraneAgentKey = MembraneAgentKey;
|
|
13792
13977
|
exports.MembraneAxiosInstance = axios;
|
|
13793
13978
|
exports.MembraneClient = MembraneClient;
|
|
@@ -13798,6 +13983,9 @@ exports.NotAuthenticatedError = NotAuthenticatedError;
|
|
|
13798
13983
|
exports.NotFoundError = NotFoundError;
|
|
13799
13984
|
exports.OAUTH1_CONFIG_SCHEMA = OAUTH1_CONFIG_SCHEMA;
|
|
13800
13985
|
exports.OAUTH_CONFIG_SCHEMA = OAUTH_CONFIG_SCHEMA;
|
|
13986
|
+
exports.OpenapiMappingSchema = OpenapiMappingSchema;
|
|
13987
|
+
exports.OperationMappingFunction = OperationMappingFunction;
|
|
13988
|
+
exports.OperationMappingSchema = OperationMappingSchema;
|
|
13801
13989
|
exports.OrgLimits = OrgLimits;
|
|
13802
13990
|
exports.OrgSchema = OrgSchema;
|
|
13803
13991
|
exports.OrgWorkspaceSchema = OrgWorkspaceSchema;
|
|
@@ -13814,10 +14002,14 @@ exports.PackageExportProperties = PackageExportProperties;
|
|
|
13814
14002
|
exports.PackagesAccessor = PackagesAccessor;
|
|
13815
14003
|
exports.PaginationQuery = PaginationQuery;
|
|
13816
14004
|
exports.PaginationResponse = PaginationResponse;
|
|
14005
|
+
exports.PatchAgentSessionSchema = PatchAgentSessionSchema;
|
|
13817
14006
|
exports.PlatformUserSchema = PlatformUserSchema;
|
|
13818
14007
|
exports.RATE_LIMITS = RATE_LIMITS;
|
|
13819
14008
|
exports.RateLimitExceededError = RateLimitExceededError;
|
|
14009
|
+
exports.RequestMappingSchema = RequestMappingSchema;
|
|
13820
14010
|
exports.ResetFlowInstanceOptions = ResetFlowInstanceOptions;
|
|
14011
|
+
exports.RestApiMappingFunction = RestApiMappingFunction;
|
|
14012
|
+
exports.RestApiMappingSchema = RestApiMappingSchema;
|
|
13821
14013
|
exports.RunActionRequest = RunActionRequest;
|
|
13822
14014
|
exports.RunFlowApiRequest = RunFlowApiRequest;
|
|
13823
14015
|
exports.ScenarioAccessor = ScenarioAccessor;
|
|
@@ -13835,6 +14027,7 @@ exports.UnitRunError = UnitRunError;
|
|
|
13835
14027
|
exports.UpdateActionInstanceRequest = UpdateActionInstanceRequest;
|
|
13836
14028
|
exports.UpdateActionRequest = UpdateActionRequest;
|
|
13837
14029
|
exports.UpdateConnectionRequest = UpdateConnectionRequest;
|
|
14030
|
+
exports.UpdateConnectorRequest = UpdateConnectorRequest;
|
|
13838
14031
|
exports.UpdateCustomerRequest = UpdateCustomerRequest;
|
|
13839
14032
|
exports.UpdateDataLinkTableRequest = UpdateDataLinkTableRequest;
|
|
13840
14033
|
exports.UpdateDataSourceInstanceRequest = UpdateDataSourceInstanceRequest;
|
|
@@ -13850,6 +14043,8 @@ exports.WORKSPACE_SIZE_LIMITS = WORKSPACE_SIZE_LIMITS;
|
|
|
13850
14043
|
exports.WorkspaceElementSpecs = WorkspaceElementSpecs;
|
|
13851
14044
|
exports.WorkspaceLimitsSchema = WorkspaceLimitsSchema;
|
|
13852
14045
|
exports.WorkspacePublicKey = WorkspacePublicKey;
|
|
14046
|
+
exports.WritableConnectorVersionData = WritableConnectorVersionData;
|
|
14047
|
+
exports.WriteableConnectorFields = WriteableConnectorFields;
|
|
13853
14048
|
exports.__resolveValue = __resolveValue;
|
|
13854
14049
|
exports.addRequiredFieldsToSchema = addRequiredFieldsToSchema;
|
|
13855
14050
|
exports.addUdmFallbackFields = addUdmFallbackFields;
|