@aws-amplify/storage 5.6.3 → 5.6.4-api-v6.2

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.
@@ -1,3 +1,5 @@
1
1
  "use strict";
2
+ // Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
3
+ // SPDX-License-Identifier: Apache-2.0
2
4
  Object.defineProperty(exports, "__esModule", { value: true });
3
5
  //# sourceMappingURL=Provider.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"Provider.js","sourceRoot":"","sources":["../../src/types/Provider.ts"],"names":[],"mappings":""}
1
+ {"version":3,"file":"Provider.js","sourceRoot":"","sources":["../../src/types/Provider.ts"],"names":[],"mappings":";AAAA,qEAAqE;AACrE,sCAAsC"}
@@ -1 +1,3 @@
1
+ // Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
2
+ // SPDX-License-Identifier: Apache-2.0
1
3
  //# sourceMappingURL=Provider.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"Provider.js","sourceRoot":"","sources":["../../src/types/Provider.ts"],"names":[],"mappings":""}
1
+ {"version":3,"file":"Provider.js","sourceRoot":"","sources":["../../src/types/Provider.ts"],"names":[],"mappings":"AAAA,qEAAqE;AACrE,sCAAsC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aws-amplify/storage",
3
- "version": "5.6.3",
3
+ "version": "5.6.4-api-v6.2+366313460",
4
4
  "description": "Storage category of aws-amplify",
5
5
  "main": "./lib/index.js",
6
6
  "module": "./lib-esm/index.js",
@@ -46,7 +46,7 @@
46
46
  "src"
47
47
  ],
48
48
  "dependencies": {
49
- "@aws-amplify/core": "5.5.2",
49
+ "@aws-amplify/core": "5.5.3-api-v6.2+366313460",
50
50
  "@aws-sdk/client-s3": "3.6.4",
51
51
  "@aws-sdk/s3-request-presigner": "3.6.1",
52
52
  "@aws-sdk/util-create-request": "3.6.1",
@@ -112,5 +112,5 @@
112
112
  "devDependencies": {
113
113
  "@types/sinon": "^7.5.1"
114
114
  },
115
- "gitHead": "b1061a190d11d1313e3c669dbeea79564cb6ea89"
115
+ "gitHead": "36631346052721682d49a4b3311352631ee8d6ac"
116
116
  }
@@ -1,10 +1,15 @@
1
+ // Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
2
+ // SPDX-License-Identifier: Apache-2.0
3
+
1
4
  import {
2
5
  StorageCopySource,
3
6
  StorageCopyDestination,
4
7
  StorageCopyConfig,
5
8
  } from './Storage';
6
- // Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
7
- // SPDX-License-Identifier: Apache-2.0
9
+
10
+ // CAUTION: The StorageProvider interface is publicly available and allows customers to implement their own custom
11
+ // storage providers. Exercise caution when modifying this class as additive changes to this interface can break
12
+ // customers when not marked as optional.
8
13
  export interface StorageProvider {
9
14
  // you need to implement those methods
10
15