@membranehq/sdk 0.9.7 → 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 +2 -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 +1521 -3043
- package/dist/index.browser.d.mts +1738 -3031
- package/dist/index.browser.d.ts +1738 -3031
- package/dist/index.browser.js +167 -4
- package/dist/index.browser.js.map +1 -1
- package/dist/index.browser.mjs +147 -5
- package/dist/index.browser.mjs.map +1 -1
- package/dist/index.node.d.mts +1738 -3031
- package/dist/index.node.d.ts +1738 -3031
- package/dist/index.node.js +167 -4
- package/dist/index.node.js.map +1 -1
- package/dist/index.node.mjs +147 -5
- package/dist/index.node.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.browser.js
CHANGED
|
@@ -3908,12 +3908,18 @@ const ConnectorAuthMethodTypes = {
|
|
|
3908
3908
|
},
|
|
3909
3909
|
getCredentialsFromAccessTokenResponse: {
|
|
3910
3910
|
authTypes: ['oauth2'],
|
|
3911
|
-
supportedImplementationTypes: [
|
|
3911
|
+
supportedImplementationTypes: [
|
|
3912
|
+
exports.ConnectorMethodImplementationType.mapping,
|
|
3913
|
+
exports.ConnectorMethodImplementationType.javascript,
|
|
3914
|
+
],
|
|
3912
3915
|
isRequired: false,
|
|
3913
3916
|
},
|
|
3914
3917
|
getCredentialsFromRefreshTokenResponse: {
|
|
3915
3918
|
authTypes: ['oauth2'],
|
|
3916
|
-
supportedImplementationTypes: [
|
|
3919
|
+
supportedImplementationTypes: [
|
|
3920
|
+
exports.ConnectorMethodImplementationType.mapping,
|
|
3921
|
+
exports.ConnectorMethodImplementationType.javascript,
|
|
3922
|
+
],
|
|
3917
3923
|
isRequired: false,
|
|
3918
3924
|
},
|
|
3919
3925
|
getCredentialsFromConnectionParameters: {
|
|
@@ -4157,6 +4163,97 @@ const ConnectorOperationMethodImplementationTypes = [
|
|
|
4157
4163
|
exports.ConnectorMethodImplementationType.javascript,
|
|
4158
4164
|
];
|
|
4159
4165
|
|
|
4166
|
+
exports.FunctionType = void 0;
|
|
4167
|
+
(function (FunctionType) {
|
|
4168
|
+
FunctionType["mapping"] = "mapping";
|
|
4169
|
+
FunctionType["operationMapping"] = "operation-mapping";
|
|
4170
|
+
FunctionType["restApiMapping"] = "rest-api-mapping";
|
|
4171
|
+
FunctionType["graphqlApiMapping"] = "graphql-api-mapping";
|
|
4172
|
+
FunctionType["javascript"] = "javascript";
|
|
4173
|
+
})(exports.FunctionType || (exports.FunctionType = {}));
|
|
4174
|
+
const BaseFunctionDefinition = z.z.object({
|
|
4175
|
+
type: z.z.enum([
|
|
4176
|
+
exports.FunctionType.mapping,
|
|
4177
|
+
exports.FunctionType.operationMapping,
|
|
4178
|
+
exports.FunctionType.restApiMapping,
|
|
4179
|
+
exports.FunctionType.graphqlApiMapping,
|
|
4180
|
+
exports.FunctionType.javascript,
|
|
4181
|
+
]),
|
|
4182
|
+
});
|
|
4183
|
+
const GenericFunctionDefinition = z.z
|
|
4184
|
+
.object({
|
|
4185
|
+
type: z.z.enum(['mapping', 'operation-mapping', 'rest-api-mapping', 'graphql-api-mapping', 'javascript']),
|
|
4186
|
+
})
|
|
4187
|
+
.loose();
|
|
4188
|
+
|
|
4189
|
+
const GraphQLFieldMappingSchema = z.z.lazy(() => z.z.object({
|
|
4190
|
+
field: z.z.string(),
|
|
4191
|
+
args: z.z.record(z.z.string(), z.z.any()).optional(),
|
|
4192
|
+
subFields: z.z.array(GraphQLFieldMappingSchema).optional(),
|
|
4193
|
+
}));
|
|
4194
|
+
const GraphQLApiMappingSchema = z.z.object({
|
|
4195
|
+
path: z.z.string(),
|
|
4196
|
+
operationType: z.z.enum(['query', 'mutation']),
|
|
4197
|
+
requestMapping: z.z.array(GraphQLFieldMappingSchema),
|
|
4198
|
+
responseMapping: z.z.any().optional(),
|
|
4199
|
+
});
|
|
4200
|
+
const GraphqlApiMappingFunction = z.z.object({
|
|
4201
|
+
type: z.z.literal(exports.FunctionType.graphqlApiMapping),
|
|
4202
|
+
mapping: GraphQLApiMappingSchema,
|
|
4203
|
+
});
|
|
4204
|
+
|
|
4205
|
+
const JavascriptFunction = z.z.object({
|
|
4206
|
+
type: z.z.literal(exports.FunctionType.javascript),
|
|
4207
|
+
code: z.z.string(),
|
|
4208
|
+
});
|
|
4209
|
+
|
|
4210
|
+
const MappingSchema = z.z.any();
|
|
4211
|
+
const MappingFunction = z.z.object({
|
|
4212
|
+
type: z.z.literal(exports.FunctionType.mapping),
|
|
4213
|
+
mapping: MappingSchema,
|
|
4214
|
+
});
|
|
4215
|
+
|
|
4216
|
+
const OperationMappingSchema = z.z.object({
|
|
4217
|
+
operationKey: z.z.string(),
|
|
4218
|
+
inputMapping: z.z.any().optional(),
|
|
4219
|
+
outputMapping: z.z.any().optional(),
|
|
4220
|
+
});
|
|
4221
|
+
const OperationMappingFunction = z.z.object({
|
|
4222
|
+
type: z.z.literal(exports.FunctionType.operationMapping),
|
|
4223
|
+
mapping: OperationMappingSchema,
|
|
4224
|
+
});
|
|
4225
|
+
|
|
4226
|
+
const RequestMappingSchema = z.z.object({
|
|
4227
|
+
pathParameters: z.z.any().optional(),
|
|
4228
|
+
query: z.z.any().optional(),
|
|
4229
|
+
data: z.z.any().optional(),
|
|
4230
|
+
headers: z.z.any().optional(),
|
|
4231
|
+
});
|
|
4232
|
+
const RestApiMappingSchema = z.z.object({
|
|
4233
|
+
path: z.z.string(),
|
|
4234
|
+
method: z.z.string(),
|
|
4235
|
+
requestMapping: RequestMappingSchema,
|
|
4236
|
+
responseMapping: z.z.any().optional(),
|
|
4237
|
+
});
|
|
4238
|
+
const OpenapiMappingSchema = z.z.object({
|
|
4239
|
+
path: z.z.string(),
|
|
4240
|
+
method: z.z.string(),
|
|
4241
|
+
requestMapping: RequestMappingSchema,
|
|
4242
|
+
responseMapping: z.z.any().optional(),
|
|
4243
|
+
});
|
|
4244
|
+
const RestApiMappingFunction = z.z.object({
|
|
4245
|
+
type: z.z.literal(exports.FunctionType.restApiMapping),
|
|
4246
|
+
mapping: RestApiMappingSchema,
|
|
4247
|
+
});
|
|
4248
|
+
|
|
4249
|
+
const FunctionDefinition = z.z.union([
|
|
4250
|
+
MappingFunction,
|
|
4251
|
+
OperationMappingFunction,
|
|
4252
|
+
RestApiMappingFunction,
|
|
4253
|
+
GraphqlApiMappingFunction,
|
|
4254
|
+
JavascriptFunction,
|
|
4255
|
+
]);
|
|
4256
|
+
|
|
4160
4257
|
const CONNECTOR_VERSION_DEVELOPMENT = 'dev';
|
|
4161
4258
|
const CONNECTOR_VERSION_LATEST = 'latest';
|
|
4162
4259
|
const CONNECTOR_CATEGORIES = [
|
|
@@ -4217,9 +4314,37 @@ exports.ConnectorStatus = void 0;
|
|
|
4217
4314
|
ConnectorStatus["beta"] = "beta";
|
|
4218
4315
|
ConnectorStatus["planned"] = "planned";
|
|
4219
4316
|
})(exports.ConnectorStatus || (exports.ConnectorStatus = {}));
|
|
4220
|
-
const
|
|
4221
|
-
|
|
4317
|
+
const ConnectorAuthWithFunctions = z.z.object({
|
|
4318
|
+
type: z.z
|
|
4319
|
+
.enum(['integration-app-token', 'membrane-token', 'oauth2', 'oauth1', 'client-credentials', 'proxy'])
|
|
4320
|
+
.optional(),
|
|
4321
|
+
customCredentialsSchema: DataSchema.optional(),
|
|
4322
|
+
ui: z.z
|
|
4323
|
+
.object({
|
|
4324
|
+
schema: DataSchema.optional(),
|
|
4325
|
+
description: z.z.string().optional(),
|
|
4326
|
+
helpUri: z.z.string().optional(),
|
|
4327
|
+
})
|
|
4328
|
+
.optional(),
|
|
4329
|
+
getCredentialsFromConnectionParameters: GenericFunctionDefinition.optional(),
|
|
4330
|
+
refreshCredentials: GenericFunctionDefinition.optional(),
|
|
4331
|
+
makeApiClient: GenericFunctionDefinition.optional(),
|
|
4332
|
+
getOAuthConfig: GenericFunctionDefinition.optional(),
|
|
4333
|
+
getTokenData: GenericFunctionDefinition.optional(),
|
|
4334
|
+
getCredentialsFromAccessTokenResponse: GenericFunctionDefinition.optional(),
|
|
4335
|
+
getCredentialsFromRefreshTokenResponse: GenericFunctionDefinition.optional(),
|
|
4336
|
+
proxyKey: z.z.string().optional(),
|
|
4337
|
+
});
|
|
4338
|
+
const ConnectorOption = ConnectorAuthWithFunctions.extend({
|
|
4339
|
+
title: z.z.string().optional(),
|
|
4340
|
+
description: z.z.string().optional(),
|
|
4341
|
+
enabled: z.z.any().optional(),
|
|
4342
|
+
});
|
|
4343
|
+
const ConnectorOptions = z.z.record(z.z.string(), ConnectorOption);
|
|
4344
|
+
const WritableConnectorVersionData = ConnectorAuthWithFunctions.extend({
|
|
4222
4345
|
parametersSchema: DataSchema.optional(),
|
|
4346
|
+
test: GenericFunctionDefinition.optional(),
|
|
4347
|
+
options: ConnectorOptions.optional(),
|
|
4223
4348
|
});
|
|
4224
4349
|
const ConnectorVersionData = z.z
|
|
4225
4350
|
.object({
|
|
@@ -4235,6 +4360,7 @@ const ConnectorVersionData = z.z
|
|
|
4235
4360
|
hasData: z.z.boolean().optional(),
|
|
4236
4361
|
isReadOnly: z.z.boolean().optional(),
|
|
4237
4362
|
version: z.z.string(),
|
|
4363
|
+
credentialsSchema: DataSchema.optional(),
|
|
4238
4364
|
})
|
|
4239
4365
|
.extend(WritableConnectorVersionData.shape);
|
|
4240
4366
|
const ConnectorVersion = ConnectorVersionData.extend({
|
|
@@ -4242,6 +4368,20 @@ const ConnectorVersion = ConnectorVersionData.extend({
|
|
|
4242
4368
|
connectorId: z.z.string(),
|
|
4243
4369
|
changelog: z.z.string(),
|
|
4244
4370
|
});
|
|
4371
|
+
const WriteableConnectorFields = z.z
|
|
4372
|
+
.object({
|
|
4373
|
+
key: z.z.string().optional(),
|
|
4374
|
+
name: z.z.string().optional(),
|
|
4375
|
+
logoUri: z.z.string().optional(),
|
|
4376
|
+
appUuid: z.z.string().optional(),
|
|
4377
|
+
categories: z.z.array(z.z.string()).optional(),
|
|
4378
|
+
})
|
|
4379
|
+
.extend(WritableConnectorVersionData.shape);
|
|
4380
|
+
const UpdateConnectorRequest = WriteableConnectorFields;
|
|
4381
|
+
const CreateConnectorRequest = WriteableConnectorFields.extend({
|
|
4382
|
+
name: z.z.string(),
|
|
4383
|
+
uuid: z.z.string().optional(),
|
|
4384
|
+
});
|
|
4245
4385
|
const BaseConnector = z.z.object({
|
|
4246
4386
|
id: z.z.string(),
|
|
4247
4387
|
key: z.z.string(),
|
|
@@ -12941,6 +13081,7 @@ exports.AgentSessionState = void 0;
|
|
|
12941
13081
|
const AgentSession = z.z.object({
|
|
12942
13082
|
id: z.z.string(),
|
|
12943
13083
|
workspaceId: z.z.string(),
|
|
13084
|
+
userId: z.z.string().optional(),
|
|
12944
13085
|
workspaceElementType: z.z.enum(exports.WorkspaceElementType),
|
|
12945
13086
|
workspaceElementId: z.z.string(),
|
|
12946
13087
|
type: z.z.string(),
|
|
@@ -12965,6 +13106,7 @@ const CreateAgentSession = z.z.object({
|
|
|
12965
13106
|
workspaceElementId: z.z.string().min(1).optional(),
|
|
12966
13107
|
prompt: z.z.string().min(1),
|
|
12967
13108
|
testCustomerId: z.z.string().optional(),
|
|
13109
|
+
isExternal: z.z.boolean().optional(),
|
|
12968
13110
|
});
|
|
12969
13111
|
const AgentSessionInputSchema = z.z.object({
|
|
12970
13112
|
input: z.z.string().min(1),
|
|
@@ -13349,6 +13491,7 @@ exports.BaseFieldMappingInstance = BaseFieldMappingInstance;
|
|
|
13349
13491
|
exports.BaseFlow = BaseFlow;
|
|
13350
13492
|
exports.BaseFlowInstance = BaseFlowInstance;
|
|
13351
13493
|
exports.BaseFlowRun = BaseFlowRun;
|
|
13494
|
+
exports.BaseFunctionDefinition = BaseFunctionDefinition;
|
|
13352
13495
|
exports.BaseIntegration = BaseIntegration;
|
|
13353
13496
|
exports.BaseIntegrationLevelMembraneInterface = BaseIntegrationLevelMembraneInterface;
|
|
13354
13497
|
exports.BaseIntegrationLevelMembraneInterfaceEditableProperties = BaseIntegrationLevelMembraneInterfaceEditableProperties;
|
|
@@ -13406,6 +13549,7 @@ exports.ConnectorAuthOAuth1 = ConnectorAuthOAuth1;
|
|
|
13406
13549
|
exports.ConnectorAuthOAuth2 = ConnectorAuthOAuth2;
|
|
13407
13550
|
exports.ConnectorAuthProxy = ConnectorAuthProxy;
|
|
13408
13551
|
exports.ConnectorAuthSpec = ConnectorAuthSpec;
|
|
13552
|
+
exports.ConnectorAuthWithFunctions = ConnectorAuthWithFunctions;
|
|
13409
13553
|
exports.ConnectorDataCollectionEventImplementationType = ConnectorDataCollectionEventImplementationType;
|
|
13410
13554
|
exports.ConnectorDataCollectionMethodKeys = ConnectorDataCollectionMethodKeys;
|
|
13411
13555
|
exports.ConnectorDataLocationTypes = ConnectorDataLocationTypes;
|
|
@@ -13419,6 +13563,8 @@ exports.ConnectorMethodImplementationNotSupported = ConnectorMethodImplementatio
|
|
|
13419
13563
|
exports.ConnectorMethodImplementationOperationMapping = ConnectorMethodImplementationOperationMapping;
|
|
13420
13564
|
exports.ConnectorMethodImplementationRestApiMapping = ConnectorMethodImplementationRestApiMapping;
|
|
13421
13565
|
exports.ConnectorOperationMethodImplementationTypes = ConnectorOperationMethodImplementationTypes;
|
|
13566
|
+
exports.ConnectorOption = ConnectorOption;
|
|
13567
|
+
exports.ConnectorOptions = ConnectorOptions;
|
|
13422
13568
|
exports.ConnectorSpec = ConnectorSpec;
|
|
13423
13569
|
exports.ConnectorStatusValues = ConnectorStatusValues;
|
|
13424
13570
|
exports.ConnectorUdmCollectionMapping = ConnectorUdmCollectionMapping;
|
|
@@ -13431,6 +13577,7 @@ exports.CreateActionInstanceRequest = CreateActionInstanceRequest;
|
|
|
13431
13577
|
exports.CreateActionRequest = CreateActionRequest;
|
|
13432
13578
|
exports.CreateAgentSession = CreateAgentSession;
|
|
13433
13579
|
exports.CreateConnectionRequest = CreateConnectionRequest;
|
|
13580
|
+
exports.CreateConnectorRequest = CreateConnectorRequest;
|
|
13434
13581
|
exports.CreateCustomerRequest = CreateCustomerRequest;
|
|
13435
13582
|
exports.CreateDataLinkTableRequest = CreateDataLinkTableRequest;
|
|
13436
13583
|
exports.CreateDataSourceInstanceRequest = CreateDataSourceInstanceRequest;
|
|
@@ -13587,6 +13734,11 @@ exports.FlowRunsAccessor = FlowRunsAccessor;
|
|
|
13587
13734
|
exports.FlowsAccessor = FlowsAccessor;
|
|
13588
13735
|
exports.Formula = Formula;
|
|
13589
13736
|
exports.FullPlatformUser = FullPlatformUser;
|
|
13737
|
+
exports.FunctionDefinition = FunctionDefinition;
|
|
13738
|
+
exports.GenericFunctionDefinition = GenericFunctionDefinition;
|
|
13739
|
+
exports.GraphQLApiMappingSchema = GraphQLApiMappingSchema;
|
|
13740
|
+
exports.GraphQLFieldMappingSchema = GraphQLFieldMappingSchema;
|
|
13741
|
+
exports.GraphqlApiMappingFunction = GraphqlApiMappingFunction;
|
|
13590
13742
|
exports.HTTP_REQUEST_SCHEMA = HTTP_REQUEST_SCHEMA;
|
|
13591
13743
|
exports.HandyScenarioTemplateElement = HandyScenarioTemplateElement;
|
|
13592
13744
|
exports.HttpRequestSpec = HttpRequestSpec;
|
|
@@ -13611,6 +13763,7 @@ exports.IntegrationLevelMembraneInterfaceSelectorQuery = IntegrationLevelMembran
|
|
|
13611
13763
|
exports.IntegrationsAccessor = IntegrationsAccessor;
|
|
13612
13764
|
exports.InternalError = InternalError;
|
|
13613
13765
|
exports.InvalidLocatorError = InvalidLocatorError;
|
|
13766
|
+
exports.JavascriptFunction = JavascriptFunction;
|
|
13614
13767
|
exports.ListActionInstancesForConnectionQuery = ListActionInstancesForConnectionQuery;
|
|
13615
13768
|
exports.ListDataSourceInstancesForConnectionQuery = ListDataSourceInstancesForConnectionQuery;
|
|
13616
13769
|
exports.ListExternalEventLogRecordsQuery = ListExternalEventLogRecordsQuery;
|
|
@@ -13620,6 +13773,8 @@ exports.ListFlowInstancesForConnectionQuery = ListFlowInstancesForConnectionQuer
|
|
|
13620
13773
|
exports.MEMBRANE_ELEMENT_CONFIG_FILE_NAME = MEMBRANE_ELEMENT_CONFIG_FILE_NAME;
|
|
13621
13774
|
exports.MIN_FULL_SYNC_INTERVAL_SECONDS = MIN_FULL_SYNC_INTERVAL_SECONDS;
|
|
13622
13775
|
exports.MIN_PULL_UPDATES_INTERVAL_SECONDS = MIN_PULL_UPDATES_INTERVAL_SECONDS;
|
|
13776
|
+
exports.MappingFunction = MappingFunction;
|
|
13777
|
+
exports.MappingSchema = MappingSchema;
|
|
13623
13778
|
exports.MembraneAgentKey = MembraneAgentKey;
|
|
13624
13779
|
exports.MembraneAxiosInstance = axios;
|
|
13625
13780
|
exports.MembraneClient = MembraneClient;
|
|
@@ -13629,6 +13784,9 @@ exports.NotAuthenticatedError = NotAuthenticatedError;
|
|
|
13629
13784
|
exports.NotFoundError = NotFoundError;
|
|
13630
13785
|
exports.OAUTH1_CONFIG_SCHEMA = OAUTH1_CONFIG_SCHEMA;
|
|
13631
13786
|
exports.OAUTH_CONFIG_SCHEMA = OAUTH_CONFIG_SCHEMA;
|
|
13787
|
+
exports.OpenapiMappingSchema = OpenapiMappingSchema;
|
|
13788
|
+
exports.OperationMappingFunction = OperationMappingFunction;
|
|
13789
|
+
exports.OperationMappingSchema = OperationMappingSchema;
|
|
13632
13790
|
exports.OrgLimits = OrgLimits;
|
|
13633
13791
|
exports.OrgSchema = OrgSchema;
|
|
13634
13792
|
exports.OrgWorkspaceSchema = OrgWorkspaceSchema;
|
|
@@ -13649,7 +13807,10 @@ exports.PatchAgentSessionSchema = PatchAgentSessionSchema;
|
|
|
13649
13807
|
exports.PlatformUserSchema = PlatformUserSchema;
|
|
13650
13808
|
exports.RATE_LIMITS = RATE_LIMITS;
|
|
13651
13809
|
exports.RateLimitExceededError = RateLimitExceededError;
|
|
13810
|
+
exports.RequestMappingSchema = RequestMappingSchema;
|
|
13652
13811
|
exports.ResetFlowInstanceOptions = ResetFlowInstanceOptions;
|
|
13812
|
+
exports.RestApiMappingFunction = RestApiMappingFunction;
|
|
13813
|
+
exports.RestApiMappingSchema = RestApiMappingSchema;
|
|
13653
13814
|
exports.RunActionRequest = RunActionRequest;
|
|
13654
13815
|
exports.RunFlowApiRequest = RunFlowApiRequest;
|
|
13655
13816
|
exports.ScenarioAccessor = ScenarioAccessor;
|
|
@@ -13667,6 +13828,7 @@ exports.UnitRunError = UnitRunError;
|
|
|
13667
13828
|
exports.UpdateActionInstanceRequest = UpdateActionInstanceRequest;
|
|
13668
13829
|
exports.UpdateActionRequest = UpdateActionRequest;
|
|
13669
13830
|
exports.UpdateConnectionRequest = UpdateConnectionRequest;
|
|
13831
|
+
exports.UpdateConnectorRequest = UpdateConnectorRequest;
|
|
13670
13832
|
exports.UpdateCustomerRequest = UpdateCustomerRequest;
|
|
13671
13833
|
exports.UpdateDataLinkTableRequest = UpdateDataLinkTableRequest;
|
|
13672
13834
|
exports.UpdateDataSourceInstanceRequest = UpdateDataSourceInstanceRequest;
|
|
@@ -13683,6 +13845,7 @@ exports.WorkspaceElementSpecs = WorkspaceElementSpecs;
|
|
|
13683
13845
|
exports.WorkspaceLimitsSchema = WorkspaceLimitsSchema;
|
|
13684
13846
|
exports.WorkspacePublicKey = WorkspacePublicKey;
|
|
13685
13847
|
exports.WritableConnectorVersionData = WritableConnectorVersionData;
|
|
13848
|
+
exports.WriteableConnectorFields = WriteableConnectorFields;
|
|
13686
13849
|
exports.__resolveValue = __resolveValue;
|
|
13687
13850
|
exports.addRequiredFieldsToSchema = addRequiredFieldsToSchema;
|
|
13688
13851
|
exports.addUdmFallbackFields = addUdmFallbackFields;
|