@lcdp/api-react-rest-client 2.6.9-develop.9387208890 → 2.6.9-develop.9397977761
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.
|
@@ -69,7 +69,13 @@ export interface OrderJournal {
|
|
|
69
69
|
* @type {Date}
|
|
70
70
|
* @memberof OrderJournal
|
|
71
71
|
*/
|
|
72
|
-
|
|
72
|
+
deliveryVoucherBuyerLastViewedAt?: Date;
|
|
73
|
+
/**
|
|
74
|
+
* Date when the seller last viewed the delivery voucher.
|
|
75
|
+
* @type {Date}
|
|
76
|
+
* @memberof OrderJournal
|
|
77
|
+
*/
|
|
78
|
+
deliveryVoucherSellerLastViewedAt?: Date;
|
|
73
79
|
}
|
|
74
80
|
export declare function OrderJournalFromJSON(json: any): OrderJournal;
|
|
75
81
|
export declare function OrderJournalFromJSONTyped(json: any, ignoreDiscriminator: boolean): OrderJournal;
|
|
@@ -33,7 +33,8 @@ function OrderJournalFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
33
33
|
'deliveredAt': !(0, runtime_1.exists)(json, 'deliveredAt') ? undefined : (new Date(json['deliveredAt'])),
|
|
34
34
|
'committedAt': !(0, runtime_1.exists)(json, 'committedAt') ? undefined : (new Date(json['committedAt'])),
|
|
35
35
|
'counterProposalAt': !(0, runtime_1.exists)(json, 'counterProposalAt') ? undefined : (new Date(json['counterProposalAt'])),
|
|
36
|
-
'
|
|
36
|
+
'deliveryVoucherBuyerLastViewedAt': !(0, runtime_1.exists)(json, 'deliveryVoucherBuyerLastViewedAt') ? undefined : (new Date(json['deliveryVoucherBuyerLastViewedAt'])),
|
|
37
|
+
'deliveryVoucherSellerLastViewedAt': !(0, runtime_1.exists)(json, 'deliveryVoucherSellerLastViewedAt') ? undefined : (new Date(json['deliveryVoucherSellerLastViewedAt'])),
|
|
37
38
|
};
|
|
38
39
|
}
|
|
39
40
|
exports.OrderJournalFromJSONTyped = OrderJournalFromJSONTyped;
|
|
@@ -53,7 +54,8 @@ function OrderJournalToJSON(value) {
|
|
|
53
54
|
'deliveredAt': value.deliveredAt === undefined ? undefined : (value.deliveredAt.toISOString()),
|
|
54
55
|
'committedAt': value.committedAt === undefined ? undefined : (value.committedAt.toISOString()),
|
|
55
56
|
'counterProposalAt': value.counterProposalAt === undefined ? undefined : (value.counterProposalAt.toISOString()),
|
|
56
|
-
'
|
|
57
|
+
'deliveryVoucherBuyerLastViewedAt': value.deliveryVoucherBuyerLastViewedAt === undefined ? undefined : (value.deliveryVoucherBuyerLastViewedAt.toISOString()),
|
|
58
|
+
'deliveryVoucherSellerLastViewedAt': value.deliveryVoucherSellerLastViewedAt === undefined ? undefined : (value.deliveryVoucherSellerLastViewedAt.toISOString()),
|
|
57
59
|
};
|
|
58
60
|
}
|
|
59
61
|
exports.OrderJournalToJSON = OrderJournalToJSON;
|