@go-avro/avro-js 0.0.2-beta.177 → 0.0.2-beta.178

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.
@@ -43,7 +43,8 @@ AvroQueryClient.prototype.useCreateBill = function () {
43
43
  events: data.events ?? [],
44
44
  months: data.months ?? [],
45
45
  line_items: data.line_items ?? [],
46
- manual_emails: data.manual_emails,
46
+ manual_emails: data.manual_emails ?? [],
47
+ prepayments: data.prepayments ?? [],
47
48
  users: data.users,
48
49
  due_date: data.due_date,
49
50
  };
@@ -445,6 +445,7 @@ export interface Bill {
445
445
  intent_last_created_at: number;
446
446
  payments: BillPayment[];
447
447
  line_items: CustomLineItem[];
448
+ prepayments: Prepayment[];
448
449
  months: string[];
449
450
  due_date: number;
450
451
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@go-avro/avro-js",
3
- "version": "0.0.2-beta.177",
3
+ "version": "0.0.2-beta.178",
4
4
  "description": "JS client for Avro backend integration.",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",