ptechcore_ui 1.0.52 → 1.0.53
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 +2 -1
- package/dist/index.js +2 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -1891,7 +1891,8 @@ var getModuleUrls = (token) => {
|
|
|
1891
1891
|
return {
|
|
1892
1892
|
...urls,
|
|
1893
1893
|
wiseOps: token ? `${urls.wiseOps}?tkn=${token}` : urls.wiseOps,
|
|
1894
|
-
wiseProcure: token ? `${urls.wiseProcure}?tkn=${token}` : urls.wiseProcure
|
|
1894
|
+
wiseProcure: token ? `${urls.wiseProcure}?tkn=${token}` : urls.wiseProcure,
|
|
1895
|
+
wiseThrive: token ? `${urls.wiseThrive}?tkn=${token}` : urls.wiseThrive
|
|
1895
1896
|
};
|
|
1896
1897
|
};
|
|
1897
1898
|
var MODULE_CODE_MAP = {
|
package/dist/index.js
CHANGED
|
@@ -1770,7 +1770,8 @@ var getModuleUrls = (token) => {
|
|
|
1770
1770
|
return {
|
|
1771
1771
|
...urls,
|
|
1772
1772
|
wiseOps: token ? `${urls.wiseOps}?tkn=${token}` : urls.wiseOps,
|
|
1773
|
-
wiseProcure: token ? `${urls.wiseProcure}?tkn=${token}` : urls.wiseProcure
|
|
1773
|
+
wiseProcure: token ? `${urls.wiseProcure}?tkn=${token}` : urls.wiseProcure,
|
|
1774
|
+
wiseThrive: token ? `${urls.wiseThrive}?tkn=${token}` : urls.wiseThrive
|
|
1774
1775
|
};
|
|
1775
1776
|
};
|
|
1776
1777
|
var MODULE_CODE_MAP = {
|