@aws-sdk/lib-storage 3.362.0 → 3.367.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/Upload.js +3 -3
- package/dist-es/Upload.js +3 -3
- package/dist-types/ts3.4/types.d.ts +1 -1
- package/dist-types/types.d.ts +1 -1
- package/package.json +6 -7
package/dist-cjs/Upload.js
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.Upload = void 0;
|
|
4
|
-
const abort_controller_1 = require("@aws-sdk/abort-controller");
|
|
5
4
|
const client_s3_1 = require("@aws-sdk/client-s3");
|
|
6
|
-
const
|
|
7
|
-
const
|
|
5
|
+
const abort_controller_1 = require("@smithy/abort-controller");
|
|
6
|
+
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
7
|
+
const smithy_client_1 = require("@smithy/smithy-client");
|
|
8
8
|
const events_1 = require("events");
|
|
9
9
|
const bytelength_1 = require("./bytelength");
|
|
10
10
|
const chunker_1 = require("./chunker");
|
package/dist-es/Upload.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { AbortController } from "@aws-sdk/abort-controller";
|
|
2
1
|
import { CompleteMultipartUploadCommand, CreateMultipartUploadCommand, PutObjectCommand, PutObjectTaggingCommand, UploadPartCommand, } from "@aws-sdk/client-s3";
|
|
3
|
-
import {
|
|
4
|
-
import {
|
|
2
|
+
import { AbortController } from "@smithy/abort-controller";
|
|
3
|
+
import { getEndpointFromInstructions, toEndpointV1, } from "@smithy/middleware-endpoint";
|
|
4
|
+
import { extendedEncodeURIComponent } from "@smithy/smithy-client";
|
|
5
5
|
import { EventEmitter } from "events";
|
|
6
6
|
import { byteLength } from "./bytelength";
|
|
7
7
|
import { getChunk } from "./chunker";
|
package/dist-types/types.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/lib-storage",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.367.0",
|
|
4
4
|
"description": "Storage higher order operation",
|
|
5
5
|
"main": "./dist-cjs/index.js",
|
|
6
6
|
"module": "./dist-es/index.js",
|
|
@@ -25,21 +25,20 @@
|
|
|
25
25
|
},
|
|
26
26
|
"license": "Apache-2.0",
|
|
27
27
|
"dependencies": {
|
|
28
|
-
"@
|
|
29
|
-
"@
|
|
28
|
+
"@smithy/middleware-endpoint": "^1.0.1",
|
|
29
|
+
"@smithy/smithy-client": "^1.0.3",
|
|
30
30
|
"buffer": "5.6.0",
|
|
31
31
|
"events": "3.3.0",
|
|
32
32
|
"stream-browserify": "3.0.0",
|
|
33
33
|
"tslib": "^2.5.0"
|
|
34
34
|
},
|
|
35
35
|
"peerDependencies": {
|
|
36
|
-
"@aws-sdk/abort-controller": "^3.0.0",
|
|
37
36
|
"@aws-sdk/client-s3": "^3.0.0"
|
|
38
37
|
},
|
|
39
38
|
"devDependencies": {
|
|
40
|
-
"@aws-sdk/
|
|
41
|
-
"@
|
|
42
|
-
"@
|
|
39
|
+
"@aws-sdk/client-s3": "3.367.0",
|
|
40
|
+
"@smithy/abort-controller": "^1.0.1",
|
|
41
|
+
"@smithy/types": "^1.1.0",
|
|
43
42
|
"@tsconfig/recommended": "1.0.1",
|
|
44
43
|
"@types/node": "^14.11.2",
|
|
45
44
|
"concurrently": "7.0.0",
|