From 4659ec0d8cf62f89f2d0edd2e169e4bcd022f0d1 Mon Sep 17 00:00:00 2001
From: zhengyiming <540361168@qq.com>
Date: 星期四, 25 十二月 2025 13:57:10 +0800
Subject: [PATCH] fix: 甲方小程序
---
packages/services/apiV2/userWallet.ts | 15 +++++++++++++++
1 files changed, 15 insertions(+), 0 deletions(-)
diff --git a/packages/services/apiV2/userWallet.ts b/packages/services/apiV2/userWallet.ts
index 6443e40..d945ac1 100644
--- a/packages/services/apiV2/userWallet.ts
+++ b/packages/services/apiV2/userWallet.ts
@@ -16,3 +16,18 @@
...(options || {}),
});
}
+
+/** 寰俊JS鏀粯閫氱煡 POST /api/user/userWallet/weChatPayTransactionsJsApiNotify */
+export async function weChatPayTransactionsJsApiNotify(
+ body: API.WeChatPayTransactionsJsApiNotifyCommand,
+ options?: API.RequestConfig
+) {
+ return request<boolean>('/api/user/userWallet/weChatPayTransactionsJsApiNotify', {
+ method: 'POST',
+ headers: {
+ 'Content-Type': 'application/json-patch+json',
+ },
+ data: body,
+ ...(options || {}),
+ });
+}
--
Gitblit v1.10.0