sitero 0.0.19 → 0.0.20-kowkun.2
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/src/core/server/interfaces/actions/resources/order/commands/update/order-update-action.js +2 -2
- package/dist/src/web/server/applications/emails/order/create-order-complete-admin-email.js +5 -5
- package/dist/src/web/server/applications/emails/order/create-order-complete-email.js +2 -2
- package/dist/src/web/server/applications/emails/order/utils.js +9 -1
- package/dist/src/web/server/interfaces/apis/payment-notify/payment-notify-api.js +3 -3
- package/dist/types/src/commerce/ecpay/logistic/ecpay-logistic-handler.d.ts +1 -1
- package/dist/types/src/commerce/ecpay/logistic/ecpay-logistic-handler.d.ts.map +1 -1
- package/dist/types/src/core/server/interfaces/actions/action-context.d.ts +1 -0
- package/dist/types/src/core/server/interfaces/actions/action-context.d.ts.map +1 -1
- package/dist/types/src/web/server/applications/emails/order/create-order-complete-admin-email.d.ts.map +1 -1
- package/dist/types/src/web/server/applications/emails/order/create-order-complete-email.d.ts.map +1 -1
- package/dist/types/src/web/server/applications/emails/order/utils.d.ts +1 -0
- package/dist/types/src/web/server/applications/emails/order/utils.d.ts.map +1 -1
- package/dist/types/src/web/server/interfaces/apis/api-context.d.ts +1 -0
- package/dist/types/src/web/server/interfaces/apis/api-context.d.ts.map +1 -1
- package/dist/types/src/web/server/interfaces/apis/payment-notify/payment-notify-api.d.ts.map +1 -1
- package/package.json +1 -1
|
@@ -23,7 +23,7 @@ function createOrderUpdateAction(ctx) {
|
|
|
23
23
|
const {
|
|
24
24
|
infrastructure: { zod, i18n, repositories },
|
|
25
25
|
interfaces: { executions, middlewares },
|
|
26
|
-
constants: { ecpayEnv,
|
|
26
|
+
constants: { ecpayEnv, ecpayProfileLogistic, apiUrl },
|
|
27
27
|
logger
|
|
28
28
|
} = ctx;
|
|
29
29
|
return async function orderUpdateAction({
|
|
@@ -31,7 +31,7 @@ function createOrderUpdateAction(ctx) {
|
|
|
31
31
|
formData
|
|
32
32
|
}) {
|
|
33
33
|
const ECPAY_PROFILE = {
|
|
34
|
-
production:
|
|
34
|
+
production: ecpayProfileLogistic,
|
|
35
35
|
stage: LOGISTIC_STAGE_PROFILE
|
|
36
36
|
// logistic
|
|
37
37
|
};
|
|
@@ -6,7 +6,7 @@ import '../../../../../core/domain/resources/user/constants.js';
|
|
|
6
6
|
import 'clsx';
|
|
7
7
|
import 'tailwind-merge';
|
|
8
8
|
import { joinUrl } from '../../../../../shared/utils/join-url.js';
|
|
9
|
-
import { SHIPPING_TEXT_MAP, PAYMENT_TEXT_MAP, getShippingAddressHtml } from './utils.js';
|
|
9
|
+
import { SHIPPING_TEXT_MAP, PAYMENT_TEXT_MAP, getShippingAddressHtml, sortOrderItemsByProductIndex } from './utils.js';
|
|
10
10
|
|
|
11
11
|
function createOrderCompleteAdminEmail(ctx) {
|
|
12
12
|
const {
|
|
@@ -31,8 +31,8 @@ function createOrderCompleteAdminEmail(ctx) {
|
|
|
31
31
|
webUrl: constants.webUrl,
|
|
32
32
|
url,
|
|
33
33
|
orderNumber: order.orderNumber ?? "",
|
|
34
|
-
productItems: order.items.reduce(
|
|
35
|
-
(prev, { productName, quantity,
|
|
34
|
+
productItems: sortOrderItemsByProductIndex(order.items).reduce(
|
|
35
|
+
(prev, { productName, quantity, subtotalAmount }) => prev + productItemHtml(productName ?? "", quantity, subtotalAmount),
|
|
36
36
|
""
|
|
37
37
|
),
|
|
38
38
|
recipientName: order.recipientName ?? "",
|
|
@@ -69,13 +69,13 @@ function createOrderCompleteAdminEmail(ctx) {
|
|
|
69
69
|
send
|
|
70
70
|
};
|
|
71
71
|
}
|
|
72
|
-
const productItemHtml = (name, quantity,
|
|
72
|
+
const productItemHtml = (name, quantity, subtotalAmount) => `
|
|
73
73
|
<tr style="text-align: right">
|
|
74
74
|
<td style="border-bottom: 1px solid #ddd; padding: 2px 6px">
|
|
75
75
|
${name}
|
|
76
76
|
</td>
|
|
77
77
|
<td style="border-bottom: 1px solid #ddd; padding: 2px 6px">${quantity}</td>
|
|
78
|
-
<td style="border-bottom: 1px solid #ddd; padding: 2px 6px">NT $${
|
|
78
|
+
<td style="border-bottom: 1px solid #ddd; padding: 2px 6px">NT $${subtotalAmount}</td>
|
|
79
79
|
</tr>
|
|
80
80
|
`;
|
|
81
81
|
const extraHtml = (title, content) => `
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { getDescription, SHIPPING_TEXT_MAP, PAYMENT_TEXT_MAP, getShippingAddressHtml } from './utils.js';
|
|
1
|
+
import { getDescription, SHIPPING_TEXT_MAP, PAYMENT_TEXT_MAP, getShippingAddressHtml, sortOrderItemsByProductIndex } from './utils.js';
|
|
2
2
|
|
|
3
3
|
function createOrderCompleteEmail(ctx) {
|
|
4
4
|
const {
|
|
@@ -19,7 +19,7 @@ function createOrderCompleteEmail(ctx) {
|
|
|
19
19
|
webUrl: constants.webUrl,
|
|
20
20
|
url,
|
|
21
21
|
orderNumber: order.orderNumber ?? "",
|
|
22
|
-
productItems: order.items.reduce(
|
|
22
|
+
productItems: sortOrderItemsByProductIndex(order.items).reduce(
|
|
23
23
|
(prev, { productName, quantity, unitPriceAmount }) => prev + productItemHtml(productName ?? "", quantity, unitPriceAmount),
|
|
24
24
|
""
|
|
25
25
|
),
|
|
@@ -37,6 +37,14 @@ const SHIPPING_TEXT_MAP = {
|
|
|
37
37
|
HOME_DELIVERY: "\u5B85\u914D",
|
|
38
38
|
CVS_PICKUP: "\u8D85\u5546\u53D6\u8CA8"
|
|
39
39
|
};
|
|
40
|
+
const sortOrderItemsByProductIndex = (items) => {
|
|
41
|
+
return [...items].sort((left, right) => {
|
|
42
|
+
if (left.product.index === null && right.product.index === null) return 0;
|
|
43
|
+
if (left.product.index === null) return 1;
|
|
44
|
+
if (right.product.index === null) return -1;
|
|
45
|
+
return left.product.index - right.product.index;
|
|
46
|
+
});
|
|
47
|
+
};
|
|
40
48
|
const getDescription = (method, orderUrl) => {
|
|
41
49
|
if (method === "BANK_TRANSFER")
|
|
42
50
|
return `<span style="font-size: 14px; font-weight: 600; color: #dc2626"
|
|
@@ -93,4 +101,4 @@ const getDescription = (method, orderUrl) => {
|
|
|
93
101
|
return "";
|
|
94
102
|
};
|
|
95
103
|
|
|
96
|
-
export { PAYMENT_TEXT_MAP, SHIPPING_TEXT_MAP, getDescription, getShippingAddressHtml };
|
|
104
|
+
export { PAYMENT_TEXT_MAP, SHIPPING_TEXT_MAP, getDescription, getShippingAddressHtml, sortOrderItemsByProductIndex };
|
|
@@ -30,11 +30,11 @@ function createPaymentNotifyApi(ctx) {
|
|
|
30
30
|
infrastructure: { cache, repositories },
|
|
31
31
|
interfaces
|
|
32
32
|
},
|
|
33
|
-
constants: { ecpayEnv,
|
|
33
|
+
constants: { ecpayEnv, ecpayProfileLogistic, apiUrl },
|
|
34
34
|
logger
|
|
35
35
|
} = ctx;
|
|
36
36
|
const ECPAY_PROFILE = {
|
|
37
|
-
production:
|
|
37
|
+
production: ecpayProfileLogistic,
|
|
38
38
|
stage: AIO_CHECKOUT_STAGE_PROFILE
|
|
39
39
|
};
|
|
40
40
|
return async function paymentNotifyApi(request) {
|
|
@@ -82,7 +82,7 @@ function createPaymentNotifyApi(ctx) {
|
|
|
82
82
|
if (order.shippingMethod === SHIPPING_METHOD.CVS_PICKUP && order.shippingStatus === ORDER_SHIPPING_STATUS.NOT_READY) {
|
|
83
83
|
const { url, requestPayload, MerchantTradeNo: MerchantTradeNo2 } = createEcpayLogisticRequest({
|
|
84
84
|
env: ecpayEnv,
|
|
85
|
-
ecpayProfile: ecpayEnv === "stage" ? LOGISTIC_STAGE_PROFILE :
|
|
85
|
+
ecpayProfile: ecpayEnv === "stage" ? LOGISTIC_STAGE_PROFILE : ecpayProfileLogistic,
|
|
86
86
|
// logistic
|
|
87
87
|
input: {
|
|
88
88
|
ServerReplyURL: joinUrl(apiUrl, API_PATHS.web["logistic-notify"]),
|
|
@@ -2,7 +2,7 @@ import type { EcpayEnvironment, EcpayMerchantProfile } from "../types";
|
|
|
2
2
|
import { type CreateEcpayLogisticRequestInput } from "./create-request";
|
|
3
3
|
interface EcpayLogisticTriggerParams {
|
|
4
4
|
env: EcpayEnvironment;
|
|
5
|
-
|
|
5
|
+
ecpayProfileLogistic: EcpayMerchantProfile;
|
|
6
6
|
input: CreateEcpayLogisticRequestInput;
|
|
7
7
|
onSubmit?: (params: {
|
|
8
8
|
MerchantTradeNo: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ecpay-logistic-handler.d.ts","sourceRoot":"","sources":["../../../../../../src/commerce/ecpay/logistic/ecpay-logistic-handler.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,gBAAgB,EAAE,oBAAoB,EAAE,MAAM,UAAU,CAAC;AAEvE,OAAO,EAEL,KAAK,+BAA+B,EACrC,MAAM,kBAAkB,CAAC;AAE1B,UAAU,0BAA0B;IAClC,GAAG,EAAE,gBAAgB,CAAC;IACtB,
|
|
1
|
+
{"version":3,"file":"ecpay-logistic-handler.d.ts","sourceRoot":"","sources":["../../../../../../src/commerce/ecpay/logistic/ecpay-logistic-handler.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,gBAAgB,EAAE,oBAAoB,EAAE,MAAM,UAAU,CAAC;AAEvE,OAAO,EAEL,KAAK,+BAA+B,EACrC,MAAM,kBAAkB,CAAC;AAE1B,UAAU,0BAA0B;IAClC,GAAG,EAAE,gBAAgB,CAAC;IACtB,oBAAoB,EAAE,oBAAoB,CAAC;IAC3C,KAAK,EAAE,+BAA+B,CAAC;IACvC,QAAQ,CAAC,EAAE,CAAC,MAAM,EAAE;QAAE,eAAe,EAAE,MAAM,CAAA;KAAE,KAAK,IAAI,CAAC;CAC1D;AAED,wBAAgB,oBAAoB,CAAC,MAAM,EAAE,0BAA0B,QActE"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"action-context.d.ts","sourceRoot":"","sources":["../../../../../../../src/core/server/interfaces/actions/action-context.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EACV,gBAAgB,EAChB,oBAAoB,EACrB,MAAM,4BAA4B,CAAC;AACpC,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,oBAAoB,CAAC;AAC3D,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,sBAAsB,CAAC;AAC/D,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,4BAA4B,CAAC;AACtE,OAAO,KAAK,EACV,yBAAyB,EACzB,wBAAwB,EACzB,MAAM,8BAA8B,CAAC;AACtC,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,OAAO,CAAC;AAEpC,MAAM,WAAW,aAAa;IAC5B,cAAc,EAAE,kBAAkB,CAAC;IACnC,YAAY,EAAE,gBAAgB,CAAC;IAC/B,UAAU,EAAE;QACV,WAAW,EAAE;YACX,KAAK,EAAE;gBACL,mBAAmB,EAAE,UAAU,CAAC,OAAO,yBAAyB,CAAC,CAAC;aACnE,CAAC;YACF,IAAI,EAAE;gBACJ,kBAAkB,EAAE,UAAU,CAAC,OAAO,wBAAwB,CAAC,CAAC;aACjE,CAAC;SACH,CAAC;QACF,UAAU,EAAE;YACV,aAAa,EAAE,UAAU,CAAC,OAAO,mBAAmB,CAAC,CAAC;SACvD,CAAC;KACH,CAAC;IAEF,MAAM,EAAE,MAAM,CAAC;IAGf,IAAI,EAAE;QACJ,OAAO,EAAE,MAAM,OAAO,CAAC,OAAO,CAAC,CAAC;KACjC,CAAC;IAGF,SAAS,EAAE;QACT,OAAO,EAAE,MAAM,CAAC;QAChB,QAAQ,EAAE,gBAAgB,CAAC;QAC3B,YAAY,EAAE,oBAAoB,CAAC;QACnC,MAAM,EAAE,MAAM,CAAC;KAChB,CAAC;CACH"}
|
|
1
|
+
{"version":3,"file":"action-context.d.ts","sourceRoot":"","sources":["../../../../../../../src/core/server/interfaces/actions/action-context.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EACV,gBAAgB,EAChB,oBAAoB,EACrB,MAAM,4BAA4B,CAAC;AACpC,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,oBAAoB,CAAC;AAC3D,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,sBAAsB,CAAC;AAC/D,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,4BAA4B,CAAC;AACtE,OAAO,KAAK,EACV,yBAAyB,EACzB,wBAAwB,EACzB,MAAM,8BAA8B,CAAC;AACtC,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,OAAO,CAAC;AAEpC,MAAM,WAAW,aAAa;IAC5B,cAAc,EAAE,kBAAkB,CAAC;IACnC,YAAY,EAAE,gBAAgB,CAAC;IAC/B,UAAU,EAAE;QACV,WAAW,EAAE;YACX,KAAK,EAAE;gBACL,mBAAmB,EAAE,UAAU,CAAC,OAAO,yBAAyB,CAAC,CAAC;aACnE,CAAC;YACF,IAAI,EAAE;gBACJ,kBAAkB,EAAE,UAAU,CAAC,OAAO,wBAAwB,CAAC,CAAC;aACjE,CAAC;SACH,CAAC;QACF,UAAU,EAAE;YACV,aAAa,EAAE,UAAU,CAAC,OAAO,mBAAmB,CAAC,CAAC;SACvD,CAAC;KACH,CAAC;IAEF,MAAM,EAAE,MAAM,CAAC;IAGf,IAAI,EAAE;QACJ,OAAO,EAAE,MAAM,OAAO,CAAC,OAAO,CAAC,CAAC;KACjC,CAAC;IAGF,SAAS,EAAE;QACT,OAAO,EAAE,MAAM,CAAC;QAChB,QAAQ,EAAE,gBAAgB,CAAC;QAC3B,YAAY,EAAE,oBAAoB,CAAC;QACnC,oBAAoB,EAAE,oBAAoB,CAAC;QAC3C,MAAM,EAAE,MAAM,CAAC;KAChB,CAAC;CACH"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"create-order-complete-admin-email.d.ts","sourceRoot":"","sources":["../../../../../../../../src/web/server/applications/emails/order/create-order-complete-admin-email.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,4BAA4B,CAAC;AAC5D,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,kBAAkB,CAAC;
|
|
1
|
+
{"version":3,"file":"create-order-complete-admin-email.d.ts","sourceRoot":"","sources":["../../../../../../../../src/web/server/applications/emails/order/create-order-complete-admin-email.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,4BAA4B,CAAC;AAC5D,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,kBAAkB,CAAC;AAUrD,UAAU,UAAU;IAClB,OAAO,EAAE,MAAM,CAAC;IAChB,MAAM,EAAE,MAAM,CAAC;IACf,KAAK,EAAE,MAAM,CAAC;IACd,KAAK,EAAE,SAAS,CAAC;CAClB;AAID,wBAAgB,6BAA6B,CAAC,GAAG,EAAE,YAAY;2BAUnD,MAAM,gBACA,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC;8CAaiB,UAAU;EAuDlE"}
|
package/dist/types/src/web/server/applications/emails/order/create-order-complete-email.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"create-order-complete-email.d.ts","sourceRoot":"","sources":["../../../../../../../../src/web/server/applications/emails/order/create-order-complete-email.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,4BAA4B,CAAC;AAC5D,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,kBAAkB,CAAC;
|
|
1
|
+
{"version":3,"file":"create-order-complete-email.d.ts","sourceRoot":"","sources":["../../../../../../../../src/web/server/applications/emails/order/create-order-complete-email.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,4BAA4B,CAAC;AAC5D,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,kBAAkB,CAAC;AASrD,UAAU,UAAU;IAClB,OAAO,EAAE,MAAM,CAAC;IAChB,MAAM,EAAE,MAAM,CAAC;IACf,KAAK,EAAE,MAAM,CAAC;IACd,KAAK,EAAE,SAAS,CAAC;CAClB;AAED,wBAAgB,wBAAwB,CAAC,GAAG,EAAE,YAAY;2BAU9C,MAAM,gBACA,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC;8CAaiB,UAAU;EA2ClE"}
|
|
@@ -3,5 +3,6 @@ import type { OrderFull } from "../../../../../core/domain/resources/order/full"
|
|
|
3
3
|
export declare const getShippingAddressHtml: (order?: OrderFull | null) => string;
|
|
4
4
|
export declare const PAYMENT_TEXT_MAP: Record<string, string>;
|
|
5
5
|
export declare const SHIPPING_TEXT_MAP: Record<string, string>;
|
|
6
|
+
export declare const sortOrderItemsByProductIndex: (items: OrderFull["items"]) => import("../../../../../core/domain").OrderItemFull[];
|
|
6
7
|
export declare const getDescription: (method: OrderPaymentMethod, orderUrl: string) => string;
|
|
7
8
|
//# sourceMappingURL=utils.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"utils.d.ts","sourceRoot":"","sources":["../../../../../../../../src/web/server/applications/emails/order/utils.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,4BAA4B,CAAC;AACrE,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,iDAAiD,CAAC;AAwBjF,eAAO,MAAM,sBAAsB,GAAI,QAAQ,SAAS,GAAG,IAAI,WAqB9D,CAAC;AAEF,eAAO,MAAM,gBAAgB,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAInD,CAAC;AAEF,eAAO,MAAM,iBAAiB,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAGpD,CAAC;AAEF,eAAO,MAAM,cAAc,GACzB,QAAQ,kBAAkB,EAC1B,UAAU,MAAM,WA0DjB,CAAC"}
|
|
1
|
+
{"version":3,"file":"utils.d.ts","sourceRoot":"","sources":["../../../../../../../../src/web/server/applications/emails/order/utils.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,4BAA4B,CAAC;AACrE,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,iDAAiD,CAAC;AAwBjF,eAAO,MAAM,sBAAsB,GAAI,QAAQ,SAAS,GAAG,IAAI,WAqB9D,CAAC;AAEF,eAAO,MAAM,gBAAgB,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAInD,CAAC;AAEF,eAAO,MAAM,iBAAiB,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAGpD,CAAC;AAEF,eAAO,MAAM,4BAA4B,GAAI,OAAO,SAAS,CAAC,OAAO,CAAC,yDAOrE,CAAC;AAEF,eAAO,MAAM,cAAc,GACzB,QAAQ,kBAAkB,EAC1B,UAAU,MAAM,WA0DjB,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"api-context.d.ts","sourceRoot":"","sources":["../../../../../../../src/web/server/interfaces/apis/api-context.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EACV,gBAAgB,EAChB,oBAAoB,EACrB,MAAM,4BAA4B,CAAC;AACpC,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,yBAAyB,CAAC;AAC1D,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,OAAO,CAAC;AAEpC,MAAM,WAAW,UAAU;IACzB,UAAU,EAAE,UAAU,CAAC;IAGvB,SAAS,EAAE;QACT,iBAAiB,EAAE,MAAM,CAAC;QAC1B,QAAQ,EAAE,gBAAgB,CAAC;QAC3B,YAAY,EAAE,oBAAoB,CAAC;QACnC,MAAM,EAAE,MAAM,CAAC;KAChB,CAAC;IAEF,MAAM,EAAE,MAAM,CAAC;CAChB"}
|
|
1
|
+
{"version":3,"file":"api-context.d.ts","sourceRoot":"","sources":["../../../../../../../src/web/server/interfaces/apis/api-context.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EACV,gBAAgB,EAChB,oBAAoB,EACrB,MAAM,4BAA4B,CAAC;AACpC,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,yBAAyB,CAAC;AAC1D,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,OAAO,CAAC;AAEpC,MAAM,WAAW,UAAU;IACzB,UAAU,EAAE,UAAU,CAAC;IAGvB,SAAS,EAAE;QACT,iBAAiB,EAAE,MAAM,CAAC;QAC1B,QAAQ,EAAE,gBAAgB,CAAC;QAC3B,YAAY,EAAE,oBAAoB,CAAC;QACnC,oBAAoB,EAAE,oBAAoB,CAAC;QAC3C,MAAM,EAAE,MAAM,CAAC;KAChB,CAAC;IAEF,MAAM,EAAE,MAAM,CAAC;CAChB"}
|
package/dist/types/src/web/server/interfaces/apis/payment-notify/payment-notify-api.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"payment-notify-api.d.ts","sourceRoot":"","sources":["../../../../../../../../src/web/server/interfaces/apis/payment-notify/payment-notify-api.ts"],"names":[],"mappings":"AAAA;;GAEG;AAMH,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,gBAAgB,CAAC;AACjD,OAAO,EAAE,YAAY,EAAE,KAAK,WAAW,EAAE,MAAM,aAAa,CAAC;AA2B7D,wBAAgB,sBAAsB,CAAC,GAAG,EAAE,UAAU,IAgBb,SAAS,WAAW,
|
|
1
|
+
{"version":3,"file":"payment-notify-api.d.ts","sourceRoot":"","sources":["../../../../../../../../src/web/server/interfaces/apis/payment-notify/payment-notify-api.ts"],"names":[],"mappings":"AAAA;;GAEG;AAMH,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,gBAAgB,CAAC;AACjD,OAAO,EAAE,YAAY,EAAE,KAAK,WAAW,EAAE,MAAM,aAAa,CAAC;AA2B7D,wBAAgB,sBAAsB,CAAC,GAAG,EAAE,UAAU,IAgBb,SAAS,WAAW,oCA4H5D"}
|