@voyantjs/finance-react 0.28.1 → 0.29.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-admin-booking-payments.d.ts +1 -1
- package/dist/hooks/use-all-payments.d.ts +35 -0
- package/dist/hooks/use-all-payments.d.ts.map +1 -0
- package/dist/hooks/use-all-payments.js +12 -0
- package/dist/hooks/use-booking-guarantees.d.ts +3 -3
- package/dist/hooks/use-booking-payment-schedules.d.ts +3 -3
- package/dist/hooks/use-invoice-payment-mutation.d.ts +1 -1
- package/dist/hooks/use-invoice-payment-mutation.d.ts.map +1 -1
- package/dist/hooks/use-invoice-payment-mutation.js +1 -0
- package/dist/hooks/use-invoice-payments.d.ts +1 -1
- package/dist/hooks/use-payment.d.ts +31 -0
- package/dist/hooks/use-payment.d.ts.map +1 -0
- package/dist/hooks/use-payment.js +12 -0
- package/dist/hooks/use-public-booking-payment-options.d.ts +1 -1
- package/dist/hooks/use-public-booking-payments.d.ts +1 -1
- package/dist/hooks/use-public-payment-session-mutation.d.ts +1 -1
- package/dist/hooks/use-public-payment-session.d.ts +1 -1
- package/dist/hooks/use-supplier-payment-mutation.d.ts +2 -2
- package/dist/hooks/use-supplier-payment-mutation.d.ts.map +1 -1
- package/dist/hooks/use-supplier-payment-mutation.js +2 -0
- package/dist/hooks/use-supplier-payments.d.ts +1 -1
- package/dist/index.d.ts +2 -2
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +2 -2
- package/dist/operations.d.ts +6 -6
- package/dist/query-keys.d.ts +42 -0
- package/dist/query-keys.d.ts.map +1 -1
- package/dist/query-keys.js +3 -0
- package/dist/query-options.d.ts +270 -32
- package/dist/query-options.d.ts.map +1 -1
- package/dist/query-options.js +83 -1
- package/dist/schemas.d.ts +128 -17
- package/dist/schemas.d.ts.map +1 -1
- package/dist/schemas.js +28 -0
- package/package.json +5 -5
package/dist/query-options.d.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { type FetchWithValidationOptions } from "./client.js";
|
|
2
|
+
import type { UseAllPaymentsOptions } from "./hooks/use-all-payments.js";
|
|
2
3
|
import type { UseBookingGuaranteesOptions } from "./hooks/use-booking-guarantees.js";
|
|
3
4
|
import type { UseBookingPaymentSchedulesOptions } from "./hooks/use-booking-payment-schedules.js";
|
|
4
5
|
import type { UseInvoiceOptions } from "./hooks/use-invoice.js";
|
|
@@ -7,6 +8,7 @@ import type { UseInvoiceLineItemsOptions } from "./hooks/use-invoice-line-items.
|
|
|
7
8
|
import type { UseInvoiceNotesOptions } from "./hooks/use-invoice-notes.js";
|
|
8
9
|
import type { UseInvoicePaymentsOptions } from "./hooks/use-invoice-payments.js";
|
|
9
10
|
import type { UseInvoicesOptions } from "./hooks/use-invoices.js";
|
|
11
|
+
import type { UsePaymentOptions } from "./hooks/use-payment.js";
|
|
10
12
|
import type { UsePublicBookingDocumentsOptions } from "./hooks/use-public-booking-documents.js";
|
|
11
13
|
import type { UsePublicBookingPaymentOptionsOptions } from "./hooks/use-public-booking-payment-options.js";
|
|
12
14
|
import type { UsePublicBookingPaymentsOptions } from "./hooks/use-public-booking-payments.js";
|
|
@@ -21,7 +23,7 @@ export declare function getBookingPaymentSchedulesQueryOptions(client: FetchWith
|
|
|
21
23
|
bookingId: string;
|
|
22
24
|
bookingItemId: string | null;
|
|
23
25
|
scheduleType: "other" | "deposit" | "installment" | "balance" | "hold";
|
|
24
|
-
status: "pending" | "
|
|
26
|
+
status: "pending" | "cancelled" | "expired" | "paid" | "due" | "waived";
|
|
25
27
|
dueDate: string;
|
|
26
28
|
currency: string;
|
|
27
29
|
amountCents: number;
|
|
@@ -35,7 +37,7 @@ export declare function getBookingPaymentSchedulesQueryOptions(client: FetchWith
|
|
|
35
37
|
bookingId: string;
|
|
36
38
|
bookingItemId: string | null;
|
|
37
39
|
scheduleType: "other" | "deposit" | "installment" | "balance" | "hold";
|
|
38
|
-
status: "pending" | "
|
|
40
|
+
status: "pending" | "cancelled" | "expired" | "paid" | "due" | "waived";
|
|
39
41
|
dueDate: string;
|
|
40
42
|
currency: string;
|
|
41
43
|
amountCents: number;
|
|
@@ -50,7 +52,7 @@ export declare function getBookingPaymentSchedulesQueryOptions(client: FetchWith
|
|
|
50
52
|
bookingId: string;
|
|
51
53
|
bookingItemId: string | null;
|
|
52
54
|
scheduleType: "other" | "deposit" | "installment" | "balance" | "hold";
|
|
53
|
-
status: "pending" | "
|
|
55
|
+
status: "pending" | "cancelled" | "expired" | "paid" | "due" | "waived";
|
|
54
56
|
dueDate: string;
|
|
55
57
|
currency: string;
|
|
56
58
|
amountCents: number;
|
|
@@ -67,7 +69,7 @@ export declare function getBookingPaymentSchedulesQueryOptions(client: FetchWith
|
|
|
67
69
|
bookingId: string;
|
|
68
70
|
bookingItemId: string | null;
|
|
69
71
|
scheduleType: "other" | "deposit" | "installment" | "balance" | "hold";
|
|
70
|
-
status: "pending" | "
|
|
72
|
+
status: "pending" | "cancelled" | "expired" | "paid" | "due" | "waived";
|
|
71
73
|
dueDate: string;
|
|
72
74
|
currency: string;
|
|
73
75
|
amountCents: number;
|
|
@@ -86,7 +88,7 @@ export declare function getBookingGuaranteesQueryOptions(client: FetchWithValida
|
|
|
86
88
|
bookingPaymentScheduleId: string | null;
|
|
87
89
|
bookingItemId: string | null;
|
|
88
90
|
guaranteeType: "other" | "voucher" | "bank_transfer" | "credit_card" | "deposit" | "preauth" | "card_on_file" | "agency_letter";
|
|
89
|
-
status: "pending" | "
|
|
91
|
+
status: "pending" | "failed" | "cancelled" | "active" | "expired" | "released";
|
|
90
92
|
currency: string | null;
|
|
91
93
|
amountCents: number | null;
|
|
92
94
|
provider: string | null;
|
|
@@ -105,7 +107,7 @@ export declare function getBookingGuaranteesQueryOptions(client: FetchWithValida
|
|
|
105
107
|
bookingPaymentScheduleId: string | null;
|
|
106
108
|
bookingItemId: string | null;
|
|
107
109
|
guaranteeType: "other" | "voucher" | "bank_transfer" | "credit_card" | "deposit" | "preauth" | "card_on_file" | "agency_letter";
|
|
108
|
-
status: "pending" | "
|
|
110
|
+
status: "pending" | "failed" | "cancelled" | "active" | "expired" | "released";
|
|
109
111
|
currency: string | null;
|
|
110
112
|
amountCents: number | null;
|
|
111
113
|
provider: string | null;
|
|
@@ -125,7 +127,7 @@ export declare function getBookingGuaranteesQueryOptions(client: FetchWithValida
|
|
|
125
127
|
bookingPaymentScheduleId: string | null;
|
|
126
128
|
bookingItemId: string | null;
|
|
127
129
|
guaranteeType: "other" | "voucher" | "bank_transfer" | "credit_card" | "deposit" | "preauth" | "card_on_file" | "agency_letter";
|
|
128
|
-
status: "pending" | "
|
|
130
|
+
status: "pending" | "failed" | "cancelled" | "active" | "expired" | "released";
|
|
129
131
|
currency: string | null;
|
|
130
132
|
amountCents: number | null;
|
|
131
133
|
provider: string | null;
|
|
@@ -147,7 +149,7 @@ export declare function getBookingGuaranteesQueryOptions(client: FetchWithValida
|
|
|
147
149
|
bookingPaymentScheduleId: string | null;
|
|
148
150
|
bookingItemId: string | null;
|
|
149
151
|
guaranteeType: "other" | "voucher" | "bank_transfer" | "credit_card" | "deposit" | "preauth" | "card_on_file" | "agency_letter";
|
|
150
|
-
status: "pending" | "
|
|
152
|
+
status: "pending" | "failed" | "cancelled" | "active" | "expired" | "released";
|
|
151
153
|
currency: string | null;
|
|
152
154
|
amountCents: number | null;
|
|
153
155
|
provider: string | null;
|
|
@@ -271,6 +273,242 @@ export declare function getInvoicesQueryOptions(client: FetchWithValidationOptio
|
|
|
271
273
|
[dataTagErrorSymbol]: Error;
|
|
272
274
|
};
|
|
273
275
|
};
|
|
276
|
+
export declare function getAllPaymentsQueryOptions(client: FetchWithValidationOptions, options?: UseAllPaymentsOptions): import("@tanstack/react-query").OmitKeyof<import("@tanstack/react-query").UseQueryOptions<{
|
|
277
|
+
data: {
|
|
278
|
+
kind: "customer" | "supplier";
|
|
279
|
+
id: string;
|
|
280
|
+
invoiceId: string | null;
|
|
281
|
+
invoiceNumber: string | null;
|
|
282
|
+
bookingId: string | null;
|
|
283
|
+
bookingNumber: string | null;
|
|
284
|
+
supplierId: string | null;
|
|
285
|
+
supplierName: string | null;
|
|
286
|
+
personId: string | null;
|
|
287
|
+
personName: string | null;
|
|
288
|
+
organizationId: string | null;
|
|
289
|
+
organizationName: string | null;
|
|
290
|
+
amountCents: number;
|
|
291
|
+
currency: string;
|
|
292
|
+
baseCurrency: string | null;
|
|
293
|
+
baseAmountCents: number | null;
|
|
294
|
+
paymentMethod: string;
|
|
295
|
+
status: "pending" | "completed" | "failed" | "refunded";
|
|
296
|
+
referenceNumber: string | null;
|
|
297
|
+
paymentDate: string;
|
|
298
|
+
notes: string | null;
|
|
299
|
+
createdAt: string;
|
|
300
|
+
updatedAt: string;
|
|
301
|
+
}[];
|
|
302
|
+
total: number;
|
|
303
|
+
limit: number;
|
|
304
|
+
offset: number;
|
|
305
|
+
}, Error, {
|
|
306
|
+
data: {
|
|
307
|
+
kind: "customer" | "supplier";
|
|
308
|
+
id: string;
|
|
309
|
+
invoiceId: string | null;
|
|
310
|
+
invoiceNumber: string | null;
|
|
311
|
+
bookingId: string | null;
|
|
312
|
+
bookingNumber: string | null;
|
|
313
|
+
supplierId: string | null;
|
|
314
|
+
supplierName: string | null;
|
|
315
|
+
personId: string | null;
|
|
316
|
+
personName: string | null;
|
|
317
|
+
organizationId: string | null;
|
|
318
|
+
organizationName: string | null;
|
|
319
|
+
amountCents: number;
|
|
320
|
+
currency: string;
|
|
321
|
+
baseCurrency: string | null;
|
|
322
|
+
baseAmountCents: number | null;
|
|
323
|
+
paymentMethod: string;
|
|
324
|
+
status: "pending" | "completed" | "failed" | "refunded";
|
|
325
|
+
referenceNumber: string | null;
|
|
326
|
+
paymentDate: string;
|
|
327
|
+
notes: string | null;
|
|
328
|
+
createdAt: string;
|
|
329
|
+
updatedAt: string;
|
|
330
|
+
}[];
|
|
331
|
+
total: number;
|
|
332
|
+
limit: number;
|
|
333
|
+
offset: number;
|
|
334
|
+
}, readonly ["voyant", "finance", "all-payments", "list", import("./query-keys.js").FinanceAllPaymentsListFilters]>, "queryFn"> & {
|
|
335
|
+
queryFn?: import("@tanstack/react-query").QueryFunction<{
|
|
336
|
+
data: {
|
|
337
|
+
kind: "customer" | "supplier";
|
|
338
|
+
id: string;
|
|
339
|
+
invoiceId: string | null;
|
|
340
|
+
invoiceNumber: string | null;
|
|
341
|
+
bookingId: string | null;
|
|
342
|
+
bookingNumber: string | null;
|
|
343
|
+
supplierId: string | null;
|
|
344
|
+
supplierName: string | null;
|
|
345
|
+
personId: string | null;
|
|
346
|
+
personName: string | null;
|
|
347
|
+
organizationId: string | null;
|
|
348
|
+
organizationName: string | null;
|
|
349
|
+
amountCents: number;
|
|
350
|
+
currency: string;
|
|
351
|
+
baseCurrency: string | null;
|
|
352
|
+
baseAmountCents: number | null;
|
|
353
|
+
paymentMethod: string;
|
|
354
|
+
status: "pending" | "completed" | "failed" | "refunded";
|
|
355
|
+
referenceNumber: string | null;
|
|
356
|
+
paymentDate: string;
|
|
357
|
+
notes: string | null;
|
|
358
|
+
createdAt: string;
|
|
359
|
+
updatedAt: string;
|
|
360
|
+
}[];
|
|
361
|
+
total: number;
|
|
362
|
+
limit: number;
|
|
363
|
+
offset: number;
|
|
364
|
+
}, readonly ["voyant", "finance", "all-payments", "list", import("./query-keys.js").FinanceAllPaymentsListFilters], never> | undefined;
|
|
365
|
+
} & {
|
|
366
|
+
queryKey: readonly ["voyant", "finance", "all-payments", "list", import("./query-keys.js").FinanceAllPaymentsListFilters] & {
|
|
367
|
+
[dataTagSymbol]: {
|
|
368
|
+
data: {
|
|
369
|
+
kind: "customer" | "supplier";
|
|
370
|
+
id: string;
|
|
371
|
+
invoiceId: string | null;
|
|
372
|
+
invoiceNumber: string | null;
|
|
373
|
+
bookingId: string | null;
|
|
374
|
+
bookingNumber: string | null;
|
|
375
|
+
supplierId: string | null;
|
|
376
|
+
supplierName: string | null;
|
|
377
|
+
personId: string | null;
|
|
378
|
+
personName: string | null;
|
|
379
|
+
organizationId: string | null;
|
|
380
|
+
organizationName: string | null;
|
|
381
|
+
amountCents: number;
|
|
382
|
+
currency: string;
|
|
383
|
+
baseCurrency: string | null;
|
|
384
|
+
baseAmountCents: number | null;
|
|
385
|
+
paymentMethod: string;
|
|
386
|
+
status: "pending" | "completed" | "failed" | "refunded";
|
|
387
|
+
referenceNumber: string | null;
|
|
388
|
+
paymentDate: string;
|
|
389
|
+
notes: string | null;
|
|
390
|
+
createdAt: string;
|
|
391
|
+
updatedAt: string;
|
|
392
|
+
}[];
|
|
393
|
+
total: number;
|
|
394
|
+
limit: number;
|
|
395
|
+
offset: number;
|
|
396
|
+
};
|
|
397
|
+
[dataTagErrorSymbol]: Error;
|
|
398
|
+
};
|
|
399
|
+
};
|
|
400
|
+
export declare function getPaymentQueryOptions(client: FetchWithValidationOptions, id: string | null | undefined, options?: UsePaymentOptions): import("@tanstack/react-query").OmitKeyof<import("@tanstack/react-query").UseQueryOptions<{
|
|
401
|
+
data: {
|
|
402
|
+
kind: "customer" | "supplier";
|
|
403
|
+
id: string;
|
|
404
|
+
invoiceId: string | null;
|
|
405
|
+
invoiceNumber: string | null;
|
|
406
|
+
bookingId: string | null;
|
|
407
|
+
bookingNumber: string | null;
|
|
408
|
+
supplierId: string | null;
|
|
409
|
+
supplierName: string | null;
|
|
410
|
+
personId: string | null;
|
|
411
|
+
personName: string | null;
|
|
412
|
+
organizationId: string | null;
|
|
413
|
+
organizationName: string | null;
|
|
414
|
+
amountCents: number;
|
|
415
|
+
currency: string;
|
|
416
|
+
baseCurrency: string | null;
|
|
417
|
+
baseAmountCents: number | null;
|
|
418
|
+
paymentMethod: string;
|
|
419
|
+
status: "pending" | "completed" | "failed" | "refunded";
|
|
420
|
+
referenceNumber: string | null;
|
|
421
|
+
paymentDate: string;
|
|
422
|
+
notes: string | null;
|
|
423
|
+
createdAt: string;
|
|
424
|
+
updatedAt: string;
|
|
425
|
+
};
|
|
426
|
+
}, Error, {
|
|
427
|
+
data: {
|
|
428
|
+
kind: "customer" | "supplier";
|
|
429
|
+
id: string;
|
|
430
|
+
invoiceId: string | null;
|
|
431
|
+
invoiceNumber: string | null;
|
|
432
|
+
bookingId: string | null;
|
|
433
|
+
bookingNumber: string | null;
|
|
434
|
+
supplierId: string | null;
|
|
435
|
+
supplierName: string | null;
|
|
436
|
+
personId: string | null;
|
|
437
|
+
personName: string | null;
|
|
438
|
+
organizationId: string | null;
|
|
439
|
+
organizationName: string | null;
|
|
440
|
+
amountCents: number;
|
|
441
|
+
currency: string;
|
|
442
|
+
baseCurrency: string | null;
|
|
443
|
+
baseAmountCents: number | null;
|
|
444
|
+
paymentMethod: string;
|
|
445
|
+
status: "pending" | "completed" | "failed" | "refunded";
|
|
446
|
+
referenceNumber: string | null;
|
|
447
|
+
paymentDate: string;
|
|
448
|
+
notes: string | null;
|
|
449
|
+
createdAt: string;
|
|
450
|
+
updatedAt: string;
|
|
451
|
+
};
|
|
452
|
+
}, readonly ["voyant", "finance", "all-payments", "detail", string]>, "queryFn"> & {
|
|
453
|
+
queryFn?: import("@tanstack/react-query").QueryFunction<{
|
|
454
|
+
data: {
|
|
455
|
+
kind: "customer" | "supplier";
|
|
456
|
+
id: string;
|
|
457
|
+
invoiceId: string | null;
|
|
458
|
+
invoiceNumber: string | null;
|
|
459
|
+
bookingId: string | null;
|
|
460
|
+
bookingNumber: string | null;
|
|
461
|
+
supplierId: string | null;
|
|
462
|
+
supplierName: string | null;
|
|
463
|
+
personId: string | null;
|
|
464
|
+
personName: string | null;
|
|
465
|
+
organizationId: string | null;
|
|
466
|
+
organizationName: string | null;
|
|
467
|
+
amountCents: number;
|
|
468
|
+
currency: string;
|
|
469
|
+
baseCurrency: string | null;
|
|
470
|
+
baseAmountCents: number | null;
|
|
471
|
+
paymentMethod: string;
|
|
472
|
+
status: "pending" | "completed" | "failed" | "refunded";
|
|
473
|
+
referenceNumber: string | null;
|
|
474
|
+
paymentDate: string;
|
|
475
|
+
notes: string | null;
|
|
476
|
+
createdAt: string;
|
|
477
|
+
updatedAt: string;
|
|
478
|
+
};
|
|
479
|
+
}, readonly ["voyant", "finance", "all-payments", "detail", string], never> | undefined;
|
|
480
|
+
} & {
|
|
481
|
+
queryKey: readonly ["voyant", "finance", "all-payments", "detail", string] & {
|
|
482
|
+
[dataTagSymbol]: {
|
|
483
|
+
data: {
|
|
484
|
+
kind: "customer" | "supplier";
|
|
485
|
+
id: string;
|
|
486
|
+
invoiceId: string | null;
|
|
487
|
+
invoiceNumber: string | null;
|
|
488
|
+
bookingId: string | null;
|
|
489
|
+
bookingNumber: string | null;
|
|
490
|
+
supplierId: string | null;
|
|
491
|
+
supplierName: string | null;
|
|
492
|
+
personId: string | null;
|
|
493
|
+
personName: string | null;
|
|
494
|
+
organizationId: string | null;
|
|
495
|
+
organizationName: string | null;
|
|
496
|
+
amountCents: number;
|
|
497
|
+
currency: string;
|
|
498
|
+
baseCurrency: string | null;
|
|
499
|
+
baseAmountCents: number | null;
|
|
500
|
+
paymentMethod: string;
|
|
501
|
+
status: "pending" | "completed" | "failed" | "refunded";
|
|
502
|
+
referenceNumber: string | null;
|
|
503
|
+
paymentDate: string;
|
|
504
|
+
notes: string | null;
|
|
505
|
+
createdAt: string;
|
|
506
|
+
updatedAt: string;
|
|
507
|
+
};
|
|
508
|
+
};
|
|
509
|
+
[dataTagErrorSymbol]: Error;
|
|
510
|
+
};
|
|
511
|
+
};
|
|
274
512
|
export declare function getSupplierPaymentsQueryOptions(client: FetchWithValidationOptions, options?: UseSupplierPaymentsOptions): import("@tanstack/react-query").OmitKeyof<import("@tanstack/react-query").UseQueryOptions<{
|
|
275
513
|
data: {
|
|
276
514
|
id: string;
|
|
@@ -279,7 +517,7 @@ export declare function getSupplierPaymentsQueryOptions(client: FetchWithValidat
|
|
|
279
517
|
amountCents: number;
|
|
280
518
|
currency: string;
|
|
281
519
|
paymentMethod: string;
|
|
282
|
-
status: "pending" | "
|
|
520
|
+
status: "pending" | "completed" | "failed" | "refunded";
|
|
283
521
|
referenceNumber: string | null;
|
|
284
522
|
paymentDate: string;
|
|
285
523
|
createdAt: string;
|
|
@@ -296,7 +534,7 @@ export declare function getSupplierPaymentsQueryOptions(client: FetchWithValidat
|
|
|
296
534
|
amountCents: number;
|
|
297
535
|
currency: string;
|
|
298
536
|
paymentMethod: string;
|
|
299
|
-
status: "pending" | "
|
|
537
|
+
status: "pending" | "completed" | "failed" | "refunded";
|
|
300
538
|
referenceNumber: string | null;
|
|
301
539
|
paymentDate: string;
|
|
302
540
|
createdAt: string;
|
|
@@ -314,7 +552,7 @@ export declare function getSupplierPaymentsQueryOptions(client: FetchWithValidat
|
|
|
314
552
|
amountCents: number;
|
|
315
553
|
currency: string;
|
|
316
554
|
paymentMethod: string;
|
|
317
|
-
status: "pending" | "
|
|
555
|
+
status: "pending" | "completed" | "failed" | "refunded";
|
|
318
556
|
referenceNumber: string | null;
|
|
319
557
|
paymentDate: string;
|
|
320
558
|
createdAt: string;
|
|
@@ -334,7 +572,7 @@ export declare function getSupplierPaymentsQueryOptions(client: FetchWithValidat
|
|
|
334
572
|
amountCents: number;
|
|
335
573
|
currency: string;
|
|
336
574
|
paymentMethod: string;
|
|
337
|
-
status: "pending" | "
|
|
575
|
+
status: "pending" | "completed" | "failed" | "refunded";
|
|
338
576
|
referenceNumber: string | null;
|
|
339
577
|
paymentDate: string;
|
|
340
578
|
createdAt: string;
|
|
@@ -506,7 +744,7 @@ export declare function getInvoicePaymentsQueryOptions(client: FetchWithValidati
|
|
|
506
744
|
amountCents: number;
|
|
507
745
|
currency: string;
|
|
508
746
|
paymentMethod: string;
|
|
509
|
-
status: "pending" | "
|
|
747
|
+
status: "pending" | "completed" | "failed" | "refunded";
|
|
510
748
|
referenceNumber: string | null;
|
|
511
749
|
paymentDate: string;
|
|
512
750
|
notes: string | null;
|
|
@@ -519,7 +757,7 @@ export declare function getInvoicePaymentsQueryOptions(client: FetchWithValidati
|
|
|
519
757
|
amountCents: number;
|
|
520
758
|
currency: string;
|
|
521
759
|
paymentMethod: string;
|
|
522
|
-
status: "pending" | "
|
|
760
|
+
status: "pending" | "completed" | "failed" | "refunded";
|
|
523
761
|
referenceNumber: string | null;
|
|
524
762
|
paymentDate: string;
|
|
525
763
|
notes: string | null;
|
|
@@ -533,7 +771,7 @@ export declare function getInvoicePaymentsQueryOptions(client: FetchWithValidati
|
|
|
533
771
|
amountCents: number;
|
|
534
772
|
currency: string;
|
|
535
773
|
paymentMethod: string;
|
|
536
|
-
status: "pending" | "
|
|
774
|
+
status: "pending" | "completed" | "failed" | "refunded";
|
|
537
775
|
referenceNumber: string | null;
|
|
538
776
|
paymentDate: string;
|
|
539
777
|
notes: string | null;
|
|
@@ -549,7 +787,7 @@ export declare function getInvoicePaymentsQueryOptions(client: FetchWithValidati
|
|
|
549
787
|
amountCents: number;
|
|
550
788
|
currency: string;
|
|
551
789
|
paymentMethod: string;
|
|
552
|
-
status: "pending" | "
|
|
790
|
+
status: "pending" | "completed" | "failed" | "refunded";
|
|
553
791
|
referenceNumber: string | null;
|
|
554
792
|
paymentDate: string;
|
|
555
793
|
notes: string | null;
|
|
@@ -673,7 +911,7 @@ export declare function getPublicBookingPaymentOptionsQueryOptions(client: Fetch
|
|
|
673
911
|
schedules: {
|
|
674
912
|
id: string;
|
|
675
913
|
scheduleType: "other" | "deposit" | "installment" | "balance" | "hold";
|
|
676
|
-
status: "pending" | "
|
|
914
|
+
status: "pending" | "cancelled" | "expired" | "paid" | "due" | "waived";
|
|
677
915
|
dueDate: string;
|
|
678
916
|
currency: string;
|
|
679
917
|
amountCents: number;
|
|
@@ -714,7 +952,7 @@ export declare function getPublicBookingPaymentOptionsQueryOptions(client: Fetch
|
|
|
714
952
|
schedules: {
|
|
715
953
|
id: string;
|
|
716
954
|
scheduleType: "other" | "deposit" | "installment" | "balance" | "hold";
|
|
717
|
-
status: "pending" | "
|
|
955
|
+
status: "pending" | "cancelled" | "expired" | "paid" | "due" | "waived";
|
|
718
956
|
dueDate: string;
|
|
719
957
|
currency: string;
|
|
720
958
|
amountCents: number;
|
|
@@ -756,7 +994,7 @@ export declare function getPublicBookingPaymentOptionsQueryOptions(client: Fetch
|
|
|
756
994
|
schedules: {
|
|
757
995
|
id: string;
|
|
758
996
|
scheduleType: "other" | "deposit" | "installment" | "balance" | "hold";
|
|
759
|
-
status: "pending" | "
|
|
997
|
+
status: "pending" | "cancelled" | "expired" | "paid" | "due" | "waived";
|
|
760
998
|
dueDate: string;
|
|
761
999
|
currency: string;
|
|
762
1000
|
amountCents: number;
|
|
@@ -800,7 +1038,7 @@ export declare function getPublicBookingPaymentOptionsQueryOptions(client: Fetch
|
|
|
800
1038
|
schedules: {
|
|
801
1039
|
id: string;
|
|
802
1040
|
scheduleType: "other" | "deposit" | "installment" | "balance" | "hold";
|
|
803
|
-
status: "pending" | "
|
|
1041
|
+
status: "pending" | "cancelled" | "expired" | "paid" | "due" | "waived";
|
|
804
1042
|
dueDate: string;
|
|
805
1043
|
currency: string;
|
|
806
1044
|
amountCents: number;
|
|
@@ -1035,7 +1273,7 @@ export declare function getPublicBookingPaymentsQueryOptions(client: FetchWithVa
|
|
|
1035
1273
|
invoiceId: string;
|
|
1036
1274
|
invoiceNumber: string;
|
|
1037
1275
|
invoiceType: "invoice" | "proforma" | "credit_note";
|
|
1038
|
-
status: "pending" | "
|
|
1276
|
+
status: "pending" | "completed" | "failed" | "refunded";
|
|
1039
1277
|
paymentMethod: "other" | "voucher" | "wallet" | "bank_transfer" | "credit_card" | "debit_card" | "cash" | "cheque" | "direct_bill";
|
|
1040
1278
|
amountCents: number;
|
|
1041
1279
|
currency: string;
|
|
@@ -1052,7 +1290,7 @@ export declare function getPublicBookingPaymentsQueryOptions(client: FetchWithVa
|
|
|
1052
1290
|
invoiceId: string;
|
|
1053
1291
|
invoiceNumber: string;
|
|
1054
1292
|
invoiceType: "invoice" | "proforma" | "credit_note";
|
|
1055
|
-
status: "pending" | "
|
|
1293
|
+
status: "pending" | "completed" | "failed" | "refunded";
|
|
1056
1294
|
paymentMethod: "other" | "voucher" | "wallet" | "bank_transfer" | "credit_card" | "debit_card" | "cash" | "cheque" | "direct_bill";
|
|
1057
1295
|
amountCents: number;
|
|
1058
1296
|
currency: string;
|
|
@@ -1070,7 +1308,7 @@ export declare function getPublicBookingPaymentsQueryOptions(client: FetchWithVa
|
|
|
1070
1308
|
invoiceId: string;
|
|
1071
1309
|
invoiceNumber: string;
|
|
1072
1310
|
invoiceType: "invoice" | "proforma" | "credit_note";
|
|
1073
|
-
status: "pending" | "
|
|
1311
|
+
status: "pending" | "completed" | "failed" | "refunded";
|
|
1074
1312
|
paymentMethod: "other" | "voucher" | "wallet" | "bank_transfer" | "credit_card" | "debit_card" | "cash" | "cheque" | "direct_bill";
|
|
1075
1313
|
amountCents: number;
|
|
1076
1314
|
currency: string;
|
|
@@ -1090,7 +1328,7 @@ export declare function getPublicBookingPaymentsQueryOptions(client: FetchWithVa
|
|
|
1090
1328
|
invoiceId: string;
|
|
1091
1329
|
invoiceNumber: string;
|
|
1092
1330
|
invoiceType: "invoice" | "proforma" | "credit_note";
|
|
1093
|
-
status: "pending" | "
|
|
1331
|
+
status: "pending" | "completed" | "failed" | "refunded";
|
|
1094
1332
|
paymentMethod: "other" | "voucher" | "wallet" | "bank_transfer" | "credit_card" | "debit_card" | "cash" | "cheque" | "direct_bill";
|
|
1095
1333
|
amountCents: number;
|
|
1096
1334
|
currency: string;
|
|
@@ -1111,7 +1349,7 @@ export declare function getAdminBookingPaymentsQueryOptions(client: FetchWithVal
|
|
|
1111
1349
|
invoiceId: string;
|
|
1112
1350
|
invoiceNumber: string;
|
|
1113
1351
|
invoiceType: "invoice" | "proforma" | "credit_note";
|
|
1114
|
-
status: "pending" | "
|
|
1352
|
+
status: "pending" | "completed" | "failed" | "refunded";
|
|
1115
1353
|
paymentMethod: "other" | "voucher" | "wallet" | "bank_transfer" | "credit_card" | "debit_card" | "cash" | "cheque" | "direct_bill";
|
|
1116
1354
|
amountCents: number;
|
|
1117
1355
|
currency: string;
|
|
@@ -1128,7 +1366,7 @@ export declare function getAdminBookingPaymentsQueryOptions(client: FetchWithVal
|
|
|
1128
1366
|
invoiceId: string;
|
|
1129
1367
|
invoiceNumber: string;
|
|
1130
1368
|
invoiceType: "invoice" | "proforma" | "credit_note";
|
|
1131
|
-
status: "pending" | "
|
|
1369
|
+
status: "pending" | "completed" | "failed" | "refunded";
|
|
1132
1370
|
paymentMethod: "other" | "voucher" | "wallet" | "bank_transfer" | "credit_card" | "debit_card" | "cash" | "cheque" | "direct_bill";
|
|
1133
1371
|
amountCents: number;
|
|
1134
1372
|
currency: string;
|
|
@@ -1146,7 +1384,7 @@ export declare function getAdminBookingPaymentsQueryOptions(client: FetchWithVal
|
|
|
1146
1384
|
invoiceId: string;
|
|
1147
1385
|
invoiceNumber: string;
|
|
1148
1386
|
invoiceType: "invoice" | "proforma" | "credit_note";
|
|
1149
|
-
status: "pending" | "
|
|
1387
|
+
status: "pending" | "completed" | "failed" | "refunded";
|
|
1150
1388
|
paymentMethod: "other" | "voucher" | "wallet" | "bank_transfer" | "credit_card" | "debit_card" | "cash" | "cheque" | "direct_bill";
|
|
1151
1389
|
amountCents: number;
|
|
1152
1390
|
currency: string;
|
|
@@ -1166,7 +1404,7 @@ export declare function getAdminBookingPaymentsQueryOptions(client: FetchWithVal
|
|
|
1166
1404
|
invoiceId: string;
|
|
1167
1405
|
invoiceNumber: string;
|
|
1168
1406
|
invoiceType: "invoice" | "proforma" | "credit_note";
|
|
1169
|
-
status: "pending" | "
|
|
1407
|
+
status: "pending" | "completed" | "failed" | "refunded";
|
|
1170
1408
|
paymentMethod: "other" | "voucher" | "wallet" | "bank_transfer" | "credit_card" | "debit_card" | "cash" | "cheque" | "direct_bill";
|
|
1171
1409
|
amountCents: number;
|
|
1172
1410
|
currency: string;
|
|
@@ -1188,7 +1426,7 @@ export declare function getPublicPaymentSessionQueryOptions(client: FetchWithVal
|
|
|
1188
1426
|
invoiceId: string | null;
|
|
1189
1427
|
bookingPaymentScheduleId: string | null;
|
|
1190
1428
|
bookingGuaranteeId: string | null;
|
|
1191
|
-
status: "pending" | "failed" | "
|
|
1429
|
+
status: "pending" | "failed" | "cancelled" | "expired" | "paid" | "requires_redirect" | "processing" | "authorized";
|
|
1192
1430
|
provider: string | null;
|
|
1193
1431
|
providerSessionId: string | null;
|
|
1194
1432
|
providerPaymentId: string | null;
|
|
@@ -1217,7 +1455,7 @@ export declare function getPublicPaymentSessionQueryOptions(client: FetchWithVal
|
|
|
1217
1455
|
invoiceId: string | null;
|
|
1218
1456
|
bookingPaymentScheduleId: string | null;
|
|
1219
1457
|
bookingGuaranteeId: string | null;
|
|
1220
|
-
status: "pending" | "failed" | "
|
|
1458
|
+
status: "pending" | "failed" | "cancelled" | "expired" | "paid" | "requires_redirect" | "processing" | "authorized";
|
|
1221
1459
|
provider: string | null;
|
|
1222
1460
|
providerSessionId: string | null;
|
|
1223
1461
|
providerPaymentId: string | null;
|
|
@@ -1247,7 +1485,7 @@ export declare function getPublicPaymentSessionQueryOptions(client: FetchWithVal
|
|
|
1247
1485
|
invoiceId: string | null;
|
|
1248
1486
|
bookingPaymentScheduleId: string | null;
|
|
1249
1487
|
bookingGuaranteeId: string | null;
|
|
1250
|
-
status: "pending" | "failed" | "
|
|
1488
|
+
status: "pending" | "failed" | "cancelled" | "expired" | "paid" | "requires_redirect" | "processing" | "authorized";
|
|
1251
1489
|
provider: string | null;
|
|
1252
1490
|
providerSessionId: string | null;
|
|
1253
1491
|
providerPaymentId: string | null;
|
|
@@ -1279,7 +1517,7 @@ export declare function getPublicPaymentSessionQueryOptions(client: FetchWithVal
|
|
|
1279
1517
|
invoiceId: string | null;
|
|
1280
1518
|
bookingPaymentScheduleId: string | null;
|
|
1281
1519
|
bookingGuaranteeId: string | null;
|
|
1282
|
-
status: "pending" | "failed" | "
|
|
1520
|
+
status: "pending" | "failed" | "cancelled" | "expired" | "paid" | "requires_redirect" | "processing" | "authorized";
|
|
1283
1521
|
provider: string | null;
|
|
1284
1522
|
providerSessionId: string | null;
|
|
1285
1523
|
providerPaymentId: 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,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;AAClF,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,wBAAwB,CAAA;AAC/D,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,yBAAyB,CAAA;
|
|
1
|
+
{"version":3,"file":"query-options.d.ts","sourceRoot":"","sources":["../src/query-options.ts"],"names":[],"mappings":"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"}
|