@yolo-croket-dev/amqp-access 0.7.110 → 0.7.112
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.
|
@@ -3,7 +3,7 @@ export declare class SearchPurchaseReceiptDetailPayload {
|
|
|
3
3
|
purchaseReceiptId?: string;
|
|
4
4
|
PInfoId?: string;
|
|
5
5
|
}
|
|
6
|
-
export declare class SearchPurchaseReceiptDetailResult implements Pick<PurchaseReceiptDomain, '_id' | 'paymentNumber' | 'paymentMethod' | 'purchasedInfos' | 'paymentDate' | 'receiveInfo' | 'purchaseReceiptPriceInfo' | 'purchaseReceiptRefundPriceInfo' | 'customStoreShippingInfos'> {
|
|
6
|
+
export declare class SearchPurchaseReceiptDetailResult implements Pick<PurchaseReceiptDomain, '_id' | 'paymentNumber' | 'paymentMethod' | 'purchasedInfos' | 'paymentDate' | 'receiveInfo' | 'purchaseReceiptPriceInfo' | 'purchaseReceiptRefundPriceInfo' | 'customStoreShippingInfos' | 'isPcccDeferred'> {
|
|
7
7
|
_id: string;
|
|
8
8
|
paymentNumber: string;
|
|
9
9
|
paymentMethod: string;
|
|
@@ -14,4 +14,5 @@ export declare class SearchPurchaseReceiptDetailResult implements Pick<PurchaseR
|
|
|
14
14
|
purchaseReceiptPriceInfo: PurchaseReceiptPriceInfo;
|
|
15
15
|
purchaseReceiptRefundPriceInfo?: PurchaseReceiptRefundPriceInfo;
|
|
16
16
|
customStoreShippingInfos: CustomStoreShippingInfo[];
|
|
17
|
+
isPcccDeferred?: boolean;
|
|
17
18
|
}
|
|
@@ -8,7 +8,7 @@ export declare class SearchPurchaseReceiptsPayload {
|
|
|
8
8
|
searchAfter?: string;
|
|
9
9
|
searchBefore?: string;
|
|
10
10
|
}
|
|
11
|
-
export declare class PurchaseReceiptList implements Pick<PurchaseReceiptDomain, '_id' | 'paymentNumber' | 'paymentMethod' | 'purchasedInfos' | 'paymentDate' | 'searchToken' | 'purchasedInfoTotalCount'> {
|
|
11
|
+
export declare class PurchaseReceiptList implements Pick<PurchaseReceiptDomain, '_id' | 'paymentNumber' | 'paymentMethod' | 'purchasedInfos' | 'paymentDate' | 'searchToken' | 'purchasedInfoTotalCount' | 'isPcccDeferred'> {
|
|
12
12
|
_id: string;
|
|
13
13
|
paymentNumber: string;
|
|
14
14
|
paymentMethod: string;
|
|
@@ -16,6 +16,7 @@ export declare class PurchaseReceiptList implements Pick<PurchaseReceiptDomain,
|
|
|
16
16
|
purchasedInfoTotalCount: number;
|
|
17
17
|
paymentDate: Date;
|
|
18
18
|
searchToken?: string;
|
|
19
|
+
isPcccDeferred?: boolean;
|
|
19
20
|
}
|
|
20
21
|
export declare class SearchPurchaseReceiptsResult {
|
|
21
22
|
datas: PurchaseReceiptList[];
|