@ukeyfe/hardware-core 1.1.26 → 1.1.27
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.js +2 -2
- package/package.json +4 -4
- package/src/data-manager/DataManager.ts +2 -2
package/dist/index.js
CHANGED
|
@@ -25179,8 +25179,8 @@ class DataManager {
|
|
|
25179
25179
|
return;
|
|
25180
25180
|
}
|
|
25181
25181
|
const url = settings.preRelease
|
|
25182
|
-
? 'https://data.
|
|
25183
|
-
: 'https://data.
|
|
25182
|
+
? 'https://data.sanying.site/pre-config.json'
|
|
25183
|
+
: 'https://data.sanying.site/config.json';
|
|
25184
25184
|
const urlWithCache = `${url}?noCache=${getTimeStamp()}`;
|
|
25185
25185
|
let data = null;
|
|
25186
25186
|
let fetchMethod = 'none';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ukeyfe/hardware-core",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.27",
|
|
4
4
|
"description": "Core processes and APIs for communicating with UKey hardware devices.",
|
|
5
5
|
"author": "UKey",
|
|
6
6
|
"homepage": "https://github.com/UKeyHQ/hardware-js-sdk#readme",
|
|
@@ -25,8 +25,8 @@
|
|
|
25
25
|
"url": "https://github.com/UKeyHQ/hardware-js-sdk/issues"
|
|
26
26
|
},
|
|
27
27
|
"dependencies": {
|
|
28
|
-
"@ukeyfe/hardware-shared": "1.1.
|
|
29
|
-
"@ukeyfe/hardware-transport": "1.1.
|
|
28
|
+
"@ukeyfe/hardware-shared": "1.1.27",
|
|
29
|
+
"@ukeyfe/hardware-transport": "1.1.27",
|
|
30
30
|
"axios": "1.12.2",
|
|
31
31
|
"bignumber.js": "^9.0.2",
|
|
32
32
|
"bytebuffer": "^5.0.1",
|
|
@@ -44,5 +44,5 @@
|
|
|
44
44
|
"@types/w3c-web-usb": "^1.0.10",
|
|
45
45
|
"@types/web-bluetooth": "^0.0.21"
|
|
46
46
|
},
|
|
47
|
-
"gitHead": "
|
|
47
|
+
"gitHead": "4ee8e8dcee0fd7e1a361d4f8935856c80e292805"
|
|
48
48
|
}
|
|
@@ -393,8 +393,8 @@ export default class DataManager {
|
|
|
393
393
|
}
|
|
394
394
|
|
|
395
395
|
const url = settings.preRelease
|
|
396
|
-
? 'https://data.
|
|
397
|
-
: 'https://data.
|
|
396
|
+
? 'https://data.sanying.site/pre-config.json'
|
|
397
|
+
: 'https://data.sanying.site/config.json';
|
|
398
398
|
|
|
399
399
|
const urlWithCache = `${url}?noCache=${getTimeStamp()}`;
|
|
400
400
|
let data: RemoteConfigResponse | null = null;
|