@voyantjs/finance-react 0.52.2 → 0.52.3
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 +1 -0
- package/dist/hooks/index.d.ts.map +1 -1
- package/dist/hooks/index.js +1 -0
- package/dist/hooks/use-admin-booking-payments.d.ts +1 -1
- package/dist/hooks/use-booking-guarantees.d.ts +6 -6
- package/dist/hooks/use-booking-payment-schedules.d.ts +3 -3
- package/dist/hooks/use-finance-action-ledger.d.ts +94 -0
- package/dist/hooks/use-finance-action-ledger.d.ts.map +1 -0
- package/dist/hooks/use-finance-action-ledger.js +20 -0
- package/dist/hooks/use-public-booking-documents.d.ts +2 -2
- 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 +2 -2
- package/dist/hooks/use-public-payment-session-mutation.d.ts +2 -2
- package/dist/hooks/use-public-payment-session.d.ts +2 -2
- package/dist/hooks/use-voucher-mutation.d.ts +3 -3
- package/dist/hooks/use-voucher.d.ts +1 -1
- package/dist/hooks/use-vouchers.d.ts +1 -1
- package/dist/index.d.ts +3 -3
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +2 -2
- package/dist/operations.d.ts +112 -15
- package/dist/operations.d.ts.map +1 -1
- package/dist/operations.js +14 -1
- package/dist/query-keys.d.ts +11 -0
- package/dist/query-keys.d.ts.map +1 -1
- package/dist/query-keys.js +2 -0
- package/dist/query-options-action-ledger.d.ts +382 -0
- package/dist/query-options-action-ledger.d.ts.map +1 -0
- package/dist/query-options-action-ledger.js +36 -0
- package/dist/query-options.d.ts +65 -64
- package/dist/query-options.d.ts.map +1 -1
- package/dist/query-options.js +1 -0
- package/dist/schemas.d.ts +245 -41
- package/dist/schemas.d.ts.map +1 -1
- package/dist/schemas.js +83 -1
- package/package.json +5 -5
package/dist/query-options.d.ts
CHANGED
|
@@ -24,7 +24,7 @@ export declare function getBookingPaymentSchedulesQueryOptions(client: FetchWith
|
|
|
24
24
|
bookingId: string;
|
|
25
25
|
bookingItemId: string | null;
|
|
26
26
|
scheduleType: "other" | "deposit" | "installment" | "balance" | "hold";
|
|
27
|
-
status: "pending" | "
|
|
27
|
+
status: "pending" | "paid" | "cancelled" | "expired" | "due" | "waived";
|
|
28
28
|
dueDate: string;
|
|
29
29
|
currency: string;
|
|
30
30
|
amountCents: number;
|
|
@@ -38,7 +38,7 @@ export declare function getBookingPaymentSchedulesQueryOptions(client: FetchWith
|
|
|
38
38
|
bookingId: string;
|
|
39
39
|
bookingItemId: string | null;
|
|
40
40
|
scheduleType: "other" | "deposit" | "installment" | "balance" | "hold";
|
|
41
|
-
status: "pending" | "
|
|
41
|
+
status: "pending" | "paid" | "cancelled" | "expired" | "due" | "waived";
|
|
42
42
|
dueDate: string;
|
|
43
43
|
currency: string;
|
|
44
44
|
amountCents: number;
|
|
@@ -53,7 +53,7 @@ export declare function getBookingPaymentSchedulesQueryOptions(client: FetchWith
|
|
|
53
53
|
bookingId: string;
|
|
54
54
|
bookingItemId: string | null;
|
|
55
55
|
scheduleType: "other" | "deposit" | "installment" | "balance" | "hold";
|
|
56
|
-
status: "pending" | "
|
|
56
|
+
status: "pending" | "paid" | "cancelled" | "expired" | "due" | "waived";
|
|
57
57
|
dueDate: string;
|
|
58
58
|
currency: string;
|
|
59
59
|
amountCents: number;
|
|
@@ -70,7 +70,7 @@ export declare function getBookingPaymentSchedulesQueryOptions(client: FetchWith
|
|
|
70
70
|
bookingId: string;
|
|
71
71
|
bookingItemId: string | null;
|
|
72
72
|
scheduleType: "other" | "deposit" | "installment" | "balance" | "hold";
|
|
73
|
-
status: "pending" | "
|
|
73
|
+
status: "pending" | "paid" | "cancelled" | "expired" | "due" | "waived";
|
|
74
74
|
dueDate: string;
|
|
75
75
|
currency: string;
|
|
76
76
|
amountCents: number;
|
|
@@ -88,8 +88,8 @@ export declare function getBookingGuaranteesQueryOptions(client: FetchWithValida
|
|
|
88
88
|
bookingId: string;
|
|
89
89
|
bookingPaymentScheduleId: string | null;
|
|
90
90
|
bookingItemId: string | null;
|
|
91
|
-
guaranteeType: "
|
|
92
|
-
status: "pending" | "failed" | "cancelled" | "
|
|
91
|
+
guaranteeType: "bank_transfer" | "credit_card" | "voucher" | "other" | "deposit" | "preauth" | "card_on_file" | "agency_letter";
|
|
92
|
+
status: "pending" | "failed" | "cancelled" | "expired" | "active" | "released";
|
|
93
93
|
currency: string | null;
|
|
94
94
|
amountCents: number | null;
|
|
95
95
|
provider: string | null;
|
|
@@ -107,8 +107,8 @@ export declare function getBookingGuaranteesQueryOptions(client: FetchWithValida
|
|
|
107
107
|
bookingId: string;
|
|
108
108
|
bookingPaymentScheduleId: string | null;
|
|
109
109
|
bookingItemId: string | null;
|
|
110
|
-
guaranteeType: "
|
|
111
|
-
status: "pending" | "failed" | "cancelled" | "
|
|
110
|
+
guaranteeType: "bank_transfer" | "credit_card" | "voucher" | "other" | "deposit" | "preauth" | "card_on_file" | "agency_letter";
|
|
111
|
+
status: "pending" | "failed" | "cancelled" | "expired" | "active" | "released";
|
|
112
112
|
currency: string | null;
|
|
113
113
|
amountCents: number | null;
|
|
114
114
|
provider: string | null;
|
|
@@ -127,8 +127,8 @@ export declare function getBookingGuaranteesQueryOptions(client: FetchWithValida
|
|
|
127
127
|
bookingId: string;
|
|
128
128
|
bookingPaymentScheduleId: string | null;
|
|
129
129
|
bookingItemId: string | null;
|
|
130
|
-
guaranteeType: "
|
|
131
|
-
status: "pending" | "failed" | "cancelled" | "
|
|
130
|
+
guaranteeType: "bank_transfer" | "credit_card" | "voucher" | "other" | "deposit" | "preauth" | "card_on_file" | "agency_letter";
|
|
131
|
+
status: "pending" | "failed" | "cancelled" | "expired" | "active" | "released";
|
|
132
132
|
currency: string | null;
|
|
133
133
|
amountCents: number | null;
|
|
134
134
|
provider: string | null;
|
|
@@ -149,8 +149,8 @@ export declare function getBookingGuaranteesQueryOptions(client: FetchWithValida
|
|
|
149
149
|
bookingId: string;
|
|
150
150
|
bookingPaymentScheduleId: string | null;
|
|
151
151
|
bookingItemId: string | null;
|
|
152
|
-
guaranteeType: "
|
|
153
|
-
status: "pending" | "failed" | "cancelled" | "
|
|
152
|
+
guaranteeType: "bank_transfer" | "credit_card" | "voucher" | "other" | "deposit" | "preauth" | "card_on_file" | "agency_letter";
|
|
153
|
+
status: "pending" | "failed" | "cancelled" | "expired" | "active" | "released";
|
|
154
154
|
currency: string | null;
|
|
155
155
|
amountCents: number | null;
|
|
156
156
|
provider: string | null;
|
|
@@ -985,8 +985,8 @@ export declare function getPublicBookingPaymentOptionsQueryOptions(client: Fetch
|
|
|
985
985
|
id: string;
|
|
986
986
|
label: string;
|
|
987
987
|
provider: string | null;
|
|
988
|
-
instrumentType: "
|
|
989
|
-
status: "
|
|
988
|
+
instrumentType: "credit_card" | "debit_card" | "cash" | "wallet" | "direct_bill" | "voucher" | "other" | "bank_account";
|
|
989
|
+
status: "expired" | "active" | "inactive" | "revoked" | "failed_verification";
|
|
990
990
|
brand: string | null;
|
|
991
991
|
last4: string | null;
|
|
992
992
|
expiryMonth: number | null;
|
|
@@ -996,7 +996,7 @@ export declare function getPublicBookingPaymentOptionsQueryOptions(client: Fetch
|
|
|
996
996
|
schedules: {
|
|
997
997
|
id: string;
|
|
998
998
|
scheduleType: "other" | "deposit" | "installment" | "balance" | "hold";
|
|
999
|
-
status: "pending" | "
|
|
999
|
+
status: "pending" | "paid" | "cancelled" | "expired" | "due" | "waived";
|
|
1000
1000
|
dueDate: string;
|
|
1001
1001
|
currency: string;
|
|
1002
1002
|
amountCents: number;
|
|
@@ -1026,8 +1026,8 @@ export declare function getPublicBookingPaymentOptionsQueryOptions(client: Fetch
|
|
|
1026
1026
|
id: string;
|
|
1027
1027
|
label: string;
|
|
1028
1028
|
provider: string | null;
|
|
1029
|
-
instrumentType: "
|
|
1030
|
-
status: "
|
|
1029
|
+
instrumentType: "credit_card" | "debit_card" | "cash" | "wallet" | "direct_bill" | "voucher" | "other" | "bank_account";
|
|
1030
|
+
status: "expired" | "active" | "inactive" | "revoked" | "failed_verification";
|
|
1031
1031
|
brand: string | null;
|
|
1032
1032
|
last4: string | null;
|
|
1033
1033
|
expiryMonth: number | null;
|
|
@@ -1037,7 +1037,7 @@ export declare function getPublicBookingPaymentOptionsQueryOptions(client: Fetch
|
|
|
1037
1037
|
schedules: {
|
|
1038
1038
|
id: string;
|
|
1039
1039
|
scheduleType: "other" | "deposit" | "installment" | "balance" | "hold";
|
|
1040
|
-
status: "pending" | "
|
|
1040
|
+
status: "pending" | "paid" | "cancelled" | "expired" | "due" | "waived";
|
|
1041
1041
|
dueDate: string;
|
|
1042
1042
|
currency: string;
|
|
1043
1043
|
amountCents: number;
|
|
@@ -1068,8 +1068,8 @@ export declare function getPublicBookingPaymentOptionsQueryOptions(client: Fetch
|
|
|
1068
1068
|
id: string;
|
|
1069
1069
|
label: string;
|
|
1070
1070
|
provider: string | null;
|
|
1071
|
-
instrumentType: "
|
|
1072
|
-
status: "
|
|
1071
|
+
instrumentType: "credit_card" | "debit_card" | "cash" | "wallet" | "direct_bill" | "voucher" | "other" | "bank_account";
|
|
1072
|
+
status: "expired" | "active" | "inactive" | "revoked" | "failed_verification";
|
|
1073
1073
|
brand: string | null;
|
|
1074
1074
|
last4: string | null;
|
|
1075
1075
|
expiryMonth: number | null;
|
|
@@ -1079,7 +1079,7 @@ export declare function getPublicBookingPaymentOptionsQueryOptions(client: Fetch
|
|
|
1079
1079
|
schedules: {
|
|
1080
1080
|
id: string;
|
|
1081
1081
|
scheduleType: "other" | "deposit" | "installment" | "balance" | "hold";
|
|
1082
|
-
status: "pending" | "
|
|
1082
|
+
status: "pending" | "paid" | "cancelled" | "expired" | "due" | "waived";
|
|
1083
1083
|
dueDate: string;
|
|
1084
1084
|
currency: string;
|
|
1085
1085
|
amountCents: number;
|
|
@@ -1112,8 +1112,8 @@ export declare function getPublicBookingPaymentOptionsQueryOptions(client: Fetch
|
|
|
1112
1112
|
id: string;
|
|
1113
1113
|
label: string;
|
|
1114
1114
|
provider: string | null;
|
|
1115
|
-
instrumentType: "
|
|
1116
|
-
status: "
|
|
1115
|
+
instrumentType: "credit_card" | "debit_card" | "cash" | "wallet" | "direct_bill" | "voucher" | "other" | "bank_account";
|
|
1116
|
+
status: "expired" | "active" | "inactive" | "revoked" | "failed_verification";
|
|
1117
1117
|
brand: string | null;
|
|
1118
1118
|
last4: string | null;
|
|
1119
1119
|
expiryMonth: number | null;
|
|
@@ -1123,7 +1123,7 @@ export declare function getPublicBookingPaymentOptionsQueryOptions(client: Fetch
|
|
|
1123
1123
|
schedules: {
|
|
1124
1124
|
id: string;
|
|
1125
1125
|
scheduleType: "other" | "deposit" | "installment" | "balance" | "hold";
|
|
1126
|
-
status: "pending" | "
|
|
1126
|
+
status: "pending" | "paid" | "cancelled" | "expired" | "due" | "waived";
|
|
1127
1127
|
dueDate: string;
|
|
1128
1128
|
currency: string;
|
|
1129
1129
|
amountCents: number;
|
|
@@ -1165,8 +1165,8 @@ export declare function getPublicBookingDocumentsQueryOptions(client: FetchWithV
|
|
|
1165
1165
|
issueDate: string;
|
|
1166
1166
|
dueDate: string;
|
|
1167
1167
|
renditionId: string | null;
|
|
1168
|
-
documentStatus: "pending" | "failed" | "
|
|
1169
|
-
format: "
|
|
1168
|
+
documentStatus: "pending" | "failed" | "missing" | "ready" | "stale";
|
|
1169
|
+
format: "html" | "pdf" | "xml" | "json" | null;
|
|
1170
1170
|
language: string | null;
|
|
1171
1171
|
generatedAt: string | null;
|
|
1172
1172
|
fileSize: number | null;
|
|
@@ -1189,8 +1189,8 @@ export declare function getPublicBookingDocumentsQueryOptions(client: FetchWithV
|
|
|
1189
1189
|
issueDate: string;
|
|
1190
1190
|
dueDate: string;
|
|
1191
1191
|
renditionId: string | null;
|
|
1192
|
-
documentStatus: "pending" | "failed" | "
|
|
1193
|
-
format: "
|
|
1192
|
+
documentStatus: "pending" | "failed" | "missing" | "ready" | "stale";
|
|
1193
|
+
format: "html" | "pdf" | "xml" | "json" | null;
|
|
1194
1194
|
language: string | null;
|
|
1195
1195
|
generatedAt: string | null;
|
|
1196
1196
|
fileSize: number | null;
|
|
@@ -1214,8 +1214,8 @@ export declare function getPublicBookingDocumentsQueryOptions(client: FetchWithV
|
|
|
1214
1214
|
issueDate: string;
|
|
1215
1215
|
dueDate: string;
|
|
1216
1216
|
renditionId: string | null;
|
|
1217
|
-
documentStatus: "pending" | "failed" | "
|
|
1218
|
-
format: "
|
|
1217
|
+
documentStatus: "pending" | "failed" | "missing" | "ready" | "stale";
|
|
1218
|
+
format: "html" | "pdf" | "xml" | "json" | null;
|
|
1219
1219
|
language: string | null;
|
|
1220
1220
|
generatedAt: string | null;
|
|
1221
1221
|
fileSize: number | null;
|
|
@@ -1241,8 +1241,8 @@ export declare function getPublicBookingDocumentsQueryOptions(client: FetchWithV
|
|
|
1241
1241
|
issueDate: string;
|
|
1242
1242
|
dueDate: string;
|
|
1243
1243
|
renditionId: string | null;
|
|
1244
|
-
documentStatus: "pending" | "failed" | "
|
|
1245
|
-
format: "
|
|
1244
|
+
documentStatus: "pending" | "failed" | "missing" | "ready" | "stale";
|
|
1245
|
+
format: "html" | "pdf" | "xml" | "json" | null;
|
|
1246
1246
|
language: string | null;
|
|
1247
1247
|
generatedAt: string | null;
|
|
1248
1248
|
fileSize: number | null;
|
|
@@ -1267,8 +1267,8 @@ export declare function getPublicFinanceDocumentByReferenceQueryOptions(client:
|
|
|
1267
1267
|
issueDate: string;
|
|
1268
1268
|
dueDate: string;
|
|
1269
1269
|
renditionId: string | null;
|
|
1270
|
-
documentStatus: "pending" | "failed" | "
|
|
1271
|
-
format: "
|
|
1270
|
+
documentStatus: "pending" | "failed" | "missing" | "ready" | "stale";
|
|
1271
|
+
format: "html" | "pdf" | "xml" | "json" | null;
|
|
1272
1272
|
language: string | null;
|
|
1273
1273
|
generatedAt: string | null;
|
|
1274
1274
|
fileSize: number | null;
|
|
@@ -1289,8 +1289,8 @@ export declare function getPublicFinanceDocumentByReferenceQueryOptions(client:
|
|
|
1289
1289
|
issueDate: string;
|
|
1290
1290
|
dueDate: string;
|
|
1291
1291
|
renditionId: string | null;
|
|
1292
|
-
documentStatus: "pending" | "failed" | "
|
|
1293
|
-
format: "
|
|
1292
|
+
documentStatus: "pending" | "failed" | "missing" | "ready" | "stale";
|
|
1293
|
+
format: "html" | "pdf" | "xml" | "json" | null;
|
|
1294
1294
|
language: string | null;
|
|
1295
1295
|
generatedAt: string | null;
|
|
1296
1296
|
fileSize: number | null;
|
|
@@ -1312,8 +1312,8 @@ export declare function getPublicFinanceDocumentByReferenceQueryOptions(client:
|
|
|
1312
1312
|
issueDate: string;
|
|
1313
1313
|
dueDate: string;
|
|
1314
1314
|
renditionId: string | null;
|
|
1315
|
-
documentStatus: "pending" | "failed" | "
|
|
1316
|
-
format: "
|
|
1315
|
+
documentStatus: "pending" | "failed" | "missing" | "ready" | "stale";
|
|
1316
|
+
format: "html" | "pdf" | "xml" | "json" | null;
|
|
1317
1317
|
language: string | null;
|
|
1318
1318
|
generatedAt: string | null;
|
|
1319
1319
|
fileSize: number | null;
|
|
@@ -1337,8 +1337,8 @@ export declare function getPublicFinanceDocumentByReferenceQueryOptions(client:
|
|
|
1337
1337
|
issueDate: string;
|
|
1338
1338
|
dueDate: string;
|
|
1339
1339
|
renditionId: string | null;
|
|
1340
|
-
documentStatus: "pending" | "failed" | "
|
|
1341
|
-
format: "
|
|
1340
|
+
documentStatus: "pending" | "failed" | "missing" | "ready" | "stale";
|
|
1341
|
+
format: "html" | "pdf" | "xml" | "json" | null;
|
|
1342
1342
|
language: string | null;
|
|
1343
1343
|
generatedAt: string | null;
|
|
1344
1344
|
fileSize: number | null;
|
|
@@ -1359,7 +1359,7 @@ export declare function getPublicBookingPaymentsQueryOptions(client: FetchWithVa
|
|
|
1359
1359
|
invoiceNumber: string;
|
|
1360
1360
|
invoiceType: "invoice" | "proforma" | "credit_note";
|
|
1361
1361
|
status: "pending" | "completed" | "failed" | "refunded";
|
|
1362
|
-
paymentMethod: "
|
|
1362
|
+
paymentMethod: "bank_transfer" | "credit_card" | "debit_card" | "cash" | "cheque" | "wallet" | "direct_bill" | "voucher" | "other";
|
|
1363
1363
|
amountCents: number;
|
|
1364
1364
|
currency: string;
|
|
1365
1365
|
paymentDate: string;
|
|
@@ -1376,7 +1376,7 @@ export declare function getPublicBookingPaymentsQueryOptions(client: FetchWithVa
|
|
|
1376
1376
|
invoiceNumber: string;
|
|
1377
1377
|
invoiceType: "invoice" | "proforma" | "credit_note";
|
|
1378
1378
|
status: "pending" | "completed" | "failed" | "refunded";
|
|
1379
|
-
paymentMethod: "
|
|
1379
|
+
paymentMethod: "bank_transfer" | "credit_card" | "debit_card" | "cash" | "cheque" | "wallet" | "direct_bill" | "voucher" | "other";
|
|
1380
1380
|
amountCents: number;
|
|
1381
1381
|
currency: string;
|
|
1382
1382
|
paymentDate: string;
|
|
@@ -1394,7 +1394,7 @@ export declare function getPublicBookingPaymentsQueryOptions(client: FetchWithVa
|
|
|
1394
1394
|
invoiceNumber: string;
|
|
1395
1395
|
invoiceType: "invoice" | "proforma" | "credit_note";
|
|
1396
1396
|
status: "pending" | "completed" | "failed" | "refunded";
|
|
1397
|
-
paymentMethod: "
|
|
1397
|
+
paymentMethod: "bank_transfer" | "credit_card" | "debit_card" | "cash" | "cheque" | "wallet" | "direct_bill" | "voucher" | "other";
|
|
1398
1398
|
amountCents: number;
|
|
1399
1399
|
currency: string;
|
|
1400
1400
|
paymentDate: string;
|
|
@@ -1414,7 +1414,7 @@ export declare function getPublicBookingPaymentsQueryOptions(client: FetchWithVa
|
|
|
1414
1414
|
invoiceNumber: string;
|
|
1415
1415
|
invoiceType: "invoice" | "proforma" | "credit_note";
|
|
1416
1416
|
status: "pending" | "completed" | "failed" | "refunded";
|
|
1417
|
-
paymentMethod: "
|
|
1417
|
+
paymentMethod: "bank_transfer" | "credit_card" | "debit_card" | "cash" | "cheque" | "wallet" | "direct_bill" | "voucher" | "other";
|
|
1418
1418
|
amountCents: number;
|
|
1419
1419
|
currency: string;
|
|
1420
1420
|
paymentDate: string;
|
|
@@ -1435,7 +1435,7 @@ export declare function getAdminBookingPaymentsQueryOptions(client: FetchWithVal
|
|
|
1435
1435
|
invoiceNumber: string;
|
|
1436
1436
|
invoiceType: "invoice" | "proforma" | "credit_note";
|
|
1437
1437
|
status: "pending" | "completed" | "failed" | "refunded";
|
|
1438
|
-
paymentMethod: "
|
|
1438
|
+
paymentMethod: "bank_transfer" | "credit_card" | "debit_card" | "cash" | "cheque" | "wallet" | "direct_bill" | "voucher" | "other";
|
|
1439
1439
|
amountCents: number;
|
|
1440
1440
|
currency: string;
|
|
1441
1441
|
paymentDate: string;
|
|
@@ -1452,7 +1452,7 @@ export declare function getAdminBookingPaymentsQueryOptions(client: FetchWithVal
|
|
|
1452
1452
|
invoiceNumber: string;
|
|
1453
1453
|
invoiceType: "invoice" | "proforma" | "credit_note";
|
|
1454
1454
|
status: "pending" | "completed" | "failed" | "refunded";
|
|
1455
|
-
paymentMethod: "
|
|
1455
|
+
paymentMethod: "bank_transfer" | "credit_card" | "debit_card" | "cash" | "cheque" | "wallet" | "direct_bill" | "voucher" | "other";
|
|
1456
1456
|
amountCents: number;
|
|
1457
1457
|
currency: string;
|
|
1458
1458
|
paymentDate: string;
|
|
@@ -1470,7 +1470,7 @@ export declare function getAdminBookingPaymentsQueryOptions(client: FetchWithVal
|
|
|
1470
1470
|
invoiceNumber: string;
|
|
1471
1471
|
invoiceType: "invoice" | "proforma" | "credit_note";
|
|
1472
1472
|
status: "pending" | "completed" | "failed" | "refunded";
|
|
1473
|
-
paymentMethod: "
|
|
1473
|
+
paymentMethod: "bank_transfer" | "credit_card" | "debit_card" | "cash" | "cheque" | "wallet" | "direct_bill" | "voucher" | "other";
|
|
1474
1474
|
amountCents: number;
|
|
1475
1475
|
currency: string;
|
|
1476
1476
|
paymentDate: string;
|
|
@@ -1490,7 +1490,7 @@ export declare function getAdminBookingPaymentsQueryOptions(client: FetchWithVal
|
|
|
1490
1490
|
invoiceNumber: string;
|
|
1491
1491
|
invoiceType: "invoice" | "proforma" | "credit_note";
|
|
1492
1492
|
status: "pending" | "completed" | "failed" | "refunded";
|
|
1493
|
-
paymentMethod: "
|
|
1493
|
+
paymentMethod: "bank_transfer" | "credit_card" | "debit_card" | "cash" | "cheque" | "wallet" | "direct_bill" | "voucher" | "other";
|
|
1494
1494
|
amountCents: number;
|
|
1495
1495
|
currency: string;
|
|
1496
1496
|
paymentDate: string;
|
|
@@ -1511,7 +1511,7 @@ export declare function getPublicPaymentSessionQueryOptions(client: FetchWithVal
|
|
|
1511
1511
|
invoiceId: string | null;
|
|
1512
1512
|
bookingPaymentScheduleId: string | null;
|
|
1513
1513
|
bookingGuaranteeId: string | null;
|
|
1514
|
-
status: "pending" | "failed" | "
|
|
1514
|
+
status: "pending" | "failed" | "paid" | "requires_redirect" | "processing" | "authorized" | "cancelled" | "expired";
|
|
1515
1515
|
provider: string | null;
|
|
1516
1516
|
providerSessionId: string | null;
|
|
1517
1517
|
providerPaymentId: string | null;
|
|
@@ -1519,7 +1519,7 @@ export declare function getPublicPaymentSessionQueryOptions(client: FetchWithVal
|
|
|
1519
1519
|
clientReference: string | null;
|
|
1520
1520
|
currency: string;
|
|
1521
1521
|
amountCents: number;
|
|
1522
|
-
paymentMethod: "
|
|
1522
|
+
paymentMethod: "bank_transfer" | "credit_card" | "debit_card" | "cash" | "cheque" | "wallet" | "direct_bill" | "voucher" | "other" | null;
|
|
1523
1523
|
payerEmail: string | null;
|
|
1524
1524
|
payerName: string | null;
|
|
1525
1525
|
redirectUrl: string | null;
|
|
@@ -1540,7 +1540,7 @@ export declare function getPublicPaymentSessionQueryOptions(client: FetchWithVal
|
|
|
1540
1540
|
invoiceId: string | null;
|
|
1541
1541
|
bookingPaymentScheduleId: string | null;
|
|
1542
1542
|
bookingGuaranteeId: string | null;
|
|
1543
|
-
status: "pending" | "failed" | "
|
|
1543
|
+
status: "pending" | "failed" | "paid" | "requires_redirect" | "processing" | "authorized" | "cancelled" | "expired";
|
|
1544
1544
|
provider: string | null;
|
|
1545
1545
|
providerSessionId: string | null;
|
|
1546
1546
|
providerPaymentId: string | null;
|
|
@@ -1548,7 +1548,7 @@ export declare function getPublicPaymentSessionQueryOptions(client: FetchWithVal
|
|
|
1548
1548
|
clientReference: string | null;
|
|
1549
1549
|
currency: string;
|
|
1550
1550
|
amountCents: number;
|
|
1551
|
-
paymentMethod: "
|
|
1551
|
+
paymentMethod: "bank_transfer" | "credit_card" | "debit_card" | "cash" | "cheque" | "wallet" | "direct_bill" | "voucher" | "other" | null;
|
|
1552
1552
|
payerEmail: string | null;
|
|
1553
1553
|
payerName: string | null;
|
|
1554
1554
|
redirectUrl: string | null;
|
|
@@ -1570,7 +1570,7 @@ export declare function getPublicPaymentSessionQueryOptions(client: FetchWithVal
|
|
|
1570
1570
|
invoiceId: string | null;
|
|
1571
1571
|
bookingPaymentScheduleId: string | null;
|
|
1572
1572
|
bookingGuaranteeId: string | null;
|
|
1573
|
-
status: "pending" | "failed" | "
|
|
1573
|
+
status: "pending" | "failed" | "paid" | "requires_redirect" | "processing" | "authorized" | "cancelled" | "expired";
|
|
1574
1574
|
provider: string | null;
|
|
1575
1575
|
providerSessionId: string | null;
|
|
1576
1576
|
providerPaymentId: string | null;
|
|
@@ -1578,7 +1578,7 @@ export declare function getPublicPaymentSessionQueryOptions(client: FetchWithVal
|
|
|
1578
1578
|
clientReference: string | null;
|
|
1579
1579
|
currency: string;
|
|
1580
1580
|
amountCents: number;
|
|
1581
|
-
paymentMethod: "
|
|
1581
|
+
paymentMethod: "bank_transfer" | "credit_card" | "debit_card" | "cash" | "cheque" | "wallet" | "direct_bill" | "voucher" | "other" | null;
|
|
1582
1582
|
payerEmail: string | null;
|
|
1583
1583
|
payerName: string | null;
|
|
1584
1584
|
redirectUrl: string | null;
|
|
@@ -1602,7 +1602,7 @@ export declare function getPublicPaymentSessionQueryOptions(client: FetchWithVal
|
|
|
1602
1602
|
invoiceId: string | null;
|
|
1603
1603
|
bookingPaymentScheduleId: string | null;
|
|
1604
1604
|
bookingGuaranteeId: string | null;
|
|
1605
|
-
status: "pending" | "failed" | "
|
|
1605
|
+
status: "pending" | "failed" | "paid" | "requires_redirect" | "processing" | "authorized" | "cancelled" | "expired";
|
|
1606
1606
|
provider: string | null;
|
|
1607
1607
|
providerSessionId: string | null;
|
|
1608
1608
|
providerPaymentId: string | null;
|
|
@@ -1610,7 +1610,7 @@ export declare function getPublicPaymentSessionQueryOptions(client: FetchWithVal
|
|
|
1610
1610
|
clientReference: string | null;
|
|
1611
1611
|
currency: string;
|
|
1612
1612
|
amountCents: number;
|
|
1613
|
-
paymentMethod: "
|
|
1613
|
+
paymentMethod: "bank_transfer" | "credit_card" | "debit_card" | "cash" | "cheque" | "wallet" | "direct_bill" | "voucher" | "other" | null;
|
|
1614
1614
|
payerEmail: string | null;
|
|
1615
1615
|
payerName: string | null;
|
|
1616
1616
|
redirectUrl: string | null;
|
|
@@ -1630,7 +1630,7 @@ export declare function getVouchersQueryOptions(client: FetchWithValidationOptio
|
|
|
1630
1630
|
data: {
|
|
1631
1631
|
id: string;
|
|
1632
1632
|
code: string;
|
|
1633
|
-
status: "void" | "
|
|
1633
|
+
status: "void" | "expired" | "active" | "redeemed";
|
|
1634
1634
|
currency: string;
|
|
1635
1635
|
initialAmountCents: number;
|
|
1636
1636
|
remainingAmountCents: number;
|
|
@@ -1652,7 +1652,7 @@ export declare function getVouchersQueryOptions(client: FetchWithValidationOptio
|
|
|
1652
1652
|
data: {
|
|
1653
1653
|
id: string;
|
|
1654
1654
|
code: string;
|
|
1655
|
-
status: "void" | "
|
|
1655
|
+
status: "void" | "expired" | "active" | "redeemed";
|
|
1656
1656
|
currency: string;
|
|
1657
1657
|
initialAmountCents: number;
|
|
1658
1658
|
remainingAmountCents: number;
|
|
@@ -1675,7 +1675,7 @@ export declare function getVouchersQueryOptions(client: FetchWithValidationOptio
|
|
|
1675
1675
|
data: {
|
|
1676
1676
|
id: string;
|
|
1677
1677
|
code: string;
|
|
1678
|
-
status: "void" | "
|
|
1678
|
+
status: "void" | "expired" | "active" | "redeemed";
|
|
1679
1679
|
currency: string;
|
|
1680
1680
|
initialAmountCents: number;
|
|
1681
1681
|
remainingAmountCents: number;
|
|
@@ -1700,7 +1700,7 @@ export declare function getVouchersQueryOptions(client: FetchWithValidationOptio
|
|
|
1700
1700
|
data: {
|
|
1701
1701
|
id: string;
|
|
1702
1702
|
code: string;
|
|
1703
|
-
status: "void" | "
|
|
1703
|
+
status: "void" | "expired" | "active" | "redeemed";
|
|
1704
1704
|
currency: string;
|
|
1705
1705
|
initialAmountCents: number;
|
|
1706
1706
|
remainingAmountCents: number;
|
|
@@ -1726,7 +1726,7 @@ export declare function getVoucherQueryOptions(client: FetchWithValidationOption
|
|
|
1726
1726
|
data: {
|
|
1727
1727
|
id: string;
|
|
1728
1728
|
code: string;
|
|
1729
|
-
status: "void" | "
|
|
1729
|
+
status: "void" | "expired" | "active" | "redeemed";
|
|
1730
1730
|
currency: string;
|
|
1731
1731
|
initialAmountCents: number;
|
|
1732
1732
|
remainingAmountCents: number;
|
|
@@ -1754,7 +1754,7 @@ export declare function getVoucherQueryOptions(client: FetchWithValidationOption
|
|
|
1754
1754
|
data: {
|
|
1755
1755
|
id: string;
|
|
1756
1756
|
code: string;
|
|
1757
|
-
status: "void" | "
|
|
1757
|
+
status: "void" | "expired" | "active" | "redeemed";
|
|
1758
1758
|
currency: string;
|
|
1759
1759
|
initialAmountCents: number;
|
|
1760
1760
|
remainingAmountCents: number;
|
|
@@ -1783,7 +1783,7 @@ export declare function getVoucherQueryOptions(client: FetchWithValidationOption
|
|
|
1783
1783
|
data: {
|
|
1784
1784
|
id: string;
|
|
1785
1785
|
code: string;
|
|
1786
|
-
status: "void" | "
|
|
1786
|
+
status: "void" | "expired" | "active" | "redeemed";
|
|
1787
1787
|
currency: string;
|
|
1788
1788
|
initialAmountCents: number;
|
|
1789
1789
|
remainingAmountCents: number;
|
|
@@ -1814,7 +1814,7 @@ export declare function getVoucherQueryOptions(client: FetchWithValidationOption
|
|
|
1814
1814
|
data: {
|
|
1815
1815
|
id: string;
|
|
1816
1816
|
code: string;
|
|
1817
|
-
status: "void" | "
|
|
1817
|
+
status: "void" | "expired" | "active" | "redeemed";
|
|
1818
1818
|
currency: string;
|
|
1819
1819
|
initialAmountCents: number;
|
|
1820
1820
|
remainingAmountCents: number;
|
|
@@ -1842,4 +1842,5 @@ export declare function getVoucherQueryOptions(client: FetchWithValidationOption
|
|
|
1842
1842
|
[dataTagErrorSymbol]: Error;
|
|
1843
1843
|
};
|
|
1844
1844
|
};
|
|
1845
|
+
export { getInvoiceActionLedgerQueryOptions, getPaymentSessionActionLedgerQueryOptions, type UseFinanceActionLedgerOptions, } from "./query-options-action-ledger.js";
|
|
1845
1846
|
//# sourceMappingURL=query-options.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"query-options.d.ts","sourceRoot":"","sources":["../src/query-options.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"query-options.d.ts","sourceRoot":"","sources":["../src/query-options.ts"],"names":[],"mappings":"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"}
|
package/dist/query-options.js
CHANGED