@aws-amplify/api-rest 2.0.49-next.20 → 2.0.49-next.32
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/CHANGELOG.md +32 -0
- package/lib/index.js +2 -4
- package/lib/index.js.map +1 -1
- package/lib-esm/index.d.ts +0 -2
- package/lib-esm/index.js +0 -2
- package/lib-esm/index.js.map +1 -1
- package/package.json +8 -3
- package/src/index.ts +0 -3
- package/build.js +0 -5
- package/dist/aws-amplify-api-rest.js +0 -5076
- package/dist/aws-amplify-api-rest.js.map +0 -1
- package/dist/aws-amplify-api-rest.min.js +0 -2
- package/dist/aws-amplify-api-rest.min.js.map +0 -1
- package/index-rn.js +0 -3
- package/index.js +0 -7
- package/lib/RestAPI.d.ts +0 -108
- package/lib/RestClient.d.ts +0 -138
- package/lib/index.d.ts +0 -4
- package/lib/types/index.d.ts +0 -50
- package/webpack.config.dev.js +0 -6
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,38 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [2.0.59](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/api-rest@2.0.58...@aws-amplify/api-rest@2.0.59) (2022-10-26)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @aws-amplify/api-rest
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
## [2.0.58](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/api-rest@2.0.57...@aws-amplify/api-rest@2.0.58) (2022-10-25)
|
|
15
|
+
|
|
16
|
+
**Note:** Version bump only for package @aws-amplify/api-rest
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
## [2.0.57](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/api-rest@2.0.56...@aws-amplify/api-rest@2.0.57) (2022-10-14)
|
|
23
|
+
|
|
24
|
+
**Note:** Version bump only for package @aws-amplify/api-rest
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
## [2.0.56](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/api-rest@2.0.55...@aws-amplify/api-rest@2.0.56) (2022-10-14)
|
|
31
|
+
|
|
32
|
+
**Note:** Version bump only for package @aws-amplify/api-rest
|
|
33
|
+
|
|
34
|
+
|
|
35
|
+
|
|
36
|
+
|
|
37
|
+
|
|
6
38
|
## [2.0.55](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/api-rest@2.0.53...@aws-amplify/api-rest@2.0.55) (2022-09-30)
|
|
7
39
|
|
|
8
40
|
**Note:** Version bump only for package @aws-amplify/api-rest
|
package/lib/index.js
CHANGED
|
@@ -13,10 +13,8 @@
|
|
|
13
13
|
*/
|
|
14
14
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15
15
|
var RestAPI_1 = require("./RestAPI");
|
|
16
|
-
|
|
17
|
-
exports.
|
|
18
|
-
exports.RestAPIClass = RestAPI_2.RestAPIClass;
|
|
16
|
+
exports.RestAPI = RestAPI_1.RestAPI;
|
|
17
|
+
exports.RestAPIClass = RestAPI_1.RestAPIClass;
|
|
19
18
|
var RestClient_1 = require("./RestClient");
|
|
20
19
|
exports.RestClient = RestClient_1.RestClient;
|
|
21
|
-
exports.default = RestAPI_1.RestAPI;
|
|
22
20
|
//# sourceMappingURL=index.js.map
|
package/lib/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG;;AAEH,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG;;AAEH,qCAAkD;AAAzC,4BAAA,OAAO,CAAA;AAAE,iCAAA,YAAY,CAAA;AAC9B,2CAA0C;AAAjC,kCAAA,UAAU,CAAA"}
|
package/lib-esm/index.d.ts
CHANGED
package/lib-esm/index.js
CHANGED
|
@@ -10,8 +10,6 @@
|
|
|
10
10
|
* CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions
|
|
11
11
|
* and limitations under the License.
|
|
12
12
|
*/
|
|
13
|
-
import { RestAPI } from './RestAPI';
|
|
14
13
|
export { RestAPI, RestAPIClass } from './RestAPI';
|
|
15
14
|
export { RestClient } from './RestClient';
|
|
16
|
-
export default RestAPI;
|
|
17
15
|
//# sourceMappingURL=index.js.map
|
package/lib-esm/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;GAWG;AAEH,OAAO,EAAE,OAAO,EAAE,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;GAWG;AAEH,OAAO,EAAE,OAAO,EAAE,YAAY,EAAE,MAAM,WAAW,CAAC;AAClD,OAAO,EAAE,UAAU,EAAE,MAAM,cAAc,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-amplify/api-rest",
|
|
3
|
-
"version": "2.0.49-next.
|
|
3
|
+
"version": "2.0.49-next.32+4137aa79c",
|
|
4
4
|
"description": "Api-rest category of aws-amplify",
|
|
5
5
|
"main": "./lib/index.js",
|
|
6
6
|
"module": "./lib-esm/index.js",
|
|
@@ -40,8 +40,13 @@
|
|
|
40
40
|
"url": "https://github.com/aws/aws-amplify/issues"
|
|
41
41
|
},
|
|
42
42
|
"homepage": "https://aws-amplify.github.io/",
|
|
43
|
+
"files": [
|
|
44
|
+
"lib",
|
|
45
|
+
"lib-esm",
|
|
46
|
+
"src"
|
|
47
|
+
],
|
|
43
48
|
"dependencies": {
|
|
44
|
-
"@aws-amplify/core": "4.6.2-next.
|
|
49
|
+
"@aws-amplify/core": "4.6.2-next.32+4137aa79c",
|
|
45
50
|
"axios": "0.26.0",
|
|
46
51
|
"tslib": "^2.0.0"
|
|
47
52
|
},
|
|
@@ -89,5 +94,5 @@
|
|
|
89
94
|
"lib-esm"
|
|
90
95
|
]
|
|
91
96
|
},
|
|
92
|
-
"gitHead": "
|
|
97
|
+
"gitHead": "4137aa79c6c2362afc581d3915d77f5067ea6700"
|
|
93
98
|
}
|
package/src/index.ts
CHANGED