@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.node.js
CHANGED
|
@@ -3932,12 +3932,18 @@ 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: {
|
|
@@ -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,9 +4338,37 @@ exports.ConnectorStatus = void 0;
|
|
|
4241
4338
|
ConnectorStatus["beta"] = "beta";
|
|
4242
4339
|
ConnectorStatus["planned"] = "planned";
|
|
4243
4340
|
})(exports.ConnectorStatus || (exports.ConnectorStatus = {}));
|
|
4244
|
-
const
|
|
4245
|
-
|
|
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({
|
|
4246
4369
|
parametersSchema: DataSchema.optional(),
|
|
4370
|
+
test: GenericFunctionDefinition.optional(),
|
|
4371
|
+
options: ConnectorOptions.optional(),
|
|
4247
4372
|
});
|
|
4248
4373
|
const ConnectorVersionData = z.z
|
|
4249
4374
|
.object({
|
|
@@ -4259,6 +4384,7 @@ const ConnectorVersionData = z.z
|
|
|
4259
4384
|
hasData: z.z.boolean().optional(),
|
|
4260
4385
|
isReadOnly: z.z.boolean().optional(),
|
|
4261
4386
|
version: z.z.string(),
|
|
4387
|
+
credentialsSchema: DataSchema.optional(),
|
|
4262
4388
|
})
|
|
4263
4389
|
.extend(WritableConnectorVersionData.shape);
|
|
4264
4390
|
const ConnectorVersion = ConnectorVersionData.extend({
|
|
@@ -4266,6 +4392,20 @@ const ConnectorVersion = ConnectorVersionData.extend({
|
|
|
4266
4392
|
connectorId: z.z.string(),
|
|
4267
4393
|
changelog: z.z.string(),
|
|
4268
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
|
+
});
|
|
4269
4409
|
const BaseConnector = z.z.object({
|
|
4270
4410
|
id: z.z.string(),
|
|
4271
4411
|
key: z.z.string(),
|
|
@@ -12965,6 +13105,7 @@ exports.AgentSessionState = void 0;
|
|
|
12965
13105
|
const AgentSession = z.z.object({
|
|
12966
13106
|
id: z.z.string(),
|
|
12967
13107
|
workspaceId: z.z.string(),
|
|
13108
|
+
userId: z.z.string().optional(),
|
|
12968
13109
|
workspaceElementType: z.z.enum(exports.WorkspaceElementType),
|
|
12969
13110
|
workspaceElementId: z.z.string(),
|
|
12970
13111
|
type: z.z.string(),
|
|
@@ -12989,6 +13130,7 @@ const CreateAgentSession = z.z.object({
|
|
|
12989
13130
|
workspaceElementId: z.z.string().min(1).optional(),
|
|
12990
13131
|
prompt: z.z.string().min(1),
|
|
12991
13132
|
testCustomerId: z.z.string().optional(),
|
|
13133
|
+
isExternal: z.z.boolean().optional(),
|
|
12992
13134
|
});
|
|
12993
13135
|
const AgentSessionInputSchema = z.z.object({
|
|
12994
13136
|
input: z.z.string().min(1),
|
|
@@ -13546,6 +13688,7 @@ exports.BaseFieldMappingInstance = BaseFieldMappingInstance;
|
|
|
13546
13688
|
exports.BaseFlow = BaseFlow;
|
|
13547
13689
|
exports.BaseFlowInstance = BaseFlowInstance;
|
|
13548
13690
|
exports.BaseFlowRun = BaseFlowRun;
|
|
13691
|
+
exports.BaseFunctionDefinition = BaseFunctionDefinition;
|
|
13549
13692
|
exports.BaseIntegration = BaseIntegration;
|
|
13550
13693
|
exports.BaseIntegrationLevelMembraneInterface = BaseIntegrationLevelMembraneInterface;
|
|
13551
13694
|
exports.BaseIntegrationLevelMembraneInterfaceEditableProperties = BaseIntegrationLevelMembraneInterfaceEditableProperties;
|
|
@@ -13604,6 +13747,7 @@ exports.ConnectorAuthOAuth1 = ConnectorAuthOAuth1;
|
|
|
13604
13747
|
exports.ConnectorAuthOAuth2 = ConnectorAuthOAuth2;
|
|
13605
13748
|
exports.ConnectorAuthProxy = ConnectorAuthProxy;
|
|
13606
13749
|
exports.ConnectorAuthSpec = ConnectorAuthSpec;
|
|
13750
|
+
exports.ConnectorAuthWithFunctions = ConnectorAuthWithFunctions;
|
|
13607
13751
|
exports.ConnectorDataCollectionEventImplementationType = ConnectorDataCollectionEventImplementationType;
|
|
13608
13752
|
exports.ConnectorDataCollectionMethodKeys = ConnectorDataCollectionMethodKeys;
|
|
13609
13753
|
exports.ConnectorDataLocationTypes = ConnectorDataLocationTypes;
|
|
@@ -13617,6 +13761,8 @@ exports.ConnectorMethodImplementationNotSupported = ConnectorMethodImplementatio
|
|
|
13617
13761
|
exports.ConnectorMethodImplementationOperationMapping = ConnectorMethodImplementationOperationMapping;
|
|
13618
13762
|
exports.ConnectorMethodImplementationRestApiMapping = ConnectorMethodImplementationRestApiMapping;
|
|
13619
13763
|
exports.ConnectorOperationMethodImplementationTypes = ConnectorOperationMethodImplementationTypes;
|
|
13764
|
+
exports.ConnectorOption = ConnectorOption;
|
|
13765
|
+
exports.ConnectorOptions = ConnectorOptions;
|
|
13620
13766
|
exports.ConnectorSpec = ConnectorSpec;
|
|
13621
13767
|
exports.ConnectorStatusValues = ConnectorStatusValues;
|
|
13622
13768
|
exports.ConnectorUdmCollectionMapping = ConnectorUdmCollectionMapping;
|
|
@@ -13629,6 +13775,7 @@ exports.CreateActionInstanceRequest = CreateActionInstanceRequest;
|
|
|
13629
13775
|
exports.CreateActionRequest = CreateActionRequest;
|
|
13630
13776
|
exports.CreateAgentSession = CreateAgentSession;
|
|
13631
13777
|
exports.CreateConnectionRequest = CreateConnectionRequest;
|
|
13778
|
+
exports.CreateConnectorRequest = CreateConnectorRequest;
|
|
13632
13779
|
exports.CreateCustomerRequest = CreateCustomerRequest;
|
|
13633
13780
|
exports.CreateDataLinkTableRequest = CreateDataLinkTableRequest;
|
|
13634
13781
|
exports.CreateDataSourceInstanceRequest = CreateDataSourceInstanceRequest;
|
|
@@ -13785,6 +13932,11 @@ exports.FlowRunsAccessor = FlowRunsAccessor;
|
|
|
13785
13932
|
exports.FlowsAccessor = FlowsAccessor;
|
|
13786
13933
|
exports.Formula = Formula;
|
|
13787
13934
|
exports.FullPlatformUser = FullPlatformUser;
|
|
13935
|
+
exports.FunctionDefinition = FunctionDefinition;
|
|
13936
|
+
exports.GenericFunctionDefinition = GenericFunctionDefinition;
|
|
13937
|
+
exports.GraphQLApiMappingSchema = GraphQLApiMappingSchema;
|
|
13938
|
+
exports.GraphQLFieldMappingSchema = GraphQLFieldMappingSchema;
|
|
13939
|
+
exports.GraphqlApiMappingFunction = GraphqlApiMappingFunction;
|
|
13788
13940
|
exports.HTTP_REQUEST_SCHEMA = HTTP_REQUEST_SCHEMA;
|
|
13789
13941
|
exports.HandyScenarioTemplateElement = HandyScenarioTemplateElement;
|
|
13790
13942
|
exports.HttpRequestSpec = HttpRequestSpec;
|
|
@@ -13809,6 +13961,7 @@ exports.IntegrationLevelMembraneInterfaceSelectorQuery = IntegrationLevelMembran
|
|
|
13809
13961
|
exports.IntegrationsAccessor = IntegrationsAccessor;
|
|
13810
13962
|
exports.InternalError = InternalError;
|
|
13811
13963
|
exports.InvalidLocatorError = InvalidLocatorError;
|
|
13964
|
+
exports.JavascriptFunction = JavascriptFunction;
|
|
13812
13965
|
exports.ListActionInstancesForConnectionQuery = ListActionInstancesForConnectionQuery;
|
|
13813
13966
|
exports.ListDataSourceInstancesForConnectionQuery = ListDataSourceInstancesForConnectionQuery;
|
|
13814
13967
|
exports.ListExternalEventLogRecordsQuery = ListExternalEventLogRecordsQuery;
|
|
@@ -13818,6 +13971,8 @@ exports.ListFlowInstancesForConnectionQuery = ListFlowInstancesForConnectionQuer
|
|
|
13818
13971
|
exports.MEMBRANE_ELEMENT_CONFIG_FILE_NAME = MEMBRANE_ELEMENT_CONFIG_FILE_NAME;
|
|
13819
13972
|
exports.MIN_FULL_SYNC_INTERVAL_SECONDS = MIN_FULL_SYNC_INTERVAL_SECONDS;
|
|
13820
13973
|
exports.MIN_PULL_UPDATES_INTERVAL_SECONDS = MIN_PULL_UPDATES_INTERVAL_SECONDS;
|
|
13974
|
+
exports.MappingFunction = MappingFunction;
|
|
13975
|
+
exports.MappingSchema = MappingSchema;
|
|
13821
13976
|
exports.MembraneAgentKey = MembraneAgentKey;
|
|
13822
13977
|
exports.MembraneAxiosInstance = axios;
|
|
13823
13978
|
exports.MembraneClient = MembraneClient;
|
|
@@ -13828,6 +13983,9 @@ exports.NotAuthenticatedError = NotAuthenticatedError;
|
|
|
13828
13983
|
exports.NotFoundError = NotFoundError;
|
|
13829
13984
|
exports.OAUTH1_CONFIG_SCHEMA = OAUTH1_CONFIG_SCHEMA;
|
|
13830
13985
|
exports.OAUTH_CONFIG_SCHEMA = OAUTH_CONFIG_SCHEMA;
|
|
13986
|
+
exports.OpenapiMappingSchema = OpenapiMappingSchema;
|
|
13987
|
+
exports.OperationMappingFunction = OperationMappingFunction;
|
|
13988
|
+
exports.OperationMappingSchema = OperationMappingSchema;
|
|
13831
13989
|
exports.OrgLimits = OrgLimits;
|
|
13832
13990
|
exports.OrgSchema = OrgSchema;
|
|
13833
13991
|
exports.OrgWorkspaceSchema = OrgWorkspaceSchema;
|
|
@@ -13848,7 +14006,10 @@ exports.PatchAgentSessionSchema = PatchAgentSessionSchema;
|
|
|
13848
14006
|
exports.PlatformUserSchema = PlatformUserSchema;
|
|
13849
14007
|
exports.RATE_LIMITS = RATE_LIMITS;
|
|
13850
14008
|
exports.RateLimitExceededError = RateLimitExceededError;
|
|
14009
|
+
exports.RequestMappingSchema = RequestMappingSchema;
|
|
13851
14010
|
exports.ResetFlowInstanceOptions = ResetFlowInstanceOptions;
|
|
14011
|
+
exports.RestApiMappingFunction = RestApiMappingFunction;
|
|
14012
|
+
exports.RestApiMappingSchema = RestApiMappingSchema;
|
|
13852
14013
|
exports.RunActionRequest = RunActionRequest;
|
|
13853
14014
|
exports.RunFlowApiRequest = RunFlowApiRequest;
|
|
13854
14015
|
exports.ScenarioAccessor = ScenarioAccessor;
|
|
@@ -13866,6 +14027,7 @@ exports.UnitRunError = UnitRunError;
|
|
|
13866
14027
|
exports.UpdateActionInstanceRequest = UpdateActionInstanceRequest;
|
|
13867
14028
|
exports.UpdateActionRequest = UpdateActionRequest;
|
|
13868
14029
|
exports.UpdateConnectionRequest = UpdateConnectionRequest;
|
|
14030
|
+
exports.UpdateConnectorRequest = UpdateConnectorRequest;
|
|
13869
14031
|
exports.UpdateCustomerRequest = UpdateCustomerRequest;
|
|
13870
14032
|
exports.UpdateDataLinkTableRequest = UpdateDataLinkTableRequest;
|
|
13871
14033
|
exports.UpdateDataSourceInstanceRequest = UpdateDataSourceInstanceRequest;
|
|
@@ -13882,6 +14044,7 @@ exports.WorkspaceElementSpecs = WorkspaceElementSpecs;
|
|
|
13882
14044
|
exports.WorkspaceLimitsSchema = WorkspaceLimitsSchema;
|
|
13883
14045
|
exports.WorkspacePublicKey = WorkspacePublicKey;
|
|
13884
14046
|
exports.WritableConnectorVersionData = WritableConnectorVersionData;
|
|
14047
|
+
exports.WriteableConnectorFields = WriteableConnectorFields;
|
|
13885
14048
|
exports.__resolveValue = __resolveValue;
|
|
13886
14049
|
exports.addRequiredFieldsToSchema = addRequiredFieldsToSchema;
|
|
13887
14050
|
exports.addUdmFallbackFields = addUdmFallbackFields;
|