File Explorer

/proc/self/root/var/runtime/node_modules/@aws-sdk/client-amplifybackend/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.js23.7 KB · 684 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 AmplifyBackendServiceException = require('./models/AmplifyBackendServiceException'); const resolveClientEndpointParameters = (options) => {    return Object.assign(options, {        useDualstackEndpoint: options.useDualstackEndpoint ?? false,        useFipsEndpoint: options.useFipsEndpoint ?? false,        defaultSigningName: "amplifybackend",    });};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 AmplifyBackendClient 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.defaultAmplifyBackendHttpAuthSchemeParametersProvider,            identityProviderConfigProvider: async (config) => new core.DefaultIdentityProviderConfig({                "aws.auth#sigv4": config.credentials,            }),        }));        this.middlewareStack.use(core.getHttpSigningPlugin(this.config));    }    destroy() {        super.destroy();    }} class CloneBackendCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmplifyBackend", "CloneBackend", {})    .n("AmplifyBackendClient", "CloneBackendCommand")    .sc(schemas_0.CloneBackend$)    .build() {} class CreateBackendAPICommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmplifyBackend", "CreateBackendAPI", {})    .n("AmplifyBackendClient", "CreateBackendAPICommand")    .sc(schemas_0.CreateBackendAPI$)    .build() {} class CreateBackendAuthCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmplifyBackend", "CreateBackendAuth", {})    .n("AmplifyBackendClient", "CreateBackendAuthCommand")    .sc(schemas_0.CreateBackendAuth$)    .build() {} class CreateBackendCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmplifyBackend", "CreateBackend", {})    .n("AmplifyBackendClient", "CreateBackendCommand")    .sc(schemas_0.CreateBackend$)    .build() {} class CreateBackendConfigCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmplifyBackend", "CreateBackendConfig", {})    .n("AmplifyBackendClient", "CreateBackendConfigCommand")    .sc(schemas_0.CreateBackendConfig$)    .build() {} class CreateBackendStorageCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmplifyBackend", "CreateBackendStorage", {})    .n("AmplifyBackendClient", "CreateBackendStorageCommand")    .sc(schemas_0.CreateBackendStorage$)    .build() {} class CreateTokenCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmplifyBackend", "CreateToken", {})    .n("AmplifyBackendClient", "CreateTokenCommand")    .sc(schemas_0.CreateToken$)    .build() {} class DeleteBackendAPICommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmplifyBackend", "DeleteBackendAPI", {})    .n("AmplifyBackendClient", "DeleteBackendAPICommand")    .sc(schemas_0.DeleteBackendAPI$)    .build() {} class DeleteBackendAuthCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmplifyBackend", "DeleteBackendAuth", {})    .n("AmplifyBackendClient", "DeleteBackendAuthCommand")    .sc(schemas_0.DeleteBackendAuth$)    .build() {} class DeleteBackendCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmplifyBackend", "DeleteBackend", {})    .n("AmplifyBackendClient", "DeleteBackendCommand")    .sc(schemas_0.DeleteBackend$)    .build() {} class DeleteBackendStorageCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmplifyBackend", "DeleteBackendStorage", {})    .n("AmplifyBackendClient", "DeleteBackendStorageCommand")    .sc(schemas_0.DeleteBackendStorage$)    .build() {} class DeleteTokenCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmplifyBackend", "DeleteToken", {})    .n("AmplifyBackendClient", "DeleteTokenCommand")    .sc(schemas_0.DeleteToken$)    .build() {} class GenerateBackendAPIModelsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmplifyBackend", "GenerateBackendAPIModels", {})    .n("AmplifyBackendClient", "GenerateBackendAPIModelsCommand")    .sc(schemas_0.GenerateBackendAPIModels$)    .build() {} class GetBackendAPICommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmplifyBackend", "GetBackendAPI", {})    .n("AmplifyBackendClient", "GetBackendAPICommand")    .sc(schemas_0.GetBackendAPI$)    .build() {} class GetBackendAPIModelsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmplifyBackend", "GetBackendAPIModels", {})    .n("AmplifyBackendClient", "GetBackendAPIModelsCommand")    .sc(schemas_0.GetBackendAPIModels$)    .build() {} class GetBackendAuthCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmplifyBackend", "GetBackendAuth", {})    .n("AmplifyBackendClient", "GetBackendAuthCommand")    .sc(schemas_0.GetBackendAuth$)    .build() {} class GetBackendCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmplifyBackend", "GetBackend", {})    .n("AmplifyBackendClient", "GetBackendCommand")    .sc(schemas_0.GetBackend$)    .build() {} class GetBackendJobCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmplifyBackend", "GetBackendJob", {})    .n("AmplifyBackendClient", "GetBackendJobCommand")    .sc(schemas_0.GetBackendJob$)    .build() {} class GetBackendStorageCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmplifyBackend", "GetBackendStorage", {})    .n("AmplifyBackendClient", "GetBackendStorageCommand")    .sc(schemas_0.GetBackendStorage$)    .build() {} class GetTokenCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmplifyBackend", "GetToken", {})    .n("AmplifyBackendClient", "GetTokenCommand")    .sc(schemas_0.GetToken$)    .build() {} class ImportBackendAuthCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmplifyBackend", "ImportBackendAuth", {})    .n("AmplifyBackendClient", "ImportBackendAuthCommand")    .sc(schemas_0.ImportBackendAuth$)    .build() {} class ImportBackendStorageCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmplifyBackend", "ImportBackendStorage", {})    .n("AmplifyBackendClient", "ImportBackendStorageCommand")    .sc(schemas_0.ImportBackendStorage$)    .build() {} class ListBackendJobsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmplifyBackend", "ListBackendJobs", {})    .n("AmplifyBackendClient", "ListBackendJobsCommand")    .sc(schemas_0.ListBackendJobs$)    .build() {} class ListS3BucketsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmplifyBackend", "ListS3Buckets", {})    .n("AmplifyBackendClient", "ListS3BucketsCommand")    .sc(schemas_0.ListS3Buckets$)    .build() {} class RemoveAllBackendsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmplifyBackend", "RemoveAllBackends", {})    .n("AmplifyBackendClient", "RemoveAllBackendsCommand")    .sc(schemas_0.RemoveAllBackends$)    .build() {} class RemoveBackendConfigCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmplifyBackend", "RemoveBackendConfig", {})    .n("AmplifyBackendClient", "RemoveBackendConfigCommand")    .sc(schemas_0.RemoveBackendConfig$)    .build() {} class UpdateBackendAPICommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmplifyBackend", "UpdateBackendAPI", {})    .n("AmplifyBackendClient", "UpdateBackendAPICommand")    .sc(schemas_0.UpdateBackendAPI$)    .build() {} class UpdateBackendAuthCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmplifyBackend", "UpdateBackendAuth", {})    .n("AmplifyBackendClient", "UpdateBackendAuthCommand")    .sc(schemas_0.UpdateBackendAuth$)    .build() {} class UpdateBackendConfigCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmplifyBackend", "UpdateBackendConfig", {})    .n("AmplifyBackendClient", "UpdateBackendConfigCommand")    .sc(schemas_0.UpdateBackendConfig$)    .build() {} class UpdateBackendJobCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmplifyBackend", "UpdateBackendJob", {})    .n("AmplifyBackendClient", "UpdateBackendJobCommand")    .sc(schemas_0.UpdateBackendJob$)    .build() {} class UpdateBackendStorageCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmplifyBackend", "UpdateBackendStorage", {})    .n("AmplifyBackendClient", "UpdateBackendStorageCommand")    .sc(schemas_0.UpdateBackendStorage$)    .build() {} const commands = {    CloneBackendCommand,    CreateBackendCommand,    CreateBackendAPICommand,    CreateBackendAuthCommand,    CreateBackendConfigCommand,    CreateBackendStorageCommand,    CreateTokenCommand,    DeleteBackendCommand,    DeleteBackendAPICommand,    DeleteBackendAuthCommand,    DeleteBackendStorageCommand,    DeleteTokenCommand,    GenerateBackendAPIModelsCommand,    GetBackendCommand,    GetBackendAPICommand,    GetBackendAPIModelsCommand,    GetBackendAuthCommand,    GetBackendJobCommand,    GetBackendStorageCommand,    GetTokenCommand,    ImportBackendAuthCommand,    ImportBackendStorageCommand,    ListBackendJobsCommand,    ListS3BucketsCommand,    RemoveAllBackendsCommand,    RemoveBackendConfigCommand,    UpdateBackendAPICommand,    UpdateBackendAuthCommand,    UpdateBackendConfigCommand,    UpdateBackendJobCommand,    UpdateBackendStorageCommand,};class AmplifyBackend extends AmplifyBackendClient {}client.createAggregatedClient(commands, AmplifyBackend); const AdditionalConstraintsElement = {    REQUIRE_DIGIT: "REQUIRE_DIGIT",    REQUIRE_LOWERCASE: "REQUIRE_LOWERCASE",    REQUIRE_SYMBOL: "REQUIRE_SYMBOL",    REQUIRE_UPPERCASE: "REQUIRE_UPPERCASE",};const Mode = {    AMAZON_COGNITO_USER_POOLS: "AMAZON_COGNITO_USER_POOLS",    API_KEY: "API_KEY",    AWS_IAM: "AWS_IAM",    OPENID_CONNECT: "OPENID_CONNECT",};const ResolutionStrategy = {    AUTOMERGE: "AUTOMERGE",    LAMBDA: "LAMBDA",    NONE: "NONE",    OPTIMISTIC_CONCURRENCY: "OPTIMISTIC_CONCURRENCY",};const AuthResources = {    IDENTITY_POOL_AND_USER_POOL: "IDENTITY_POOL_AND_USER_POOL",    USER_POOL_ONLY: "USER_POOL_ONLY",};const Service = {    COGNITO: "COGNITO",};const DeliveryMethod = {    EMAIL: "EMAIL",    SMS: "SMS",};const MFAMode = {    OFF: "OFF",    ON: "ON",    OPTIONAL: "OPTIONAL",};const MfaTypesElement = {    SMS: "SMS",    TOTP: "TOTP",};const OAuthGrantType = {    CODE: "CODE",    IMPLICIT: "IMPLICIT",};const OAuthScopesElement = {    AWS_COGNITO_SIGNIN_USER_ADMIN: "AWS_COGNITO_SIGNIN_USER_ADMIN",    EMAIL: "EMAIL",    OPENID: "OPENID",    PHONE: "PHONE",    PROFILE: "PROFILE",};const RequiredSignUpAttributesElement = {    ADDRESS: "ADDRESS",    BIRTHDATE: "BIRTHDATE",    EMAIL: "EMAIL",    FAMILY_NAME: "FAMILY_NAME",    GENDER: "GENDER",    GIVEN_NAME: "GIVEN_NAME",    LOCALE: "LOCALE",    MIDDLE_NAME: "MIDDLE_NAME",    NAME: "NAME",    NICKNAME: "NICKNAME",    PHONE_NUMBER: "PHONE_NUMBER",    PICTURE: "PICTURE",    PREFERRED_USERNAME: "PREFERRED_USERNAME",    PROFILE: "PROFILE",    UPDATED_AT: "UPDATED_AT",    WEBSITE: "WEBSITE",    ZONE_INFO: "ZONE_INFO",};const SignInMethod = {    EMAIL: "EMAIL",    EMAIL_AND_PHONE_NUMBER: "EMAIL_AND_PHONE_NUMBER",    PHONE_NUMBER: "PHONE_NUMBER",    USERNAME: "USERNAME",};const AuthenticatedElement = {    CREATE_AND_UPDATE: "CREATE_AND_UPDATE",    DELETE: "DELETE",    READ: "READ",};const UnAuthenticatedElement = {    CREATE_AND_UPDATE: "CREATE_AND_UPDATE",    DELETE: "DELETE",    READ: "READ",};const ServiceName = {    S3: "S3",};const Status = {    LATEST: "LATEST",    STALE: "STALE",}; exports.$Command = client.Command;exports.__Client = client.Client;exports.AmplifyBackendServiceException = AmplifyBackendServiceException.AmplifyBackendServiceException;exports.AdditionalConstraintsElement = AdditionalConstraintsElement;exports.AmplifyBackend = AmplifyBackend;exports.AmplifyBackendClient = AmplifyBackendClient;exports.AuthResources = AuthResources;exports.AuthenticatedElement = AuthenticatedElement;exports.CloneBackendCommand = CloneBackendCommand;exports.CreateBackendAPICommand = CreateBackendAPICommand;exports.CreateBackendAuthCommand = CreateBackendAuthCommand;exports.CreateBackendCommand = CreateBackendCommand;exports.CreateBackendConfigCommand = CreateBackendConfigCommand;exports.CreateBackendStorageCommand = CreateBackendStorageCommand;exports.CreateTokenCommand = CreateTokenCommand;exports.DeleteBackendAPICommand = DeleteBackendAPICommand;exports.DeleteBackendAuthCommand = DeleteBackendAuthCommand;exports.DeleteBackendCommand = DeleteBackendCommand;exports.DeleteBackendStorageCommand = DeleteBackendStorageCommand;exports.DeleteTokenCommand = DeleteTokenCommand;exports.DeliveryMethod = DeliveryMethod;exports.GenerateBackendAPIModelsCommand = GenerateBackendAPIModelsCommand;exports.GetBackendAPICommand = GetBackendAPICommand;exports.GetBackendAPIModelsCommand = GetBackendAPIModelsCommand;exports.GetBackendAuthCommand = GetBackendAuthCommand;exports.GetBackendCommand = GetBackendCommand;exports.GetBackendJobCommand = GetBackendJobCommand;exports.GetBackendStorageCommand = GetBackendStorageCommand;exports.GetTokenCommand = GetTokenCommand;exports.ImportBackendAuthCommand = ImportBackendAuthCommand;exports.ImportBackendStorageCommand = ImportBackendStorageCommand;exports.ListBackendJobsCommand = ListBackendJobsCommand;exports.ListS3BucketsCommand = ListS3BucketsCommand;exports.MFAMode = MFAMode;exports.MfaTypesElement = MfaTypesElement;exports.Mode = Mode;exports.OAuthGrantType = OAuthGrantType;exports.OAuthScopesElement = OAuthScopesElement;exports.RemoveAllBackendsCommand = RemoveAllBackendsCommand;exports.RemoveBackendConfigCommand = RemoveBackendConfigCommand;exports.RequiredSignUpAttributesElement = RequiredSignUpAttributesElement;exports.ResolutionStrategy = ResolutionStrategy;exports.Service = Service;exports.ServiceName = ServiceName;exports.SignInMethod = SignInMethod;exports.Status = Status;exports.UnAuthenticatedElement = UnAuthenticatedElement;exports.UpdateBackendAPICommand = UpdateBackendAPICommand;exports.UpdateBackendAuthCommand = UpdateBackendAuthCommand;exports.UpdateBackendConfigCommand = UpdateBackendConfigCommand;exports.UpdateBackendJobCommand = UpdateBackendJobCommand;exports.UpdateBackendStorageCommand = UpdateBackendStorageCommand;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];});