File Explorer

/proc/self/root/proc/self/root/var/runtime/node_modules/@aws-sdk/client-chatbot/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.js28.0 KB · 662 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 ChatbotServiceException = require('./models/ChatbotServiceException'); const resolveClientEndpointParameters = (options) => {    return Object.assign(options, {        useDualstackEndpoint: options.useDualstackEndpoint ?? false,        useFipsEndpoint: options.useFipsEndpoint ?? false,        defaultSigningName: "chatbot",    });};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 ChatbotClient 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.defaultChatbotHttpAuthSchemeParametersProvider,            identityProviderConfigProvider: async (config) => new core.DefaultIdentityProviderConfig({                "aws.auth#sigv4": config.credentials,            }),        }));        this.middlewareStack.use(core.getHttpSigningPlugin(this.config));    }    destroy() {        super.destroy();    }} class AssociateToConfigurationCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("WheatleyOrchestration_20171011", "AssociateToConfiguration", {})    .n("ChatbotClient", "AssociateToConfigurationCommand")    .sc(schemas_0.AssociateToConfiguration$)    .build() {} class CreateChimeWebhookConfigurationCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("WheatleyOrchestration_20171011", "CreateChimeWebhookConfiguration", {})    .n("ChatbotClient", "CreateChimeWebhookConfigurationCommand")    .sc(schemas_0.CreateChimeWebhookConfiguration$)    .build() {} class CreateCustomActionCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("WheatleyOrchestration_20171011", "CreateCustomAction", {})    .n("ChatbotClient", "CreateCustomActionCommand")    .sc(schemas_0.CreateCustomAction$)    .build() {} class CreateMicrosoftTeamsChannelConfigurationCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("WheatleyOrchestration_20171011", "CreateMicrosoftTeamsChannelConfiguration", {})    .n("ChatbotClient", "CreateMicrosoftTeamsChannelConfigurationCommand")    .sc(schemas_0.CreateMicrosoftTeamsChannelConfiguration$)    .build() {} class CreateSlackChannelConfigurationCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("WheatleyOrchestration_20171011", "CreateSlackChannelConfiguration", {})    .n("ChatbotClient", "CreateSlackChannelConfigurationCommand")    .sc(schemas_0.CreateSlackChannelConfiguration$)    .build() {} class DeleteChimeWebhookConfigurationCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("WheatleyOrchestration_20171011", "DeleteChimeWebhookConfiguration", {})    .n("ChatbotClient", "DeleteChimeWebhookConfigurationCommand")    .sc(schemas_0.DeleteChimeWebhookConfiguration$)    .build() {} class DeleteCustomActionCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("WheatleyOrchestration_20171011", "DeleteCustomAction", {})    .n("ChatbotClient", "DeleteCustomActionCommand")    .sc(schemas_0.DeleteCustomAction$)    .build() {} class DeleteMicrosoftTeamsChannelConfigurationCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("WheatleyOrchestration_20171011", "DeleteMicrosoftTeamsChannelConfiguration", {})    .n("ChatbotClient", "DeleteMicrosoftTeamsChannelConfigurationCommand")    .sc(schemas_0.DeleteMicrosoftTeamsChannelConfiguration$)    .build() {} class DeleteMicrosoftTeamsConfiguredTeamCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("WheatleyOrchestration_20171011", "DeleteMicrosoftTeamsConfiguredTeam", {})    .n("ChatbotClient", "DeleteMicrosoftTeamsConfiguredTeamCommand")    .sc(schemas_0.DeleteMicrosoftTeamsConfiguredTeam$)    .build() {} class DeleteMicrosoftTeamsUserIdentityCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("WheatleyOrchestration_20171011", "DeleteMicrosoftTeamsUserIdentity", {})    .n("ChatbotClient", "DeleteMicrosoftTeamsUserIdentityCommand")    .sc(schemas_0.DeleteMicrosoftTeamsUserIdentity$)    .build() {} class DeleteSlackChannelConfigurationCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("WheatleyOrchestration_20171011", "DeleteSlackChannelConfiguration", {})    .n("ChatbotClient", "DeleteSlackChannelConfigurationCommand")    .sc(schemas_0.DeleteSlackChannelConfiguration$)    .build() {} class DeleteSlackUserIdentityCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("WheatleyOrchestration_20171011", "DeleteSlackUserIdentity", {})    .n("ChatbotClient", "DeleteSlackUserIdentityCommand")    .sc(schemas_0.DeleteSlackUserIdentity$)    .build() {} class DeleteSlackWorkspaceAuthorizationCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("WheatleyOrchestration_20171011", "DeleteSlackWorkspaceAuthorization", {})    .n("ChatbotClient", "DeleteSlackWorkspaceAuthorizationCommand")    .sc(schemas_0.DeleteSlackWorkspaceAuthorization$)    .build() {} class DescribeChimeWebhookConfigurationsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("WheatleyOrchestration_20171011", "DescribeChimeWebhookConfigurations", {})    .n("ChatbotClient", "DescribeChimeWebhookConfigurationsCommand")    .sc(schemas_0.DescribeChimeWebhookConfigurations$)    .build() {} class DescribeSlackChannelConfigurationsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("WheatleyOrchestration_20171011", "DescribeSlackChannelConfigurations", {})    .n("ChatbotClient", "DescribeSlackChannelConfigurationsCommand")    .sc(schemas_0.DescribeSlackChannelConfigurations$)    .build() {} class DescribeSlackUserIdentitiesCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("WheatleyOrchestration_20171011", "DescribeSlackUserIdentities", {})    .n("ChatbotClient", "DescribeSlackUserIdentitiesCommand")    .sc(schemas_0.DescribeSlackUserIdentities$)    .build() {} class DescribeSlackWorkspacesCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("WheatleyOrchestration_20171011", "DescribeSlackWorkspaces", {})    .n("ChatbotClient", "DescribeSlackWorkspacesCommand")    .sc(schemas_0.DescribeSlackWorkspaces$)    .build() {} class DisassociateFromConfigurationCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("WheatleyOrchestration_20171011", "DisassociateFromConfiguration", {})    .n("ChatbotClient", "DisassociateFromConfigurationCommand")    .sc(schemas_0.DisassociateFromConfiguration$)    .build() {} class GetAccountPreferencesCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("WheatleyOrchestration_20171011", "GetAccountPreferences", {})    .n("ChatbotClient", "GetAccountPreferencesCommand")    .sc(schemas_0.GetAccountPreferences$)    .build() {} class GetCustomActionCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("WheatleyOrchestration_20171011", "GetCustomAction", {})    .n("ChatbotClient", "GetCustomActionCommand")    .sc(schemas_0.GetCustomAction$)    .build() {} class GetMicrosoftTeamsChannelConfigurationCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("WheatleyOrchestration_20171011", "GetMicrosoftTeamsChannelConfiguration", {})    .n("ChatbotClient", "GetMicrosoftTeamsChannelConfigurationCommand")    .sc(schemas_0.GetMicrosoftTeamsChannelConfiguration$)    .build() {} class ListAssociationsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("WheatleyOrchestration_20171011", "ListAssociations", {})    .n("ChatbotClient", "ListAssociationsCommand")    .sc(schemas_0.ListAssociations$)    .build() {} class ListCustomActionsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("WheatleyOrchestration_20171011", "ListCustomActions", {})    .n("ChatbotClient", "ListCustomActionsCommand")    .sc(schemas_0.ListCustomActions$)    .build() {} class ListMicrosoftTeamsChannelConfigurationsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("WheatleyOrchestration_20171011", "ListMicrosoftTeamsChannelConfigurations", {})    .n("ChatbotClient", "ListMicrosoftTeamsChannelConfigurationsCommand")    .sc(schemas_0.ListMicrosoftTeamsChannelConfigurations$)    .build() {} class ListMicrosoftTeamsConfiguredTeamsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("WheatleyOrchestration_20171011", "ListMicrosoftTeamsConfiguredTeams", {})    .n("ChatbotClient", "ListMicrosoftTeamsConfiguredTeamsCommand")    .sc(schemas_0.ListMicrosoftTeamsConfiguredTeams$)    .build() {} class ListMicrosoftTeamsUserIdentitiesCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("WheatleyOrchestration_20171011", "ListMicrosoftTeamsUserIdentities", {})    .n("ChatbotClient", "ListMicrosoftTeamsUserIdentitiesCommand")    .sc(schemas_0.ListMicrosoftTeamsUserIdentities$)    .build() {} class ListTagsForResourceCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("WheatleyOrchestration_20171011", "ListTagsForResource", {})    .n("ChatbotClient", "ListTagsForResourceCommand")    .sc(schemas_0.ListTagsForResource$)    .build() {} class TagResourceCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("WheatleyOrchestration_20171011", "TagResource", {})    .n("ChatbotClient", "TagResourceCommand")    .sc(schemas_0.TagResource$)    .build() {} class UntagResourceCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("WheatleyOrchestration_20171011", "UntagResource", {})    .n("ChatbotClient", "UntagResourceCommand")    .sc(schemas_0.UntagResource$)    .build() {} class UpdateAccountPreferencesCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("WheatleyOrchestration_20171011", "UpdateAccountPreferences", {})    .n("ChatbotClient", "UpdateAccountPreferencesCommand")    .sc(schemas_0.UpdateAccountPreferences$)    .build() {} class UpdateChimeWebhookConfigurationCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("WheatleyOrchestration_20171011", "UpdateChimeWebhookConfiguration", {})    .n("ChatbotClient", "UpdateChimeWebhookConfigurationCommand")    .sc(schemas_0.UpdateChimeWebhookConfiguration$)    .build() {} class UpdateCustomActionCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("WheatleyOrchestration_20171011", "UpdateCustomAction", {})    .n("ChatbotClient", "UpdateCustomActionCommand")    .sc(schemas_0.UpdateCustomAction$)    .build() {} class UpdateMicrosoftTeamsChannelConfigurationCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("WheatleyOrchestration_20171011", "UpdateMicrosoftTeamsChannelConfiguration", {})    .n("ChatbotClient", "UpdateMicrosoftTeamsChannelConfigurationCommand")    .sc(schemas_0.UpdateMicrosoftTeamsChannelConfiguration$)    .build() {} class UpdateSlackChannelConfigurationCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("WheatleyOrchestration_20171011", "UpdateSlackChannelConfiguration", {})    .n("ChatbotClient", "UpdateSlackChannelConfigurationCommand")    .sc(schemas_0.UpdateSlackChannelConfiguration$)    .build() {} const paginateDescribeChimeWebhookConfigurations = core.createPaginator(ChatbotClient, DescribeChimeWebhookConfigurationsCommand, "NextToken", "NextToken", "MaxResults"); const paginateDescribeSlackChannelConfigurations = core.createPaginator(ChatbotClient, DescribeSlackChannelConfigurationsCommand, "NextToken", "NextToken", "MaxResults"); const paginateDescribeSlackUserIdentities = core.createPaginator(ChatbotClient, DescribeSlackUserIdentitiesCommand, "NextToken", "NextToken", "MaxResults"); const paginateDescribeSlackWorkspaces = core.createPaginator(ChatbotClient, DescribeSlackWorkspacesCommand, "NextToken", "NextToken", "MaxResults"); const paginateListAssociations = core.createPaginator(ChatbotClient, ListAssociationsCommand, "NextToken", "NextToken", "MaxResults"); const paginateListCustomActions = core.createPaginator(ChatbotClient, ListCustomActionsCommand, "NextToken", "NextToken", "MaxResults"); const paginateListMicrosoftTeamsChannelConfigurations = core.createPaginator(ChatbotClient, ListMicrosoftTeamsChannelConfigurationsCommand, "NextToken", "NextToken", "MaxResults"); const paginateListMicrosoftTeamsConfiguredTeams = core.createPaginator(ChatbotClient, ListMicrosoftTeamsConfiguredTeamsCommand, "NextToken", "NextToken", "MaxResults"); const paginateListMicrosoftTeamsUserIdentities = core.createPaginator(ChatbotClient, ListMicrosoftTeamsUserIdentitiesCommand, "NextToken", "NextToken", "MaxResults"); const commands = {    AssociateToConfigurationCommand,    CreateChimeWebhookConfigurationCommand,    CreateCustomActionCommand,    CreateMicrosoftTeamsChannelConfigurationCommand,    CreateSlackChannelConfigurationCommand,    DeleteChimeWebhookConfigurationCommand,    DeleteCustomActionCommand,    DeleteMicrosoftTeamsChannelConfigurationCommand,    DeleteMicrosoftTeamsConfiguredTeamCommand,    DeleteMicrosoftTeamsUserIdentityCommand,    DeleteSlackChannelConfigurationCommand,    DeleteSlackUserIdentityCommand,    DeleteSlackWorkspaceAuthorizationCommand,    DescribeChimeWebhookConfigurationsCommand,    DescribeSlackChannelConfigurationsCommand,    DescribeSlackUserIdentitiesCommand,    DescribeSlackWorkspacesCommand,    DisassociateFromConfigurationCommand,    GetAccountPreferencesCommand,    GetCustomActionCommand,    GetMicrosoftTeamsChannelConfigurationCommand,    ListAssociationsCommand,    ListCustomActionsCommand,    ListMicrosoftTeamsChannelConfigurationsCommand,    ListMicrosoftTeamsConfiguredTeamsCommand,    ListMicrosoftTeamsUserIdentitiesCommand,    ListTagsForResourceCommand,    TagResourceCommand,    UntagResourceCommand,    UpdateAccountPreferencesCommand,    UpdateChimeWebhookConfigurationCommand,    UpdateCustomActionCommand,    UpdateMicrosoftTeamsChannelConfigurationCommand,    UpdateSlackChannelConfigurationCommand,};const paginators = {    paginateDescribeChimeWebhookConfigurations,    paginateDescribeSlackChannelConfigurations,    paginateDescribeSlackUserIdentities,    paginateDescribeSlackWorkspaces,    paginateListAssociations,    paginateListCustomActions,    paginateListMicrosoftTeamsChannelConfigurations,    paginateListMicrosoftTeamsConfiguredTeams,    paginateListMicrosoftTeamsUserIdentities,};class Chatbot extends ChatbotClient {}client.createAggregatedClient(commands, Chatbot, { paginators }); const CustomActionAttachmentCriteriaOperator = {    EQUALS: "EQUALS",    HAS_VALUE: "HAS_VALUE",}; exports.$Command = client.Command;exports.__Client = client.Client;exports.ChatbotServiceException = ChatbotServiceException.ChatbotServiceException;exports.AssociateToConfigurationCommand = AssociateToConfigurationCommand;exports.Chatbot = Chatbot;exports.ChatbotClient = ChatbotClient;exports.CreateChimeWebhookConfigurationCommand = CreateChimeWebhookConfigurationCommand;exports.CreateCustomActionCommand = CreateCustomActionCommand;exports.CreateMicrosoftTeamsChannelConfigurationCommand = CreateMicrosoftTeamsChannelConfigurationCommand;exports.CreateSlackChannelConfigurationCommand = CreateSlackChannelConfigurationCommand;exports.CustomActionAttachmentCriteriaOperator = CustomActionAttachmentCriteriaOperator;exports.DeleteChimeWebhookConfigurationCommand = DeleteChimeWebhookConfigurationCommand;exports.DeleteCustomActionCommand = DeleteCustomActionCommand;exports.DeleteMicrosoftTeamsChannelConfigurationCommand = DeleteMicrosoftTeamsChannelConfigurationCommand;exports.DeleteMicrosoftTeamsConfiguredTeamCommand = DeleteMicrosoftTeamsConfiguredTeamCommand;exports.DeleteMicrosoftTeamsUserIdentityCommand = DeleteMicrosoftTeamsUserIdentityCommand;exports.DeleteSlackChannelConfigurationCommand = DeleteSlackChannelConfigurationCommand;exports.DeleteSlackUserIdentityCommand = DeleteSlackUserIdentityCommand;exports.DeleteSlackWorkspaceAuthorizationCommand = DeleteSlackWorkspaceAuthorizationCommand;exports.DescribeChimeWebhookConfigurationsCommand = DescribeChimeWebhookConfigurationsCommand;exports.DescribeSlackChannelConfigurationsCommand = DescribeSlackChannelConfigurationsCommand;exports.DescribeSlackUserIdentitiesCommand = DescribeSlackUserIdentitiesCommand;exports.DescribeSlackWorkspacesCommand = DescribeSlackWorkspacesCommand;exports.DisassociateFromConfigurationCommand = DisassociateFromConfigurationCommand;exports.GetAccountPreferencesCommand = GetAccountPreferencesCommand;exports.GetCustomActionCommand = GetCustomActionCommand;exports.GetMicrosoftTeamsChannelConfigurationCommand = GetMicrosoftTeamsChannelConfigurationCommand;exports.ListAssociationsCommand = ListAssociationsCommand;exports.ListCustomActionsCommand = ListCustomActionsCommand;exports.ListMicrosoftTeamsChannelConfigurationsCommand = ListMicrosoftTeamsChannelConfigurationsCommand;exports.ListMicrosoftTeamsConfiguredTeamsCommand = ListMicrosoftTeamsConfiguredTeamsCommand;exports.ListMicrosoftTeamsUserIdentitiesCommand = ListMicrosoftTeamsUserIdentitiesCommand;exports.ListTagsForResourceCommand = ListTagsForResourceCommand;exports.TagResourceCommand = TagResourceCommand;exports.UntagResourceCommand = UntagResourceCommand;exports.UpdateAccountPreferencesCommand = UpdateAccountPreferencesCommand;exports.UpdateChimeWebhookConfigurationCommand = UpdateChimeWebhookConfigurationCommand;exports.UpdateCustomActionCommand = UpdateCustomActionCommand;exports.UpdateMicrosoftTeamsChannelConfigurationCommand = UpdateMicrosoftTeamsChannelConfigurationCommand;exports.UpdateSlackChannelConfigurationCommand = UpdateSlackChannelConfigurationCommand;exports.paginateDescribeChimeWebhookConfigurations = paginateDescribeChimeWebhookConfigurations;exports.paginateDescribeSlackChannelConfigurations = paginateDescribeSlackChannelConfigurations;exports.paginateDescribeSlackUserIdentities = paginateDescribeSlackUserIdentities;exports.paginateDescribeSlackWorkspaces = paginateDescribeSlackWorkspaces;exports.paginateListAssociations = paginateListAssociations;exports.paginateListCustomActions = paginateListCustomActions;exports.paginateListMicrosoftTeamsChannelConfigurations = paginateListMicrosoftTeamsChannelConfigurations;exports.paginateListMicrosoftTeamsConfiguredTeams = paginateListMicrosoftTeamsConfiguredTeams;exports.paginateListMicrosoftTeamsUserIdentities = paginateListMicrosoftTeamsUserIdentities;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];});