@_henriquewilson/gabirubi-domain 1.3.69 → 1.3.70

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.
@@ -74,13 +74,13 @@ declare const IuguInvoiceSchema: z.ZodObject<{
74
74
  }, "strip", z.ZodTypeAny, {
75
75
  id: string;
76
76
  description: string;
77
- created_at: string;
78
77
  notes: string;
78
+ created_at: string;
79
79
  }, {
80
80
  id: string;
81
81
  description: string;
82
- created_at: string;
83
82
  notes: string;
83
+ created_at: string;
84
84
  }>, "many">>>>;
85
85
  credit_card_transaction: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
86
86
  account_id: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
@@ -208,35 +208,28 @@ declare const IuguInvoiceSchema: z.ZodObject<{
208
208
  id: string;
209
209
  description: string;
210
210
  price: string;
211
- quantity: number;
212
- created_at: string;
213
211
  updated_at: string;
212
+ created_at: string;
214
213
  price_cents: number;
214
+ quantity: number;
215
215
  }, {
216
216
  id: string;
217
217
  description: string;
218
218
  price: string;
219
- quantity: number;
220
- created_at: string;
221
219
  updated_at: string;
220
+ created_at: string;
222
221
  price_cents: number;
222
+ quantity: number;
223
223
  }>, "many">>>>;
224
224
  early_payment_discounts: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodUnknown, "many">>>>;
225
225
  split_rules: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
226
226
  }, "strip", z.ZodTypeAny, {
227
227
  id: string;
228
- status?: "pending" | "canceled" | "paid" | "in_analysis" | "draft" | "partially_paid" | "refunded" | "expired" | "in_protest" | "chargeback" | "externally_paid" | "invited" | null | undefined;
228
+ status?: "pending" | "paid" | "canceled" | "in_analysis" | "draft" | "partially_paid" | "refunded" | "expired" | "in_protest" | "chargeback" | "externally_paid" | "invited" | null | undefined;
229
229
  email?: string | null | undefined;
230
- discount?: string | null | undefined;
231
- currency?: string | null | undefined;
232
- total?: string | null | undefined;
233
- created_at?: string | null | undefined;
234
- updated_at?: string | null | undefined;
235
- paid_at?: string | null | undefined;
236
- canceled_at?: string | null | undefined;
237
- expired_at?: string | null | undefined;
238
230
  paid?: string | null | undefined;
239
231
  due_date?: string | null | undefined;
232
+ currency?: string | null | undefined;
240
233
  discount_cents?: string | null | undefined;
241
234
  items_total_cents?: number | null | undefined;
242
235
  notification_url?: string | null | undefined;
@@ -245,6 +238,7 @@ declare const IuguInvoiceSchema: z.ZodObject<{
245
238
  total_cents?: number | null | undefined;
246
239
  total_paid_cents?: number | null | undefined;
247
240
  taxes_paid_cents?: string | null | undefined;
241
+ paid_at?: string | null | undefined;
248
242
  paid_cents?: number | null | undefined;
249
243
  cc_emails?: string | null | undefined;
250
244
  financial_return_date?: string | null | undefined;
@@ -277,6 +271,7 @@ declare const IuguInvoiceSchema: z.ZodObject<{
277
271
  commission_cents?: string | null | undefined;
278
272
  early_payment_discount?: boolean | null | undefined;
279
273
  order_id?: string | null | undefined;
274
+ updated_at?: string | null | undefined;
280
275
  credit_card_brand?: string | null | undefined;
281
276
  credit_card_bin?: string | null | undefined;
282
277
  credit_card_last_4?: string | null | undefined;
@@ -309,11 +304,12 @@ declare const IuguInvoiceSchema: z.ZodObject<{
309
304
  variable: string;
310
305
  }[] | null | undefined;
311
306
  custom_variables?: any[] | null | undefined;
307
+ created_at?: string | null | undefined;
312
308
  logs?: {
313
309
  id: string;
314
310
  description: string;
315
- created_at: string;
316
311
  notes: string;
312
+ created_at: string;
317
313
  }[] | null | undefined;
318
314
  credit_card_transaction?: string | null | undefined;
319
315
  account_id?: string | null | undefined;
@@ -326,6 +322,7 @@ declare const IuguInvoiceSchema: z.ZodObject<{
326
322
  customer_ref?: string | null | undefined;
327
323
  customer_name?: string | null | undefined;
328
324
  user_id?: string | null | undefined;
325
+ total?: string | null | undefined;
329
326
  taxes_paid?: string | null | undefined;
330
327
  total_paid?: string | null | undefined;
331
328
  total_overpaid?: string | null | undefined;
@@ -345,14 +342,17 @@ declare const IuguInvoiceSchema: z.ZodObject<{
345
342
  per_day_interest_value?: string | null | undefined;
346
343
  per_day_interest_cents?: number | null | undefined;
347
344
  interest?: string | null | undefined;
345
+ discount?: string | null | undefined;
348
346
  duplicated_invoice_id?: string | null | undefined;
349
347
  bank_slip_extra_due?: number | null | undefined;
350
348
  created_at_iso?: string | null | undefined;
351
349
  authorized_at?: string | null | undefined;
352
350
  authorized_at_iso?: string | null | undefined;
351
+ expired_at?: string | null | undefined;
353
352
  expired_at_iso?: string | null | undefined;
354
353
  refunded_at?: string | null | undefined;
355
354
  refunded_at_iso?: string | null | undefined;
355
+ canceled_at?: string | null | undefined;
356
356
  canceled_at_iso?: string | null | undefined;
357
357
  protested_at?: string | null | undefined;
358
358
  protested_at_iso?: string | null | undefined;
@@ -368,27 +368,20 @@ declare const IuguInvoiceSchema: z.ZodObject<{
368
368
  id: string;
369
369
  description: string;
370
370
  price: string;
371
- quantity: number;
372
- created_at: string;
373
371
  updated_at: string;
372
+ created_at: string;
374
373
  price_cents: number;
374
+ quantity: number;
375
375
  }[] | null | undefined;
376
376
  early_payment_discounts?: unknown[] | null | undefined;
377
377
  split_rules?: string | null | undefined;
378
378
  }, {
379
379
  id: string;
380
- status?: "pending" | "canceled" | "paid" | "in_analysis" | "draft" | "partially_paid" | "refunded" | "expired" | "in_protest" | "chargeback" | "externally_paid" | "invited" | null | undefined;
380
+ status?: "pending" | "paid" | "canceled" | "in_analysis" | "draft" | "partially_paid" | "refunded" | "expired" | "in_protest" | "chargeback" | "externally_paid" | "invited" | null | undefined;
381
381
  email?: string | null | undefined;
382
- discount?: string | null | undefined;
383
- currency?: string | null | undefined;
384
- total?: string | null | undefined;
385
- created_at?: string | null | undefined;
386
- updated_at?: string | null | undefined;
387
- paid_at?: string | null | undefined;
388
- canceled_at?: string | null | undefined;
389
- expired_at?: string | null | undefined;
390
382
  paid?: string | null | undefined;
391
383
  due_date?: string | null | undefined;
384
+ currency?: string | null | undefined;
392
385
  discount_cents?: string | null | undefined;
393
386
  items_total_cents?: number | null | undefined;
394
387
  notification_url?: string | null | undefined;
@@ -397,6 +390,7 @@ declare const IuguInvoiceSchema: z.ZodObject<{
397
390
  total_cents?: number | null | undefined;
398
391
  total_paid_cents?: number | null | undefined;
399
392
  taxes_paid_cents?: string | null | undefined;
393
+ paid_at?: string | null | undefined;
400
394
  paid_cents?: number | null | undefined;
401
395
  cc_emails?: string | null | undefined;
402
396
  financial_return_date?: string | null | undefined;
@@ -429,6 +423,7 @@ declare const IuguInvoiceSchema: z.ZodObject<{
429
423
  commission_cents?: string | null | undefined;
430
424
  early_payment_discount?: boolean | null | undefined;
431
425
  order_id?: string | null | undefined;
426
+ updated_at?: string | null | undefined;
432
427
  credit_card_brand?: string | null | undefined;
433
428
  credit_card_bin?: string | null | undefined;
434
429
  credit_card_last_4?: string | null | undefined;
@@ -461,11 +456,12 @@ declare const IuguInvoiceSchema: z.ZodObject<{
461
456
  variable: string;
462
457
  }[] | null | undefined;
463
458
  custom_variables?: any[] | null | undefined;
459
+ created_at?: string | null | undefined;
464
460
  logs?: {
465
461
  id: string;
466
462
  description: string;
467
- created_at: string;
468
463
  notes: string;
464
+ created_at: string;
469
465
  }[] | null | undefined;
470
466
  credit_card_transaction?: string | null | undefined;
471
467
  account_id?: string | null | undefined;
@@ -478,6 +474,7 @@ declare const IuguInvoiceSchema: z.ZodObject<{
478
474
  customer_ref?: string | null | undefined;
479
475
  customer_name?: string | null | undefined;
480
476
  user_id?: string | null | undefined;
477
+ total?: string | null | undefined;
481
478
  taxes_paid?: string | null | undefined;
482
479
  total_paid?: string | null | undefined;
483
480
  total_overpaid?: string | null | undefined;
@@ -497,14 +494,17 @@ declare const IuguInvoiceSchema: z.ZodObject<{
497
494
  per_day_interest_value?: string | null | undefined;
498
495
  per_day_interest_cents?: number | null | undefined;
499
496
  interest?: string | null | undefined;
497
+ discount?: string | null | undefined;
500
498
  duplicated_invoice_id?: string | null | undefined;
501
499
  bank_slip_extra_due?: number | null | undefined;
502
500
  created_at_iso?: string | null | undefined;
503
501
  authorized_at?: string | null | undefined;
504
502
  authorized_at_iso?: string | null | undefined;
503
+ expired_at?: string | null | undefined;
505
504
  expired_at_iso?: string | null | undefined;
506
505
  refunded_at?: string | null | undefined;
507
506
  refunded_at_iso?: string | null | undefined;
507
+ canceled_at?: string | null | undefined;
508
508
  canceled_at_iso?: string | null | undefined;
509
509
  protested_at?: string | null | undefined;
510
510
  protested_at_iso?: string | null | undefined;
@@ -520,15 +520,57 @@ declare const IuguInvoiceSchema: z.ZodObject<{
520
520
  id: string;
521
521
  description: string;
522
522
  price: string;
523
- quantity: number;
524
- created_at: string;
525
523
  updated_at: string;
524
+ created_at: string;
526
525
  price_cents: number;
526
+ quantity: number;
527
527
  }[] | null | undefined;
528
528
  early_payment_discounts?: unknown[] | null | undefined;
529
529
  split_rules?: string | null | undefined;
530
530
  }>;
531
+ declare const IuguInvoiceVariablesSchema: z.ZodEffects<z.ZodObject<{
532
+ product: z.ZodString;
533
+ product_id: z.ZodUnion<[z.ZodString, z.ZodNumber]>;
534
+ coupon: z.ZodOptional<z.ZodString>;
535
+ recurrency: z.ZodNumber;
536
+ plan: z.ZodString;
537
+ plan_id: z.ZodUnion<[z.ZodString, z.ZodNumber]>;
538
+ others: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodString>, "many">;
539
+ }, "strip", z.ZodTypeAny, {
540
+ product_id: string | number;
541
+ product: string;
542
+ recurrency: number;
543
+ plan: string;
544
+ plan_id: string | number;
545
+ others: Record<string, string>[];
546
+ coupon?: string | undefined;
547
+ }, {
548
+ product_id: string | number;
549
+ product: string;
550
+ recurrency: number;
551
+ plan: string;
552
+ plan_id: string | number;
553
+ others: Record<string, string>[];
554
+ coupon?: string | undefined;
555
+ }>, {
556
+ product: string;
557
+ productId: string | number;
558
+ coupon: string | undefined;
559
+ recurrency: number;
560
+ plan: string;
561
+ planId: string | number;
562
+ others: Record<string, string>[];
563
+ }, {
564
+ product_id: string | number;
565
+ product: string;
566
+ recurrency: number;
567
+ plan: string;
568
+ plan_id: string | number;
569
+ others: Record<string, string>[];
570
+ coupon?: string | undefined;
571
+ }>;
572
+ type IuguInvoiceVariables = z.infer<typeof IuguInvoiceVariablesSchema>;
531
573
  type IuguInvoice = z.infer<typeof IuguInvoiceSchema>;
532
574
  type IuguInvoiceStatus = z.infer<typeof IuguInvoiceStatusSchema>;
533
575
 
534
- export { type IuguInvoice, IuguInvoiceSchema, type IuguInvoiceStatus, IuguInvoiceStatusSchema };
576
+ export { type IuguInvoice, IuguInvoiceSchema, type IuguInvoiceStatus, IuguInvoiceStatusSchema, type IuguInvoiceVariables, IuguInvoiceVariablesSchema };
@@ -74,13 +74,13 @@ declare const IuguInvoiceSchema: z.ZodObject<{
74
74
  }, "strip", z.ZodTypeAny, {
75
75
  id: string;
76
76
  description: string;
77
- created_at: string;
78
77
  notes: string;
78
+ created_at: string;
79
79
  }, {
80
80
  id: string;
81
81
  description: string;
82
- created_at: string;
83
82
  notes: string;
83
+ created_at: string;
84
84
  }>, "many">>>>;
85
85
  credit_card_transaction: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
86
86
  account_id: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
@@ -208,35 +208,28 @@ declare const IuguInvoiceSchema: z.ZodObject<{
208
208
  id: string;
209
209
  description: string;
210
210
  price: string;
211
- quantity: number;
212
- created_at: string;
213
211
  updated_at: string;
212
+ created_at: string;
214
213
  price_cents: number;
214
+ quantity: number;
215
215
  }, {
216
216
  id: string;
217
217
  description: string;
218
218
  price: string;
219
- quantity: number;
220
- created_at: string;
221
219
  updated_at: string;
220
+ created_at: string;
222
221
  price_cents: number;
222
+ quantity: number;
223
223
  }>, "many">>>>;
224
224
  early_payment_discounts: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodUnknown, "many">>>>;
225
225
  split_rules: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
226
226
  }, "strip", z.ZodTypeAny, {
227
227
  id: string;
228
- status?: "pending" | "canceled" | "paid" | "in_analysis" | "draft" | "partially_paid" | "refunded" | "expired" | "in_protest" | "chargeback" | "externally_paid" | "invited" | null | undefined;
228
+ status?: "pending" | "paid" | "canceled" | "in_analysis" | "draft" | "partially_paid" | "refunded" | "expired" | "in_protest" | "chargeback" | "externally_paid" | "invited" | null | undefined;
229
229
  email?: string | null | undefined;
230
- discount?: string | null | undefined;
231
- currency?: string | null | undefined;
232
- total?: string | null | undefined;
233
- created_at?: string | null | undefined;
234
- updated_at?: string | null | undefined;
235
- paid_at?: string | null | undefined;
236
- canceled_at?: string | null | undefined;
237
- expired_at?: string | null | undefined;
238
230
  paid?: string | null | undefined;
239
231
  due_date?: string | null | undefined;
232
+ currency?: string | null | undefined;
240
233
  discount_cents?: string | null | undefined;
241
234
  items_total_cents?: number | null | undefined;
242
235
  notification_url?: string | null | undefined;
@@ -245,6 +238,7 @@ declare const IuguInvoiceSchema: z.ZodObject<{
245
238
  total_cents?: number | null | undefined;
246
239
  total_paid_cents?: number | null | undefined;
247
240
  taxes_paid_cents?: string | null | undefined;
241
+ paid_at?: string | null | undefined;
248
242
  paid_cents?: number | null | undefined;
249
243
  cc_emails?: string | null | undefined;
250
244
  financial_return_date?: string | null | undefined;
@@ -277,6 +271,7 @@ declare const IuguInvoiceSchema: z.ZodObject<{
277
271
  commission_cents?: string | null | undefined;
278
272
  early_payment_discount?: boolean | null | undefined;
279
273
  order_id?: string | null | undefined;
274
+ updated_at?: string | null | undefined;
280
275
  credit_card_brand?: string | null | undefined;
281
276
  credit_card_bin?: string | null | undefined;
282
277
  credit_card_last_4?: string | null | undefined;
@@ -309,11 +304,12 @@ declare const IuguInvoiceSchema: z.ZodObject<{
309
304
  variable: string;
310
305
  }[] | null | undefined;
311
306
  custom_variables?: any[] | null | undefined;
307
+ created_at?: string | null | undefined;
312
308
  logs?: {
313
309
  id: string;
314
310
  description: string;
315
- created_at: string;
316
311
  notes: string;
312
+ created_at: string;
317
313
  }[] | null | undefined;
318
314
  credit_card_transaction?: string | null | undefined;
319
315
  account_id?: string | null | undefined;
@@ -326,6 +322,7 @@ declare const IuguInvoiceSchema: z.ZodObject<{
326
322
  customer_ref?: string | null | undefined;
327
323
  customer_name?: string | null | undefined;
328
324
  user_id?: string | null | undefined;
325
+ total?: string | null | undefined;
329
326
  taxes_paid?: string | null | undefined;
330
327
  total_paid?: string | null | undefined;
331
328
  total_overpaid?: string | null | undefined;
@@ -345,14 +342,17 @@ declare const IuguInvoiceSchema: z.ZodObject<{
345
342
  per_day_interest_value?: string | null | undefined;
346
343
  per_day_interest_cents?: number | null | undefined;
347
344
  interest?: string | null | undefined;
345
+ discount?: string | null | undefined;
348
346
  duplicated_invoice_id?: string | null | undefined;
349
347
  bank_slip_extra_due?: number | null | undefined;
350
348
  created_at_iso?: string | null | undefined;
351
349
  authorized_at?: string | null | undefined;
352
350
  authorized_at_iso?: string | null | undefined;
351
+ expired_at?: string | null | undefined;
353
352
  expired_at_iso?: string | null | undefined;
354
353
  refunded_at?: string | null | undefined;
355
354
  refunded_at_iso?: string | null | undefined;
355
+ canceled_at?: string | null | undefined;
356
356
  canceled_at_iso?: string | null | undefined;
357
357
  protested_at?: string | null | undefined;
358
358
  protested_at_iso?: string | null | undefined;
@@ -368,27 +368,20 @@ declare const IuguInvoiceSchema: z.ZodObject<{
368
368
  id: string;
369
369
  description: string;
370
370
  price: string;
371
- quantity: number;
372
- created_at: string;
373
371
  updated_at: string;
372
+ created_at: string;
374
373
  price_cents: number;
374
+ quantity: number;
375
375
  }[] | null | undefined;
376
376
  early_payment_discounts?: unknown[] | null | undefined;
377
377
  split_rules?: string | null | undefined;
378
378
  }, {
379
379
  id: string;
380
- status?: "pending" | "canceled" | "paid" | "in_analysis" | "draft" | "partially_paid" | "refunded" | "expired" | "in_protest" | "chargeback" | "externally_paid" | "invited" | null | undefined;
380
+ status?: "pending" | "paid" | "canceled" | "in_analysis" | "draft" | "partially_paid" | "refunded" | "expired" | "in_protest" | "chargeback" | "externally_paid" | "invited" | null | undefined;
381
381
  email?: string | null | undefined;
382
- discount?: string | null | undefined;
383
- currency?: string | null | undefined;
384
- total?: string | null | undefined;
385
- created_at?: string | null | undefined;
386
- updated_at?: string | null | undefined;
387
- paid_at?: string | null | undefined;
388
- canceled_at?: string | null | undefined;
389
- expired_at?: string | null | undefined;
390
382
  paid?: string | null | undefined;
391
383
  due_date?: string | null | undefined;
384
+ currency?: string | null | undefined;
392
385
  discount_cents?: string | null | undefined;
393
386
  items_total_cents?: number | null | undefined;
394
387
  notification_url?: string | null | undefined;
@@ -397,6 +390,7 @@ declare const IuguInvoiceSchema: z.ZodObject<{
397
390
  total_cents?: number | null | undefined;
398
391
  total_paid_cents?: number | null | undefined;
399
392
  taxes_paid_cents?: string | null | undefined;
393
+ paid_at?: string | null | undefined;
400
394
  paid_cents?: number | null | undefined;
401
395
  cc_emails?: string | null | undefined;
402
396
  financial_return_date?: string | null | undefined;
@@ -429,6 +423,7 @@ declare const IuguInvoiceSchema: z.ZodObject<{
429
423
  commission_cents?: string | null | undefined;
430
424
  early_payment_discount?: boolean | null | undefined;
431
425
  order_id?: string | null | undefined;
426
+ updated_at?: string | null | undefined;
432
427
  credit_card_brand?: string | null | undefined;
433
428
  credit_card_bin?: string | null | undefined;
434
429
  credit_card_last_4?: string | null | undefined;
@@ -461,11 +456,12 @@ declare const IuguInvoiceSchema: z.ZodObject<{
461
456
  variable: string;
462
457
  }[] | null | undefined;
463
458
  custom_variables?: any[] | null | undefined;
459
+ created_at?: string | null | undefined;
464
460
  logs?: {
465
461
  id: string;
466
462
  description: string;
467
- created_at: string;
468
463
  notes: string;
464
+ created_at: string;
469
465
  }[] | null | undefined;
470
466
  credit_card_transaction?: string | null | undefined;
471
467
  account_id?: string | null | undefined;
@@ -478,6 +474,7 @@ declare const IuguInvoiceSchema: z.ZodObject<{
478
474
  customer_ref?: string | null | undefined;
479
475
  customer_name?: string | null | undefined;
480
476
  user_id?: string | null | undefined;
477
+ total?: string | null | undefined;
481
478
  taxes_paid?: string | null | undefined;
482
479
  total_paid?: string | null | undefined;
483
480
  total_overpaid?: string | null | undefined;
@@ -497,14 +494,17 @@ declare const IuguInvoiceSchema: z.ZodObject<{
497
494
  per_day_interest_value?: string | null | undefined;
498
495
  per_day_interest_cents?: number | null | undefined;
499
496
  interest?: string | null | undefined;
497
+ discount?: string | null | undefined;
500
498
  duplicated_invoice_id?: string | null | undefined;
501
499
  bank_slip_extra_due?: number | null | undefined;
502
500
  created_at_iso?: string | null | undefined;
503
501
  authorized_at?: string | null | undefined;
504
502
  authorized_at_iso?: string | null | undefined;
503
+ expired_at?: string | null | undefined;
505
504
  expired_at_iso?: string | null | undefined;
506
505
  refunded_at?: string | null | undefined;
507
506
  refunded_at_iso?: string | null | undefined;
507
+ canceled_at?: string | null | undefined;
508
508
  canceled_at_iso?: string | null | undefined;
509
509
  protested_at?: string | null | undefined;
510
510
  protested_at_iso?: string | null | undefined;
@@ -520,15 +520,57 @@ declare const IuguInvoiceSchema: z.ZodObject<{
520
520
  id: string;
521
521
  description: string;
522
522
  price: string;
523
- quantity: number;
524
- created_at: string;
525
523
  updated_at: string;
524
+ created_at: string;
526
525
  price_cents: number;
526
+ quantity: number;
527
527
  }[] | null | undefined;
528
528
  early_payment_discounts?: unknown[] | null | undefined;
529
529
  split_rules?: string | null | undefined;
530
530
  }>;
531
+ declare const IuguInvoiceVariablesSchema: z.ZodEffects<z.ZodObject<{
532
+ product: z.ZodString;
533
+ product_id: z.ZodUnion<[z.ZodString, z.ZodNumber]>;
534
+ coupon: z.ZodOptional<z.ZodString>;
535
+ recurrency: z.ZodNumber;
536
+ plan: z.ZodString;
537
+ plan_id: z.ZodUnion<[z.ZodString, z.ZodNumber]>;
538
+ others: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodString>, "many">;
539
+ }, "strip", z.ZodTypeAny, {
540
+ product_id: string | number;
541
+ product: string;
542
+ recurrency: number;
543
+ plan: string;
544
+ plan_id: string | number;
545
+ others: Record<string, string>[];
546
+ coupon?: string | undefined;
547
+ }, {
548
+ product_id: string | number;
549
+ product: string;
550
+ recurrency: number;
551
+ plan: string;
552
+ plan_id: string | number;
553
+ others: Record<string, string>[];
554
+ coupon?: string | undefined;
555
+ }>, {
556
+ product: string;
557
+ productId: string | number;
558
+ coupon: string | undefined;
559
+ recurrency: number;
560
+ plan: string;
561
+ planId: string | number;
562
+ others: Record<string, string>[];
563
+ }, {
564
+ product_id: string | number;
565
+ product: string;
566
+ recurrency: number;
567
+ plan: string;
568
+ plan_id: string | number;
569
+ others: Record<string, string>[];
570
+ coupon?: string | undefined;
571
+ }>;
572
+ type IuguInvoiceVariables = z.infer<typeof IuguInvoiceVariablesSchema>;
531
573
  type IuguInvoice = z.infer<typeof IuguInvoiceSchema>;
532
574
  type IuguInvoiceStatus = z.infer<typeof IuguInvoiceStatusSchema>;
533
575
 
534
- export { type IuguInvoice, IuguInvoiceSchema, type IuguInvoiceStatus, IuguInvoiceStatusSchema };
576
+ export { type IuguInvoice, IuguInvoiceSchema, type IuguInvoiceStatus, IuguInvoiceStatusSchema, type IuguInvoiceVariables, IuguInvoiceVariablesSchema };