zd-h5-check-json 1.0.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/check.js +55 -0
- package/package.json +15 -0
package/check.js
ADDED
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
/** check.json 解密后的明文配置 */
|
|
2
|
+
const checkJson = {
|
|
3
|
+
apiUrl: 'https://api-ml.kkty1.com/api',
|
|
4
|
+
agentUrl: 'https://global-agent.kkty1.com',
|
|
5
|
+
PCAgentUrl: 'http://ssr-global-pcagent.stagespeedfan22.com',
|
|
6
|
+
iosDownloadUrl: 'itms-services://?action=download-manifest&url=https://q.kkty1.com/app/app.plist',
|
|
7
|
+
andoridDownloadUrl: 'https://q.kkty1.com/app/196ty-dev.apk',
|
|
8
|
+
imSportApi: 'http://imd-ml.kkty1.com',
|
|
9
|
+
imSportApiGlobal: 'http://imd-ml.kkty1.com',
|
|
10
|
+
h5ClientEndpoint: 'https://global-h5-new.chtbaby.com',
|
|
11
|
+
botionStaticServers: '',
|
|
12
|
+
botionApiServers: '',
|
|
13
|
+
apiUrls: [
|
|
14
|
+
'https://api-ml.kkty1.com/api',
|
|
15
|
+
],
|
|
16
|
+
customerMerchantCode: 'eviptest',
|
|
17
|
+
chatUrl: 'https://zdcr-test.esccall.com',
|
|
18
|
+
h5Geetest: {
|
|
19
|
+
forgetPw: [
|
|
20
|
+
'5be9b119f2152f38d67d84c2bd7b98c1',
|
|
21
|
+
'9edfb83302ae5da1097f01a082fc7a9f',
|
|
22
|
+
],
|
|
23
|
+
regist: [
|
|
24
|
+
'5be9b119f2152f38d67d84c2bd7b98c1',
|
|
25
|
+
'9edfb83302ae5da1097f01a082fc7a9f',
|
|
26
|
+
],
|
|
27
|
+
login: [
|
|
28
|
+
'5be9b119f2152f38d67d84c2bd7b98c1',
|
|
29
|
+
'9edfb83302ae5da1097f01a082fc7a9f',
|
|
30
|
+
],
|
|
31
|
+
},
|
|
32
|
+
PCGeetest: '',
|
|
33
|
+
platformNameId: '2',
|
|
34
|
+
flashSportH5Url: 'https://syty-h5.tymanage.com/world-cup',
|
|
35
|
+
iosDownloadSettings: {
|
|
36
|
+
iosDownloadJump: 'false',
|
|
37
|
+
iosPlist: 'https://q.kkty1.com/app/app.plist',
|
|
38
|
+
iosMobileprovisiton: 'https://download.34bt7ih.com/app/196ProIH.mobileprovision',
|
|
39
|
+
iosJumpLink: 'https://vcdw3.cc/Bpam7',
|
|
40
|
+
appSmartDownloadKey: '45c48cce',
|
|
41
|
+
appSmartDownloadKeyAndroid: '45c48cce',
|
|
42
|
+
appSmartDownloadKeyIos: '45c48cce',
|
|
43
|
+
},
|
|
44
|
+
gameSort: {
|
|
45
|
+
localhost: ['6', '3', '2', '4', '1', '5', '7'],
|
|
46
|
+
},
|
|
47
|
+
domainRefs: {
|
|
48
|
+
localhost: '000000',
|
|
49
|
+
},
|
|
50
|
+
iosPromotionDownloadSettings: '',
|
|
51
|
+
footBallGoalurl: 'https://96api.fixsha.com:9881',
|
|
52
|
+
testUpdateValue: 'v0.0.6',
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
export default checkJson
|
package/package.json
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "zd-h5-check-json",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "H5 check.json 明文配置(供定時重拉 window.__CHECK_JSON_NPM__ 使用)",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"exports": {
|
|
7
|
+
".": "./check.js",
|
|
8
|
+
"./check.js": "./check.js"
|
|
9
|
+
},
|
|
10
|
+
"files": [
|
|
11
|
+
"check.js"
|
|
12
|
+
],
|
|
13
|
+
"license": "UNLICENSED",
|
|
14
|
+
"private": false
|
|
15
|
+
}
|