UNPKG

newrelic

Version:
18 lines (15 loc) 560 B
/* * Copyright 2026 New Relic Corporation. All rights reserved. * SPDX-License-Identifier: Apache-2.0 */ 'use strict' const SmithyClientSendSubscriber = require('./send') /** * Extends SmithyClientSendSubscriber to handle the legacy `@aws-sdk/smithy-client` * package, which older AWS SDK v3 versions depend on instead of `@smithy/smithy-client`. */ module.exports = class LegacySmithyClientSendSubscriber extends SmithyClientSendSubscriber { constructor({ agent, logger }) { super({ agent, logger, packageName: '@aws-sdk/smithy-client' }) } }