File Explorer

/proc/self/root/var/runtime/node_modules/@aws-sdk/client-b2bi/dist-cjs

This explorer reads the filesystem of the server it runs on, so /workspace/user isn't present here. Browsing and the terminal still work against this server's own disk from /.

index.js33.0 KB · 1076 lines
'use strict'; var client$1 = require('@aws-sdk/core/client');var core = require('@smithy/core');var client = require('@smithy/core/client');var config = require('@smithy/core/config');var endpoints = require('@smithy/core/endpoints');var protocols = require('@smithy/core/protocols');var retry = require('@smithy/core/retry');var schema = require('@smithy/core/schema');var httpAuthSchemeProvider = require('./auth/httpAuthSchemeProvider');var runtimeConfig = require('./runtimeConfig');var schemas_0 = require('./schemas/schemas_0');var errors = require('./models/errors');var B2biServiceException = require('./models/B2biServiceException'); const resolveClientEndpointParameters = (options) => {    return Object.assign(options, {        useDualstackEndpoint: options.useDualstackEndpoint ?? false,        useFipsEndpoint: options.useFipsEndpoint ?? false,        defaultSigningName: "b2bi",    });};const commonParams = {    UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },    Endpoint: { type: "builtInParams", name: "endpoint" },    Region: { type: "builtInParams", name: "region" },    UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },}; const getHttpAuthExtensionConfiguration = (runtimeConfig) => {    const _httpAuthSchemes = runtimeConfig.httpAuthSchemes;    let _httpAuthSchemeProvider = runtimeConfig.httpAuthSchemeProvider;    let _credentials = runtimeConfig.credentials;    return {        setHttpAuthScheme(httpAuthScheme) {            const index = _httpAuthSchemes.findIndex((scheme) => scheme.schemeId === httpAuthScheme.schemeId);            if (index === -1) {                _httpAuthSchemes.push(httpAuthScheme);            }            else {                _httpAuthSchemes.splice(index, 1, httpAuthScheme);            }        },        httpAuthSchemes() {            return _httpAuthSchemes;        },        setHttpAuthSchemeProvider(httpAuthSchemeProvider) {            _httpAuthSchemeProvider = httpAuthSchemeProvider;        },        httpAuthSchemeProvider() {            return _httpAuthSchemeProvider;        },        setCredentials(credentials) {            _credentials = credentials;        },        credentials() {            return _credentials;        },    };};const resolveHttpAuthRuntimeConfig = (config) => {    return {        httpAuthSchemes: config.httpAuthSchemes(),        httpAuthSchemeProvider: config.httpAuthSchemeProvider(),        credentials: config.credentials(),    };}; const resolveRuntimeExtensions = (runtimeConfig, extensions) => {    const extensionConfiguration = Object.assign(client$1.getAwsRegionExtensionConfiguration(runtimeConfig), client.getDefaultExtensionConfiguration(runtimeConfig), protocols.getHttpHandlerExtensionConfiguration(runtimeConfig), getHttpAuthExtensionConfiguration(runtimeConfig));    extensions.forEach((extension) => extension.configure(extensionConfiguration));    return Object.assign(runtimeConfig, client$1.resolveAwsRegionExtensionConfiguration(extensionConfiguration), client.resolveDefaultRuntimeConfig(extensionConfiguration), protocols.resolveHttpHandlerRuntimeConfig(extensionConfiguration), resolveHttpAuthRuntimeConfig(extensionConfiguration));}; class B2biClient extends client.Client {    config;    constructor(...[configuration]) {        const _config_0 = runtimeConfig.getRuntimeConfig(configuration || {});        super(_config_0);        this.initConfig = _config_0;        const _config_1 = resolveClientEndpointParameters(_config_0);        const _config_2 = client$1.resolveUserAgentConfig(_config_1);        const _config_3 = retry.resolveRetryConfig(_config_2);        const _config_4 = config.resolveRegionConfig(_config_3);        const _config_5 = client$1.resolveHostHeaderConfig(_config_4);        const _config_6 = endpoints.resolveEndpointConfig(_config_5);        const _config_7 = httpAuthSchemeProvider.resolveHttpAuthSchemeConfig(_config_6);        const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);        this.config = _config_8;        this.middlewareStack.use(schema.getSchemaSerdePlugin(this.config));        this.middlewareStack.use(client$1.getUserAgentPlugin(this.config));        this.middlewareStack.use(retry.getRetryPlugin(this.config));        this.middlewareStack.use(protocols.getContentLengthPlugin(this.config));        this.middlewareStack.use(client$1.getHostHeaderPlugin(this.config));        this.middlewareStack.use(client$1.getLoggerPlugin(this.config));        this.middlewareStack.use(client$1.getRecursionDetectionPlugin(this.config));        this.middlewareStack.use(core.getHttpAuthSchemeEndpointRuleSetPlugin(this.config, {            httpAuthSchemeParametersProvider: httpAuthSchemeProvider.defaultB2biHttpAuthSchemeParametersProvider,            identityProviderConfigProvider: async (config) => new core.DefaultIdentityProviderConfig({                "aws.auth#sigv4": config.credentials,            }),        }));        this.middlewareStack.use(core.getHttpSigningPlugin(this.config));    }    destroy() {        super.destroy();    }} class CreateCapabilityCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("B2BI", "CreateCapability", {})    .n("B2biClient", "CreateCapabilityCommand")    .sc(schemas_0.CreateCapability$)    .build() {} class CreatePartnershipCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("B2BI", "CreatePartnership", {})    .n("B2biClient", "CreatePartnershipCommand")    .sc(schemas_0.CreatePartnership$)    .build() {} class CreateProfileCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("B2BI", "CreateProfile", {})    .n("B2biClient", "CreateProfileCommand")    .sc(schemas_0.CreateProfile$)    .build() {} class CreateStarterMappingTemplateCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("B2BI", "CreateStarterMappingTemplate", {})    .n("B2biClient", "CreateStarterMappingTemplateCommand")    .sc(schemas_0.CreateStarterMappingTemplate$)    .build() {} class CreateTransformerCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("B2BI", "CreateTransformer", {})    .n("B2biClient", "CreateTransformerCommand")    .sc(schemas_0.CreateTransformer$)    .build() {} class DeleteCapabilityCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("B2BI", "DeleteCapability", {})    .n("B2biClient", "DeleteCapabilityCommand")    .sc(schemas_0.DeleteCapability$)    .build() {} class DeletePartnershipCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("B2BI", "DeletePartnership", {})    .n("B2biClient", "DeletePartnershipCommand")    .sc(schemas_0.DeletePartnership$)    .build() {} class DeleteProfileCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("B2BI", "DeleteProfile", {})    .n("B2biClient", "DeleteProfileCommand")    .sc(schemas_0.DeleteProfile$)    .build() {} class DeleteTransformerCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("B2BI", "DeleteTransformer", {})    .n("B2biClient", "DeleteTransformerCommand")    .sc(schemas_0.DeleteTransformer$)    .build() {} class GenerateMappingCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("B2BI", "GenerateMapping", {})    .n("B2biClient", "GenerateMappingCommand")    .sc(schemas_0.GenerateMapping$)    .build() {} class GetCapabilityCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("B2BI", "GetCapability", {})    .n("B2biClient", "GetCapabilityCommand")    .sc(schemas_0.GetCapability$)    .build() {} class GetPartnershipCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("B2BI", "GetPartnership", {})    .n("B2biClient", "GetPartnershipCommand")    .sc(schemas_0.GetPartnership$)    .build() {} class GetProfileCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("B2BI", "GetProfile", {})    .n("B2biClient", "GetProfileCommand")    .sc(schemas_0.GetProfile$)    .build() {} class GetTransformerCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("B2BI", "GetTransformer", {})    .n("B2biClient", "GetTransformerCommand")    .sc(schemas_0.GetTransformer$)    .build() {} class GetTransformerJobCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("B2BI", "GetTransformerJob", {})    .n("B2biClient", "GetTransformerJobCommand")    .sc(schemas_0.GetTransformerJob$)    .build() {} class ListCapabilitiesCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("B2BI", "ListCapabilities", {})    .n("B2biClient", "ListCapabilitiesCommand")    .sc(schemas_0.ListCapabilities$)    .build() {} class ListPartnershipsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("B2BI", "ListPartnerships", {})    .n("B2biClient", "ListPartnershipsCommand")    .sc(schemas_0.ListPartnerships$)    .build() {} class ListProfilesCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("B2BI", "ListProfiles", {})    .n("B2biClient", "ListProfilesCommand")    .sc(schemas_0.ListProfiles$)    .build() {} class ListTagsForResourceCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("B2BI", "ListTagsForResource", {})    .n("B2biClient", "ListTagsForResourceCommand")    .sc(schemas_0.ListTagsForResource$)    .build() {} class ListTransformersCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("B2BI", "ListTransformers", {})    .n("B2biClient", "ListTransformersCommand")    .sc(schemas_0.ListTransformers$)    .build() {} class StartTransformerJobCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("B2BI", "StartTransformerJob", {})    .n("B2biClient", "StartTransformerJobCommand")    .sc(schemas_0.StartTransformerJob$)    .build() {} class TagResourceCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("B2BI", "TagResource", {})    .n("B2biClient", "TagResourceCommand")    .sc(schemas_0.TagResource$)    .build() {} class TestConversionCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("B2BI", "TestConversion", {})    .n("B2biClient", "TestConversionCommand")    .sc(schemas_0.TestConversion$)    .build() {} class TestMappingCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("B2BI", "TestMapping", {})    .n("B2biClient", "TestMappingCommand")    .sc(schemas_0.TestMapping$)    .build() {} class TestParsingCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("B2BI", "TestParsing", {})    .n("B2biClient", "TestParsingCommand")    .sc(schemas_0.TestParsing$)    .build() {} class UntagResourceCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("B2BI", "UntagResource", {})    .n("B2biClient", "UntagResourceCommand")    .sc(schemas_0.UntagResource$)    .build() {} class UpdateCapabilityCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("B2BI", "UpdateCapability", {})    .n("B2biClient", "UpdateCapabilityCommand")    .sc(schemas_0.UpdateCapability$)    .build() {} class UpdatePartnershipCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("B2BI", "UpdatePartnership", {})    .n("B2biClient", "UpdatePartnershipCommand")    .sc(schemas_0.UpdatePartnership$)    .build() {} class UpdateProfileCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("B2BI", "UpdateProfile", {})    .n("B2biClient", "UpdateProfileCommand")    .sc(schemas_0.UpdateProfile$)    .build() {} class UpdateTransformerCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("B2BI", "UpdateTransformer", {})    .n("B2biClient", "UpdateTransformerCommand")    .sc(schemas_0.UpdateTransformer$)    .build() {} const paginateListCapabilities = core.createPaginator(B2biClient, ListCapabilitiesCommand, "nextToken", "nextToken", "maxResults"); const paginateListPartnerships = core.createPaginator(B2biClient, ListPartnershipsCommand, "nextToken", "nextToken", "maxResults"); const paginateListProfiles = core.createPaginator(B2biClient, ListProfilesCommand, "nextToken", "nextToken", "maxResults"); const paginateListTransformers = core.createPaginator(B2biClient, ListTransformersCommand, "nextToken", "nextToken", "maxResults"); const checkState = async (client$1, input) => {    let reason;    try {        let result = await client$1.send(new GetTransformerJobCommand(input));        reason = result;        try {            const returnComparator = () => {                return result.status;            };            if (returnComparator() === "succeeded") {                return { state: client.WaiterState.SUCCESS, reason };            }        }        catch (e) { }        try {            const returnComparator = () => {                return result.status;            };            if (returnComparator() === "failed") {                return { state: client.WaiterState.FAILURE, reason };            }        }        catch (e) { }    }    catch (exception) {        reason = exception;    }    return { state: client.WaiterState.RETRY, reason };};const waitForTransformerJobSucceeded = async (params, input) => {    const serviceDefaults = { minDelay: 10, maxDelay: 120 };    return client.createWaiter({ ...serviceDefaults, ...params }, input, checkState);};const waitUntilTransformerJobSucceeded = async (params, input) => {    const serviceDefaults = { minDelay: 10, maxDelay: 120 };    const result = await client.createWaiter({ ...serviceDefaults, ...params }, input, checkState);    return client.checkExceptions(result);}; const commands = {    CreateCapabilityCommand,    CreatePartnershipCommand,    CreateProfileCommand,    CreateStarterMappingTemplateCommand,    CreateTransformerCommand,    DeleteCapabilityCommand,    DeletePartnershipCommand,    DeleteProfileCommand,    DeleteTransformerCommand,    GenerateMappingCommand,    GetCapabilityCommand,    GetPartnershipCommand,    GetProfileCommand,    GetTransformerCommand,    GetTransformerJobCommand,    ListCapabilitiesCommand,    ListPartnershipsCommand,    ListProfilesCommand,    ListTagsForResourceCommand,    ListTransformersCommand,    StartTransformerJobCommand,    TagResourceCommand,    TestConversionCommand,    TestMappingCommand,    TestParsingCommand,    UntagResourceCommand,    UpdateCapabilityCommand,    UpdatePartnershipCommand,    UpdateProfileCommand,    UpdateTransformerCommand,};const paginators = {    paginateListCapabilities,    paginateListPartnerships,    paginateListProfiles,    paginateListTransformers,};const waiters = {    waitUntilTransformerJobSucceeded,};class B2bi extends B2biClient {}client.createAggregatedClient(commands, B2bi, { paginators, waiters }); const X12SplitBy = {    NONE: "NONE",    TRANSACTION: "TRANSACTION",};const ElementRequirement = {    MANDATORY: "MANDATORY",    OPTIONAL: "OPTIONAL",};const CapabilityDirection = {    INBOUND: "INBOUND",    OUTBOUND: "OUTBOUND",};const X12TransactionSet = {    X12_100: "X12_100",    X12_101: "X12_101",    X12_102: "X12_102",    X12_103: "X12_103",    X12_104: "X12_104",    X12_105: "X12_105",    X12_106: "X12_106",    X12_107: "X12_107",    X12_108: "X12_108",    X12_109: "X12_109",    X12_110: "X12_110",    X12_111: "X12_111",    X12_112: "X12_112",    X12_113: "X12_113",    X12_120: "X12_120",    X12_121: "X12_121",    X12_124: "X12_124",    X12_125: "X12_125",    X12_126: "X12_126",    X12_127: "X12_127",    X12_128: "X12_128",    X12_129: "X12_129",    X12_130: "X12_130",    X12_131: "X12_131",    X12_132: "X12_132",    X12_133: "X12_133",    X12_135: "X12_135",    X12_138: "X12_138",    X12_139: "X12_139",    X12_140: "X12_140",    X12_141: "X12_141",    X12_142: "X12_142",    X12_143: "X12_143",    X12_144: "X12_144",    X12_146: "X12_146",    X12_147: "X12_147",    X12_148: "X12_148",    X12_149: "X12_149",    X12_150: "X12_150",    X12_151: "X12_151",    X12_152: "X12_152",    X12_153: "X12_153",    X12_154: "X12_154",    X12_155: "X12_155",    X12_157: "X12_157",    X12_158: "X12_158",    X12_159: "X12_159",    X12_160: "X12_160",    X12_161: "X12_161",    X12_163: "X12_163",    X12_170: "X12_170",    X12_175: "X12_175",    X12_176: "X12_176",    X12_179: "X12_179",    X12_180: "X12_180",    X12_185: "X12_185",    X12_186: "X12_186",    X12_187: "X12_187",    X12_188: "X12_188",    X12_189: "X12_189",    X12_190: "X12_190",    X12_191: "X12_191",    X12_194: "X12_194",    X12_195: "X12_195",    X12_196: "X12_196",    X12_197: "X12_197",    X12_198: "X12_198",    X12_199: "X12_199",    X12_200: "X12_200",    X12_201: "X12_201",    X12_202: "X12_202",    X12_203: "X12_203",    X12_204: "X12_204",    X12_205: "X12_205",    X12_206: "X12_206",    X12_210: "X12_210",    X12_211: "X12_211",    X12_212: "X12_212",    X12_213: "X12_213",    X12_214: "X12_214",    X12_215: "X12_215",    X12_216: "X12_216",    X12_217: "X12_217",    X12_218: "X12_218",    X12_219: "X12_219",    X12_220: "X12_220",    X12_222: "X12_222",    X12_223: "X12_223",    X12_224: "X12_224",    X12_225: "X12_225",    X12_227: "X12_227",    X12_228: "X12_228",    X12_240: "X12_240",    X12_242: "X12_242",    X12_244: "X12_244",    X12_245: "X12_245",    X12_248: "X12_248",    X12_249: "X12_249",    X12_250: "X12_250",    X12_251: "X12_251",    X12_252: "X12_252",    X12_255: "X12_255",    X12_256: "X12_256",    X12_259: "X12_259",    X12_260: "X12_260",    X12_261: "X12_261",    X12_262: "X12_262",    X12_263: "X12_263",    X12_264: "X12_264",    X12_265: "X12_265",    X12_266: "X12_266",    X12_267: "X12_267",    X12_268: "X12_268",    X12_269: "X12_269",    X12_270: "X12_270",    X12_270_X279: "X12_270_X279",    X12_271: "X12_271",    X12_271_X279: "X12_271_X279",    X12_272: "X12_272",    X12_273: "X12_273",    X12_274: "X12_274",    X12_275: "X12_275",    X12_275_X210: "X12_275_X210",    X12_275_X211: "X12_275_X211",    X12_276: "X12_276",    X12_276_X212: "X12_276_X212",    X12_277: "X12_277",    X12_277_X212: "X12_277_X212",    X12_277_X214: "X12_277_X214",    X12_277_X364: "X12_277_X364",    X12_278: "X12_278",    X12_278_X217: "X12_278_X217",    X12_280: "X12_280",    X12_283: "X12_283",    X12_284: "X12_284",    X12_285: "X12_285",    X12_286: "X12_286",    X12_288: "X12_288",    X12_290: "X12_290",    X12_300: "X12_300",    X12_301: "X12_301",    X12_303: "X12_303",    X12_304: "X12_304",    X12_309: "X12_309",    X12_310: "X12_310",    X12_311: "X12_311",    X12_312: "X12_312",    X12_313: "X12_313",    X12_315: "X12_315",    X12_317: "X12_317",    X12_319: "X12_319",    X12_322: "X12_322",    X12_323: "X12_323",    X12_324: "X12_324",    X12_325: "X12_325",    X12_326: "X12_326",    X12_350: "X12_350",    X12_352: "X12_352",    X12_353: "X12_353",    X12_354: "X12_354",    X12_355: "X12_355",    X12_356: "X12_356",    X12_357: "X12_357",    X12_358: "X12_358",    X12_361: "X12_361",    X12_362: "X12_362",    X12_404: "X12_404",    X12_410: "X12_410",    X12_412: "X12_412",    X12_414: "X12_414",    X12_417: "X12_417",    X12_418: "X12_418",    X12_419: "X12_419",    X12_420: "X12_420",    X12_421: "X12_421",    X12_422: "X12_422",    X12_423: "X12_423",    X12_424: "X12_424",    X12_425: "X12_425",    X12_426: "X12_426",    X12_429: "X12_429",    X12_431: "X12_431",    X12_432: "X12_432",    X12_433: "X12_433",    X12_434: "X12_434",    X12_435: "X12_435",    X12_436: "X12_436",    X12_437: "X12_437",    X12_440: "X12_440",    X12_451: "X12_451",    X12_452: "X12_452",    X12_453: "X12_453",    X12_455: "X12_455",    X12_456: "X12_456",    X12_460: "X12_460",    X12_463: "X12_463",    X12_466: "X12_466",    X12_468: "X12_468",    X12_470: "X12_470",    X12_475: "X12_475",    X12_485: "X12_485",    X12_486: "X12_486",    X12_490: "X12_490",    X12_492: "X12_492",    X12_494: "X12_494",    X12_500: "X12_500",    X12_501: "X12_501",    X12_503: "X12_503",    X12_504: "X12_504",    X12_511: "X12_511",    X12_517: "X12_517",    X12_521: "X12_521",    X12_527: "X12_527",    X12_536: "X12_536",    X12_540: "X12_540",    X12_561: "X12_561",    X12_567: "X12_567",    X12_568: "X12_568",    X12_601: "X12_601",    X12_602: "X12_602",    X12_620: "X12_620",    X12_625: "X12_625",    X12_650: "X12_650",    X12_715: "X12_715",    X12_753: "X12_753",    X12_754: "X12_754",    X12_805: "X12_805",    X12_806: "X12_806",    X12_810: "X12_810",    X12_811: "X12_811",    X12_812: "X12_812",    X12_813: "X12_813",    X12_814: "X12_814",    X12_815: "X12_815",    X12_816: "X12_816",    X12_818: "X12_818",    X12_819: "X12_819",    X12_820: "X12_820",    X12_820_X218: "X12_820_X218",    X12_820_X306: "X12_820_X306",    X12_821: "X12_821",    X12_822: "X12_822",    X12_823: "X12_823",    X12_824: "X12_824",    X12_824_X186: "X12_824_X186",    X12_826: "X12_826",    X12_827: "X12_827",    X12_828: "X12_828",    X12_829: "X12_829",    X12_830: "X12_830",    X12_831: "X12_831",    X12_832: "X12_832",    X12_833: "X12_833",    X12_834: "X12_834",    X12_834_X220: "X12_834_X220",    X12_834_X307: "X12_834_X307",    X12_834_X318: "X12_834_X318",    X12_835: "X12_835",    X12_835_X221: "X12_835_X221",    X12_836: "X12_836",    X12_837: "X12_837",    X12_837_X222: "X12_837_X222",    X12_837_X223: "X12_837_X223",    X12_837_X224: "X12_837_X224",    X12_837_X291: "X12_837_X291",    X12_837_X292: "X12_837_X292",    X12_837_X298: "X12_837_X298",    X12_838: "X12_838",    X12_839: "X12_839",    X12_840: "X12_840",    X12_841: "X12_841",    X12_842: "X12_842",    X12_843: "X12_843",    X12_844: "X12_844",    X12_845: "X12_845",    X12_846: "X12_846",    X12_847: "X12_847",    X12_848: "X12_848",    X12_849: "X12_849",    X12_850: "X12_850",    X12_851: "X12_851",    X12_852: "X12_852",    X12_853: "X12_853",    X12_854: "X12_854",    X12_855: "X12_855",    X12_856: "X12_856",    X12_857: "X12_857",    X12_858: "X12_858",    X12_859: "X12_859",    X12_860: "X12_860",    X12_861: "X12_861",    X12_862: "X12_862",    X12_863: "X12_863",    X12_864: "X12_864",    X12_865: "X12_865",    X12_866: "X12_866",    X12_867: "X12_867",    X12_868: "X12_868",    X12_869: "X12_869",    X12_870: "X12_870",    X12_871: "X12_871",    X12_872: "X12_872",    X12_873: "X12_873",    X12_874: "X12_874",    X12_875: "X12_875",    X12_876: "X12_876",    X12_877: "X12_877",    X12_878: "X12_878",    X12_879: "X12_879",    X12_880: "X12_880",    X12_881: "X12_881",    X12_882: "X12_882",    X12_883: "X12_883",    X12_884: "X12_884",    X12_885: "X12_885",    X12_886: "X12_886",    X12_887: "X12_887",    X12_888: "X12_888",    X12_889: "X12_889",    X12_891: "X12_891",    X12_893: "X12_893",    X12_894: "X12_894",    X12_895: "X12_895",    X12_896: "X12_896",    X12_920: "X12_920",    X12_924: "X12_924",    X12_925: "X12_925",    X12_926: "X12_926",    X12_928: "X12_928",    X12_940: "X12_940",    X12_943: "X12_943",    X12_944: "X12_944",    X12_945: "X12_945",    X12_947: "X12_947",    X12_980: "X12_980",    X12_990: "X12_990",    X12_993: "X12_993",    X12_996: "X12_996",    X12_997: "X12_997",    X12_998: "X12_998",    X12_999: "X12_999",    X12_999_X231: "X12_999_X231",};const X12Version = {    VERSION_4010: "VERSION_4010",    VERSION_4030: "VERSION_4030",    VERSION_4050: "VERSION_4050",    VERSION_4060: "VERSION_4060",    VERSION_5010: "VERSION_5010",    VERSION_5010_HIPAA: "VERSION_5010_HIPAA",};const CapabilityType = {    EDI: "edi",};const MappingType = {    JSONATA: "JSONATA",    XSLT: "XSLT",};const TransformerJobStatus = {    FAILED: "failed",    RUNNING: "running",    SUCCEEDED: "succeeded",};const X12FunctionalAcknowledgment = {    DO_NOT_GENERATE: "DO_NOT_GENERATE",    GENERATE_ALL_SEGMENTS: "GENERATE_ALL_SEGMENTS",    GENERATE_WITHOUT_TRANSACTION_SET_RESPONSE_LOOP: "GENERATE_WITHOUT_TRANSACTION_SET_RESPONSE_LOOP",};const X12TechnicalAcknowledgment = {    DO_NOT_GENERATE: "DO_NOT_GENERATE",    GENERATE_ALL_SEGMENTS: "GENERATE_ALL_SEGMENTS",};const X12GS05TimeFormat = {    HHMM: "HHMM",    HHMMSS: "HHMMSS",    HHMMSSDD: "HHMMSSDD",};const LineTerminator = {    CR: "CR",    CRLF: "CRLF",    LF: "LF",};const WrapFormat = {    LINE_LENGTH: "LINE_LENGTH",    ONE_LINE: "ONE_LINE",    SEGMENT: "SEGMENT",};const Logging = {    DISABLED: "DISABLED",    ENABLED: "ENABLED",};const ConversionSourceFormat = {    JSON: "JSON",    XML: "XML",};const ConversionTargetFormat = {    X12: "X12",};const FileFormat = {    JSON: "JSON",    NOT_USED: "NOT_USED",    XML: "XML",};const FromFormat = {    X12: "X12",};const MappingTemplateLanguage = {    JSONATA: "JSONATA",    XSLT: "XSLT",};const ToFormat = {    X12: "X12",};const TransformerStatus = {    ACTIVE: "active",    INACTIVE: "inactive",}; exports.$Command = client.Command;exports.__Client = client.Client;exports.B2biServiceException = B2biServiceException.B2biServiceException;exports.B2bi = B2bi;exports.B2biClient = B2biClient;exports.CapabilityDirection = CapabilityDirection;exports.CapabilityType = CapabilityType;exports.ConversionSourceFormat = ConversionSourceFormat;exports.ConversionTargetFormat = ConversionTargetFormat;exports.CreateCapabilityCommand = CreateCapabilityCommand;exports.CreatePartnershipCommand = CreatePartnershipCommand;exports.CreateProfileCommand = CreateProfileCommand;exports.CreateStarterMappingTemplateCommand = CreateStarterMappingTemplateCommand;exports.CreateTransformerCommand = CreateTransformerCommand;exports.DeleteCapabilityCommand = DeleteCapabilityCommand;exports.DeletePartnershipCommand = DeletePartnershipCommand;exports.DeleteProfileCommand = DeleteProfileCommand;exports.DeleteTransformerCommand = DeleteTransformerCommand;exports.ElementRequirement = ElementRequirement;exports.FileFormat = FileFormat;exports.FromFormat = FromFormat;exports.GenerateMappingCommand = GenerateMappingCommand;exports.GetCapabilityCommand = GetCapabilityCommand;exports.GetPartnershipCommand = GetPartnershipCommand;exports.GetProfileCommand = GetProfileCommand;exports.GetTransformerCommand = GetTransformerCommand;exports.GetTransformerJobCommand = GetTransformerJobCommand;exports.LineTerminator = LineTerminator;exports.ListCapabilitiesCommand = ListCapabilitiesCommand;exports.ListPartnershipsCommand = ListPartnershipsCommand;exports.ListProfilesCommand = ListProfilesCommand;exports.ListTagsForResourceCommand = ListTagsForResourceCommand;exports.ListTransformersCommand = ListTransformersCommand;exports.Logging = Logging;exports.MappingTemplateLanguage = MappingTemplateLanguage;exports.MappingType = MappingType;exports.StartTransformerJobCommand = StartTransformerJobCommand;exports.TagResourceCommand = TagResourceCommand;exports.TestConversionCommand = TestConversionCommand;exports.TestMappingCommand = TestMappingCommand;exports.TestParsingCommand = TestParsingCommand;exports.ToFormat = ToFormat;exports.TransformerJobStatus = TransformerJobStatus;exports.TransformerStatus = TransformerStatus;exports.UntagResourceCommand = UntagResourceCommand;exports.UpdateCapabilityCommand = UpdateCapabilityCommand;exports.UpdatePartnershipCommand = UpdatePartnershipCommand;exports.UpdateProfileCommand = UpdateProfileCommand;exports.UpdateTransformerCommand = UpdateTransformerCommand;exports.WrapFormat = WrapFormat;exports.X12FunctionalAcknowledgment = X12FunctionalAcknowledgment;exports.X12GS05TimeFormat = X12GS05TimeFormat;exports.X12SplitBy = X12SplitBy;exports.X12TechnicalAcknowledgment = X12TechnicalAcknowledgment;exports.X12TransactionSet = X12TransactionSet;exports.X12Version = X12Version;exports.paginateListCapabilities = paginateListCapabilities;exports.paginateListPartnerships = paginateListPartnerships;exports.paginateListProfiles = paginateListProfiles;exports.paginateListTransformers = paginateListTransformers;exports.waitForTransformerJobSucceeded = waitForTransformerJobSucceeded;exports.waitUntilTransformerJobSucceeded = waitUntilTransformerJobSucceeded;Object.prototype.hasOwnProperty.call(schemas_0, '__proto__') &&    !Object.prototype.hasOwnProperty.call(exports, '__proto__') &&    Object.defineProperty(exports, '__proto__', {        enumerable: true,        value: schemas_0['__proto__']    }); Object.keys(schemas_0).forEach(function (k) {    if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) exports[k] = schemas_0[k];});Object.prototype.hasOwnProperty.call(errors, '__proto__') &&    !Object.prototype.hasOwnProperty.call(exports, '__proto__') &&    Object.defineProperty(exports, '__proto__', {        enumerable: true,        value: errors['__proto__']    }); Object.keys(errors).forEach(function (k) {    if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) exports[k] = errors[k];});