@aws-amplify/core 4.3.3-in-app-messaging.69 → 4.3.3-in-app-messaging.70

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 CHANGED
@@ -3,6 +3,68 @@
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
+ ## [4.7.2](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/core@4.7.1...@aws-amplify/core@4.7.2) (2022-08-23)
7
+
8
+ **Note:** Version bump only for package @aws-amplify/core
9
+
10
+
11
+
12
+
13
+
14
+ ## [4.7.1](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/core@4.7.0...@aws-amplify/core@4.7.1) (2022-08-18)
15
+
16
+ **Note:** Version bump only for package @aws-amplify/core
17
+
18
+
19
+
20
+
21
+
22
+ # [4.7.0](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/core@4.6.1...@aws-amplify/core@4.7.0) (2022-08-16)
23
+
24
+
25
+ ### Features
26
+
27
+ * **@aws-amplify/core:** Throw Error if body attribute passed to Sign… ([#10137](https://github.com/aws-amplify/amplify-js/issues/10137)) ([360bde2](https://github.com/aws-amplify/amplify-js/commit/360bde20716778b69af339f4f66b42c05ccf4639))
28
+
29
+
30
+
31
+
32
+
33
+ ## [4.6.1](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/core@4.6.0...@aws-amplify/core@4.6.1) (2022-08-01)
34
+
35
+ **Note:** Version bump only for package @aws-amplify/core
36
+
37
+
38
+
39
+
40
+
41
+ # [4.6.0](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/core@4.5.10...@aws-amplify/core@4.6.0) (2022-07-28)
42
+
43
+
44
+ ### Features
45
+
46
+ * **@aws-amplify/auth:** Auto sign in after sign up ([#10126](https://github.com/aws-amplify/amplify-js/issues/10126)) ([e54617f](https://github.com/aws-amplify/amplify-js/commit/e54617f2878244f0e391d2d49f5cd2e8a8c069f9)), closes [#6320](https://github.com/aws-amplify/amplify-js/issues/6320) [#3882](https://github.com/aws-amplify/amplify-js/issues/3882) [#3631](https://github.com/aws-amplify/amplify-js/issues/3631) [#6018](https://github.com/aws-amplify/amplify-js/issues/6018)
47
+
48
+
49
+
50
+
51
+
52
+ ## [4.5.10](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/core@4.5.9...@aws-amplify/core@4.5.10) (2022-07-21)
53
+
54
+ **Note:** Version bump only for package @aws-amplify/core
55
+
56
+
57
+
58
+
59
+
60
+ ## [4.5.9](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/core@4.5.8...@aws-amplify/core@4.5.9) (2022-07-07)
61
+
62
+ **Note:** Version bump only for package @aws-amplify/core
63
+
64
+
65
+
66
+
67
+
6
68
  ## [4.5.8](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/core@4.5.7...@aws-amplify/core@4.5.8) (2022-06-18)
7
69
 
8
70
  **Note:** Version bump only for package @aws-amplify/core
@@ -32608,7 +32608,8 @@ var parseMobileHubConfig = function parseMobileHubConfig(config) {
32608
32608
  region: config['aws_cognito_region'],
32609
32609
  identityPoolId: config['aws_cognito_identity_pool_id'],
32610
32610
  identityPoolRegion: config['aws_cognito_region'],
32611
- mandatorySignIn: config['aws_mandatory_sign_in'] === 'enable'
32611
+ mandatorySignIn: config['aws_mandatory_sign_in'] === 'enable',
32612
+ signUpVerificationMethod: config['aws_cognito_sign_up_verification_method'] || 'code'
32612
32613
  };
32613
32614
  } // Storage
32614
32615
 
@@ -32724,8 +32725,8 @@ if (typeof navigator !== 'undefined' && navigator.product) {
32724
32725
  }
32725
32726
  }
32726
32727
 
32727
- var getAmplifyUserAgent = function getAmplifyUserAgent() {
32728
- return Platform.userAgent;
32728
+ var getAmplifyUserAgent = function getAmplifyUserAgent(content) {
32729
+ return "" + Platform.userAgent + (content ? content : '');
32729
32730
  };
32730
32731
  /**
32731
32732
  * @deprecated use named import
@@ -32746,7 +32747,7 @@ var getAmplifyUserAgent = function getAmplifyUserAgent() {
32746
32747
  __webpack_require__.r(__webpack_exports__);
32747
32748
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "version", function() { return version; });
32748
32749
  // generated by genversion
32749
- var version = '4.5.8';
32750
+ var version = '4.7.2';
32750
32751
 
32751
32752
  /***/ }),
32752
32753
 
@@ -34412,7 +34413,12 @@ function () {
34412
34413
  service_info = null;
34413
34414
  }
34414
34415
 
34415
- request.headers = request.headers || {}; // datetime string and date string
34416
+ request.headers = request.headers || {};
34417
+
34418
+ if (request.body && !request.data) {
34419
+ throw new Error('The attribute "body" was found on the request object. Please use the attribute "data" instead.');
34420
+ } // datetime string and date string
34421
+
34416
34422
 
34417
34423
  var dt = _Util__WEBPACK_IMPORTED_MODULE_4__["DateUtils"].getDateWithClockOffset(),
34418
34424
  dt_str = dt.toISOString().replace(/[:\-]|\.\d{3}/g, ''),