@royalinvest/dto 0.45.0 → 0.45.2
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/dist/ca/bc/sections.d.ts
CHANGED
|
@@ -29,6 +29,8 @@ export interface sections extends IAddress {
|
|
|
29
29
|
service_daytime_phone_number: string;
|
|
30
30
|
service_other_phone_number: string;
|
|
31
31
|
service_fax_number_for_service: string;
|
|
32
|
+
service_email: string;
|
|
33
|
+
service_other_email: string;
|
|
32
34
|
agreement_start: Date | null;
|
|
33
35
|
agreement_start_day?: string;
|
|
34
36
|
agreement_start_month?: string;
|
|
@@ -14,7 +14,8 @@ export interface IDatePlaceholderMarkers {
|
|
|
14
14
|
year: number;
|
|
15
15
|
}
|
|
16
16
|
export interface IDatePlaceholderStyle {
|
|
17
|
-
padding
|
|
18
|
-
fontSize
|
|
19
|
-
textAlignment
|
|
17
|
+
padding?: number;
|
|
18
|
+
fontSize?: number;
|
|
19
|
+
textAlignment?: TextAlignmentEnum;
|
|
20
|
+
format?: string;
|
|
20
21
|
}
|
package/package.json
CHANGED
|
@@ -1,51 +0,0 @@
|
|
|
1
|
-
export interface IInvoiceContact {
|
|
2
|
-
name: string;
|
|
3
|
-
address: string;
|
|
4
|
-
city: string;
|
|
5
|
-
postal: string;
|
|
6
|
-
country: string;
|
|
7
|
-
phone?: string;
|
|
8
|
-
email: string;
|
|
9
|
-
website?: string;
|
|
10
|
-
}
|
|
11
|
-
export interface IInvoiceField {
|
|
12
|
-
label: string;
|
|
13
|
-
value: string | number | IInvoiceContact | null;
|
|
14
|
-
}
|
|
15
|
-
export interface IInvoiceTable<T> {
|
|
16
|
-
headers: string[];
|
|
17
|
-
items: T[];
|
|
18
|
-
}
|
|
19
|
-
export interface IInvoiceItem {
|
|
20
|
-
description: string;
|
|
21
|
-
quantity: number;
|
|
22
|
-
unit_price: string;
|
|
23
|
-
total_price: string;
|
|
24
|
-
}
|
|
25
|
-
export interface ITax {
|
|
26
|
-
description: string;
|
|
27
|
-
rate: string;
|
|
28
|
-
amount: string;
|
|
29
|
-
}
|
|
30
|
-
export interface IPaymentInfo {
|
|
31
|
-
message: IInvoiceField;
|
|
32
|
-
support: IInvoiceField;
|
|
33
|
-
}
|
|
34
|
-
export interface IInvoiceFormData {
|
|
35
|
-
invoice_number: IInvoiceField;
|
|
36
|
-
currency: string;
|
|
37
|
-
date: IInvoiceField;
|
|
38
|
-
status: IInvoiceField;
|
|
39
|
-
company_info: IInvoiceField;
|
|
40
|
-
customer_info: IInvoiceField;
|
|
41
|
-
tax_registration_numbers: IInvoiceField[];
|
|
42
|
-
items_table: IInvoiceTable<IInvoiceItem>;
|
|
43
|
-
taxes_table: IInvoiceTable<ITax>;
|
|
44
|
-
subtotal: IInvoiceField;
|
|
45
|
-
total: IInvoiceField;
|
|
46
|
-
payment_info: IPaymentInfo;
|
|
47
|
-
payment_method: IInvoiceField;
|
|
48
|
-
last4_digits: IInvoiceField;
|
|
49
|
-
stripe_transaction_id: string;
|
|
50
|
-
stripe_session_id: string;
|
|
51
|
-
}
|
package/dist/invoiceFormData.js
DELETED