jason-trace-log 1.1.0 → 1.1.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.
- package/dist/jason-trace-log.esm.js +3 -3
- package/dist/jason-trace-log.esm.js.map +1 -1
- package/dist/jason-trace-log.umd.js +2 -3
- package/dist/jason-trace-log.umd.js.map +1 -1
- package/dist/lib/core/fetch.js +2 -2
- package/dist/lib/core/send.js +7 -8
- package/dist/lib/core/send.js.map +1 -1
- package/dist/lib/core/util.js +9 -9
- package/dist/lib/core/util.js.map +1 -1
- package/dist/lib/core/webvitals.js +3 -3
- package/dist/lib/core/webvitals.js.map +1 -1
- package/dist/lib/index.js +3 -5
- package/dist/lib/index.js.map +1 -1
- package/dist/types/core/util.d.ts +1 -1
- package/dist/types/core/webvitals.d.ts +1 -1
- package/dist/types/index.d.ts +4 -4
- package/package.json +4 -4
|
@@ -1247,7 +1247,7 @@ var getInstance = function () {
|
|
|
1247
1247
|
var getInstanceOrNoOp = function () {
|
|
1248
1248
|
return instance || noOpInstance;
|
|
1249
1249
|
};
|
|
1250
|
-
var
|
|
1250
|
+
var traceLogSdk = {
|
|
1251
1251
|
init: init,
|
|
1252
1252
|
getInstance: getInstance,
|
|
1253
1253
|
get info() {
|
|
@@ -1267,6 +1267,6 @@ var traceLogAPI = {
|
|
|
1267
1267
|
}
|
|
1268
1268
|
};
|
|
1269
1269
|
|
|
1270
|
-
export default
|
|
1271
|
-
export { init, getInstance, SendMethod,
|
|
1270
|
+
export default traceLogSdk;
|
|
1271
|
+
export { init, getInstance, SendMethod, BrowserType };
|
|
1272
1272
|
//# sourceMappingURL=jason-trace-log.esm.js.map
|