wupengfei
2 天以前 6e9df378f1c0d10af1a0eddc5afeaa2787213ec9
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 || {}),
  });
}