tickera-angular-components 0.0.1-dev.105 → 0.0.1-dev.107
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 +6 -0
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -1024,6 +1024,12 @@ interface CorporateBond extends Auditable {
|
|
|
1024
1024
|
quantity: number;
|
|
1025
1025
|
status: CorporateBondStatus;
|
|
1026
1026
|
value: number;
|
|
1027
|
+
purchase_value: number;
|
|
1028
|
+
buyer_customer_id: number | null;
|
|
1029
|
+
buyer: Customer | null;
|
|
1030
|
+
order_id: number | null;
|
|
1031
|
+
order: Order | null;
|
|
1032
|
+
payment_method?: PaymentMethod;
|
|
1027
1033
|
codes: CorporateBondCode[];
|
|
1028
1034
|
}
|
|
1029
1035
|
|