File Explorer

/proc/self/root/var/runtime/node_modules/@aws-sdk/client-qapps/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.js25.3 KB · 731 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 QAppsServiceException = require('./models/QAppsServiceException'); const resolveClientEndpointParameters = (options) => {    return Object.assign(options, {        useDualstackEndpoint: options.useDualstackEndpoint ?? false,        useFipsEndpoint: options.useFipsEndpoint ?? false,        defaultSigningName: "qapps",    });};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 QAppsClient 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.defaultQAppsHttpAuthSchemeParametersProvider,            identityProviderConfigProvider: async (config) => new core.DefaultIdentityProviderConfig({                "aws.auth#sigv4": config.credentials,            }),        }));        this.middlewareStack.use(core.getHttpSigningPlugin(this.config));    }    destroy() {        super.destroy();    }} class AssociateLibraryItemReviewCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("QAppsService", "AssociateLibraryItemReview", {})    .n("QAppsClient", "AssociateLibraryItemReviewCommand")    .sc(schemas_0.AssociateLibraryItemReview$)    .build() {} class AssociateQAppWithUserCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("QAppsService", "AssociateQAppWithUser", {})    .n("QAppsClient", "AssociateQAppWithUserCommand")    .sc(schemas_0.AssociateQAppWithUser$)    .build() {} class BatchCreateCategoryCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("QAppsService", "BatchCreateCategory", {})    .n("QAppsClient", "BatchCreateCategoryCommand")    .sc(schemas_0.BatchCreateCategory$)    .build() {} class BatchDeleteCategoryCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("QAppsService", "BatchDeleteCategory", {})    .n("QAppsClient", "BatchDeleteCategoryCommand")    .sc(schemas_0.BatchDeleteCategory$)    .build() {} class BatchUpdateCategoryCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("QAppsService", "BatchUpdateCategory", {})    .n("QAppsClient", "BatchUpdateCategoryCommand")    .sc(schemas_0.BatchUpdateCategory$)    .build() {} class CreateLibraryItemCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("QAppsService", "CreateLibraryItem", {})    .n("QAppsClient", "CreateLibraryItemCommand")    .sc(schemas_0.CreateLibraryItem$)    .build() {} class CreatePresignedUrlCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("QAppsService", "CreatePresignedUrl", {})    .n("QAppsClient", "CreatePresignedUrlCommand")    .sc(schemas_0.CreatePresignedUrl$)    .build() {} class CreateQAppCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("QAppsService", "CreateQApp", {})    .n("QAppsClient", "CreateQAppCommand")    .sc(schemas_0.CreateQApp$)    .build() {} class DeleteLibraryItemCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("QAppsService", "DeleteLibraryItem", {})    .n("QAppsClient", "DeleteLibraryItemCommand")    .sc(schemas_0.DeleteLibraryItem$)    .build() {} class DeleteQAppCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("QAppsService", "DeleteQApp", {})    .n("QAppsClient", "DeleteQAppCommand")    .sc(schemas_0.DeleteQApp$)    .build() {} class DescribeQAppPermissionsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("QAppsService", "DescribeQAppPermissions", {})    .n("QAppsClient", "DescribeQAppPermissionsCommand")    .sc(schemas_0.DescribeQAppPermissions$)    .build() {} class DisassociateLibraryItemReviewCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("QAppsService", "DisassociateLibraryItemReview", {})    .n("QAppsClient", "DisassociateLibraryItemReviewCommand")    .sc(schemas_0.DisassociateLibraryItemReview$)    .build() {} class DisassociateQAppFromUserCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("QAppsService", "DisassociateQAppFromUser", {})    .n("QAppsClient", "DisassociateQAppFromUserCommand")    .sc(schemas_0.DisassociateQAppFromUser$)    .build() {} class ExportQAppSessionDataCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("QAppsService", "ExportQAppSessionData", {})    .n("QAppsClient", "ExportQAppSessionDataCommand")    .sc(schemas_0.ExportQAppSessionData$)    .build() {} class GetLibraryItemCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("QAppsService", "GetLibraryItem", {})    .n("QAppsClient", "GetLibraryItemCommand")    .sc(schemas_0.GetLibraryItem$)    .build() {} class GetQAppCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("QAppsService", "GetQApp", {})    .n("QAppsClient", "GetQAppCommand")    .sc(schemas_0.GetQApp$)    .build() {} class GetQAppSessionCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("QAppsService", "GetQAppSession", {})    .n("QAppsClient", "GetQAppSessionCommand")    .sc(schemas_0.GetQAppSession$)    .build() {} class GetQAppSessionMetadataCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("QAppsService", "GetQAppSessionMetadata", {})    .n("QAppsClient", "GetQAppSessionMetadataCommand")    .sc(schemas_0.GetQAppSessionMetadata$)    .build() {} class ImportDocumentCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("QAppsService", "ImportDocument", {})    .n("QAppsClient", "ImportDocumentCommand")    .sc(schemas_0.ImportDocument$)    .build() {} class ListCategoriesCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("QAppsService", "ListCategories", {})    .n("QAppsClient", "ListCategoriesCommand")    .sc(schemas_0.ListCategories$)    .build() {} class ListLibraryItemsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("QAppsService", "ListLibraryItems", {})    .n("QAppsClient", "ListLibraryItemsCommand")    .sc(schemas_0.ListLibraryItems$)    .build() {} class ListQAppsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("QAppsService", "ListQApps", {})    .n("QAppsClient", "ListQAppsCommand")    .sc(schemas_0.ListQApps$)    .build() {} class ListQAppSessionDataCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("QAppsService", "ListQAppSessionData", {})    .n("QAppsClient", "ListQAppSessionDataCommand")    .sc(schemas_0.ListQAppSessionData$)    .build() {} class ListTagsForResourceCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("QAppsService", "ListTagsForResource", {})    .n("QAppsClient", "ListTagsForResourceCommand")    .sc(schemas_0.ListTagsForResource$)    .build() {} class PredictQAppCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("QAppsService", "PredictQApp", {})    .n("QAppsClient", "PredictQAppCommand")    .sc(schemas_0.PredictQApp$)    .build() {} class StartQAppSessionCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("QAppsService", "StartQAppSession", {})    .n("QAppsClient", "StartQAppSessionCommand")    .sc(schemas_0.StartQAppSession$)    .build() {} class StopQAppSessionCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("QAppsService", "StopQAppSession", {})    .n("QAppsClient", "StopQAppSessionCommand")    .sc(schemas_0.StopQAppSession$)    .build() {} class TagResourceCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("QAppsService", "TagResource", {})    .n("QAppsClient", "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("QAppsService", "UntagResource", {})    .n("QAppsClient", "UntagResourceCommand")    .sc(schemas_0.UntagResource$)    .build() {} class UpdateLibraryItemCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("QAppsService", "UpdateLibraryItem", {})    .n("QAppsClient", "UpdateLibraryItemCommand")    .sc(schemas_0.UpdateLibraryItem$)    .build() {} class UpdateLibraryItemMetadataCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("QAppsService", "UpdateLibraryItemMetadata", {})    .n("QAppsClient", "UpdateLibraryItemMetadataCommand")    .sc(schemas_0.UpdateLibraryItemMetadata$)    .build() {} class UpdateQAppCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("QAppsService", "UpdateQApp", {})    .n("QAppsClient", "UpdateQAppCommand")    .sc(schemas_0.UpdateQApp$)    .build() {} class UpdateQAppPermissionsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("QAppsService", "UpdateQAppPermissions", {})    .n("QAppsClient", "UpdateQAppPermissionsCommand")    .sc(schemas_0.UpdateQAppPermissions$)    .build() {} class UpdateQAppSessionCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("QAppsService", "UpdateQAppSession", {})    .n("QAppsClient", "UpdateQAppSessionCommand")    .sc(schemas_0.UpdateQAppSession$)    .build() {} class UpdateQAppSessionMetadataCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("QAppsService", "UpdateQAppSessionMetadata", {})    .n("QAppsClient", "UpdateQAppSessionMetadataCommand")    .sc(schemas_0.UpdateQAppSessionMetadata$)    .build() {} const paginateListLibraryItems = core.createPaginator(QAppsClient, ListLibraryItemsCommand, "nextToken", "nextToken", "limit"); const paginateListQApps = core.createPaginator(QAppsClient, ListQAppsCommand, "nextToken", "nextToken", "limit"); const commands = {    AssociateLibraryItemReviewCommand,    AssociateQAppWithUserCommand,    BatchCreateCategoryCommand,    BatchDeleteCategoryCommand,    BatchUpdateCategoryCommand,    CreateLibraryItemCommand,    CreatePresignedUrlCommand,    CreateQAppCommand,    DeleteLibraryItemCommand,    DeleteQAppCommand,    DescribeQAppPermissionsCommand,    DisassociateLibraryItemReviewCommand,    DisassociateQAppFromUserCommand,    ExportQAppSessionDataCommand,    GetLibraryItemCommand,    GetQAppCommand,    GetQAppSessionCommand,    GetQAppSessionMetadataCommand,    ImportDocumentCommand,    ListCategoriesCommand,    ListLibraryItemsCommand,    ListQAppsCommand,    ListQAppSessionDataCommand,    ListTagsForResourceCommand,    PredictQAppCommand,    StartQAppSessionCommand,    StopQAppSessionCommand,    TagResourceCommand,    UntagResourceCommand,    UpdateLibraryItemCommand,    UpdateLibraryItemMetadataCommand,    UpdateQAppCommand,    UpdateQAppPermissionsCommand,    UpdateQAppSessionCommand,    UpdateQAppSessionMetadataCommand,};const paginators = {    paginateListLibraryItems,    paginateListQApps,};class QApps extends QAppsClient {}client.createAggregatedClient(commands, QApps, { paginators }); const Action = {    READ: "read",    WRITE: "write",};const CardType = {    FILE_UPLOAD: "file-upload",    FORM_INPUT: "form-input",    Q_PLUGIN: "q-plugin",    Q_QUERY: "q-query",    TEXT_INPUT: "text-input",};const InputCardComputeMode = {    APPEND: "append",    REPLACE: "replace",};const PluginType = {    ASANA: "ASANA",    ATLASSIAN_CONFLUENCE: "ATLASSIAN_CONFLUENCE",    CUSTOM: "CUSTOM",    GOOGLE_CALENDAR: "GOOGLE_CALENDAR",    JIRA: "JIRA",    JIRA_CLOUD: "JIRA_CLOUD",    MICROSOFT_EXCHANGE: "MICROSOFT_EXCHANGE",    MICROSOFT_TEAMS: "MICROSOFT_TEAMS",    PAGERDUTY_ADVANCE: "PAGERDUTY_ADVANCE",    SALESFORCE: "SALESFORCE",    SALESFORCE_CRM: "SALESFORCE_CRM",    SERVICENOW_NOW_PLATFORM: "SERVICENOW_NOW_PLATFORM",    SERVICE_NOW: "SERVICE_NOW",    SMARTSHEET: "SMARTSHEET",    ZENDESK: "ZENDESK",    ZENDESK_SUITE: "ZENDESK_SUITE",};const CardOutputSource = {    APPROVED_SOURCES: "approved-sources",    LLM: "llm",};const AppRequiredCapability = {    CREATOR_MODE: "CreatorMode",    FILE_UPLOAD: "FileUpload",    PLUGIN_MODE: "PluginMode",    RETRIEVAL_MODE: "RetrievalMode",};const AppStatus = {    DELETED: "DELETED",    DRAFT: "DRAFT",    PUBLISHED: "PUBLISHED",};const ExecutionStatus = {    COMPLETED: "COMPLETED",    ERROR: "ERROR",    IN_PROGRESS: "IN_PROGRESS",    WAITING: "WAITING",};const SubmissionMutationKind = {    add: "add",    delete: "delete",    edit: "edit",};const Sender = {    SYSTEM: "SYSTEM",    USER: "USER",};const DocumentScope = {    APPLICATION: "APPLICATION",    SESSION: "SESSION",};const UserType = {    OWNER: "owner",    USER: "user",};const LibraryItemStatus = {    DISABLED: "DISABLED",    PUBLISHED: "PUBLISHED",}; exports.$Command = client.Command;exports.__Client = client.Client;exports.QAppsServiceException = QAppsServiceException.QAppsServiceException;exports.Action = Action;exports.AppRequiredCapability = AppRequiredCapability;exports.AppStatus = AppStatus;exports.AssociateLibraryItemReviewCommand = AssociateLibraryItemReviewCommand;exports.AssociateQAppWithUserCommand = AssociateQAppWithUserCommand;exports.BatchCreateCategoryCommand = BatchCreateCategoryCommand;exports.BatchDeleteCategoryCommand = BatchDeleteCategoryCommand;exports.BatchUpdateCategoryCommand = BatchUpdateCategoryCommand;exports.CardOutputSource = CardOutputSource;exports.CardType = CardType;exports.CreateLibraryItemCommand = CreateLibraryItemCommand;exports.CreatePresignedUrlCommand = CreatePresignedUrlCommand;exports.CreateQAppCommand = CreateQAppCommand;exports.DeleteLibraryItemCommand = DeleteLibraryItemCommand;exports.DeleteQAppCommand = DeleteQAppCommand;exports.DescribeQAppPermissionsCommand = DescribeQAppPermissionsCommand;exports.DisassociateLibraryItemReviewCommand = DisassociateLibraryItemReviewCommand;exports.DisassociateQAppFromUserCommand = DisassociateQAppFromUserCommand;exports.DocumentScope = DocumentScope;exports.ExecutionStatus = ExecutionStatus;exports.ExportQAppSessionDataCommand = ExportQAppSessionDataCommand;exports.GetLibraryItemCommand = GetLibraryItemCommand;exports.GetQAppCommand = GetQAppCommand;exports.GetQAppSessionCommand = GetQAppSessionCommand;exports.GetQAppSessionMetadataCommand = GetQAppSessionMetadataCommand;exports.ImportDocumentCommand = ImportDocumentCommand;exports.InputCardComputeMode = InputCardComputeMode;exports.LibraryItemStatus = LibraryItemStatus;exports.ListCategoriesCommand = ListCategoriesCommand;exports.ListLibraryItemsCommand = ListLibraryItemsCommand;exports.ListQAppSessionDataCommand = ListQAppSessionDataCommand;exports.ListQAppsCommand = ListQAppsCommand;exports.ListTagsForResourceCommand = ListTagsForResourceCommand;exports.PluginType = PluginType;exports.PredictQAppCommand = PredictQAppCommand;exports.QApps = QApps;exports.QAppsClient = QAppsClient;exports.Sender = Sender;exports.StartQAppSessionCommand = StartQAppSessionCommand;exports.StopQAppSessionCommand = StopQAppSessionCommand;exports.SubmissionMutationKind = SubmissionMutationKind;exports.TagResourceCommand = TagResourceCommand;exports.UntagResourceCommand = UntagResourceCommand;exports.UpdateLibraryItemCommand = UpdateLibraryItemCommand;exports.UpdateLibraryItemMetadataCommand = UpdateLibraryItemMetadataCommand;exports.UpdateQAppCommand = UpdateQAppCommand;exports.UpdateQAppPermissionsCommand = UpdateQAppPermissionsCommand;exports.UpdateQAppSessionCommand = UpdateQAppSessionCommand;exports.UpdateQAppSessionMetadataCommand = UpdateQAppSessionMetadataCommand;exports.UserType = UserType;exports.paginateListLibraryItems = paginateListLibraryItems;exports.paginateListQApps = paginateListQApps;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];});