@aws-amplify/core 6.3.8 → 6.3.9-unstable.43ceb84.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/Platform/version.js +1 -1
- package/dist/cjs/Platform/version.js.map +1 -1
- package/dist/esm/Platform/version.d.ts +1 -1
- package/dist/esm/Platform/version.mjs +1 -1
- package/dist/esm/Platform/version.mjs.map +1 -1
- package/dist/esm/singleton/Auth/types.d.ts +1 -1
- package/package.json +3 -3
- package/src/Platform/version.ts +1 -1
- package/src/singleton/Auth/types.ts +1 -1
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"version.js","sources":["../../../src/Platform/version.ts"],"sourcesContent":["\"use strict\";\nObject.defineProperty(exports, \"__esModule\", { value: true });\nexports.version = void 0;\n// generated by genversion\nexports.version = '6.4.
|
|
1
|
+
{"version":3,"file":"version.js","sources":["../../../src/Platform/version.ts"],"sourcesContent":["\"use strict\";\nObject.defineProperty(exports, \"__esModule\", { value: true });\nexports.version = void 0;\n// generated by genversion\nexports.version = '6.4.5-unstable.43ceb84.0+43ceb84';\n"],"names":[],"mappings":";;AACA,MAAM,CAAC,cAAc,CAAC,OAAO,EAAE,YAAY,EAAE,EAAE,KAAK,EAAE,IAAI,EAAE,CAAC,CAAC;AAC9D,OAAO,CAAC,OAAO,GAAG,KAAK,CAAC,CAAC;AACzB;AACA,OAAO,CAAC,OAAO,GAAG,kCAAkC;;"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const version = "6.4.
|
|
1
|
+
export declare const version = "6.4.5-unstable.43ceb84.0+43ceb84";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"version.mjs","sources":["../../../src/Platform/version.ts"],"sourcesContent":["// generated by genversion\nexport const version = '6.4.
|
|
1
|
+
{"version":3,"file":"version.mjs","sources":["../../../src/Platform/version.ts"],"sourcesContent":["// generated by genversion\nexport const version = '6.4.5-unstable.43ceb84.0+43ceb84';\n"],"names":[],"mappings":"AAAA;AACY,MAAC,OAAO,GAAG;;;;"}
|
|
@@ -12,7 +12,7 @@ interface JwtPayloadStandardFields {
|
|
|
12
12
|
}
|
|
13
13
|
type JsonPrimitive = null | string | number | boolean;
|
|
14
14
|
/** JSON array type */
|
|
15
|
-
type JsonArray = JsonPrimitive[];
|
|
15
|
+
type JsonArray = (JsonPrimitive | JsonObject | JsonArray)[];
|
|
16
16
|
/** JSON Object type */
|
|
17
17
|
interface JsonObject {
|
|
18
18
|
[x: string]: JsonPrimitive | JsonArray | JsonObject;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-amplify/core",
|
|
3
|
-
"version": "6.3.
|
|
3
|
+
"version": "6.3.9-unstable.43ceb84.0+43ceb84",
|
|
4
4
|
"description": "Core category of aws-amplify",
|
|
5
5
|
"main": "./dist/cjs/index.js",
|
|
6
6
|
"module": "./dist/esm/index.mjs",
|
|
@@ -60,7 +60,7 @@
|
|
|
60
60
|
"uuid": "^9.0.0"
|
|
61
61
|
},
|
|
62
62
|
"devDependencies": {
|
|
63
|
-
"@aws-amplify/react-native": "1.1.
|
|
63
|
+
"@aws-amplify/react-native": "1.1.5-unstable.43ceb84.0+43ceb84",
|
|
64
64
|
"@types/js-cookie": "3.0.2",
|
|
65
65
|
"genversion": "^2.2.0",
|
|
66
66
|
"typescript": "5.0.2"
|
|
@@ -192,5 +192,5 @@
|
|
|
192
192
|
]
|
|
193
193
|
}
|
|
194
194
|
},
|
|
195
|
-
"gitHead": "
|
|
195
|
+
"gitHead": "43ceb84767292414154a6c12f7355b1428a59576"
|
|
196
196
|
}
|
package/src/Platform/version.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
// generated by genversion
|
|
2
|
-
export const version = '6.4.
|
|
2
|
+
export const version = '6.4.5-unstable.43ceb84.0+43ceb84';
|
|
@@ -20,7 +20,7 @@ interface JwtPayloadStandardFields {
|
|
|
20
20
|
type JsonPrimitive = null | string | number | boolean;
|
|
21
21
|
|
|
22
22
|
/** JSON array type */
|
|
23
|
-
type JsonArray = JsonPrimitive[];
|
|
23
|
+
type JsonArray = (JsonPrimitive | JsonObject | JsonArray)[];
|
|
24
24
|
|
|
25
25
|
/** JSON Object type */
|
|
26
26
|
interface JsonObject {
|