@voyantjs/finance-react 0.4.5 → 0.6.0
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/hooks/index.d.ts +2 -0
- package/dist/hooks/index.d.ts.map +1 -1
- package/dist/hooks/index.js +2 -0
- package/dist/hooks/use-booking-guarantees.d.ts +82 -0
- package/dist/hooks/use-booking-guarantees.d.ts.map +1 -0
- package/dist/hooks/use-booking-guarantees.js +46 -0
- package/dist/hooks/use-booking-payment-schedules.d.ts +63 -0
- package/dist/hooks/use-booking-payment-schedules.d.ts.map +1 -0
- package/dist/hooks/use-booking-payment-schedules.js +46 -0
- package/dist/hooks/use-invoice-mutation.d.ts +2 -2
- package/dist/hooks/use-invoice.d.ts +1 -1
- package/dist/hooks/use-invoices.d.ts +1 -1
- package/dist/hooks/use-public-booking-documents.d.ts +3 -3
- package/dist/hooks/use-public-booking-payment-options.d.ts +3 -3
- package/dist/hooks/use-public-booking-payments.d.ts +1 -1
- package/dist/hooks/use-public-finance-document-by-reference.d.ts +3 -3
- package/dist/hooks/use-public-payment-session-mutation.d.ts +3 -3
- package/dist/hooks/use-public-payment-session.d.ts +3 -3
- package/dist/hooks/use-public-voucher-validation-mutation.d.ts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +1 -1
- package/dist/operations.d.ts +20 -20
- package/dist/query-keys.d.ts +2 -0
- package/dist/query-keys.d.ts.map +1 -1
- package/dist/query-keys.js +2 -0
- package/dist/query-options.d.ts +210 -60
- package/dist/query-options.d.ts.map +1 -1
- package/dist/query-options.js +15 -1
- package/dist/schemas.d.ts +196 -37
- package/dist/schemas.d.ts.map +1 -1
- package/dist/schemas.js +66 -0
- package/package.json +5 -5
package/dist/query-options.d.ts
CHANGED
|
@@ -1,4 +1,6 @@
|
|
|
1
1
|
import { type FetchWithValidationOptions } from "./client.js";
|
|
2
|
+
import type { UseBookingGuaranteesOptions } from "./hooks/use-booking-guarantees.js";
|
|
3
|
+
import type { UseBookingPaymentSchedulesOptions } from "./hooks/use-booking-payment-schedules.js";
|
|
2
4
|
import type { UseInvoiceOptions } from "./hooks/use-invoice.js";
|
|
3
5
|
import type { UseInvoiceCreditNotesOptions } from "./hooks/use-invoice-credit-notes.js";
|
|
4
6
|
import type { UseInvoiceLineItemsOptions } from "./hooks/use-invoice-line-items.js";
|
|
@@ -11,6 +13,154 @@ import type { UsePublicBookingPaymentsOptions } from "./hooks/use-public-booking
|
|
|
11
13
|
import type { UsePublicFinanceDocumentByReferenceOptions } from "./hooks/use-public-finance-document-by-reference.js";
|
|
12
14
|
import type { UsePublicPaymentSessionOptions } from "./hooks/use-public-payment-session.js";
|
|
13
15
|
import type { UseSupplierPaymentsOptions } from "./hooks/use-supplier-payments.js";
|
|
16
|
+
export declare function getBookingPaymentSchedulesQueryOptions(client: FetchWithValidationOptions, bookingId: string | null | undefined, options?: UseBookingPaymentSchedulesOptions): import("@tanstack/react-query").OmitKeyof<import("@tanstack/react-query").UseQueryOptions<{
|
|
17
|
+
data: {
|
|
18
|
+
id: string;
|
|
19
|
+
bookingId: string;
|
|
20
|
+
bookingItemId: string | null;
|
|
21
|
+
scheduleType: "other" | "deposit" | "installment" | "balance" | "hold";
|
|
22
|
+
status: "pending" | "expired" | "cancelled" | "paid" | "due" | "waived";
|
|
23
|
+
dueDate: string;
|
|
24
|
+
currency: string;
|
|
25
|
+
amountCents: number;
|
|
26
|
+
notes: string | null;
|
|
27
|
+
createdAt: string;
|
|
28
|
+
updatedAt: string;
|
|
29
|
+
}[];
|
|
30
|
+
}, Error, {
|
|
31
|
+
data: {
|
|
32
|
+
id: string;
|
|
33
|
+
bookingId: string;
|
|
34
|
+
bookingItemId: string | null;
|
|
35
|
+
scheduleType: "other" | "deposit" | "installment" | "balance" | "hold";
|
|
36
|
+
status: "pending" | "expired" | "cancelled" | "paid" | "due" | "waived";
|
|
37
|
+
dueDate: string;
|
|
38
|
+
currency: string;
|
|
39
|
+
amountCents: number;
|
|
40
|
+
notes: string | null;
|
|
41
|
+
createdAt: string;
|
|
42
|
+
updatedAt: string;
|
|
43
|
+
}[];
|
|
44
|
+
}, readonly ["voyant", "finance", "booking-payment-schedules", string]>, "queryFn"> & {
|
|
45
|
+
queryFn?: import("@tanstack/react-query").QueryFunction<{
|
|
46
|
+
data: {
|
|
47
|
+
id: string;
|
|
48
|
+
bookingId: string;
|
|
49
|
+
bookingItemId: string | null;
|
|
50
|
+
scheduleType: "other" | "deposit" | "installment" | "balance" | "hold";
|
|
51
|
+
status: "pending" | "expired" | "cancelled" | "paid" | "due" | "waived";
|
|
52
|
+
dueDate: string;
|
|
53
|
+
currency: string;
|
|
54
|
+
amountCents: number;
|
|
55
|
+
notes: string | null;
|
|
56
|
+
createdAt: string;
|
|
57
|
+
updatedAt: string;
|
|
58
|
+
}[];
|
|
59
|
+
}, readonly ["voyant", "finance", "booking-payment-schedules", string], never> | undefined;
|
|
60
|
+
} & {
|
|
61
|
+
queryKey: readonly ["voyant", "finance", "booking-payment-schedules", string] & {
|
|
62
|
+
[dataTagSymbol]: {
|
|
63
|
+
data: {
|
|
64
|
+
id: string;
|
|
65
|
+
bookingId: string;
|
|
66
|
+
bookingItemId: string | null;
|
|
67
|
+
scheduleType: "other" | "deposit" | "installment" | "balance" | "hold";
|
|
68
|
+
status: "pending" | "expired" | "cancelled" | "paid" | "due" | "waived";
|
|
69
|
+
dueDate: string;
|
|
70
|
+
currency: string;
|
|
71
|
+
amountCents: number;
|
|
72
|
+
notes: string | null;
|
|
73
|
+
createdAt: string;
|
|
74
|
+
updatedAt: string;
|
|
75
|
+
}[];
|
|
76
|
+
};
|
|
77
|
+
[dataTagErrorSymbol]: Error;
|
|
78
|
+
};
|
|
79
|
+
};
|
|
80
|
+
export declare function getBookingGuaranteesQueryOptions(client: FetchWithValidationOptions, bookingId: string | null | undefined, options?: UseBookingGuaranteesOptions): import("@tanstack/react-query").OmitKeyof<import("@tanstack/react-query").UseQueryOptions<{
|
|
81
|
+
data: {
|
|
82
|
+
id: string;
|
|
83
|
+
bookingId: string;
|
|
84
|
+
bookingPaymentScheduleId: string | null;
|
|
85
|
+
bookingItemId: string | null;
|
|
86
|
+
guaranteeType: "other" | "voucher" | "bank_transfer" | "credit_card" | "deposit" | "preauth" | "card_on_file" | "agency_letter";
|
|
87
|
+
status: "pending" | "expired" | "cancelled" | "released" | "failed" | "active";
|
|
88
|
+
currency: string | null;
|
|
89
|
+
amountCents: number | null;
|
|
90
|
+
provider: string | null;
|
|
91
|
+
referenceNumber: string | null;
|
|
92
|
+
guaranteedAt: string | null;
|
|
93
|
+
expiresAt: string | null;
|
|
94
|
+
releasedAt: string | null;
|
|
95
|
+
notes: string | null;
|
|
96
|
+
createdAt: string;
|
|
97
|
+
updatedAt: string;
|
|
98
|
+
}[];
|
|
99
|
+
}, Error, {
|
|
100
|
+
data: {
|
|
101
|
+
id: string;
|
|
102
|
+
bookingId: string;
|
|
103
|
+
bookingPaymentScheduleId: string | null;
|
|
104
|
+
bookingItemId: string | null;
|
|
105
|
+
guaranteeType: "other" | "voucher" | "bank_transfer" | "credit_card" | "deposit" | "preauth" | "card_on_file" | "agency_letter";
|
|
106
|
+
status: "pending" | "expired" | "cancelled" | "released" | "failed" | "active";
|
|
107
|
+
currency: string | null;
|
|
108
|
+
amountCents: number | null;
|
|
109
|
+
provider: string | null;
|
|
110
|
+
referenceNumber: string | null;
|
|
111
|
+
guaranteedAt: string | null;
|
|
112
|
+
expiresAt: string | null;
|
|
113
|
+
releasedAt: string | null;
|
|
114
|
+
notes: string | null;
|
|
115
|
+
createdAt: string;
|
|
116
|
+
updatedAt: string;
|
|
117
|
+
}[];
|
|
118
|
+
}, readonly ["voyant", "finance", "booking-guarantees", string]>, "queryFn"> & {
|
|
119
|
+
queryFn?: import("@tanstack/react-query").QueryFunction<{
|
|
120
|
+
data: {
|
|
121
|
+
id: string;
|
|
122
|
+
bookingId: string;
|
|
123
|
+
bookingPaymentScheduleId: string | null;
|
|
124
|
+
bookingItemId: string | null;
|
|
125
|
+
guaranteeType: "other" | "voucher" | "bank_transfer" | "credit_card" | "deposit" | "preauth" | "card_on_file" | "agency_letter";
|
|
126
|
+
status: "pending" | "expired" | "cancelled" | "released" | "failed" | "active";
|
|
127
|
+
currency: string | null;
|
|
128
|
+
amountCents: number | null;
|
|
129
|
+
provider: string | null;
|
|
130
|
+
referenceNumber: string | null;
|
|
131
|
+
guaranteedAt: string | null;
|
|
132
|
+
expiresAt: string | null;
|
|
133
|
+
releasedAt: string | null;
|
|
134
|
+
notes: string | null;
|
|
135
|
+
createdAt: string;
|
|
136
|
+
updatedAt: string;
|
|
137
|
+
}[];
|
|
138
|
+
}, readonly ["voyant", "finance", "booking-guarantees", string], never> | undefined;
|
|
139
|
+
} & {
|
|
140
|
+
queryKey: readonly ["voyant", "finance", "booking-guarantees", string] & {
|
|
141
|
+
[dataTagSymbol]: {
|
|
142
|
+
data: {
|
|
143
|
+
id: string;
|
|
144
|
+
bookingId: string;
|
|
145
|
+
bookingPaymentScheduleId: string | null;
|
|
146
|
+
bookingItemId: string | null;
|
|
147
|
+
guaranteeType: "other" | "voucher" | "bank_transfer" | "credit_card" | "deposit" | "preauth" | "card_on_file" | "agency_letter";
|
|
148
|
+
status: "pending" | "expired" | "cancelled" | "released" | "failed" | "active";
|
|
149
|
+
currency: string | null;
|
|
150
|
+
amountCents: number | null;
|
|
151
|
+
provider: string | null;
|
|
152
|
+
referenceNumber: string | null;
|
|
153
|
+
guaranteedAt: string | null;
|
|
154
|
+
expiresAt: string | null;
|
|
155
|
+
releasedAt: string | null;
|
|
156
|
+
notes: string | null;
|
|
157
|
+
createdAt: string;
|
|
158
|
+
updatedAt: string;
|
|
159
|
+
}[];
|
|
160
|
+
};
|
|
161
|
+
[dataTagErrorSymbol]: Error;
|
|
162
|
+
};
|
|
163
|
+
};
|
|
14
164
|
export declare function getInvoicesQueryOptions(client: FetchWithValidationOptions, options?: UseInvoicesOptions): import("@tanstack/react-query").OmitKeyof<import("@tanstack/react-query").UseQueryOptions<{
|
|
15
165
|
data: {
|
|
16
166
|
id: string;
|
|
@@ -18,7 +168,7 @@ export declare function getInvoicesQueryOptions(client: FetchWithValidationOptio
|
|
|
18
168
|
bookingId: string;
|
|
19
169
|
personId: string | null;
|
|
20
170
|
organizationId: string | null;
|
|
21
|
-
status: "
|
|
171
|
+
status: "void" | "draft" | "sent" | "partially_paid" | "paid" | "overdue";
|
|
22
172
|
currency: string;
|
|
23
173
|
subtotalCents: number;
|
|
24
174
|
taxCents: number;
|
|
@@ -41,7 +191,7 @@ export declare function getInvoicesQueryOptions(client: FetchWithValidationOptio
|
|
|
41
191
|
bookingId: string;
|
|
42
192
|
personId: string | null;
|
|
43
193
|
organizationId: string | null;
|
|
44
|
-
status: "
|
|
194
|
+
status: "void" | "draft" | "sent" | "partially_paid" | "paid" | "overdue";
|
|
45
195
|
currency: string;
|
|
46
196
|
subtotalCents: number;
|
|
47
197
|
taxCents: number;
|
|
@@ -65,7 +215,7 @@ export declare function getInvoicesQueryOptions(client: FetchWithValidationOptio
|
|
|
65
215
|
bookingId: string;
|
|
66
216
|
personId: string | null;
|
|
67
217
|
organizationId: string | null;
|
|
68
|
-
status: "
|
|
218
|
+
status: "void" | "draft" | "sent" | "partially_paid" | "paid" | "overdue";
|
|
69
219
|
currency: string;
|
|
70
220
|
subtotalCents: number;
|
|
71
221
|
taxCents: number;
|
|
@@ -91,7 +241,7 @@ export declare function getInvoicesQueryOptions(client: FetchWithValidationOptio
|
|
|
91
241
|
bookingId: string;
|
|
92
242
|
personId: string | null;
|
|
93
243
|
organizationId: string | null;
|
|
94
|
-
status: "
|
|
244
|
+
status: "void" | "draft" | "sent" | "partially_paid" | "paid" | "overdue";
|
|
95
245
|
currency: string;
|
|
96
246
|
subtotalCents: number;
|
|
97
247
|
taxCents: number;
|
|
@@ -194,7 +344,7 @@ export declare function getInvoiceQueryOptions(client: FetchWithValidationOption
|
|
|
194
344
|
bookingId: string;
|
|
195
345
|
personId: string | null;
|
|
196
346
|
organizationId: string | null;
|
|
197
|
-
status: "
|
|
347
|
+
status: "void" | "draft" | "sent" | "partially_paid" | "paid" | "overdue";
|
|
198
348
|
currency: string;
|
|
199
349
|
subtotalCents: number;
|
|
200
350
|
taxCents: number;
|
|
@@ -214,7 +364,7 @@ export declare function getInvoiceQueryOptions(client: FetchWithValidationOption
|
|
|
214
364
|
bookingId: string;
|
|
215
365
|
personId: string | null;
|
|
216
366
|
organizationId: string | null;
|
|
217
|
-
status: "
|
|
367
|
+
status: "void" | "draft" | "sent" | "partially_paid" | "paid" | "overdue";
|
|
218
368
|
currency: string;
|
|
219
369
|
subtotalCents: number;
|
|
220
370
|
taxCents: number;
|
|
@@ -235,7 +385,7 @@ export declare function getInvoiceQueryOptions(client: FetchWithValidationOption
|
|
|
235
385
|
bookingId: string;
|
|
236
386
|
personId: string | null;
|
|
237
387
|
organizationId: string | null;
|
|
238
|
-
status: "
|
|
388
|
+
status: "void" | "draft" | "sent" | "partially_paid" | "paid" | "overdue";
|
|
239
389
|
currency: string;
|
|
240
390
|
subtotalCents: number;
|
|
241
391
|
taxCents: number;
|
|
@@ -258,7 +408,7 @@ export declare function getInvoiceQueryOptions(client: FetchWithValidationOption
|
|
|
258
408
|
bookingId: string;
|
|
259
409
|
personId: string | null;
|
|
260
410
|
organizationId: string | null;
|
|
261
|
-
status: "
|
|
411
|
+
status: "void" | "draft" | "sent" | "partially_paid" | "paid" | "overdue";
|
|
262
412
|
currency: string;
|
|
263
413
|
subtotalCents: number;
|
|
264
414
|
taxCents: number;
|
|
@@ -494,8 +644,8 @@ export declare function getPublicBookingPaymentOptionsQueryOptions(client: Fetch
|
|
|
494
644
|
id: string;
|
|
495
645
|
label: string;
|
|
496
646
|
provider: string | null;
|
|
497
|
-
instrumentType: "
|
|
498
|
-
status: "
|
|
647
|
+
instrumentType: "other" | "voucher" | "wallet" | "credit_card" | "debit_card" | "cash" | "direct_bill" | "bank_account";
|
|
648
|
+
status: "expired" | "revoked" | "active" | "inactive" | "failed_verification";
|
|
499
649
|
brand: string | null;
|
|
500
650
|
last4: string | null;
|
|
501
651
|
expiryMonth: number | null;
|
|
@@ -505,7 +655,7 @@ export declare function getPublicBookingPaymentOptionsQueryOptions(client: Fetch
|
|
|
505
655
|
schedules: {
|
|
506
656
|
id: string;
|
|
507
657
|
scheduleType: "other" | "deposit" | "installment" | "balance" | "hold";
|
|
508
|
-
status: "pending" | "
|
|
658
|
+
status: "pending" | "expired" | "cancelled" | "paid" | "due" | "waived";
|
|
509
659
|
dueDate: string;
|
|
510
660
|
currency: string;
|
|
511
661
|
amountCents: number;
|
|
@@ -535,8 +685,8 @@ export declare function getPublicBookingPaymentOptionsQueryOptions(client: Fetch
|
|
|
535
685
|
id: string;
|
|
536
686
|
label: string;
|
|
537
687
|
provider: string | null;
|
|
538
|
-
instrumentType: "
|
|
539
|
-
status: "
|
|
688
|
+
instrumentType: "other" | "voucher" | "wallet" | "credit_card" | "debit_card" | "cash" | "direct_bill" | "bank_account";
|
|
689
|
+
status: "expired" | "revoked" | "active" | "inactive" | "failed_verification";
|
|
540
690
|
brand: string | null;
|
|
541
691
|
last4: string | null;
|
|
542
692
|
expiryMonth: number | null;
|
|
@@ -546,7 +696,7 @@ export declare function getPublicBookingPaymentOptionsQueryOptions(client: Fetch
|
|
|
546
696
|
schedules: {
|
|
547
697
|
id: string;
|
|
548
698
|
scheduleType: "other" | "deposit" | "installment" | "balance" | "hold";
|
|
549
|
-
status: "pending" | "
|
|
699
|
+
status: "pending" | "expired" | "cancelled" | "paid" | "due" | "waived";
|
|
550
700
|
dueDate: string;
|
|
551
701
|
currency: string;
|
|
552
702
|
amountCents: number;
|
|
@@ -577,8 +727,8 @@ export declare function getPublicBookingPaymentOptionsQueryOptions(client: Fetch
|
|
|
577
727
|
id: string;
|
|
578
728
|
label: string;
|
|
579
729
|
provider: string | null;
|
|
580
|
-
instrumentType: "
|
|
581
|
-
status: "
|
|
730
|
+
instrumentType: "other" | "voucher" | "wallet" | "credit_card" | "debit_card" | "cash" | "direct_bill" | "bank_account";
|
|
731
|
+
status: "expired" | "revoked" | "active" | "inactive" | "failed_verification";
|
|
582
732
|
brand: string | null;
|
|
583
733
|
last4: string | null;
|
|
584
734
|
expiryMonth: number | null;
|
|
@@ -588,7 +738,7 @@ export declare function getPublicBookingPaymentOptionsQueryOptions(client: Fetch
|
|
|
588
738
|
schedules: {
|
|
589
739
|
id: string;
|
|
590
740
|
scheduleType: "other" | "deposit" | "installment" | "balance" | "hold";
|
|
591
|
-
status: "pending" | "
|
|
741
|
+
status: "pending" | "expired" | "cancelled" | "paid" | "due" | "waived";
|
|
592
742
|
dueDate: string;
|
|
593
743
|
currency: string;
|
|
594
744
|
amountCents: number;
|
|
@@ -621,8 +771,8 @@ export declare function getPublicBookingPaymentOptionsQueryOptions(client: Fetch
|
|
|
621
771
|
id: string;
|
|
622
772
|
label: string;
|
|
623
773
|
provider: string | null;
|
|
624
|
-
instrumentType: "
|
|
625
|
-
status: "
|
|
774
|
+
instrumentType: "other" | "voucher" | "wallet" | "credit_card" | "debit_card" | "cash" | "direct_bill" | "bank_account";
|
|
775
|
+
status: "expired" | "revoked" | "active" | "inactive" | "failed_verification";
|
|
626
776
|
brand: string | null;
|
|
627
777
|
last4: string | null;
|
|
628
778
|
expiryMonth: number | null;
|
|
@@ -632,7 +782,7 @@ export declare function getPublicBookingPaymentOptionsQueryOptions(client: Fetch
|
|
|
632
782
|
schedules: {
|
|
633
783
|
id: string;
|
|
634
784
|
scheduleType: "other" | "deposit" | "installment" | "balance" | "hold";
|
|
635
|
-
status: "pending" | "
|
|
785
|
+
status: "pending" | "expired" | "cancelled" | "paid" | "due" | "waived";
|
|
636
786
|
dueDate: string;
|
|
637
787
|
currency: string;
|
|
638
788
|
amountCents: number;
|
|
@@ -666,7 +816,7 @@ export declare function getPublicBookingDocumentsQueryOptions(client: FetchWithV
|
|
|
666
816
|
invoiceId: string;
|
|
667
817
|
invoiceNumber: string;
|
|
668
818
|
invoiceType: "invoice" | "proforma" | "credit_note";
|
|
669
|
-
invoiceStatus: "
|
|
819
|
+
invoiceStatus: "void" | "draft" | "sent" | "partially_paid" | "paid" | "overdue";
|
|
670
820
|
currency: string;
|
|
671
821
|
totalCents: number;
|
|
672
822
|
paidCents: number;
|
|
@@ -674,8 +824,8 @@ export declare function getPublicBookingDocumentsQueryOptions(client: FetchWithV
|
|
|
674
824
|
issueDate: string;
|
|
675
825
|
dueDate: string;
|
|
676
826
|
renditionId: string | null;
|
|
677
|
-
documentStatus: "pending" | "failed" | "
|
|
678
|
-
format: "
|
|
827
|
+
documentStatus: "pending" | "failed" | "ready" | "stale" | "missing";
|
|
828
|
+
format: "json" | "pdf" | "html" | "xml" | null;
|
|
679
829
|
language: string | null;
|
|
680
830
|
generatedAt: string | null;
|
|
681
831
|
fileSize: number | null;
|
|
@@ -690,7 +840,7 @@ export declare function getPublicBookingDocumentsQueryOptions(client: FetchWithV
|
|
|
690
840
|
invoiceId: string;
|
|
691
841
|
invoiceNumber: string;
|
|
692
842
|
invoiceType: "invoice" | "proforma" | "credit_note";
|
|
693
|
-
invoiceStatus: "
|
|
843
|
+
invoiceStatus: "void" | "draft" | "sent" | "partially_paid" | "paid" | "overdue";
|
|
694
844
|
currency: string;
|
|
695
845
|
totalCents: number;
|
|
696
846
|
paidCents: number;
|
|
@@ -698,8 +848,8 @@ export declare function getPublicBookingDocumentsQueryOptions(client: FetchWithV
|
|
|
698
848
|
issueDate: string;
|
|
699
849
|
dueDate: string;
|
|
700
850
|
renditionId: string | null;
|
|
701
|
-
documentStatus: "pending" | "failed" | "
|
|
702
|
-
format: "
|
|
851
|
+
documentStatus: "pending" | "failed" | "ready" | "stale" | "missing";
|
|
852
|
+
format: "json" | "pdf" | "html" | "xml" | null;
|
|
703
853
|
language: string | null;
|
|
704
854
|
generatedAt: string | null;
|
|
705
855
|
fileSize: number | null;
|
|
@@ -715,7 +865,7 @@ export declare function getPublicBookingDocumentsQueryOptions(client: FetchWithV
|
|
|
715
865
|
invoiceId: string;
|
|
716
866
|
invoiceNumber: string;
|
|
717
867
|
invoiceType: "invoice" | "proforma" | "credit_note";
|
|
718
|
-
invoiceStatus: "
|
|
868
|
+
invoiceStatus: "void" | "draft" | "sent" | "partially_paid" | "paid" | "overdue";
|
|
719
869
|
currency: string;
|
|
720
870
|
totalCents: number;
|
|
721
871
|
paidCents: number;
|
|
@@ -723,8 +873,8 @@ export declare function getPublicBookingDocumentsQueryOptions(client: FetchWithV
|
|
|
723
873
|
issueDate: string;
|
|
724
874
|
dueDate: string;
|
|
725
875
|
renditionId: string | null;
|
|
726
|
-
documentStatus: "pending" | "failed" | "
|
|
727
|
-
format: "
|
|
876
|
+
documentStatus: "pending" | "failed" | "ready" | "stale" | "missing";
|
|
877
|
+
format: "json" | "pdf" | "html" | "xml" | null;
|
|
728
878
|
language: string | null;
|
|
729
879
|
generatedAt: string | null;
|
|
730
880
|
fileSize: number | null;
|
|
@@ -742,7 +892,7 @@ export declare function getPublicBookingDocumentsQueryOptions(client: FetchWithV
|
|
|
742
892
|
invoiceId: string;
|
|
743
893
|
invoiceNumber: string;
|
|
744
894
|
invoiceType: "invoice" | "proforma" | "credit_note";
|
|
745
|
-
invoiceStatus: "
|
|
895
|
+
invoiceStatus: "void" | "draft" | "sent" | "partially_paid" | "paid" | "overdue";
|
|
746
896
|
currency: string;
|
|
747
897
|
totalCents: number;
|
|
748
898
|
paidCents: number;
|
|
@@ -750,8 +900,8 @@ export declare function getPublicBookingDocumentsQueryOptions(client: FetchWithV
|
|
|
750
900
|
issueDate: string;
|
|
751
901
|
dueDate: string;
|
|
752
902
|
renditionId: string | null;
|
|
753
|
-
documentStatus: "pending" | "failed" | "
|
|
754
|
-
format: "
|
|
903
|
+
documentStatus: "pending" | "failed" | "ready" | "stale" | "missing";
|
|
904
|
+
format: "json" | "pdf" | "html" | "xml" | null;
|
|
755
905
|
language: string | null;
|
|
756
906
|
generatedAt: string | null;
|
|
757
907
|
fileSize: number | null;
|
|
@@ -768,7 +918,7 @@ export declare function getPublicFinanceDocumentByReferenceQueryOptions(client:
|
|
|
768
918
|
invoiceId: string;
|
|
769
919
|
invoiceNumber: string;
|
|
770
920
|
invoiceType: "invoice" | "proforma" | "credit_note";
|
|
771
|
-
invoiceStatus: "
|
|
921
|
+
invoiceStatus: "void" | "draft" | "sent" | "partially_paid" | "paid" | "overdue";
|
|
772
922
|
currency: string;
|
|
773
923
|
totalCents: number;
|
|
774
924
|
paidCents: number;
|
|
@@ -776,8 +926,8 @@ export declare function getPublicFinanceDocumentByReferenceQueryOptions(client:
|
|
|
776
926
|
issueDate: string;
|
|
777
927
|
dueDate: string;
|
|
778
928
|
renditionId: string | null;
|
|
779
|
-
documentStatus: "pending" | "failed" | "
|
|
780
|
-
format: "
|
|
929
|
+
documentStatus: "pending" | "failed" | "ready" | "stale" | "missing";
|
|
930
|
+
format: "json" | "pdf" | "html" | "xml" | null;
|
|
781
931
|
language: string | null;
|
|
782
932
|
generatedAt: string | null;
|
|
783
933
|
fileSize: number | null;
|
|
@@ -790,7 +940,7 @@ export declare function getPublicFinanceDocumentByReferenceQueryOptions(client:
|
|
|
790
940
|
invoiceId: string;
|
|
791
941
|
invoiceNumber: string;
|
|
792
942
|
invoiceType: "invoice" | "proforma" | "credit_note";
|
|
793
|
-
invoiceStatus: "
|
|
943
|
+
invoiceStatus: "void" | "draft" | "sent" | "partially_paid" | "paid" | "overdue";
|
|
794
944
|
currency: string;
|
|
795
945
|
totalCents: number;
|
|
796
946
|
paidCents: number;
|
|
@@ -798,8 +948,8 @@ export declare function getPublicFinanceDocumentByReferenceQueryOptions(client:
|
|
|
798
948
|
issueDate: string;
|
|
799
949
|
dueDate: string;
|
|
800
950
|
renditionId: string | null;
|
|
801
|
-
documentStatus: "pending" | "failed" | "
|
|
802
|
-
format: "
|
|
951
|
+
documentStatus: "pending" | "failed" | "ready" | "stale" | "missing";
|
|
952
|
+
format: "json" | "pdf" | "html" | "xml" | null;
|
|
803
953
|
language: string | null;
|
|
804
954
|
generatedAt: string | null;
|
|
805
955
|
fileSize: number | null;
|
|
@@ -813,7 +963,7 @@ export declare function getPublicFinanceDocumentByReferenceQueryOptions(client:
|
|
|
813
963
|
invoiceId: string;
|
|
814
964
|
invoiceNumber: string;
|
|
815
965
|
invoiceType: "invoice" | "proforma" | "credit_note";
|
|
816
|
-
invoiceStatus: "
|
|
966
|
+
invoiceStatus: "void" | "draft" | "sent" | "partially_paid" | "paid" | "overdue";
|
|
817
967
|
currency: string;
|
|
818
968
|
totalCents: number;
|
|
819
969
|
paidCents: number;
|
|
@@ -821,8 +971,8 @@ export declare function getPublicFinanceDocumentByReferenceQueryOptions(client:
|
|
|
821
971
|
issueDate: string;
|
|
822
972
|
dueDate: string;
|
|
823
973
|
renditionId: string | null;
|
|
824
|
-
documentStatus: "pending" | "failed" | "
|
|
825
|
-
format: "
|
|
974
|
+
documentStatus: "pending" | "failed" | "ready" | "stale" | "missing";
|
|
975
|
+
format: "json" | "pdf" | "html" | "xml" | null;
|
|
826
976
|
language: string | null;
|
|
827
977
|
generatedAt: string | null;
|
|
828
978
|
fileSize: number | null;
|
|
@@ -838,7 +988,7 @@ export declare function getPublicFinanceDocumentByReferenceQueryOptions(client:
|
|
|
838
988
|
invoiceId: string;
|
|
839
989
|
invoiceNumber: string;
|
|
840
990
|
invoiceType: "invoice" | "proforma" | "credit_note";
|
|
841
|
-
invoiceStatus: "
|
|
991
|
+
invoiceStatus: "void" | "draft" | "sent" | "partially_paid" | "paid" | "overdue";
|
|
842
992
|
currency: string;
|
|
843
993
|
totalCents: number;
|
|
844
994
|
paidCents: number;
|
|
@@ -846,8 +996,8 @@ export declare function getPublicFinanceDocumentByReferenceQueryOptions(client:
|
|
|
846
996
|
issueDate: string;
|
|
847
997
|
dueDate: string;
|
|
848
998
|
renditionId: string | null;
|
|
849
|
-
documentStatus: "pending" | "failed" | "
|
|
850
|
-
format: "
|
|
999
|
+
documentStatus: "pending" | "failed" | "ready" | "stale" | "missing";
|
|
1000
|
+
format: "json" | "pdf" | "html" | "xml" | null;
|
|
851
1001
|
language: string | null;
|
|
852
1002
|
generatedAt: string | null;
|
|
853
1003
|
fileSize: number | null;
|
|
@@ -868,7 +1018,7 @@ export declare function getPublicBookingPaymentsQueryOptions(client: FetchWithVa
|
|
|
868
1018
|
invoiceNumber: string;
|
|
869
1019
|
invoiceType: "invoice" | "proforma" | "credit_note";
|
|
870
1020
|
status: "pending" | "completed" | "failed" | "refunded";
|
|
871
|
-
paymentMethod: "
|
|
1021
|
+
paymentMethod: "other" | "voucher" | "wallet" | "bank_transfer" | "credit_card" | "debit_card" | "cash" | "cheque" | "direct_bill";
|
|
872
1022
|
amountCents: number;
|
|
873
1023
|
currency: string;
|
|
874
1024
|
paymentDate: string;
|
|
@@ -885,7 +1035,7 @@ export declare function getPublicBookingPaymentsQueryOptions(client: FetchWithVa
|
|
|
885
1035
|
invoiceNumber: string;
|
|
886
1036
|
invoiceType: "invoice" | "proforma" | "credit_note";
|
|
887
1037
|
status: "pending" | "completed" | "failed" | "refunded";
|
|
888
|
-
paymentMethod: "
|
|
1038
|
+
paymentMethod: "other" | "voucher" | "wallet" | "bank_transfer" | "credit_card" | "debit_card" | "cash" | "cheque" | "direct_bill";
|
|
889
1039
|
amountCents: number;
|
|
890
1040
|
currency: string;
|
|
891
1041
|
paymentDate: string;
|
|
@@ -903,7 +1053,7 @@ export declare function getPublicBookingPaymentsQueryOptions(client: FetchWithVa
|
|
|
903
1053
|
invoiceNumber: string;
|
|
904
1054
|
invoiceType: "invoice" | "proforma" | "credit_note";
|
|
905
1055
|
status: "pending" | "completed" | "failed" | "refunded";
|
|
906
|
-
paymentMethod: "
|
|
1056
|
+
paymentMethod: "other" | "voucher" | "wallet" | "bank_transfer" | "credit_card" | "debit_card" | "cash" | "cheque" | "direct_bill";
|
|
907
1057
|
amountCents: number;
|
|
908
1058
|
currency: string;
|
|
909
1059
|
paymentDate: string;
|
|
@@ -923,7 +1073,7 @@ export declare function getPublicBookingPaymentsQueryOptions(client: FetchWithVa
|
|
|
923
1073
|
invoiceNumber: string;
|
|
924
1074
|
invoiceType: "invoice" | "proforma" | "credit_note";
|
|
925
1075
|
status: "pending" | "completed" | "failed" | "refunded";
|
|
926
|
-
paymentMethod: "
|
|
1076
|
+
paymentMethod: "other" | "voucher" | "wallet" | "bank_transfer" | "credit_card" | "debit_card" | "cash" | "cheque" | "direct_bill";
|
|
927
1077
|
amountCents: number;
|
|
928
1078
|
currency: string;
|
|
929
1079
|
paymentDate: string;
|
|
@@ -938,13 +1088,13 @@ export declare function getPublicBookingPaymentsQueryOptions(client: FetchWithVa
|
|
|
938
1088
|
export declare function getPublicPaymentSessionQueryOptions(client: FetchWithValidationOptions, sessionId: string | null | undefined, options?: UsePublicPaymentSessionOptions): import("@tanstack/react-query").OmitKeyof<import("@tanstack/react-query").UseQueryOptions<{
|
|
939
1089
|
data: {
|
|
940
1090
|
id: string;
|
|
941
|
-
targetType: "
|
|
1091
|
+
targetType: "other" | "booking" | "order" | "invoice" | "booking_payment_schedule" | "booking_guarantee";
|
|
942
1092
|
targetId: string | null;
|
|
943
1093
|
bookingId: string | null;
|
|
944
1094
|
invoiceId: string | null;
|
|
945
1095
|
bookingPaymentScheduleId: string | null;
|
|
946
1096
|
bookingGuaranteeId: string | null;
|
|
947
|
-
status: "pending" | "
|
|
1097
|
+
status: "pending" | "expired" | "cancelled" | "failed" | "paid" | "requires_redirect" | "processing" | "authorized";
|
|
948
1098
|
provider: string | null;
|
|
949
1099
|
providerSessionId: string | null;
|
|
950
1100
|
providerPaymentId: string | null;
|
|
@@ -952,7 +1102,7 @@ export declare function getPublicPaymentSessionQueryOptions(client: FetchWithVal
|
|
|
952
1102
|
clientReference: string | null;
|
|
953
1103
|
currency: string;
|
|
954
1104
|
amountCents: number;
|
|
955
|
-
paymentMethod: "
|
|
1105
|
+
paymentMethod: "other" | "voucher" | "wallet" | "bank_transfer" | "credit_card" | "debit_card" | "cash" | "cheque" | "direct_bill" | null;
|
|
956
1106
|
payerEmail: string | null;
|
|
957
1107
|
payerName: string | null;
|
|
958
1108
|
redirectUrl: string | null;
|
|
@@ -966,13 +1116,13 @@ export declare function getPublicPaymentSessionQueryOptions(client: FetchWithVal
|
|
|
966
1116
|
}, Error, {
|
|
967
1117
|
data: {
|
|
968
1118
|
id: string;
|
|
969
|
-
targetType: "
|
|
1119
|
+
targetType: "other" | "booking" | "order" | "invoice" | "booking_payment_schedule" | "booking_guarantee";
|
|
970
1120
|
targetId: string | null;
|
|
971
1121
|
bookingId: string | null;
|
|
972
1122
|
invoiceId: string | null;
|
|
973
1123
|
bookingPaymentScheduleId: string | null;
|
|
974
1124
|
bookingGuaranteeId: string | null;
|
|
975
|
-
status: "pending" | "
|
|
1125
|
+
status: "pending" | "expired" | "cancelled" | "failed" | "paid" | "requires_redirect" | "processing" | "authorized";
|
|
976
1126
|
provider: string | null;
|
|
977
1127
|
providerSessionId: string | null;
|
|
978
1128
|
providerPaymentId: string | null;
|
|
@@ -980,7 +1130,7 @@ export declare function getPublicPaymentSessionQueryOptions(client: FetchWithVal
|
|
|
980
1130
|
clientReference: string | null;
|
|
981
1131
|
currency: string;
|
|
982
1132
|
amountCents: number;
|
|
983
|
-
paymentMethod: "
|
|
1133
|
+
paymentMethod: "other" | "voucher" | "wallet" | "bank_transfer" | "credit_card" | "debit_card" | "cash" | "cheque" | "direct_bill" | null;
|
|
984
1134
|
payerEmail: string | null;
|
|
985
1135
|
payerName: string | null;
|
|
986
1136
|
redirectUrl: string | null;
|
|
@@ -995,13 +1145,13 @@ export declare function getPublicPaymentSessionQueryOptions(client: FetchWithVal
|
|
|
995
1145
|
queryFn?: import("@tanstack/react-query").QueryFunction<{
|
|
996
1146
|
data: {
|
|
997
1147
|
id: string;
|
|
998
|
-
targetType: "
|
|
1148
|
+
targetType: "other" | "booking" | "order" | "invoice" | "booking_payment_schedule" | "booking_guarantee";
|
|
999
1149
|
targetId: string | null;
|
|
1000
1150
|
bookingId: string | null;
|
|
1001
1151
|
invoiceId: string | null;
|
|
1002
1152
|
bookingPaymentScheduleId: string | null;
|
|
1003
1153
|
bookingGuaranteeId: string | null;
|
|
1004
|
-
status: "pending" | "
|
|
1154
|
+
status: "pending" | "expired" | "cancelled" | "failed" | "paid" | "requires_redirect" | "processing" | "authorized";
|
|
1005
1155
|
provider: string | null;
|
|
1006
1156
|
providerSessionId: string | null;
|
|
1007
1157
|
providerPaymentId: string | null;
|
|
@@ -1009,7 +1159,7 @@ export declare function getPublicPaymentSessionQueryOptions(client: FetchWithVal
|
|
|
1009
1159
|
clientReference: string | null;
|
|
1010
1160
|
currency: string;
|
|
1011
1161
|
amountCents: number;
|
|
1012
|
-
paymentMethod: "
|
|
1162
|
+
paymentMethod: "other" | "voucher" | "wallet" | "bank_transfer" | "credit_card" | "debit_card" | "cash" | "cheque" | "direct_bill" | null;
|
|
1013
1163
|
payerEmail: string | null;
|
|
1014
1164
|
payerName: string | null;
|
|
1015
1165
|
redirectUrl: string | null;
|
|
@@ -1026,13 +1176,13 @@ export declare function getPublicPaymentSessionQueryOptions(client: FetchWithVal
|
|
|
1026
1176
|
[dataTagSymbol]: {
|
|
1027
1177
|
data: {
|
|
1028
1178
|
id: string;
|
|
1029
|
-
targetType: "
|
|
1179
|
+
targetType: "other" | "booking" | "order" | "invoice" | "booking_payment_schedule" | "booking_guarantee";
|
|
1030
1180
|
targetId: string | null;
|
|
1031
1181
|
bookingId: string | null;
|
|
1032
1182
|
invoiceId: string | null;
|
|
1033
1183
|
bookingPaymentScheduleId: string | null;
|
|
1034
1184
|
bookingGuaranteeId: string | null;
|
|
1035
|
-
status: "pending" | "
|
|
1185
|
+
status: "pending" | "expired" | "cancelled" | "failed" | "paid" | "requires_redirect" | "processing" | "authorized";
|
|
1036
1186
|
provider: string | null;
|
|
1037
1187
|
providerSessionId: string | null;
|
|
1038
1188
|
providerPaymentId: string | null;
|
|
@@ -1040,7 +1190,7 @@ export declare function getPublicPaymentSessionQueryOptions(client: FetchWithVal
|
|
|
1040
1190
|
clientReference: string | null;
|
|
1041
1191
|
currency: string;
|
|
1042
1192
|
amountCents: number;
|
|
1043
|
-
paymentMethod: "
|
|
1193
|
+
paymentMethod: "other" | "voucher" | "wallet" | "bank_transfer" | "credit_card" | "debit_card" | "cash" | "cheque" | "direct_bill" | null;
|
|
1044
1194
|
payerEmail: string | null;
|
|
1045
1195
|
payerName: string | null;
|
|
1046
1196
|
redirectUrl: string | null;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"query-options.d.ts","sourceRoot":"","sources":["../src/query-options.ts"],"names":[],"mappings":"AAIA,OAAO,EAAE,KAAK,0BAA0B,EAAuB,MAAM,aAAa,CAAA;AAClF,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,wBAAwB,CAAA;AAC/D,OAAO,KAAK,EAAE,4BAA4B,EAAE,MAAM,qCAAqC,CAAA;AACvF,OAAO,KAAK,EAAE,0BAA0B,EAAE,MAAM,mCAAmC,CAAA;AACnF,OAAO,KAAK,EAAE,sBAAsB,EAAE,MAAM,8BAA8B,CAAA;AAC1E,OAAO,KAAK,EAAE,yBAAyB,EAAE,MAAM,iCAAiC,CAAA;AAChF,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,yBAAyB,CAAA;AACjE,OAAO,KAAK,EAAE,gCAAgC,EAAE,MAAM,yCAAyC,CAAA;AAC/F,OAAO,KAAK,EAAE,qCAAqC,EAAE,MAAM,+CAA+C,CAAA;AAC1G,OAAO,KAAK,EAAE,+BAA+B,EAAE,MAAM,wCAAwC,CAAA;AAC7F,OAAO,KAAK,EAAE,0CAA0C,EAAE,MAAM,qDAAqD,CAAA;AACrH,OAAO,KAAK,EAAE,8BAA8B,EAAE,MAAM,uCAAuC,CAAA;AAC3F,OAAO,KAAK,EAAE,0BAA0B,EAAE,MAAM,kCAAkC,CAAA;
|
|
1
|
+
{"version":3,"file":"query-options.d.ts","sourceRoot":"","sources":["../src/query-options.ts"],"names":[],"mappings":"AAIA,OAAO,EAAE,KAAK,0BAA0B,EAAuB,MAAM,aAAa,CAAA;AAClF,OAAO,KAAK,EAAE,2BAA2B,EAAE,MAAM,mCAAmC,CAAA;AACpF,OAAO,KAAK,EAAE,iCAAiC,EAAE,MAAM,0CAA0C,CAAA;AACjG,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,wBAAwB,CAAA;AAC/D,OAAO,KAAK,EAAE,4BAA4B,EAAE,MAAM,qCAAqC,CAAA;AACvF,OAAO,KAAK,EAAE,0BAA0B,EAAE,MAAM,mCAAmC,CAAA;AACnF,OAAO,KAAK,EAAE,sBAAsB,EAAE,MAAM,8BAA8B,CAAA;AAC1E,OAAO,KAAK,EAAE,yBAAyB,EAAE,MAAM,iCAAiC,CAAA;AAChF,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,yBAAyB,CAAA;AACjE,OAAO,KAAK,EAAE,gCAAgC,EAAE,MAAM,yCAAyC,CAAA;AAC/F,OAAO,KAAK,EAAE,qCAAqC,EAAE,MAAM,+CAA+C,CAAA;AAC1G,OAAO,KAAK,EAAE,+BAA+B,EAAE,MAAM,wCAAwC,CAAA;AAC7F,OAAO,KAAK,EAAE,0CAA0C,EAAE,MAAM,qDAAqD,CAAA;AACrH,OAAO,KAAK,EAAE,8BAA8B,EAAE,MAAM,uCAAuC,CAAA;AAC3F,OAAO,KAAK,EAAE,0BAA0B,EAAE,MAAM,kCAAkC,CAAA;AAqBlF,wBAAgB,sCAAsC,CACpD,MAAM,EAAE,0BAA0B,EAClC,SAAS,EAAE,MAAM,GAAG,IAAI,GAAG,SAAS,EACpC,OAAO,GAAE,iCAAsC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAahD;AAED,wBAAgB,gCAAgC,CAC9C,MAAM,EAAE,0BAA0B,EAClC,SAAS,EAAE,MAAM,GAAG,IAAI,GAAG,SAAS,EACpC,OAAO,GAAE,2BAAgC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAa1C;AAED,wBAAgB,uBAAuB,CACrC,MAAM,EAAE,0BAA0B,EAClC,OAAO,GAAE,kBAAuB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAoBjC;AAED,wBAAgB,+BAA+B,CAC7C,MAAM,EAAE,0BAA0B,EAClC,OAAO,GAAE,0BAA+B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAmBzC;AAED,wBAAgB,sBAAsB,CACpC,MAAM,EAAE,0BAA0B,EAClC,EAAE,EAAE,MAAM,GAAG,IAAI,GAAG,SAAS,EAC7B,OAAO,GAAE,iBAAsB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAWhC;AAED,wBAAgB,+BAA+B,CAC7C,MAAM,EAAE,0BAA0B,EAClC,SAAS,EAAE,MAAM,GAAG,IAAI,GAAG,SAAS,EACpC,OAAO,GAAE,0BAA+B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAezC;AAED,wBAAgB,8BAA8B,CAC5C,MAAM,EAAE,0BAA0B,EAClC,SAAS,EAAE,MAAM,GAAG,IAAI,GAAG,SAAS,EACpC,OAAO,GAAE,yBAA8B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAexC;AAED,wBAAgB,iCAAiC,CAC/C,MAAM,EAAE,0BAA0B,EAClC,SAAS,EAAE,MAAM,GAAG,IAAI,GAAG,SAAS,EACpC,OAAO,GAAE,4BAAiC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAe3C;AAED,wBAAgB,2BAA2B,CACzC,MAAM,EAAE,0BAA0B,EAClC,SAAS,EAAE,MAAM,GAAG,IAAI,GAAG,SAAS,EACpC,OAAO,GAAE,sBAA2B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAerC;AAED,wBAAgB,0CAA0C,CACxD,MAAM,EAAE,0BAA0B,EAClC,SAAS,EAAE,MAAM,GAAG,IAAI,GAAG,SAAS,EACpC,OAAO,GAAE,qCAA0C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAcpD;AAED,wBAAgB,qCAAqC,CACnD,MAAM,EAAE,0BAA0B,EAClC,SAAS,EAAE,MAAM,GAAG,IAAI,GAAG,SAAS,EACpC,OAAO,GAAE,gCAAqC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAc/C;AAED,wBAAgB,+CAA+C,CAC7D,MAAM,EAAE,0BAA0B,EAClC,SAAS,EAAE,MAAM,GAAG,IAAI,GAAG,SAAS,EACpC,OAAO,GAAE,0CAA+C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAczD;AAED,wBAAgB,oCAAoC,CAClD,MAAM,EAAE,0BAA0B,EAClC,SAAS,EAAE,MAAM,GAAG,IAAI,GAAG,SAAS,EACpC,OAAO,GAAE,+BAAoC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAc9C;AAED,wBAAgB,mCAAmC,CACjD,MAAM,EAAE,0BAA0B,EAClC,SAAS,EAAE,MAAM,GAAG,IAAI,GAAG,SAAS,EACpC,OAAO,GAAE,8BAAmC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAc7C"}
|