@uxda/appkit 1.0.16 → 1.0.18
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 +3 -3
- package/package.json +1 -1
- package/src/balance/api/endpoints.ts +3 -3
package/dist/index.js
CHANGED
|
@@ -579,11 +579,11 @@ const endpointsList = {
|
|
|
579
579
|
* 余额明细
|
|
580
580
|
*/
|
|
581
581
|
getBalance: {
|
|
582
|
-
path: "/ac-app/account/info/detail",
|
|
582
|
+
path: "/ac-app/account/info/detail/app",
|
|
583
583
|
// /app
|
|
584
584
|
translate: (data) => ({
|
|
585
|
-
appCode:
|
|
586
|
-
tenantCode:
|
|
585
|
+
// appCode: 'fnfundkit',
|
|
586
|
+
// tenantCode: '1665925586953629696',
|
|
587
587
|
}),
|
|
588
588
|
transform(result) {
|
|
589
589
|
return {
|
package/package.json
CHANGED
|
@@ -38,10 +38,10 @@ const endpointsList: HttpEndpoints = {
|
|
|
38
38
|
* 余额明细
|
|
39
39
|
*/
|
|
40
40
|
getBalance: {
|
|
41
|
-
path: '/ac-app/account/info/detail', // /app
|
|
41
|
+
path: '/ac-app/account/info/detail/app', // /app
|
|
42
42
|
translate: (data: any) => ({
|
|
43
|
-
appCode: 'fnfundkit',
|
|
44
|
-
tenantCode: '1665925586953629696',
|
|
43
|
+
// appCode: 'fnfundkit',
|
|
44
|
+
// tenantCode: '1665925586953629696',
|
|
45
45
|
}),
|
|
46
46
|
transform (result: any) {
|
|
47
47
|
return {
|