@aws-sdk/middleware-sdk-sqs 3.357.0 → 3.369.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/receive-message.js +2 -2
- package/dist-cjs/send-message-batch.js +2 -2
- package/dist-cjs/send-message.js +2 -2
- package/dist-es/receive-message.js +2 -2
- package/dist-es/send-message-batch.js +2 -2
- package/dist-es/send-message.js +2 -2
- package/dist-types/configurations.d.ts +1 -1
- package/dist-types/receive-message.d.ts +1 -1
- package/dist-types/send-message-batch.d.ts +1 -1
- package/dist-types/send-message.d.ts +1 -1
- package/dist-types/ts3.4/configurations.d.ts +1 -1
- package/dist-types/ts3.4/receive-message.d.ts +1 -1
- package/dist-types/ts3.4/send-message-batch.d.ts +1 -1
- package/dist-types/ts3.4/send-message.d.ts +1 -1
- package/package.json +5 -4
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.getReceiveMessagePlugin = exports.receiveMessageMiddlewareOptions = exports.receiveMessageMiddleware = void 0;
|
|
4
|
-
const util_hex_encoding_1 = require("@
|
|
5
|
-
const util_utf8_1 = require("@
|
|
4
|
+
const util_hex_encoding_1 = require("@smithy/util-hex-encoding");
|
|
5
|
+
const util_utf8_1 = require("@smithy/util-utf8");
|
|
6
6
|
function receiveMessageMiddleware(options) {
|
|
7
7
|
return (next) => async (args) => {
|
|
8
8
|
const resp = await next({ ...args });
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.getSendMessageBatchPlugin = exports.sendMessageBatchMiddlewareOptions = exports.sendMessageBatchMiddleware = void 0;
|
|
4
|
-
const util_hex_encoding_1 = require("@
|
|
5
|
-
const util_utf8_1 = require("@
|
|
4
|
+
const util_hex_encoding_1 = require("@smithy/util-hex-encoding");
|
|
5
|
+
const util_utf8_1 = require("@smithy/util-utf8");
|
|
6
6
|
const sendMessageBatchMiddleware = (options) => (next) => async (args) => {
|
|
7
7
|
const resp = await next({ ...args });
|
|
8
8
|
const output = resp.output;
|
package/dist-cjs/send-message.js
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.getSendMessagePlugin = exports.sendMessageMiddlewareOptions = exports.sendMessageMiddleware = void 0;
|
|
4
|
-
const util_hex_encoding_1 = require("@
|
|
5
|
-
const util_utf8_1 = require("@
|
|
4
|
+
const util_hex_encoding_1 = require("@smithy/util-hex-encoding");
|
|
5
|
+
const util_utf8_1 = require("@smithy/util-utf8");
|
|
6
6
|
const sendMessageMiddleware = (options) => (next) => async (args) => {
|
|
7
7
|
const resp = await next({ ...args });
|
|
8
8
|
const output = resp.output;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { toHex } from "@
|
|
2
|
-
import { toUint8Array } from "@
|
|
1
|
+
import { toHex } from "@smithy/util-hex-encoding";
|
|
2
|
+
import { toUint8Array } from "@smithy/util-utf8";
|
|
3
3
|
export function receiveMessageMiddleware(options) {
|
|
4
4
|
return (next) => async (args) => {
|
|
5
5
|
const resp = await next({ ...args });
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { toHex } from "@
|
|
2
|
-
import { toUint8Array } from "@
|
|
1
|
+
import { toHex } from "@smithy/util-hex-encoding";
|
|
2
|
+
import { toUint8Array } from "@smithy/util-utf8";
|
|
3
3
|
export const sendMessageBatchMiddleware = (options) => (next) => async (args) => {
|
|
4
4
|
const resp = await next({ ...args });
|
|
5
5
|
const output = resp.output;
|
package/dist-es/send-message.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { toHex } from "@
|
|
2
|
-
import { toUint8Array } from "@
|
|
1
|
+
import { toHex } from "@smithy/util-hex-encoding";
|
|
2
|
+
import { toUint8Array } from "@smithy/util-utf8";
|
|
3
3
|
export const sendMessageMiddleware = (options) => (next) => async (args) => {
|
|
4
4
|
const resp = await next({ ...args });
|
|
5
5
|
const output = resp.output;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { InitializeHandlerOptions, InitializeMiddleware, Pluggable } from "@
|
|
1
|
+
import { InitializeHandlerOptions, InitializeMiddleware, Pluggable } from "@smithy/types";
|
|
2
2
|
import { PreviouslyResolved } from "./configurations";
|
|
3
3
|
export declare function receiveMessageMiddleware(options: PreviouslyResolved): InitializeMiddleware<any, any>;
|
|
4
4
|
export declare const receiveMessageMiddlewareOptions: InitializeHandlerOptions;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { InitializeHandlerOptions, InitializeMiddleware, Pluggable } from "@
|
|
1
|
+
import { InitializeHandlerOptions, InitializeMiddleware, Pluggable } from "@smithy/types";
|
|
2
2
|
import { PreviouslyResolved } from "./configurations";
|
|
3
3
|
export declare const sendMessageBatchMiddleware: (options: PreviouslyResolved) => InitializeMiddleware<any, any>;
|
|
4
4
|
export declare const sendMessageBatchMiddlewareOptions: InitializeHandlerOptions;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { InitializeHandlerOptions, InitializeMiddleware, Pluggable } from "@
|
|
1
|
+
import { InitializeHandlerOptions, InitializeMiddleware, Pluggable } from "@smithy/types";
|
|
2
2
|
import { PreviouslyResolved } from "./configurations";
|
|
3
3
|
export declare const sendMessageMiddleware: (options: PreviouslyResolved) => InitializeMiddleware<any, any>;
|
|
4
4
|
export declare const sendMessageMiddlewareOptions: InitializeHandlerOptions;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/middleware-sdk-sqs",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.369.0",
|
|
4
4
|
"scripts": {
|
|
5
5
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
6
6
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -21,9 +21,10 @@
|
|
|
21
21
|
},
|
|
22
22
|
"license": "Apache-2.0",
|
|
23
23
|
"dependencies": {
|
|
24
|
-
"@aws-sdk/types": "3.
|
|
25
|
-
"@
|
|
26
|
-
"@
|
|
24
|
+
"@aws-sdk/types": "3.369.0",
|
|
25
|
+
"@smithy/types": "^1.1.0",
|
|
26
|
+
"@smithy/util-hex-encoding": "^1.0.1",
|
|
27
|
+
"@smithy/util-utf8": "^1.0.1",
|
|
27
28
|
"tslib": "^2.5.0"
|
|
28
29
|
},
|
|
29
30
|
"engines": {
|