@curless/sinocare-demo 0.66.0 → 0.67.0
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 +11 -3
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -381,6 +381,14 @@ var startUaagCheckout = async (deps, args) => {
|
|
|
381
381
|
awaitingPayment: true,
|
|
382
382
|
message: "\u94F6\u8054\u6536\u94F6\u53F0\u5DF2\u5F00\u597D\u3002\u9875\u9762\u4E0A\u5199\u7684\u662F\u300C\u786E\u8BA4\u652F\u4ED8\u300D\u5E76\u663E\u793A\u91D1\u989D \u2014\u2014 \u4F60\u786E\u8BA4\u7684\u662F\u8FD9\u7B14\u8D2D\u4E70\u672C\u8EAB\uFF0C\u786E\u8BA4\u540E\u94F6\u8054\u628A\u4E00\u6B21\u6027\u652F\u4ED8\u51ED\u8BC1\u56DE\u8C03\u7ED9\u6211\u4EEC\u3002\u26A0\uFE0F \u5361\u4E0D\u4F1A\u5728\u90A3\u4E00\u523B\u88AB\u6263\u6B3E\uFF1A\u6263\u6B3E\u8981\u5546\u6237\u62FF\u8FD9\u5F20\u51ED\u8BC1\u8D70\u81EA\u5DF1\u7684\u94F6\u8054\u6536\u5355\uFF0C\u4E09\u8BFA\u6CA1\u6709\uFF0C\u6240\u4EE5\u6F14\u793A\u5230\u51ED\u8BC1\u4E3A\u6B62\u3002",
|
|
383
383
|
checkoutUrl: upi.checkoutUrl ?? null,
|
|
384
|
+
// ⚠️ The card's own field names. `payUrl` is what it renders a "go pay"
|
|
385
|
+
// button from, and `uaagPaymentIntentId` is what it polls — deliberately
|
|
386
|
+
// NOT `sessionId`/`merchantId`, which would send it to the hosted poller
|
|
387
|
+
// that asks whether the ACP session was PAID. A UnionPay checkout never
|
|
388
|
+
// makes it paid, so that poller would spin for ten minutes and then time
|
|
389
|
+
// out on a flow that had, in its own terms, succeeded.
|
|
390
|
+
payUrl: upi.checkoutUrl ?? null,
|
|
391
|
+
uaagPaymentIntentId: session.sessionId,
|
|
384
392
|
paymentIntentId: session.sessionId,
|
|
385
393
|
merchantId: session.merchantId,
|
|
386
394
|
card: { id: card.id, last4: card.panLastFour },
|
|
@@ -831,8 +839,8 @@ var SINOCARE_GROUPS = [
|
|
|
831
839
|
rows: [
|
|
832
840
|
{
|
|
833
841
|
title: "\u94F6\u8054\u5361(UAAG)",
|
|
834
|
-
sub: "\u7528\u4F60\u94B1\u5305\u91CC\u7ED1\u7684\u94F6\u8054\u5361 \xB7 \u94F6\u8054\
|
|
835
|
-
actions: [{ label: "\
|
|
842
|
+
sub: "\u7528\u4F60\u94B1\u5305\u91CC\u7ED1\u7684\u94F6\u8054\u5361 \xB7 \u5728\u94F6\u8054\u81EA\u5DF1\u7684\u9875\u9762\u4E0A\u786E\u8BA4",
|
|
843
|
+
actions: [{ label: "\u7528\u94F6\u8054\u4ED8\u6B3E", tool: "start_sinocare_uaag_handoff" }]
|
|
836
844
|
}
|
|
837
845
|
]
|
|
838
846
|
},
|
|
@@ -938,7 +946,7 @@ var pickView = (pick, r) => checkoutView({
|
|
|
938
946
|
}
|
|
939
947
|
});
|
|
940
948
|
var CHECKOUT_URI_PREFIX = "ui://sinocare/";
|
|
941
|
-
var CHECKOUT_URI = `${CHECKOUT_URI_PREFIX}card-
|
|
949
|
+
var CHECKOUT_URI = `${CHECKOUT_URI_PREFIX}card-v34.html`;
|
|
942
950
|
var CHECKOUT_UI_META = uiMeta(CHECKOUT_URI);
|
|
943
951
|
var WIDGET_META = widgetMeta();
|
|
944
952
|
var SHARED_TOOLS = storefrontTools({
|