tickera-angular-components 0.0.1-dev.61 → 0.0.1-dev.62

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.
Files changed (2) hide show
  1. package/index.d.ts +4 -0
  2. package/package.json +1 -1
package/index.d.ts CHANGED
@@ -1031,9 +1031,13 @@ interface Transaction extends Auditable {
1031
1031
 
1032
1032
  interface Order extends Auditable {
1033
1033
  id: number;
1034
+ uuid: string;
1034
1035
  customer_id: number | null;
1035
1036
  customer: Customer | null;
1037
+ customer_name?: string;
1038
+ customer_email?: string;
1036
1039
  order_items: OrderItem[];
1040
+ order_items_quantity?: number;
1037
1041
  transactions: Transaction[];
1038
1042
  sub_total: number;
1039
1043
  discount_amount: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tickera-angular-components",
3
- "version": "0.0.1-dev.61",
3
+ "version": "0.0.1-dev.62",
4
4
  "description": "Angular 20 standalone component library for Tickera backoffice system",
5
5
  "license": "MIT",
6
6
  "repository": {