@_henriquewilson/gabirubi-domain 1.0.28 → 1.0.30

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.
@@ -0,0 +1,532 @@
1
+ import { z } from 'zod';
2
+
3
+ declare const IuguInvoiceSchema: z.ZodObject<{
4
+ id: z.ZodString;
5
+ due_date: z.ZodString;
6
+ currency: z.ZodString;
7
+ discount_cents: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
8
+ email: z.ZodString;
9
+ items_total_cents: z.ZodNumber;
10
+ notification_url: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
11
+ return_url: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
12
+ status: z.ZodString;
13
+ tax_cents: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
14
+ total_cents: z.ZodNumber;
15
+ total_paid_cents: z.ZodNumber;
16
+ taxes_paid_cents: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
17
+ paid_at: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
18
+ paid_cents: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
19
+ cc_emails: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
20
+ financial_return_date: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
21
+ payable_with: z.ZodString;
22
+ overpaid_cents: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
23
+ ignore_due_email: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
24
+ ignore_canceled_email: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
25
+ advance_fee_cents: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
26
+ commission_cents: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
27
+ early_payment_discount: z.ZodBoolean;
28
+ order_id: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
29
+ updated_at: z.ZodString;
30
+ credit_card_brand: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
31
+ credit_card_bin: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
32
+ credit_card_last_4: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
33
+ credit_card_captured_at: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
34
+ credit_card_tid: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
35
+ external_reference: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
36
+ max_installments_value: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
37
+ payer_name: z.ZodString;
38
+ payer_email: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
39
+ payer_cpf_cnpj: z.ZodString;
40
+ payer_phone: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
41
+ payer_phone_prefix: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
42
+ payer_address_zip_code: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
43
+ payer_address_street: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
44
+ payer_address_district: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
45
+ payer_address_city: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
46
+ payer_address_state: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
47
+ payer_address_number: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
48
+ payer_address_complement: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
49
+ payer_address_country: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
50
+ late_payment_fine: z.ZodNumber;
51
+ late_payment_fine_cents: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
52
+ split_id: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
53
+ external_payment_id: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
54
+ external_payment_description: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
55
+ payment_booklet_id: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
56
+ subscription_id: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
57
+ variables: z.ZodArray<z.ZodObject<{
58
+ variable: z.ZodString;
59
+ value: z.ZodString;
60
+ }, "strip", z.ZodTypeAny, {
61
+ value: string;
62
+ variable: string;
63
+ }, {
64
+ value: string;
65
+ variable: string;
66
+ }>, "many">;
67
+ custom_variables: z.ZodArray<z.ZodUnknown, "many">;
68
+ logs: z.ZodArray<z.ZodObject<{
69
+ id: z.ZodString;
70
+ description: z.ZodString;
71
+ notes: z.ZodString;
72
+ created_at: z.ZodString;
73
+ }, "strip", z.ZodTypeAny, {
74
+ id: string;
75
+ description: string;
76
+ notes: string;
77
+ created_at: string;
78
+ }, {
79
+ id: string;
80
+ description: string;
81
+ notes: string;
82
+ created_at: string;
83
+ }>, "many">;
84
+ credit_card_transaction: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
85
+ account_id: z.ZodString;
86
+ bank_account_branch: z.ZodString;
87
+ bank_account_number: z.ZodString;
88
+ account_name: z.ZodString;
89
+ secure_id: z.ZodString;
90
+ secure_url: z.ZodString;
91
+ customer_id: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
92
+ customer_ref: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
93
+ customer_name: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
94
+ user_id: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
95
+ total: z.ZodString;
96
+ taxes_paid: z.ZodString;
97
+ total_paid: z.ZodString;
98
+ total_overpaid: z.ZodString;
99
+ total_refunded: z.ZodString;
100
+ commission: z.ZodString;
101
+ fines_on_occurrence_day: z.ZodString;
102
+ total_on_occurrence_day: z.ZodString;
103
+ fines_on_occurrence_day_cents: z.ZodNumber;
104
+ total_on_occurrence_day_cents: z.ZodNumber;
105
+ refunded_cents: z.ZodNumber;
106
+ remaining_captured_cents: z.ZodNumber;
107
+ advance_fee: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
108
+ estimated_advance_fee: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
109
+ paid: z.ZodString;
110
+ original_payment_id: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
111
+ double_payment_id: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
112
+ per_day_interest: z.ZodBoolean;
113
+ per_day_interest_value: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
114
+ per_day_interest_cents: z.ZodNumber;
115
+ interest: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
116
+ discount: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
117
+ duplicated_invoice_id: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
118
+ bank_slip_extra_due: z.ZodNumber;
119
+ created_at: z.ZodString;
120
+ created_at_iso: z.ZodString;
121
+ authorized_at: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
122
+ authorized_at_iso: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
123
+ expired_at: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
124
+ expired_at_iso: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
125
+ refunded_at: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
126
+ refunded_at_iso: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
127
+ canceled_at: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
128
+ canceled_at_iso: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
129
+ protested_at: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
130
+ protested_at_iso: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
131
+ chargeback_at: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
132
+ chargeback_at_iso: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
133
+ occurrence_date: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
134
+ refundable: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
135
+ installments: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
136
+ transaction_number: z.ZodNumber;
137
+ payment_method: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
138
+ financial_return_dates: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
139
+ bank_slip: z.ZodObject<{
140
+ digitable_line: z.ZodString;
141
+ barcode_data: z.ZodString;
142
+ barcode: z.ZodString;
143
+ bank_slip_url: z.ZodString;
144
+ bank_slip_bank: z.ZodNumber;
145
+ bank_slip_status: z.ZodString;
146
+ bank_slip_error_code: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
147
+ bank_slip_error_message: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
148
+ recipient_cpf_cnpj: z.ZodString;
149
+ }, "strip", z.ZodTypeAny, {
150
+ digitable_line: string;
151
+ barcode_data: string;
152
+ barcode: string;
153
+ bank_slip_url: string;
154
+ bank_slip_bank: number;
155
+ bank_slip_status: string;
156
+ recipient_cpf_cnpj: string;
157
+ bank_slip_error_code?: string | null | undefined;
158
+ bank_slip_error_message?: string | null | undefined;
159
+ }, {
160
+ digitable_line: string;
161
+ barcode_data: string;
162
+ barcode: string;
163
+ bank_slip_url: string;
164
+ bank_slip_bank: number;
165
+ bank_slip_status: string;
166
+ recipient_cpf_cnpj: string;
167
+ bank_slip_error_code?: string | null | undefined;
168
+ bank_slip_error_message?: string | null | undefined;
169
+ }>;
170
+ pix: z.ZodObject<{
171
+ qrcode: z.ZodString;
172
+ qrcode_text: z.ZodString;
173
+ status: z.ZodString;
174
+ payer_cpf_cnpj: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
175
+ payer_name: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
176
+ end_to_end_id: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
177
+ end_to_end_refund_id: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
178
+ account_number_last_digits: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
179
+ }, "strip", z.ZodTypeAny, {
180
+ status: string;
181
+ qrcode: string;
182
+ qrcode_text: string;
183
+ payer_name?: string | null | undefined;
184
+ payer_cpf_cnpj?: string | null | undefined;
185
+ end_to_end_id?: string | null | undefined;
186
+ end_to_end_refund_id?: string | null | undefined;
187
+ account_number_last_digits?: string | null | undefined;
188
+ }, {
189
+ status: string;
190
+ qrcode: string;
191
+ qrcode_text: string;
192
+ payer_name?: string | null | undefined;
193
+ payer_cpf_cnpj?: string | null | undefined;
194
+ end_to_end_id?: string | null | undefined;
195
+ end_to_end_refund_id?: string | null | undefined;
196
+ account_number_last_digits?: string | null | undefined;
197
+ }>;
198
+ items: z.ZodArray<z.ZodObject<{
199
+ id: z.ZodString;
200
+ description: z.ZodString;
201
+ price_cents: z.ZodNumber;
202
+ quantity: z.ZodNumber;
203
+ created_at: z.ZodString;
204
+ updated_at: z.ZodString;
205
+ price: z.ZodString;
206
+ }, "strip", z.ZodTypeAny, {
207
+ id: string;
208
+ description: string;
209
+ updated_at: string;
210
+ created_at: string;
211
+ price_cents: number;
212
+ quantity: number;
213
+ price: string;
214
+ }, {
215
+ id: string;
216
+ description: string;
217
+ updated_at: string;
218
+ created_at: string;
219
+ price_cents: number;
220
+ quantity: number;
221
+ price: string;
222
+ }>, "many">;
223
+ early_payment_discounts: z.ZodArray<z.ZodUnknown, "many">;
224
+ split_rules: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
225
+ }, "strip", z.ZodTypeAny, {
226
+ id: string;
227
+ status: string;
228
+ due_date: string;
229
+ currency: string;
230
+ email: string;
231
+ items_total_cents: number;
232
+ total_cents: number;
233
+ total_paid_cents: number;
234
+ payable_with: string;
235
+ early_payment_discount: boolean;
236
+ updated_at: string;
237
+ payer_name: string;
238
+ payer_cpf_cnpj: string;
239
+ late_payment_fine: number;
240
+ variables: {
241
+ value: string;
242
+ variable: string;
243
+ }[];
244
+ custom_variables: unknown[];
245
+ logs: {
246
+ id: string;
247
+ description: string;
248
+ notes: string;
249
+ created_at: string;
250
+ }[];
251
+ created_at: string;
252
+ account_id: string;
253
+ bank_account_branch: string;
254
+ bank_account_number: string;
255
+ account_name: string;
256
+ secure_id: string;
257
+ secure_url: string;
258
+ total: string;
259
+ taxes_paid: string;
260
+ total_paid: string;
261
+ total_overpaid: string;
262
+ total_refunded: string;
263
+ commission: string;
264
+ fines_on_occurrence_day: string;
265
+ total_on_occurrence_day: string;
266
+ fines_on_occurrence_day_cents: number;
267
+ total_on_occurrence_day_cents: number;
268
+ refunded_cents: number;
269
+ remaining_captured_cents: number;
270
+ paid: string;
271
+ per_day_interest: boolean;
272
+ per_day_interest_cents: number;
273
+ bank_slip_extra_due: number;
274
+ created_at_iso: string;
275
+ transaction_number: number;
276
+ bank_slip: {
277
+ digitable_line: string;
278
+ barcode_data: string;
279
+ barcode: string;
280
+ bank_slip_url: string;
281
+ bank_slip_bank: number;
282
+ bank_slip_status: string;
283
+ recipient_cpf_cnpj: string;
284
+ bank_slip_error_code?: string | null | undefined;
285
+ bank_slip_error_message?: string | null | undefined;
286
+ };
287
+ pix: {
288
+ status: string;
289
+ qrcode: string;
290
+ qrcode_text: string;
291
+ payer_name?: string | null | undefined;
292
+ payer_cpf_cnpj?: string | null | undefined;
293
+ end_to_end_id?: string | null | undefined;
294
+ end_to_end_refund_id?: string | null | undefined;
295
+ account_number_last_digits?: string | null | undefined;
296
+ };
297
+ items: {
298
+ id: string;
299
+ description: string;
300
+ updated_at: string;
301
+ created_at: string;
302
+ price_cents: number;
303
+ quantity: number;
304
+ price: string;
305
+ }[];
306
+ early_payment_discounts: unknown[];
307
+ discount_cents?: string | null | undefined;
308
+ notification_url?: string | null | undefined;
309
+ return_url?: string | null | undefined;
310
+ tax_cents?: string | null | undefined;
311
+ taxes_paid_cents?: string | null | undefined;
312
+ paid_at?: string | null | undefined;
313
+ paid_cents?: string | null | undefined;
314
+ cc_emails?: string | null | undefined;
315
+ financial_return_date?: string | null | undefined;
316
+ overpaid_cents?: string | null | undefined;
317
+ ignore_due_email?: string | null | undefined;
318
+ ignore_canceled_email?: string | null | undefined;
319
+ advance_fee_cents?: string | null | undefined;
320
+ commission_cents?: string | null | undefined;
321
+ order_id?: string | null | undefined;
322
+ credit_card_brand?: string | null | undefined;
323
+ credit_card_bin?: string | null | undefined;
324
+ credit_card_last_4?: string | null | undefined;
325
+ credit_card_captured_at?: string | null | undefined;
326
+ credit_card_tid?: string | null | undefined;
327
+ external_reference?: string | null | undefined;
328
+ max_installments_value?: string | null | undefined;
329
+ payer_email?: string | null | undefined;
330
+ payer_phone?: string | null | undefined;
331
+ payer_phone_prefix?: string | null | undefined;
332
+ payer_address_zip_code?: string | null | undefined;
333
+ payer_address_street?: string | null | undefined;
334
+ payer_address_district?: string | null | undefined;
335
+ payer_address_city?: string | null | undefined;
336
+ payer_address_state?: string | null | undefined;
337
+ payer_address_number?: string | null | undefined;
338
+ payer_address_complement?: string | null | undefined;
339
+ payer_address_country?: string | null | undefined;
340
+ late_payment_fine_cents?: string | null | undefined;
341
+ split_id?: string | null | undefined;
342
+ external_payment_id?: string | null | undefined;
343
+ external_payment_description?: string | null | undefined;
344
+ payment_booklet_id?: string | null | undefined;
345
+ subscription_id?: string | null | undefined;
346
+ credit_card_transaction?: string | null | undefined;
347
+ customer_id?: string | null | undefined;
348
+ customer_ref?: string | null | undefined;
349
+ customer_name?: string | null | undefined;
350
+ user_id?: string | null | undefined;
351
+ advance_fee?: string | null | undefined;
352
+ estimated_advance_fee?: string | null | undefined;
353
+ original_payment_id?: string | null | undefined;
354
+ double_payment_id?: string | null | undefined;
355
+ per_day_interest_value?: string | null | undefined;
356
+ interest?: string | null | undefined;
357
+ discount?: string | null | undefined;
358
+ duplicated_invoice_id?: string | null | undefined;
359
+ authorized_at?: string | null | undefined;
360
+ authorized_at_iso?: string | null | undefined;
361
+ expired_at?: string | null | undefined;
362
+ expired_at_iso?: string | null | undefined;
363
+ refunded_at?: string | null | undefined;
364
+ refunded_at_iso?: string | null | undefined;
365
+ canceled_at?: string | null | undefined;
366
+ canceled_at_iso?: string | null | undefined;
367
+ protested_at?: string | null | undefined;
368
+ protested_at_iso?: string | null | undefined;
369
+ chargeback_at?: string | null | undefined;
370
+ chargeback_at_iso?: string | null | undefined;
371
+ occurrence_date?: string | null | undefined;
372
+ refundable?: string | null | undefined;
373
+ installments?: string | null | undefined;
374
+ payment_method?: string | null | undefined;
375
+ financial_return_dates?: string | null | undefined;
376
+ split_rules?: string | null | undefined;
377
+ }, {
378
+ id: string;
379
+ status: string;
380
+ due_date: string;
381
+ currency: string;
382
+ email: string;
383
+ items_total_cents: number;
384
+ total_cents: number;
385
+ total_paid_cents: number;
386
+ payable_with: string;
387
+ early_payment_discount: boolean;
388
+ updated_at: string;
389
+ payer_name: string;
390
+ payer_cpf_cnpj: string;
391
+ late_payment_fine: number;
392
+ variables: {
393
+ value: string;
394
+ variable: string;
395
+ }[];
396
+ custom_variables: unknown[];
397
+ logs: {
398
+ id: string;
399
+ description: string;
400
+ notes: string;
401
+ created_at: string;
402
+ }[];
403
+ created_at: string;
404
+ account_id: string;
405
+ bank_account_branch: string;
406
+ bank_account_number: string;
407
+ account_name: string;
408
+ secure_id: string;
409
+ secure_url: string;
410
+ total: string;
411
+ taxes_paid: string;
412
+ total_paid: string;
413
+ total_overpaid: string;
414
+ total_refunded: string;
415
+ commission: string;
416
+ fines_on_occurrence_day: string;
417
+ total_on_occurrence_day: string;
418
+ fines_on_occurrence_day_cents: number;
419
+ total_on_occurrence_day_cents: number;
420
+ refunded_cents: number;
421
+ remaining_captured_cents: number;
422
+ paid: string;
423
+ per_day_interest: boolean;
424
+ per_day_interest_cents: number;
425
+ bank_slip_extra_due: number;
426
+ created_at_iso: string;
427
+ transaction_number: number;
428
+ bank_slip: {
429
+ digitable_line: string;
430
+ barcode_data: string;
431
+ barcode: string;
432
+ bank_slip_url: string;
433
+ bank_slip_bank: number;
434
+ bank_slip_status: string;
435
+ recipient_cpf_cnpj: string;
436
+ bank_slip_error_code?: string | null | undefined;
437
+ bank_slip_error_message?: string | null | undefined;
438
+ };
439
+ pix: {
440
+ status: string;
441
+ qrcode: string;
442
+ qrcode_text: string;
443
+ payer_name?: string | null | undefined;
444
+ payer_cpf_cnpj?: string | null | undefined;
445
+ end_to_end_id?: string | null | undefined;
446
+ end_to_end_refund_id?: string | null | undefined;
447
+ account_number_last_digits?: string | null | undefined;
448
+ };
449
+ items: {
450
+ id: string;
451
+ description: string;
452
+ updated_at: string;
453
+ created_at: string;
454
+ price_cents: number;
455
+ quantity: number;
456
+ price: string;
457
+ }[];
458
+ early_payment_discounts: unknown[];
459
+ discount_cents?: string | null | undefined;
460
+ notification_url?: string | null | undefined;
461
+ return_url?: string | null | undefined;
462
+ tax_cents?: string | null | undefined;
463
+ taxes_paid_cents?: string | null | undefined;
464
+ paid_at?: string | null | undefined;
465
+ paid_cents?: string | null | undefined;
466
+ cc_emails?: string | null | undefined;
467
+ financial_return_date?: string | null | undefined;
468
+ overpaid_cents?: string | null | undefined;
469
+ ignore_due_email?: string | null | undefined;
470
+ ignore_canceled_email?: string | null | undefined;
471
+ advance_fee_cents?: string | null | undefined;
472
+ commission_cents?: string | null | undefined;
473
+ order_id?: string | null | undefined;
474
+ credit_card_brand?: string | null | undefined;
475
+ credit_card_bin?: string | null | undefined;
476
+ credit_card_last_4?: string | null | undefined;
477
+ credit_card_captured_at?: string | null | undefined;
478
+ credit_card_tid?: string | null | undefined;
479
+ external_reference?: string | null | undefined;
480
+ max_installments_value?: string | null | undefined;
481
+ payer_email?: string | null | undefined;
482
+ payer_phone?: string | null | undefined;
483
+ payer_phone_prefix?: string | null | undefined;
484
+ payer_address_zip_code?: string | null | undefined;
485
+ payer_address_street?: string | null | undefined;
486
+ payer_address_district?: string | null | undefined;
487
+ payer_address_city?: string | null | undefined;
488
+ payer_address_state?: string | null | undefined;
489
+ payer_address_number?: string | null | undefined;
490
+ payer_address_complement?: string | null | undefined;
491
+ payer_address_country?: string | null | undefined;
492
+ late_payment_fine_cents?: string | null | undefined;
493
+ split_id?: string | null | undefined;
494
+ external_payment_id?: string | null | undefined;
495
+ external_payment_description?: string | null | undefined;
496
+ payment_booklet_id?: string | null | undefined;
497
+ subscription_id?: string | null | undefined;
498
+ credit_card_transaction?: string | null | undefined;
499
+ customer_id?: string | null | undefined;
500
+ customer_ref?: string | null | undefined;
501
+ customer_name?: string | null | undefined;
502
+ user_id?: string | null | undefined;
503
+ advance_fee?: string | null | undefined;
504
+ estimated_advance_fee?: string | null | undefined;
505
+ original_payment_id?: string | null | undefined;
506
+ double_payment_id?: string | null | undefined;
507
+ per_day_interest_value?: string | null | undefined;
508
+ interest?: string | null | undefined;
509
+ discount?: string | null | undefined;
510
+ duplicated_invoice_id?: string | null | undefined;
511
+ authorized_at?: string | null | undefined;
512
+ authorized_at_iso?: string | null | undefined;
513
+ expired_at?: string | null | undefined;
514
+ expired_at_iso?: string | null | undefined;
515
+ refunded_at?: string | null | undefined;
516
+ refunded_at_iso?: string | null | undefined;
517
+ canceled_at?: string | null | undefined;
518
+ canceled_at_iso?: string | null | undefined;
519
+ protested_at?: string | null | undefined;
520
+ protested_at_iso?: string | null | undefined;
521
+ chargeback_at?: string | null | undefined;
522
+ chargeback_at_iso?: string | null | undefined;
523
+ occurrence_date?: string | null | undefined;
524
+ refundable?: string | null | undefined;
525
+ installments?: string | null | undefined;
526
+ payment_method?: string | null | undefined;
527
+ financial_return_dates?: string | null | undefined;
528
+ split_rules?: string | null | undefined;
529
+ }>;
530
+ type IuguInvoice = z.infer<typeof IuguInvoiceSchema>;
531
+
532
+ export { IuguInvoice, IuguInvoiceSchema };