wupengfei
3 天以前 b73f871d7f1571cd4e276ca51ca6d6d6f35e7147
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 || {}),
  });
}