jubo-sdk 1.5.0-beta.4 → 1.5.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/index.cjs.js +3 -1
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm.js +3 -1
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +3 -1
- package/dist/index.js.map +1 -1
- package/dist/index.min.js +1 -1
- package/package.json +1 -1
package/dist/index.cjs.js
CHANGED
|
@@ -7974,10 +7974,12 @@ var device = urlData.device || ls.get('device') || '';
|
|
|
7974
7974
|
var isfull = urlData.isfull || ls.get('isfull') || '';
|
|
7975
7975
|
var version = urlData.version || ls.get('version') || '';
|
|
7976
7976
|
var channel = urlData.channel || ls.get('channel') || '';
|
|
7977
|
+
var proid = urlData.proid || ls.get('proid') || '';
|
|
7977
7978
|
ls.set('device', device);
|
|
7978
7979
|
ls.set('isfull', isfull);
|
|
7979
7980
|
ls.set('version', version);
|
|
7980
7981
|
ls.set('channel', channel);
|
|
7982
|
+
ls.set('proid', proid);
|
|
7981
7983
|
if (process.env.NODE_ENV === 'development') {
|
|
7982
7984
|
updateNotifier(pkg.name, pkg.version);
|
|
7983
7985
|
}
|
|
@@ -7988,6 +7990,6 @@ exports.default = JuboSdk;
|
|
|
7988
7990
|
exports.ls = ls;
|
|
7989
7991
|
|
|
7990
7992
|
if(typeof window !== 'undefined') {
|
|
7991
|
-
window._juboSDK_VERSION_ = '1.5.0
|
|
7993
|
+
window._juboSDK_VERSION_ = '1.5.0'
|
|
7992
7994
|
}
|
|
7993
7995
|
//# sourceMappingURL=index.cjs.js.map
|