tickera-angular-components 0.0.1-dev.76 → 0.0.1-dev.78
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/index.d.ts +7 -4
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -1011,6 +1011,7 @@ interface GiftBond extends Auditable {
|
|
|
1011
1011
|
description?: string;
|
|
1012
1012
|
status: GiftBondStatus;
|
|
1013
1013
|
value: number;
|
|
1014
|
+
page_content?: string;
|
|
1014
1015
|
images?: GiftBondImage[];
|
|
1015
1016
|
}
|
|
1016
1017
|
|
|
@@ -1033,16 +1034,18 @@ interface GiftBondPurchase extends Auditable {
|
|
|
1033
1034
|
id: number;
|
|
1034
1035
|
code: string;
|
|
1035
1036
|
original_value: number;
|
|
1036
|
-
used_value
|
|
1037
|
-
lost_value
|
|
1037
|
+
used_value: number | null;
|
|
1038
|
+
lost_value: number | null;
|
|
1038
1039
|
beneficiary_email: string;
|
|
1039
|
-
|
|
1040
|
+
beneficiary: Customer | null;
|
|
1041
|
+
personalized_message: string | null;
|
|
1040
1042
|
status: GiftBondPurchaseStatus;
|
|
1041
1043
|
purchased_at: string;
|
|
1042
1044
|
expires_at: string;
|
|
1043
|
-
redeemed_at
|
|
1045
|
+
redeemed_at: string | null;
|
|
1044
1046
|
gift_bond_id: number;
|
|
1045
1047
|
buyer_id: number;
|
|
1048
|
+
buyer: Admin;
|
|
1046
1049
|
}
|
|
1047
1050
|
|
|
1048
1051
|
interface ValidateGiftBondResponse {
|