@uxda/appkit 4.2.53 → 4.2.54

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 CHANGED
@@ -8665,7 +8665,7 @@ const $app = {
8665
8665
  },
8666
8666
  invokeRecharge: (options) => {
8667
8667
  },
8668
- getSdkConfig: (appCode) => {
8668
+ getSdkConfig: (appCode, url) => {
8669
8669
  }
8670
8670
  };
8671
8671
  services.forEach((service) => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uxda/appkit",
3
- "version": "4.2.53",
3
+ "version": "4.2.54",
4
4
  "description": "小程序应用开发包",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.ts",
package/src/Appkit.ts CHANGED
@@ -41,7 +41,7 @@ export type DollarApp = {
41
41
  setTempToken: (token: () => string) => void
42
42
  requestPayment: (options: PaymentParams) => void
43
43
  invokeRecharge: (options: RechargeParams) => void
44
- getSdkConfig: (appCode: string) => void
44
+ getSdkConfig: (appCode: string, url: string) => void
45
45
  }
46
46
 
47
47
  /**
package/src/index.ts CHANGED
@@ -51,7 +51,7 @@ const $app: DollarApp = {
51
51
  },
52
52
  requestPayment: (options: PaymentParams) => {},
53
53
  invokeRecharge: (options: RechargeParams) => {},
54
- getSdkConfig: (appCode: string) => {},
54
+ getSdkConfig: (appCode: string, url: string) => {},
55
55
  }
56
56
 
57
57
  services.forEach((service) => {