@aws-amplify/core 4.3.11 → 4.3.12-unstable.1
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/aws-amplify-core.js +218 -218
- package/dist/aws-amplify-core.js.map +1 -1
- package/dist/aws-amplify-core.min.js +1 -1
- package/dist/aws-amplify-core.min.js.map +1 -1
- package/lib/Hub.js +1 -1
- package/lib/Platform/version.d.ts +1 -1
- package/lib/Platform/version.js +1 -1
- package/lib-esm/Hub.js +1 -1
- package/lib-esm/Platform/version.d.ts +1 -1
- package/lib-esm/Platform/version.js +1 -1
- package/package.json +2 -2
- package/src/Hub.ts +1 -1
- package/src/Platform/version.ts +1 -1
package/lib/Hub.js
CHANGED
|
@@ -189,7 +189,7 @@ var HubClass = /** @class */ (function () {
|
|
|
189
189
|
}());
|
|
190
190
|
exports.HubClass = HubClass;
|
|
191
191
|
/*We export a __default__ instance of HubClass to use it as a
|
|
192
|
-
|
|
192
|
+
pseudo Singleton for the main messaging bus, however you can still create
|
|
193
193
|
your own instance of HubClass() for a separate "private bus" of events.*/
|
|
194
194
|
exports.Hub = new HubClass('__default__');
|
|
195
195
|
/**
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const version = "4.3.
|
|
1
|
+
export declare const version = "4.3.11";
|
package/lib/Platform/version.js
CHANGED
package/lib-esm/Hub.js
CHANGED
|
@@ -187,7 +187,7 @@ var HubClass = /** @class */ (function () {
|
|
|
187
187
|
}());
|
|
188
188
|
export { HubClass };
|
|
189
189
|
/*We export a __default__ instance of HubClass to use it as a
|
|
190
|
-
|
|
190
|
+
pseudo Singleton for the main messaging bus, however you can still create
|
|
191
191
|
your own instance of HubClass() for a separate "private bus" of events.*/
|
|
192
192
|
export var Hub = new HubClass('__default__');
|
|
193
193
|
/**
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const version = "4.3.
|
|
1
|
+
export declare const version = "4.3.11";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-amplify/core",
|
|
3
|
-
"version": "4.3.
|
|
3
|
+
"version": "4.3.12-unstable.1+ae3cb3183",
|
|
4
4
|
"description": "Core category of aws-amplify",
|
|
5
5
|
"main": "./lib/index.js",
|
|
6
6
|
"module": "./lib-esm/index.js",
|
|
@@ -108,5 +108,5 @@
|
|
|
108
108
|
"lib-esm"
|
|
109
109
|
]
|
|
110
110
|
},
|
|
111
|
-
"gitHead": "
|
|
111
|
+
"gitHead": "ae3cb3183dfa0d0a80cd5036473814ca967849bf"
|
|
112
112
|
}
|
package/src/Hub.ts
CHANGED
|
@@ -208,7 +208,7 @@ export class HubClass {
|
|
|
208
208
|
}
|
|
209
209
|
|
|
210
210
|
/*We export a __default__ instance of HubClass to use it as a
|
|
211
|
-
|
|
211
|
+
pseudo Singleton for the main messaging bus, however you can still create
|
|
212
212
|
your own instance of HubClass() for a separate "private bus" of events.*/
|
|
213
213
|
export const Hub = new HubClass('__default__');
|
|
214
214
|
/**
|
package/src/Platform/version.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
// generated by genversion
|
|
2
|
-
export const version = '4.3.
|
|
2
|
+
export const version = '4.3.11';
|