hylid-bridge 4.0.34 → 4.1.1

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.
Files changed (63) hide show
  1. package/README.md +165 -165
  2. package/lib/bridges.d.ts +26 -26
  3. package/lib/bridges.js +54 -26
  4. package/lib/clients/web/changipay/alert.d.ts +2 -0
  5. package/lib/clients/web/changipay/alert.js +3 -0
  6. package/lib/clients/web/changipay/getAuthCode.d.ts +2 -0
  7. package/lib/clients/web/changipay/getAuthCode.js +3 -0
  8. package/lib/clients/web/changipay/getLocation.d.ts +2 -0
  9. package/lib/clients/web/changipay/getLocation.js +3 -0
  10. package/lib/clients/web/changipay/getStorage.d.ts +2 -0
  11. package/lib/clients/web/changipay/getStorage.js +3 -0
  12. package/lib/clients/web/changipay/getStorageSync.d.ts +2 -0
  13. package/lib/clients/web/changipay/getStorageSync.js +3 -0
  14. package/lib/clients/web/changipay/getSystemInfo.d.ts +2 -0
  15. package/lib/clients/web/changipay/getSystemInfo.js +3 -0
  16. package/lib/clients/web/changipay/getSystemInfoSync.d.ts +2 -0
  17. package/lib/clients/web/changipay/getSystemInfoSync.js +3 -0
  18. package/lib/clients/web/changipay/index.d.ts +53 -0
  19. package/lib/clients/web/changipay/index.js +33 -0
  20. package/lib/clients/web/changipay/navigateTo.d.ts +2 -0
  21. package/lib/clients/web/changipay/navigateTo.js +3 -0
  22. package/lib/clients/web/changipay/redirectTo.d.ts +2 -0
  23. package/lib/clients/web/changipay/redirectTo.js +3 -0
  24. package/lib/clients/web/changipay/removeStorage.d.ts +2 -0
  25. package/lib/clients/web/changipay/removeStorage.js +3 -0
  26. package/lib/clients/web/changipay/request.d.ts +2 -0
  27. package/lib/clients/web/changipay/request.js +3 -0
  28. package/lib/clients/web/changipay/setClipboard.d.ts +2 -0
  29. package/lib/clients/web/changipay/setClipboard.js +3 -0
  30. package/lib/clients/web/changipay/setStorage.d.ts +2 -0
  31. package/lib/clients/web/changipay/setStorage.js +3 -0
  32. package/lib/clients/web/changipay/showToast.d.ts +2 -0
  33. package/lib/clients/web/changipay/showToast.js +3 -0
  34. package/lib/code/authLoginSrcCode.js +26 -13
  35. package/lib/common/apis/custom/web/changipay/getAuthCode.d.ts +3 -0
  36. package/lib/common/apis/custom/web/changipay/getAuthCode.js +66 -0
  37. package/lib/common/apis/custom/web/changipay/getSystemInfo.d.ts +2 -0
  38. package/lib/common/apis/custom/web/changipay/getSystemInfo.js +36 -0
  39. package/lib/common/apis/generated/web/getSystemInfoSync.d.ts +2 -0
  40. package/lib/common/apis/generated/web/getSystemInfoSync.js +7 -0
  41. package/lib/common/apis/generated/web/redirectTo.d.ts +9 -0
  42. package/lib/common/apis/generated/web/redirectTo.js +14 -0
  43. package/lib/dsl.d.ts +26 -26
  44. package/lib/dsl.js +26 -26
  45. package/lib/umd/index.js +1 -1
  46. package/lib/umd/index.js.LICENSE.txt +1 -1
  47. package/lib/umd/mp_web_alipay.js +1 -1
  48. package/lib/umd/mp_web_alipayhk.js +1 -1
  49. package/lib/umd/mp_web_chope.js +1 -1
  50. package/lib/umd/mp_web_dana.js +1 -1
  51. package/lib/umd/mp_web_demo.js +1 -1
  52. package/lib/umd/mp_web_gcash.js +1 -1
  53. package/lib/umd/mp_web_mpay.js +1 -1
  54. package/lib/umd/mp_web_mpay.js.LICENSE.txt +1 -1
  55. package/lib/umd/mp_web_tmn.js +1 -1
  56. package/lib/umd/mp_web_tngd.js +1 -1
  57. package/lib/umd/mp_web_toss.js +1 -1
  58. package/lib/umd/web_alipay.js +1 -1
  59. package/lib/umd/web_changipay.js +2 -0
  60. package/lib/umd/web_changipay.js.LICENSE.txt +1 -0
  61. package/lib/umd/web_h5.js +1 -1
  62. package/lib/umd/web_h5.js.LICENSE.txt +1 -1
  63. package/package.json +1 -1
package/lib/bridges.js CHANGED
@@ -505,6 +505,20 @@ import webTngdh5ngGetNetworkType from './clients/web/tngdh5ng/getNetworkType';
505
505
  import webTngdh5ngNavigateBack from './clients/web/tngdh5ng/navigateBack';
506
506
  import webTngdh5ngNavigateTo from './clients/web/tngdh5ng/navigateTo';
507
507
  import webTngdh5ngShowToast from './clients/web/tngdh5ng/showToast';
508
+ import webChangipayAlert from './clients/web/changipay/alert';
509
+ import webChangipayGetAuthCode from './clients/web/changipay/getAuthCode';
510
+ import webChangipayGetLocation from './clients/web/changipay/getLocation';
511
+ import webChangipayGetStorage from './clients/web/changipay/getStorage';
512
+ import webChangipayGetStorageSync from './clients/web/changipay/getStorageSync';
513
+ import webChangipayGetSystemInfo from './clients/web/changipay/getSystemInfo';
514
+ import webGetSystemInfoSync from './common/apis/generated/web/getSystemInfoSync';
515
+ import webChangipayNavigateTo from './clients/web/changipay/navigateTo';
516
+ import webRedirectTo from './common/apis/generated/web/redirectTo';
517
+ import webChangipayRemoveStorage from './clients/web/changipay/removeStorage';
518
+ import webChangipayRequest from './clients/web/changipay/request';
519
+ import webChangipaySetClipboard from './clients/web/changipay/setClipboard';
520
+ import webChangipaySetStorage from './clients/web/changipay/setStorage';
521
+ import webChangipayShowToast from './clients/web/changipay/showToast';
508
522
  /**
509
523
  * @support
510
524
  * | Platform | Apps |
@@ -587,7 +601,7 @@ export var addPhoneContactAsync = /*#__PURE__*/promisify(addPhoneContact);
587
601
  * | ------------- | -------- |
588
602
  * | mp | demo,gcash,tngd,alipay,chope,alipayhk,dana,tmn |
589
603
  * | mp_web | demo,gcash,tngd,alipay,chope,alipayhk,dana,tmn,toss,mpay |
590
- * | web | demo,alipay,h5,tngdh5ng |
604
+ * | web | demo,alipay,h5,tngdh5ng,changipay |
591
605
  */
592
606
  export var alert = function alert() {
593
607
  var rest = [];
@@ -616,6 +630,7 @@ export var alert = function alert() {
616
630
  if (appEnv.isWebDemo) return webDemoAlert.apply(void 0, rest);
617
631
  if (appEnv.isWebH5) return webH5Alert.apply(void 0, rest);
618
632
  if (appEnv.isWebTngdh5ng) return webTngdh5ngAlert.apply(void 0, rest);
633
+ if (appEnv.isWebChangipay) return webChangipayAlert.apply(void 0, rest);
619
634
  return notFound.apply(void 0, __spreadArray(['alert'], rest, false));
620
635
  };
621
636
  /**
@@ -625,7 +640,7 @@ export var alert = function alert() {
625
640
  * | ------------- | -------- |
626
641
  * | mp | demo,gcash,tngd,alipay,chope,alipayhk,dana,tmn |
627
642
  * | mp_web | demo,gcash,tngd,alipay,chope,alipayhk,dana,tmn,toss,mpay |
628
- * | web | demo,alipay,h5,tngdh5ng |
643
+ * | web | demo,alipay,h5,tngdh5ng,changipay |
629
644
  */
630
645
  // @ts-ignore
631
646
  export var alertAsync = /*#__PURE__*/promisify(alert);
@@ -1446,7 +1461,7 @@ export var getClientInfoAsync = /*#__PURE__*/promisify(getClientInfo);
1446
1461
  * | ------------- | -------- |
1447
1462
  * | mp | demo,gcash,tngd,alipay,chope,alipayhk,dana,tmn |
1448
1463
  * | mp_web | demo,gcash,tngd,alipay,chope,alipayhk,dana,tmn,toss,mpay |
1449
- * | web | demo,alipay |
1464
+ * | web | demo,alipay,changipay |
1450
1465
  */
1451
1466
  export var getAuthCode = function getAuthCode() {
1452
1467
  var rest = [];
@@ -1473,6 +1488,7 @@ export var getAuthCode = function getAuthCode() {
1473
1488
  if (appEnv.isMpWebToss) return mpWebGetAuthCode.apply(void 0, rest);
1474
1489
  if (appEnv.isWebAlipay) return webAlipayGetAuthCode.apply(void 0, rest);
1475
1490
  if (appEnv.isWebDemo) return webDemoGetAuthCode.apply(void 0, rest);
1491
+ if (appEnv.isWebChangipay) return webChangipayGetAuthCode.apply(void 0, rest);
1476
1492
  return notFound.apply(void 0, __spreadArray(['getAuthCode'], rest, false));
1477
1493
  };
1478
1494
  /**
@@ -1482,7 +1498,7 @@ export var getAuthCode = function getAuthCode() {
1482
1498
  * | ------------- | -------- |
1483
1499
  * | mp | demo,gcash,tngd,alipay,chope,alipayhk,dana,tmn |
1484
1500
  * | mp_web | demo,gcash,tngd,alipay,chope,alipayhk,dana,tmn,toss,mpay |
1485
- * | web | demo,alipay |
1501
+ * | web | demo,alipay,changipay |
1486
1502
  */
1487
1503
  // @ts-ignore
1488
1504
  export var getAuthCodeAsync = /*#__PURE__*/promisify(getAuthCode);
@@ -1935,7 +1951,7 @@ export var getImageInfoAsync = /*#__PURE__*/promisify(getImageInfo);
1935
1951
  * | ------------- | -------- |
1936
1952
  * | mp | demo,gcash,tngd,alipay,chope,alipayhk,dana,tmn |
1937
1953
  * | mp_web | demo,gcash,tngd,alipay,chope,alipayhk,dana,tmn,toss,mpay |
1938
- * | web | demo,alipay,h5,tngdh5ng |
1954
+ * | web | demo,alipay,h5,tngdh5ng,changipay |
1939
1955
  */
1940
1956
  export var getLocation = function getLocation() {
1941
1957
  var rest = [];
@@ -1964,6 +1980,7 @@ export var getLocation = function getLocation() {
1964
1980
  if (appEnv.isWebDemo) return webDemoGetLocation.apply(void 0, rest);
1965
1981
  if (appEnv.isWebH5) return webH5GetLocation.apply(void 0, rest);
1966
1982
  if (appEnv.isWebTngdh5ng) return webTngdh5ngGetLocation.apply(void 0, rest);
1983
+ if (appEnv.isWebChangipay) return webChangipayGetLocation.apply(void 0, rest);
1967
1984
  return notFound.apply(void 0, __spreadArray(['getLocation'], rest, false));
1968
1985
  };
1969
1986
  /**
@@ -1973,7 +1990,7 @@ export var getLocation = function getLocation() {
1973
1990
  * | ------------- | -------- |
1974
1991
  * | mp | demo,gcash,tngd,alipay,chope,alipayhk,dana,tmn |
1975
1992
  * | mp_web | demo,gcash,tngd,alipay,chope,alipayhk,dana,tmn,toss,mpay |
1976
- * | web | demo,alipay,h5,tngdh5ng |
1993
+ * | web | demo,alipay,h5,tngdh5ng,changipay |
1977
1994
  */
1978
1995
  // @ts-ignore
1979
1996
  export var getLocationAsync = /*#__PURE__*/promisify(getLocation);
@@ -2420,7 +2437,7 @@ export var getSiteInfoAsync = /*#__PURE__*/promisify(getSiteInfo);
2420
2437
  * | ------------- | -------- |
2421
2438
  * | mp | demo,gcash,tngd,alipay,chope,alipayhk,dana,tmn |
2422
2439
  * | mp_web | demo,gcash,tngd,alipay,chope,alipayhk,dana,tmn,toss,mpay |
2423
- * | web | demo,alipay,h5 |
2440
+ * | web | demo,alipay,h5,changipay |
2424
2441
  */
2425
2442
  export var getStorage = function getStorage() {
2426
2443
  var rest = [];
@@ -2447,6 +2464,7 @@ export var getStorage = function getStorage() {
2447
2464
  if (appEnv.isMpWebToss) return mpWebGetStorage.apply(void 0, rest);
2448
2465
  if (appEnv.isWebDemo) return webGetStorage.apply(void 0, rest);
2449
2466
  if (appEnv.isWebH5) return webH5GetStorage.apply(void 0, rest);
2467
+ if (appEnv.isWebChangipay) return webChangipayGetStorage.apply(void 0, rest);
2450
2468
  return notFound.apply(void 0, __spreadArray(['getStorage'], rest, false));
2451
2469
  };
2452
2470
  /**
@@ -2456,7 +2474,7 @@ export var getStorage = function getStorage() {
2456
2474
  * | ------------- | -------- |
2457
2475
  * | mp | demo,gcash,tngd,alipay,chope,alipayhk,dana,tmn |
2458
2476
  * | mp_web | demo,gcash,tngd,alipay,chope,alipayhk,dana,tmn,toss,mpay |
2459
- * | web | demo,alipay,h5 |
2477
+ * | web | demo,alipay,h5,changipay |
2460
2478
  */
2461
2479
  // @ts-ignore
2462
2480
  export var getStorageAsync = /*#__PURE__*/promisify(getStorage);
@@ -2466,7 +2484,7 @@ export var getStorageAsync = /*#__PURE__*/promisify(getStorage);
2466
2484
  * | Platform | Apps |
2467
2485
  * | ------------- | -------- |
2468
2486
  * | mp | demo,gcash,tngd,alipay,chope,alipayhk,dana,tmn |
2469
- * | web | h5 |
2487
+ * | web | h5,changipay |
2470
2488
  */
2471
2489
  export var getStorageSync = function getStorageSync() {
2472
2490
  var rest = [];
@@ -2482,6 +2500,7 @@ export var getStorageSync = function getStorageSync() {
2482
2500
  if (appEnv.isMpTngd) return mpGetStorageSync.apply(void 0, rest);
2483
2501
  if (appEnv.isMpTmn) return mpGetStorageSync.apply(void 0, rest);
2484
2502
  if (appEnv.isWebH5) return webH5GetStorageSync.apply(void 0, rest);
2503
+ if (appEnv.isWebChangipay) return webChangipayGetStorageSync.apply(void 0, rest);
2485
2504
  return notFound.apply(void 0, __spreadArray(['getStorageSync'], rest, false));
2486
2505
  };
2487
2506
  /**
@@ -2491,7 +2510,7 @@ export var getStorageSync = function getStorageSync() {
2491
2510
  * | ------------- | -------- |
2492
2511
  * | mp | demo,gcash,tngd,alipay,chope,alipayhk,dana,tmn |
2493
2512
  * | mp_web | demo,gcash,tngd,alipay,chope,alipayhk,dana,tmn,toss,mpay |
2494
- * | web | demo,alipay,h5,tngdh5ng |
2513
+ * | web | demo,alipay,h5,tngdh5ng,changipay |
2495
2514
  */
2496
2515
  export var getSystemInfo = function getSystemInfo() {
2497
2516
  var rest = [];
@@ -2520,6 +2539,7 @@ export var getSystemInfo = function getSystemInfo() {
2520
2539
  if (appEnv.isWebDemo) return webGetSystemInfo.apply(void 0, rest);
2521
2540
  if (appEnv.isWebH5) return webH5GetSystemInfo.apply(void 0, rest);
2522
2541
  if (appEnv.isWebTngdh5ng) return webGetSystemInfo.apply(void 0, rest);
2542
+ if (appEnv.isWebChangipay) return webChangipayGetSystemInfo.apply(void 0, rest);
2523
2543
  return notFound.apply(void 0, __spreadArray(['getSystemInfo'], rest, false));
2524
2544
  };
2525
2545
  /**
@@ -2529,7 +2549,7 @@ export var getSystemInfo = function getSystemInfo() {
2529
2549
  * | ------------- | -------- |
2530
2550
  * | mp | demo,gcash,tngd,alipay,chope,alipayhk,dana,tmn |
2531
2551
  * | mp_web | demo,gcash,tngd,alipay,chope,alipayhk,dana,tmn,toss,mpay |
2532
- * | web | demo,alipay,h5,tngdh5ng |
2552
+ * | web | demo,alipay,h5,tngdh5ng,changipay |
2533
2553
  */
2534
2554
  // @ts-ignore
2535
2555
  export var getSystemInfoAsync = /*#__PURE__*/promisify(getSystemInfo);
@@ -2538,7 +2558,7 @@ export var getSystemInfoAsync = /*#__PURE__*/promisify(getSystemInfo);
2538
2558
  * | Platform | Apps |
2539
2559
  * | ------------- | -------- |
2540
2560
  * | mp | demo,gcash,tngd,alipay,chope,alipayhk,dana,tmn |
2541
- * | web | h5 |
2561
+ * | web | h5,changipay |
2542
2562
  */
2543
2563
  export var getSystemInfoSync = function getSystemInfoSync() {
2544
2564
  var rest = [];
@@ -2554,6 +2574,7 @@ export var getSystemInfoSync = function getSystemInfoSync() {
2554
2574
  if (appEnv.isMpTngd) return mpGetSystemInfoSync.apply(void 0, rest);
2555
2575
  if (appEnv.isMpTmn) return mpGetSystemInfoSync.apply(void 0, rest);
2556
2576
  if (appEnv.isWebH5) return webH5GetSystemInfoSync.apply(void 0, rest);
2577
+ if (appEnv.isWebChangipay) return webGetSystemInfoSync.apply(void 0, rest);
2557
2578
  return notFound.apply(void 0, __spreadArray(['getSystemInfoSync'], rest, false));
2558
2579
  };
2559
2580
  /**
@@ -3094,7 +3115,7 @@ export var navigateBackMiniProgramAsync = /*#__PURE__*/promisify(navigateBackMin
3094
3115
  * | Platform | Apps |
3095
3116
  * | ------------- | -------- |
3096
3117
  * | mp | demo,gcash,tngd,alipay,chope,alipayhk,dana,tmn |
3097
- * | web | alipay,demo,h5,tngdh5ng |
3118
+ * | web | alipay,demo,h5,tngdh5ng,changipay |
3098
3119
  * | mp_web | demo,gcash,tngd,alipay,chope,alipayhk,dana,tmn,toss,mpay |
3099
3120
  */
3100
3121
  export var navigateTo = function navigateTo() {
@@ -3124,6 +3145,7 @@ export var navigateTo = function navigateTo() {
3124
3145
  if (appEnv.isWebDemo) return webDemoNavigateTo.apply(void 0, rest);
3125
3146
  if (appEnv.isWebH5) return webH5NavigateTo.apply(void 0, rest);
3126
3147
  if (appEnv.isWebTngdh5ng) return webTngdh5ngNavigateTo.apply(void 0, rest);
3148
+ if (appEnv.isWebChangipay) return webChangipayNavigateTo.apply(void 0, rest);
3127
3149
  return notFound.apply(void 0, __spreadArray(['navigateTo'], rest, false));
3128
3150
  };
3129
3151
  /**
@@ -3132,7 +3154,7 @@ export var navigateTo = function navigateTo() {
3132
3154
  * | Platform | Apps |
3133
3155
  * | ------------- | -------- |
3134
3156
  * | mp | demo,gcash,tngd,alipay,chope,alipayhk,dana,tmn |
3135
- * | web | alipay,demo,h5,tngdh5ng |
3157
+ * | web | alipay,demo,h5,tngdh5ng,changipay |
3136
3158
  * | mp_web | demo,gcash,tngd,alipay,chope,alipayhk,dana,tmn,toss,mpay |
3137
3159
  */
3138
3160
  // @ts-ignore
@@ -4456,7 +4478,7 @@ export var readBLECharacteristicValueAsync = /*#__PURE__*/promisify(readBLEChara
4456
4478
  * | Platform | Apps |
4457
4479
  * | ------------- | -------- |
4458
4480
  * | mp | demo,gcash,tngd,alipay,chope,alipayhk,dana,tmn |
4459
- * | web | alipay,demo,h5 |
4481
+ * | web | alipay,demo,h5,changipay |
4460
4482
  * | mp_web | demo,gcash,tngd,alipay,chope,alipayhk,dana,tmn,toss,mpay |
4461
4483
  */
4462
4484
  export var redirectTo = function redirectTo() {
@@ -4485,6 +4507,7 @@ export var redirectTo = function redirectTo() {
4485
4507
  if (appEnv.isWebAlipay) return webAlipayRedirectTo.apply(void 0, rest);
4486
4508
  if (appEnv.isWebDemo) return webDemoRedirectTo.apply(void 0, rest);
4487
4509
  if (appEnv.isWebH5) return webH5RedirectTo.apply(void 0, rest);
4510
+ if (appEnv.isWebChangipay) return webRedirectTo.apply(void 0, rest);
4488
4511
  return notFound.apply(void 0, __spreadArray(['redirectTo'], rest, false));
4489
4512
  };
4490
4513
  /**
@@ -4493,7 +4516,7 @@ export var redirectTo = function redirectTo() {
4493
4516
  * | Platform | Apps |
4494
4517
  * | ------------- | -------- |
4495
4518
  * | mp | demo,gcash,tngd,alipay,chope,alipayhk,dana,tmn |
4496
- * | web | alipay,demo,h5 |
4519
+ * | web | alipay,demo,h5,changipay |
4497
4520
  * | mp_web | demo,gcash,tngd,alipay,chope,alipayhk,dana,tmn,toss,mpay |
4498
4521
  */
4499
4522
  // @ts-ignore
@@ -4653,7 +4676,7 @@ export var removeSavedFileAsync = /*#__PURE__*/promisify(removeSavedFile);
4653
4676
  * | ------------- | -------- |
4654
4677
  * | mp | demo,gcash,tngd,alipay,chope,alipayhk,dana,tmn |
4655
4678
  * | mp_web | demo,gcash,tngd,alipay,chope,alipayhk,dana,tmn,toss,mpay |
4656
- * | web | demo,alipay,h5 |
4679
+ * | web | demo,alipay,h5,changipay |
4657
4680
  */
4658
4681
  export var removeStorage = function removeStorage() {
4659
4682
  var rest = [];
@@ -4681,6 +4704,7 @@ export var removeStorage = function removeStorage() {
4681
4704
  if (appEnv.isWebAlipay) return webAlipayRemoveStorage.apply(void 0, rest);
4682
4705
  if (appEnv.isWebDemo) return webDemoRemoveStorage.apply(void 0, rest);
4683
4706
  if (appEnv.isWebH5) return webH5RemoveStorage.apply(void 0, rest);
4707
+ if (appEnv.isWebChangipay) return webChangipayRemoveStorage.apply(void 0, rest);
4684
4708
  return notFound.apply(void 0, __spreadArray(['removeStorage'], rest, false));
4685
4709
  };
4686
4710
  /**
@@ -4690,7 +4714,7 @@ export var removeStorage = function removeStorage() {
4690
4714
  * | ------------- | -------- |
4691
4715
  * | mp | demo,gcash,tngd,alipay,chope,alipayhk,dana,tmn |
4692
4716
  * | mp_web | demo,gcash,tngd,alipay,chope,alipayhk,dana,tmn,toss,mpay |
4693
- * | web | demo,alipay,h5 |
4717
+ * | web | demo,alipay,h5,changipay |
4694
4718
  */
4695
4719
  // @ts-ignore
4696
4720
  export var removeStorageAsync = /*#__PURE__*/promisify(removeStorage);
@@ -4725,7 +4749,7 @@ export var removeStorageSync = function removeStorageSync() {
4725
4749
  * | ------------- | -------- |
4726
4750
  * | mp | demo,gcash,tngd,alipay,chope,alipayhk,dana,tmn |
4727
4751
  * | mp_web | demo,gcash,tngd,alipay,chope,alipayhk,dana,tmn,toss,mpay |
4728
- * | web | demo,alipay,h5 |
4752
+ * | web | demo,alipay,h5,changipay |
4729
4753
  */
4730
4754
  export var request = function request() {
4731
4755
  var rest = [];
@@ -4752,6 +4776,7 @@ export var request = function request() {
4752
4776
  if (appEnv.isMpWebToss) return mpWebRequest.apply(void 0, rest);
4753
4777
  if (appEnv.isWebDemo) return webRequest.apply(void 0, rest);
4754
4778
  if (appEnv.isWebH5) return webH5Request.apply(void 0, rest);
4779
+ if (appEnv.isWebChangipay) return webChangipayRequest.apply(void 0, rest);
4755
4780
  return notFound.apply(void 0, __spreadArray(['request'], rest, false));
4756
4781
  };
4757
4782
  /**
@@ -4761,7 +4786,7 @@ export var request = function request() {
4761
4786
  * | ------------- | -------- |
4762
4787
  * | mp | demo,gcash,tngd,alipay,chope,alipayhk,dana,tmn |
4763
4788
  * | mp_web | demo,gcash,tngd,alipay,chope,alipayhk,dana,tmn,toss,mpay |
4764
- * | web | demo,alipay,h5 |
4789
+ * | web | demo,alipay,h5,changipay |
4765
4790
  */
4766
4791
  // @ts-ignore
4767
4792
  export var requestAsync = /*#__PURE__*/promisify(request);
@@ -5085,7 +5110,7 @@ export var setCanPullDownAsync = /*#__PURE__*/promisify(setCanPullDown);
5085
5110
  * | ------------- | -------- |
5086
5111
  * | mp | demo,gcash,tngd,alipay,chope,alipayhk,dana,tmn |
5087
5112
  * | mp_web | demo,gcash,tngd,alipay,chope,alipayhk,dana,tmn,toss,mpay |
5088
- * | web | demo,alipay,h5,tngdh5ng |
5113
+ * | web | demo,alipay,h5,tngdh5ng,changipay |
5089
5114
  */
5090
5115
  export var setClipboard = function setClipboard() {
5091
5116
  var rest = [];
@@ -5114,6 +5139,7 @@ export var setClipboard = function setClipboard() {
5114
5139
  if (appEnv.isWebDemo) return webSetClipboard.apply(void 0, rest);
5115
5140
  if (appEnv.isWebH5) return webH5SetClipboard.apply(void 0, rest);
5116
5141
  if (appEnv.isWebTngdh5ng) return webSetClipboard.apply(void 0, rest);
5142
+ if (appEnv.isWebChangipay) return webChangipaySetClipboard.apply(void 0, rest);
5117
5143
  return notFound.apply(void 0, __spreadArray(['setClipboard'], rest, false));
5118
5144
  };
5119
5145
  /**
@@ -5123,7 +5149,7 @@ export var setClipboard = function setClipboard() {
5123
5149
  * | ------------- | -------- |
5124
5150
  * | mp | demo,gcash,tngd,alipay,chope,alipayhk,dana,tmn |
5125
5151
  * | mp_web | demo,gcash,tngd,alipay,chope,alipayhk,dana,tmn,toss,mpay |
5126
- * | web | demo,alipay,h5,tngdh5ng |
5152
+ * | web | demo,alipay,h5,tngdh5ng,changipay |
5127
5153
  */
5128
5154
  // @ts-ignore
5129
5155
  export var setClipboardAsync = /*#__PURE__*/promisify(setClipboard);
@@ -5304,7 +5330,7 @@ export var setScreenBrightnessAsync = /*#__PURE__*/promisify(setScreenBrightness
5304
5330
  * | ------------- | -------- |
5305
5331
  * | mp | demo,gcash,tngd,alipay,chope,alipayhk,dana,tmn |
5306
5332
  * | mp_web | demo,gcash,tngd,alipay,chope,alipayhk,dana,tmn,toss,mpay |
5307
- * | web | demo,alipay,h5 |
5333
+ * | web | demo,alipay,h5,changipay |
5308
5334
  */
5309
5335
  export var setStorage = function setStorage() {
5310
5336
  var rest = [];
@@ -5331,6 +5357,7 @@ export var setStorage = function setStorage() {
5331
5357
  if (appEnv.isMpWebToss) return mpWebSetStorage.apply(void 0, rest);
5332
5358
  if (appEnv.isWebDemo) return webSetStorage.apply(void 0, rest);
5333
5359
  if (appEnv.isWebH5) return webH5SetStorage.apply(void 0, rest);
5360
+ if (appEnv.isWebChangipay) return webChangipaySetStorage.apply(void 0, rest);
5334
5361
  return notFound.apply(void 0, __spreadArray(['setStorage'], rest, false));
5335
5362
  };
5336
5363
  /**
@@ -5340,7 +5367,7 @@ export var setStorage = function setStorage() {
5340
5367
  * | ------------- | -------- |
5341
5368
  * | mp | demo,gcash,tngd,alipay,chope,alipayhk,dana,tmn |
5342
5369
  * | mp_web | demo,gcash,tngd,alipay,chope,alipayhk,dana,tmn,toss,mpay |
5343
- * | web | demo,alipay,h5 |
5370
+ * | web | demo,alipay,h5,changipay |
5344
5371
  */
5345
5372
  // @ts-ignore
5346
5373
  export var setStorageAsync = /*#__PURE__*/promisify(setStorage);
@@ -5611,7 +5638,7 @@ export var showNavigationBarLoadingAsync = /*#__PURE__*/promisify(showNavigation
5611
5638
  * | ------------- | -------- |
5612
5639
  * | mp | demo,gcash,tngd,alipay,chope,alipayhk,dana,tmn,wechat |
5613
5640
  * | mp_web | demo,gcash,tngd,alipay,chope,alipayhk,dana,tmn,toss,mpay |
5614
- * | web | demo,alipay,h5,tngdh5ng |
5641
+ * | web | demo,alipay,h5,tngdh5ng,changipay |
5615
5642
  */
5616
5643
  export var showToast = function showToast() {
5617
5644
  var rest = [];
@@ -5641,6 +5668,7 @@ export var showToast = function showToast() {
5641
5668
  if (appEnv.isWebDemo) return webDemoShowToast.apply(void 0, rest);
5642
5669
  if (appEnv.isWebH5) return webH5ShowToast.apply(void 0, rest);
5643
5670
  if (appEnv.isWebTngdh5ng) return webTngdh5ngShowToast.apply(void 0, rest);
5671
+ if (appEnv.isWebChangipay) return webChangipayShowToast.apply(void 0, rest);
5644
5672
  return notFound.apply(void 0, __spreadArray(['showToast'], rest, false));
5645
5673
  };
5646
5674
  /**
@@ -5650,7 +5678,7 @@ export var showToast = function showToast() {
5650
5678
  * | ------------- | -------- |
5651
5679
  * | mp | demo,gcash,tngd,alipay,chope,alipayhk,dana,tmn,wechat |
5652
5680
  * | mp_web | demo,gcash,tngd,alipay,chope,alipayhk,dana,tmn,toss,mpay |
5653
- * | web | demo,alipay,h5,tngdh5ng |
5681
+ * | web | demo,alipay,h5,tngdh5ng,changipay |
5654
5682
  */
5655
5683
  // @ts-ignore
5656
5684
  export var showToastAsync = /*#__PURE__*/promisify(showToast);
@@ -0,0 +1,2 @@
1
+ import fill from '../../../common/apis/custom/web/h5/alert';
2
+ export default fill;
@@ -0,0 +1,3 @@
1
+ // auto-generated
2
+ import fill from '../../../common/apis/custom/web/h5/alert';
3
+ export default fill;
@@ -0,0 +1,2 @@
1
+ import fill from '../../../common/apis/custom/web/changipay/getAuthCode';
2
+ export default fill;
@@ -0,0 +1,3 @@
1
+ // auto-generated
2
+ import fill from '../../../common/apis/custom/web/changipay/getAuthCode';
3
+ export default fill;
@@ -0,0 +1,2 @@
1
+ import fill from '../../../common/apis/custom/web/h5/getLocation';
2
+ export default fill;
@@ -0,0 +1,3 @@
1
+ // auto-generated
2
+ import fill from '../../../common/apis/custom/web/h5/getLocation';
3
+ export default fill;
@@ -0,0 +1,2 @@
1
+ import fill from '../../../common/apis/custom/web/h5/getStorage';
2
+ export default fill;
@@ -0,0 +1,3 @@
1
+ // auto-generated
2
+ import fill from '../../../common/apis/custom/web/h5/getStorage';
3
+ export default fill;
@@ -0,0 +1,2 @@
1
+ import fill from '../../../common/apis/custom/web/h5/getStorageSync';
2
+ export default fill;
@@ -0,0 +1,3 @@
1
+ // auto-generated
2
+ import fill from '../../../common/apis/custom/web/h5/getStorageSync';
3
+ export default fill;
@@ -0,0 +1,2 @@
1
+ import fill from '../../../common/apis/custom/web/changipay/getSystemInfo';
2
+ export default fill;
@@ -0,0 +1,3 @@
1
+ // auto-generated
2
+ import fill from '../../../common/apis/custom/web/changipay/getSystemInfo';
3
+ export default fill;
@@ -0,0 +1,2 @@
1
+ import fill from '../../../common/apis/generated/web/getSystemInfoSync';
2
+ export default fill;
@@ -0,0 +1,3 @@
1
+ // auto-generated
2
+ import fill from '../../../common/apis/generated/web/getSystemInfoSync';
3
+ export default fill;
@@ -0,0 +1,53 @@
1
+ import { getSystemInfoSync } from '../../../common/apis/generated/web/getSystemInfoSync';
2
+ import { redirectTo, redirectToAsync } from '../../../common/apis/generated/web/redirectTo';
3
+ import alert from './alert';
4
+ import getAuthCode from './getAuthCode';
5
+ import getLocation from './getLocation';
6
+ import getStorage from './getStorage';
7
+ import getStorageSync from './getStorageSync';
8
+ import getSystemInfo from './getSystemInfo';
9
+ import navigateTo from './navigateTo';
10
+ import removeStorage from './removeStorage';
11
+ import request from './request';
12
+ import setClipboard from './setClipboard';
13
+ import setStorage from './setStorage';
14
+ import showToast from './showToast';
15
+ declare const _default: {
16
+ getSystemInfoSync: () => GetSystemInfoCallbackValue;
17
+ redirectTo: (args: RedirectToArgs) => void;
18
+ alert: typeof alert;
19
+ getAuthCode: (args: {
20
+ scopes: string | string[];
21
+ appId?: string | undefined;
22
+ } & import("@hylid/types").AsyncCallback<GetAuthCodeCallbackValue>) => void;
23
+ getLocation: typeof getLocation;
24
+ getStorage: (args: GetStorage) => void;
25
+ getStorageSync: (args: {
26
+ key: string;
27
+ }) => {
28
+ data: any;
29
+ };
30
+ getSystemInfo: typeof getSystemInfo;
31
+ navigateTo: typeof navigateTo;
32
+ removeStorage: (args: RemoveStorageArgs) => void;
33
+ request: (args: {
34
+ url: string;
35
+ headers?: {
36
+ [key: string]: string;
37
+ } | undefined;
38
+ method?: "GET" | "POST" | undefined;
39
+ data?: any;
40
+ timeout?: number | undefined;
41
+ dataType?: "json" | "text" | "base64" | "arraybuffer" | undefined;
42
+ } & import("@hylid/types").AsyncCallback<{
43
+ data: any;
44
+ status: number;
45
+ headers: any;
46
+ }>) => void;
47
+ setClipboard: typeof setClipboard;
48
+ setStorage: (args: SetStorage) => void;
49
+ showToast: typeof showToast;
50
+ };
51
+ export default _default;
52
+ export { getSystemInfoSync, redirectTo, alert, getAuthCode, getLocation, getStorage, getStorageSync, getSystemInfo, navigateTo, removeStorage, request, setClipboard, setStorage, showToast, };
53
+ export { redirectToAsync };
@@ -0,0 +1,33 @@
1
+ // auto-generated
2
+ import { getSystemInfoSync } from '../../../common/apis/generated/web/getSystemInfoSync';
3
+ import { redirectTo, redirectToAsync } from '../../../common/apis/generated/web/redirectTo';
4
+ import alert from './alert';
5
+ import getAuthCode from './getAuthCode';
6
+ import getLocation from './getLocation';
7
+ import getStorage from './getStorage';
8
+ import getStorageSync from './getStorageSync';
9
+ import getSystemInfo from './getSystemInfo';
10
+ import navigateTo from './navigateTo';
11
+ import removeStorage from './removeStorage';
12
+ import request from './request';
13
+ import setClipboard from './setClipboard';
14
+ import setStorage from './setStorage';
15
+ import showToast from './showToast';
16
+ export default {
17
+ getSystemInfoSync: getSystemInfoSync,
18
+ redirectTo: redirectTo,
19
+ alert: alert,
20
+ getAuthCode: getAuthCode,
21
+ getLocation: getLocation,
22
+ getStorage: getStorage,
23
+ getStorageSync: getStorageSync,
24
+ getSystemInfo: getSystemInfo,
25
+ navigateTo: navigateTo,
26
+ removeStorage: removeStorage,
27
+ request: request,
28
+ setClipboard: setClipboard,
29
+ setStorage: setStorage,
30
+ showToast: showToast
31
+ };
32
+ export { getSystemInfoSync, redirectTo, alert, getAuthCode, getLocation, getStorage, getStorageSync, getSystemInfo, navigateTo, removeStorage, request, setClipboard, setStorage, showToast };
33
+ export { redirectToAsync };
@@ -0,0 +1,2 @@
1
+ import fill from '../../../common/apis/custom/web/h5/navigateTo';
2
+ export default fill;
@@ -0,0 +1,3 @@
1
+ // auto-generated
2
+ import fill from '../../../common/apis/custom/web/h5/navigateTo';
3
+ export default fill;
@@ -0,0 +1,2 @@
1
+ import fill from '../../../common/apis/generated/web/redirectTo';
2
+ export default fill;
@@ -0,0 +1,3 @@
1
+ // auto-generated
2
+ import fill from '../../../common/apis/generated/web/redirectTo';
3
+ export default fill;
@@ -0,0 +1,2 @@
1
+ import fill from '../../../common/apis/custom/web/h5/removeStorage';
2
+ export default fill;
@@ -0,0 +1,3 @@
1
+ // auto-generated
2
+ import fill from '../../../common/apis/custom/web/h5/removeStorage';
3
+ export default fill;
@@ -0,0 +1,2 @@
1
+ import fill from '../../../common/apis/custom/web/h5/request';
2
+ export default fill;
@@ -0,0 +1,3 @@
1
+ // auto-generated
2
+ import fill from '../../../common/apis/custom/web/h5/request';
3
+ export default fill;
@@ -0,0 +1,2 @@
1
+ import fill from '../../../common/apis/custom/web/h5/setClipboard';
2
+ export default fill;
@@ -0,0 +1,3 @@
1
+ // auto-generated
2
+ import fill from '../../../common/apis/custom/web/h5/setClipboard';
3
+ export default fill;
@@ -0,0 +1,2 @@
1
+ import fill from '../../../common/apis/custom/web/h5/setStorage';
2
+ export default fill;
@@ -0,0 +1,3 @@
1
+ // auto-generated
2
+ import fill from '../../../common/apis/custom/web/h5/setStorage';
3
+ export default fill;
@@ -0,0 +1,2 @@
1
+ import fill from '../../../common/apis/custom/web/h5/showToast';
2
+ export default fill;
@@ -0,0 +1,3 @@
1
+ // auto-generated
2
+ import fill from '../../../common/apis/custom/web/h5/showToast';
3
+ export default fill;