zhengyiming
4 天以前 4c6f6d453785f4dba80e874a1b6172b3207b434f
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 || {}),
  });
}