@voyantjs/customer-portal 0.77.8 → 0.77.12

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.
@@ -854,7 +854,7 @@ export declare function createPublicCustomerPortalRoutes(options?: PublicCustome
854
854
  invoiceId: string;
855
855
  invoiceNumber: string;
856
856
  invoiceType: "invoice" | "proforma" | "credit_note";
857
- invoiceStatus: "void" | "draft" | "sent" | "pending_external_allocation" | "partially_paid" | "paid" | "overdue";
857
+ invoiceStatus: "void" | "draft" | "issued" | "pending_external_allocation" | "partially_paid" | "paid" | "overdue";
858
858
  currency: string;
859
859
  totalCents: number;
860
860
  paidCents: number;
@@ -1810,7 +1810,7 @@ export declare const publicCustomerPortalRoutes: import("hono/hono-base").HonoBa
1810
1810
  invoiceId: string;
1811
1811
  invoiceNumber: string;
1812
1812
  invoiceType: "invoice" | "proforma" | "credit_note";
1813
- invoiceStatus: "void" | "draft" | "sent" | "pending_external_allocation" | "partially_paid" | "paid" | "overdue";
1813
+ invoiceStatus: "void" | "draft" | "issued" | "pending_external_allocation" | "partially_paid" | "paid" | "overdue";
1814
1814
  currency: string;
1815
1815
  totalCents: number;
1816
1816
  paidCents: number;
@@ -887,7 +887,7 @@ export declare const customerPortalBookingFinancialDocumentSchema: z.ZodObject<{
887
887
  invoiceStatus: z.ZodEnum<{
888
888
  void: "void";
889
889
  draft: "draft";
890
- sent: "sent";
890
+ issued: "issued";
891
891
  pending_external_allocation: "pending_external_allocation";
892
892
  partially_paid: "partially_paid";
893
893
  paid: "paid";
@@ -959,7 +959,7 @@ export declare const customerPortalBookingFinancialsSchema: z.ZodObject<{
959
959
  invoiceStatus: z.ZodEnum<{
960
960
  void: "void";
961
961
  draft: "draft";
962
- sent: "sent";
962
+ issued: "issued";
963
963
  pending_external_allocation: "pending_external_allocation";
964
964
  partially_paid: "partially_paid";
965
965
  paid: "paid";
@@ -1172,7 +1172,7 @@ export declare const customerPortalBookingDetailSchema: z.ZodObject<{
1172
1172
  invoiceStatus: z.ZodEnum<{
1173
1173
  void: "void";
1174
1174
  draft: "draft";
1175
- sent: "sent";
1175
+ issued: "issued";
1176
1176
  pending_external_allocation: "pending_external_allocation";
1177
1177
  partially_paid: "partially_paid";
1178
1178
  paid: "paid";
@@ -81,7 +81,7 @@ const customerPortalFinanceInvoiceTypeSchema = z.enum(["invoice", "proforma", "c
81
81
  const customerPortalFinanceInvoiceStatusSchema = z.enum([
82
82
  "draft",
83
83
  "pending_external_allocation",
84
- "sent",
84
+ "issued",
85
85
  "partially_paid",
86
86
  "paid",
87
87
  "overdue",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@voyantjs/customer-portal",
3
- "version": "0.77.8",
3
+ "version": "0.77.12",
4
4
  "license": "Apache-2.0",
5
5
  "repository": {
6
6
  "type": "git",
@@ -34,15 +34,15 @@
34
34
  "drizzle-orm": "^0.45.2",
35
35
  "hono": "^4.12.10",
36
36
  "zod": "^4.3.6",
37
- "@voyantjs/bookings": "0.77.8",
38
- "@voyantjs/core": "0.77.8",
39
- "@voyantjs/crm": "0.77.8",
40
- "@voyantjs/db": "0.77.8",
41
- "@voyantjs/finance": "0.77.8",
42
- "@voyantjs/hono": "0.77.8",
43
- "@voyantjs/identity": "0.77.8",
44
- "@voyantjs/legal": "0.77.8",
45
- "@voyantjs/utils": "0.77.8"
37
+ "@voyantjs/bookings": "0.77.12",
38
+ "@voyantjs/core": "0.77.12",
39
+ "@voyantjs/crm": "0.77.12",
40
+ "@voyantjs/db": "0.77.12",
41
+ "@voyantjs/finance": "0.77.12",
42
+ "@voyantjs/hono": "0.77.12",
43
+ "@voyantjs/identity": "0.77.12",
44
+ "@voyantjs/legal": "0.77.12",
45
+ "@voyantjs/utils": "0.77.12"
46
46
  },
47
47
  "devDependencies": {
48
48
  "typescript": "^6.0.2",