@mohasinac/appkit 3.2.6 → 3.2.7

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.
Files changed (53) hide show
  1. package/dist/_internal/shared/actions/action-registry.js +62 -0
  2. package/dist/constants/api-endpoints.d.ts +12 -0
  3. package/dist/constants/api-endpoints.js +4 -0
  4. package/dist/features/about/components/PublicProfileView.js +8 -5
  5. package/dist/features/addresses/repository/addresses.repository.d.ts +14 -1
  6. package/dist/features/addresses/repository/addresses.repository.js +122 -1
  7. package/dist/features/addresses/schemas/firestore.d.ts +22 -3
  8. package/dist/features/addresses/schemas/firestore.js +25 -0
  9. package/dist/features/addresses/schemas/index.d.ts +2 -2
  10. package/dist/features/admin/components/AdminAddressClustersView.d.ts +5 -0
  11. package/dist/features/admin/components/AdminAddressClustersView.js +38 -0
  12. package/dist/features/admin/components/AdminAddressesView.d.ts +5 -0
  13. package/dist/features/admin/components/AdminAddressesView.js +137 -0
  14. package/dist/features/admin/components/AdminPaymentClustersView.d.ts +5 -0
  15. package/dist/features/admin/components/AdminPaymentClustersView.js +37 -0
  16. package/dist/features/admin/components/AdminPaymentMethodsView.d.ts +5 -0
  17. package/dist/features/admin/components/AdminPaymentMethodsView.js +130 -0
  18. package/dist/features/admin/components/index.d.ts +8 -0
  19. package/dist/features/admin/components/index.js +4 -0
  20. package/dist/features/auth/actions/profile-actions.d.ts +3 -1
  21. package/dist/features/auth/actions/profile-actions.js +29 -2
  22. package/dist/features/cart/schemas/index.d.ts +6 -6
  23. package/dist/features/orders/schemas/index.d.ts +4 -4
  24. package/dist/features/payments/repository/saved-payment-methods.repository.d.ts +48 -0
  25. package/dist/features/payments/repository/saved-payment-methods.repository.js +236 -0
  26. package/dist/features/payments/schemas/index.d.ts +1 -0
  27. package/dist/features/payments/schemas/index.js +1 -0
  28. package/dist/features/payments/schemas/saved-methods-firestore.d.ts +63 -0
  29. package/dist/features/payments/schemas/saved-methods-firestore.js +60 -0
  30. package/dist/features/payments/server.d.ts +2 -0
  31. package/dist/features/payments/server.js +2 -0
  32. package/dist/features/promotions/schemas/index.d.ts +6 -6
  33. package/dist/features/reviews/repository/reviews.repository.d.ts +12 -0
  34. package/dist/features/reviews/repository/reviews.repository.js +24 -0
  35. package/dist/features/reviews/schemas/firestore.d.ts +5 -1
  36. package/dist/features/reviews/schemas/firestore.js +2 -0
  37. package/dist/features/reviews/schemas/index.d.ts +6 -6
  38. package/dist/features/seller/components/SellerAddressesView.js +7 -3
  39. package/dist/features/support/schemas/index.d.ts +8 -8
  40. package/dist/features/wishlist/schemas/index.d.ts +2 -2
  41. package/dist/index.d.ts +9 -0
  42. package/dist/index.js +10 -0
  43. package/dist/next/routing/route-map.d.ts +8 -0
  44. package/dist/next/routing/route-map.js +4 -0
  45. package/dist/repositories/index.d.ts +1 -0
  46. package/dist/repositories/index.js +1 -0
  47. package/dist/schemas/registry.d.ts +66 -66
  48. package/dist/schemas/webhooks/razorpay.d.ts +50 -50
  49. package/dist/security/index.d.ts +1 -1
  50. package/dist/security/index.js +1 -1
  51. package/dist/security/pii-schemas.d.ts +2 -0
  52. package/dist/security/pii-schemas.js +2 -0
  53. package/package.json +1 -2
@@ -39,6 +39,7 @@ export declare const razorpayPaymentEntitySchema: z.ZodObject<{
39
39
  method?: string | undefined;
40
40
  captured?: boolean | undefined;
41
41
  notes?: Record<string, string> | undefined;
42
+ wallet?: string | null | undefined;
42
43
  tax?: number | undefined;
43
44
  contact?: string | undefined;
44
45
  fee?: number | undefined;
@@ -50,7 +51,6 @@ export declare const razorpayPaymentEntitySchema: z.ZodObject<{
50
51
  amount_refunded?: number | undefined;
51
52
  refund_status?: string | null | undefined;
52
53
  card_id?: string | null | undefined;
53
- wallet?: string | null | undefined;
54
54
  vpa?: string | null | undefined;
55
55
  error_code?: string | null | undefined;
56
56
  error_description?: string | null | undefined;
@@ -69,6 +69,7 @@ export declare const razorpayPaymentEntitySchema: z.ZodObject<{
69
69
  method?: string | undefined;
70
70
  captured?: boolean | undefined;
71
71
  notes?: Record<string, string> | undefined;
72
+ wallet?: string | null | undefined;
72
73
  tax?: number | undefined;
73
74
  contact?: string | undefined;
74
75
  fee?: number | undefined;
@@ -80,7 +81,6 @@ export declare const razorpayPaymentEntitySchema: z.ZodObject<{
80
81
  amount_refunded?: number | undefined;
81
82
  refund_status?: string | null | undefined;
82
83
  card_id?: string | null | undefined;
83
- wallet?: string | null | undefined;
84
84
  vpa?: string | null | undefined;
85
85
  error_code?: string | null | undefined;
86
86
  error_description?: string | null | undefined;
@@ -217,6 +217,7 @@ export declare const razorpayWebhookEnvelopeSchema: z.ZodDiscriminatedUnion<"eve
217
217
  method?: string | undefined;
218
218
  captured?: boolean | undefined;
219
219
  notes?: Record<string, string> | undefined;
220
+ wallet?: string | null | undefined;
220
221
  tax?: number | undefined;
221
222
  contact?: string | undefined;
222
223
  fee?: number | undefined;
@@ -228,7 +229,6 @@ export declare const razorpayWebhookEnvelopeSchema: z.ZodDiscriminatedUnion<"eve
228
229
  amount_refunded?: number | undefined;
229
230
  refund_status?: string | null | undefined;
230
231
  card_id?: string | null | undefined;
231
- wallet?: string | null | undefined;
232
232
  vpa?: string | null | undefined;
233
233
  error_code?: string | null | undefined;
234
234
  error_description?: string | null | undefined;
@@ -247,6 +247,7 @@ export declare const razorpayWebhookEnvelopeSchema: z.ZodDiscriminatedUnion<"eve
247
247
  method?: string | undefined;
248
248
  captured?: boolean | undefined;
249
249
  notes?: Record<string, string> | undefined;
250
+ wallet?: string | null | undefined;
250
251
  tax?: number | undefined;
251
252
  contact?: string | undefined;
252
253
  fee?: number | undefined;
@@ -258,7 +259,6 @@ export declare const razorpayWebhookEnvelopeSchema: z.ZodDiscriminatedUnion<"eve
258
259
  amount_refunded?: number | undefined;
259
260
  refund_status?: string | null | undefined;
260
261
  card_id?: string | null | undefined;
261
- wallet?: string | null | undefined;
262
262
  vpa?: string | null | undefined;
263
263
  error_code?: string | null | undefined;
264
264
  error_description?: string | null | undefined;
@@ -279,6 +279,7 @@ export declare const razorpayWebhookEnvelopeSchema: z.ZodDiscriminatedUnion<"eve
279
279
  method?: string | undefined;
280
280
  captured?: boolean | undefined;
281
281
  notes?: Record<string, string> | undefined;
282
+ wallet?: string | null | undefined;
282
283
  tax?: number | undefined;
283
284
  contact?: string | undefined;
284
285
  fee?: number | undefined;
@@ -290,7 +291,6 @@ export declare const razorpayWebhookEnvelopeSchema: z.ZodDiscriminatedUnion<"eve
290
291
  amount_refunded?: number | undefined;
291
292
  refund_status?: string | null | undefined;
292
293
  card_id?: string | null | undefined;
293
- wallet?: string | null | undefined;
294
294
  vpa?: string | null | undefined;
295
295
  error_code?: string | null | undefined;
296
296
  error_description?: string | null | undefined;
@@ -311,6 +311,7 @@ export declare const razorpayWebhookEnvelopeSchema: z.ZodDiscriminatedUnion<"eve
311
311
  method?: string | undefined;
312
312
  captured?: boolean | undefined;
313
313
  notes?: Record<string, string> | undefined;
314
+ wallet?: string | null | undefined;
314
315
  tax?: number | undefined;
315
316
  contact?: string | undefined;
316
317
  fee?: number | undefined;
@@ -322,7 +323,6 @@ export declare const razorpayWebhookEnvelopeSchema: z.ZodDiscriminatedUnion<"eve
322
323
  amount_refunded?: number | undefined;
323
324
  refund_status?: string | null | undefined;
324
325
  card_id?: string | null | undefined;
325
- wallet?: string | null | undefined;
326
326
  vpa?: string | null | undefined;
327
327
  error_code?: string | null | undefined;
328
328
  error_description?: string | null | undefined;
@@ -345,6 +345,7 @@ export declare const razorpayWebhookEnvelopeSchema: z.ZodDiscriminatedUnion<"eve
345
345
  method?: string | undefined;
346
346
  captured?: boolean | undefined;
347
347
  notes?: Record<string, string> | undefined;
348
+ wallet?: string | null | undefined;
348
349
  tax?: number | undefined;
349
350
  contact?: string | undefined;
350
351
  fee?: number | undefined;
@@ -356,7 +357,6 @@ export declare const razorpayWebhookEnvelopeSchema: z.ZodDiscriminatedUnion<"eve
356
357
  amount_refunded?: number | undefined;
357
358
  refund_status?: string | null | undefined;
358
359
  card_id?: string | null | undefined;
359
- wallet?: string | null | undefined;
360
360
  vpa?: string | null | undefined;
361
361
  error_code?: string | null | undefined;
362
362
  error_description?: string | null | undefined;
@@ -379,6 +379,7 @@ export declare const razorpayWebhookEnvelopeSchema: z.ZodDiscriminatedUnion<"eve
379
379
  method?: string | undefined;
380
380
  captured?: boolean | undefined;
381
381
  notes?: Record<string, string> | undefined;
382
+ wallet?: string | null | undefined;
382
383
  tax?: number | undefined;
383
384
  contact?: string | undefined;
384
385
  fee?: number | undefined;
@@ -390,7 +391,6 @@ export declare const razorpayWebhookEnvelopeSchema: z.ZodDiscriminatedUnion<"eve
390
391
  amount_refunded?: number | undefined;
391
392
  refund_status?: string | null | undefined;
392
393
  card_id?: string | null | undefined;
393
- wallet?: string | null | undefined;
394
394
  vpa?: string | null | undefined;
395
395
  error_code?: string | null | undefined;
396
396
  error_description?: string | null | undefined;
@@ -416,6 +416,7 @@ export declare const razorpayWebhookEnvelopeSchema: z.ZodDiscriminatedUnion<"eve
416
416
  method?: string | undefined;
417
417
  captured?: boolean | undefined;
418
418
  notes?: Record<string, string> | undefined;
419
+ wallet?: string | null | undefined;
419
420
  tax?: number | undefined;
420
421
  contact?: string | undefined;
421
422
  fee?: number | undefined;
@@ -427,7 +428,6 @@ export declare const razorpayWebhookEnvelopeSchema: z.ZodDiscriminatedUnion<"eve
427
428
  amount_refunded?: number | undefined;
428
429
  refund_status?: string | null | undefined;
429
430
  card_id?: string | null | undefined;
430
- wallet?: string | null | undefined;
431
431
  vpa?: string | null | undefined;
432
432
  error_code?: string | null | undefined;
433
433
  error_description?: string | null | undefined;
@@ -456,6 +456,7 @@ export declare const razorpayWebhookEnvelopeSchema: z.ZodDiscriminatedUnion<"eve
456
456
  method?: string | undefined;
457
457
  captured?: boolean | undefined;
458
458
  notes?: Record<string, string> | undefined;
459
+ wallet?: string | null | undefined;
459
460
  tax?: number | undefined;
460
461
  contact?: string | undefined;
461
462
  fee?: number | undefined;
@@ -467,7 +468,6 @@ export declare const razorpayWebhookEnvelopeSchema: z.ZodDiscriminatedUnion<"eve
467
468
  amount_refunded?: number | undefined;
468
469
  refund_status?: string | null | undefined;
469
470
  card_id?: string | null | undefined;
470
- wallet?: string | null | undefined;
471
471
  vpa?: string | null | undefined;
472
472
  error_code?: string | null | undefined;
473
473
  error_description?: string | null | undefined;
@@ -529,6 +529,7 @@ export declare const razorpayWebhookEnvelopeSchema: z.ZodDiscriminatedUnion<"eve
529
529
  method?: string | undefined;
530
530
  captured?: boolean | undefined;
531
531
  notes?: Record<string, string> | undefined;
532
+ wallet?: string | null | undefined;
532
533
  tax?: number | undefined;
533
534
  contact?: string | undefined;
534
535
  fee?: number | undefined;
@@ -540,7 +541,6 @@ export declare const razorpayWebhookEnvelopeSchema: z.ZodDiscriminatedUnion<"eve
540
541
  amount_refunded?: number | undefined;
541
542
  refund_status?: string | null | undefined;
542
543
  card_id?: string | null | undefined;
543
- wallet?: string | null | undefined;
544
544
  vpa?: string | null | undefined;
545
545
  error_code?: string | null | undefined;
546
546
  error_description?: string | null | undefined;
@@ -559,6 +559,7 @@ export declare const razorpayWebhookEnvelopeSchema: z.ZodDiscriminatedUnion<"eve
559
559
  method?: string | undefined;
560
560
  captured?: boolean | undefined;
561
561
  notes?: Record<string, string> | undefined;
562
+ wallet?: string | null | undefined;
562
563
  tax?: number | undefined;
563
564
  contact?: string | undefined;
564
565
  fee?: number | undefined;
@@ -570,7 +571,6 @@ export declare const razorpayWebhookEnvelopeSchema: z.ZodDiscriminatedUnion<"eve
570
571
  amount_refunded?: number | undefined;
571
572
  refund_status?: string | null | undefined;
572
573
  card_id?: string | null | undefined;
573
- wallet?: string | null | undefined;
574
574
  vpa?: string | null | undefined;
575
575
  error_code?: string | null | undefined;
576
576
  error_description?: string | null | undefined;
@@ -591,6 +591,7 @@ export declare const razorpayWebhookEnvelopeSchema: z.ZodDiscriminatedUnion<"eve
591
591
  method?: string | undefined;
592
592
  captured?: boolean | undefined;
593
593
  notes?: Record<string, string> | undefined;
594
+ wallet?: string | null | undefined;
594
595
  tax?: number | undefined;
595
596
  contact?: string | undefined;
596
597
  fee?: number | undefined;
@@ -602,7 +603,6 @@ export declare const razorpayWebhookEnvelopeSchema: z.ZodDiscriminatedUnion<"eve
602
603
  amount_refunded?: number | undefined;
603
604
  refund_status?: string | null | undefined;
604
605
  card_id?: string | null | undefined;
605
- wallet?: string | null | undefined;
606
606
  vpa?: string | null | undefined;
607
607
  error_code?: string | null | undefined;
608
608
  error_description?: string | null | undefined;
@@ -623,6 +623,7 @@ export declare const razorpayWebhookEnvelopeSchema: z.ZodDiscriminatedUnion<"eve
623
623
  method?: string | undefined;
624
624
  captured?: boolean | undefined;
625
625
  notes?: Record<string, string> | undefined;
626
+ wallet?: string | null | undefined;
626
627
  tax?: number | undefined;
627
628
  contact?: string | undefined;
628
629
  fee?: number | undefined;
@@ -634,7 +635,6 @@ export declare const razorpayWebhookEnvelopeSchema: z.ZodDiscriminatedUnion<"eve
634
635
  amount_refunded?: number | undefined;
635
636
  refund_status?: string | null | undefined;
636
637
  card_id?: string | null | undefined;
637
- wallet?: string | null | undefined;
638
638
  vpa?: string | null | undefined;
639
639
  error_code?: string | null | undefined;
640
640
  error_description?: string | null | undefined;
@@ -657,6 +657,7 @@ export declare const razorpayWebhookEnvelopeSchema: z.ZodDiscriminatedUnion<"eve
657
657
  method?: string | undefined;
658
658
  captured?: boolean | undefined;
659
659
  notes?: Record<string, string> | undefined;
660
+ wallet?: string | null | undefined;
660
661
  tax?: number | undefined;
661
662
  contact?: string | undefined;
662
663
  fee?: number | undefined;
@@ -668,7 +669,6 @@ export declare const razorpayWebhookEnvelopeSchema: z.ZodDiscriminatedUnion<"eve
668
669
  amount_refunded?: number | undefined;
669
670
  refund_status?: string | null | undefined;
670
671
  card_id?: string | null | undefined;
671
- wallet?: string | null | undefined;
672
672
  vpa?: string | null | undefined;
673
673
  error_code?: string | null | undefined;
674
674
  error_description?: string | null | undefined;
@@ -691,6 +691,7 @@ export declare const razorpayWebhookEnvelopeSchema: z.ZodDiscriminatedUnion<"eve
691
691
  method?: string | undefined;
692
692
  captured?: boolean | undefined;
693
693
  notes?: Record<string, string> | undefined;
694
+ wallet?: string | null | undefined;
694
695
  tax?: number | undefined;
695
696
  contact?: string | undefined;
696
697
  fee?: number | undefined;
@@ -702,7 +703,6 @@ export declare const razorpayWebhookEnvelopeSchema: z.ZodDiscriminatedUnion<"eve
702
703
  amount_refunded?: number | undefined;
703
704
  refund_status?: string | null | undefined;
704
705
  card_id?: string | null | undefined;
705
- wallet?: string | null | undefined;
706
706
  vpa?: string | null | undefined;
707
707
  error_code?: string | null | undefined;
708
708
  error_description?: string | null | undefined;
@@ -728,6 +728,7 @@ export declare const razorpayWebhookEnvelopeSchema: z.ZodDiscriminatedUnion<"eve
728
728
  method?: string | undefined;
729
729
  captured?: boolean | undefined;
730
730
  notes?: Record<string, string> | undefined;
731
+ wallet?: string | null | undefined;
731
732
  tax?: number | undefined;
732
733
  contact?: string | undefined;
733
734
  fee?: number | undefined;
@@ -739,7 +740,6 @@ export declare const razorpayWebhookEnvelopeSchema: z.ZodDiscriminatedUnion<"eve
739
740
  amount_refunded?: number | undefined;
740
741
  refund_status?: string | null | undefined;
741
742
  card_id?: string | null | undefined;
742
- wallet?: string | null | undefined;
743
743
  vpa?: string | null | undefined;
744
744
  error_code?: string | null | undefined;
745
745
  error_description?: string | null | undefined;
@@ -768,6 +768,7 @@ export declare const razorpayWebhookEnvelopeSchema: z.ZodDiscriminatedUnion<"eve
768
768
  method?: string | undefined;
769
769
  captured?: boolean | undefined;
770
770
  notes?: Record<string, string> | undefined;
771
+ wallet?: string | null | undefined;
771
772
  tax?: number | undefined;
772
773
  contact?: string | undefined;
773
774
  fee?: number | undefined;
@@ -779,7 +780,6 @@ export declare const razorpayWebhookEnvelopeSchema: z.ZodDiscriminatedUnion<"eve
779
780
  amount_refunded?: number | undefined;
780
781
  refund_status?: string | null | undefined;
781
782
  card_id?: string | null | undefined;
782
- wallet?: string | null | undefined;
783
783
  vpa?: string | null | undefined;
784
784
  error_code?: string | null | undefined;
785
785
  error_description?: string | null | undefined;
@@ -841,6 +841,7 @@ export declare const razorpayWebhookEnvelopeSchema: z.ZodDiscriminatedUnion<"eve
841
841
  method?: string | undefined;
842
842
  captured?: boolean | undefined;
843
843
  notes?: Record<string, string> | undefined;
844
+ wallet?: string | null | undefined;
844
845
  tax?: number | undefined;
845
846
  contact?: string | undefined;
846
847
  fee?: number | undefined;
@@ -852,7 +853,6 @@ export declare const razorpayWebhookEnvelopeSchema: z.ZodDiscriminatedUnion<"eve
852
853
  amount_refunded?: number | undefined;
853
854
  refund_status?: string | null | undefined;
854
855
  card_id?: string | null | undefined;
855
- wallet?: string | null | undefined;
856
856
  vpa?: string | null | undefined;
857
857
  error_code?: string | null | undefined;
858
858
  error_description?: string | null | undefined;
@@ -871,6 +871,7 @@ export declare const razorpayWebhookEnvelopeSchema: z.ZodDiscriminatedUnion<"eve
871
871
  method?: string | undefined;
872
872
  captured?: boolean | undefined;
873
873
  notes?: Record<string, string> | undefined;
874
+ wallet?: string | null | undefined;
874
875
  tax?: number | undefined;
875
876
  contact?: string | undefined;
876
877
  fee?: number | undefined;
@@ -882,7 +883,6 @@ export declare const razorpayWebhookEnvelopeSchema: z.ZodDiscriminatedUnion<"eve
882
883
  amount_refunded?: number | undefined;
883
884
  refund_status?: string | null | undefined;
884
885
  card_id?: string | null | undefined;
885
- wallet?: string | null | undefined;
886
886
  vpa?: string | null | undefined;
887
887
  error_code?: string | null | undefined;
888
888
  error_description?: string | null | undefined;
@@ -903,6 +903,7 @@ export declare const razorpayWebhookEnvelopeSchema: z.ZodDiscriminatedUnion<"eve
903
903
  method?: string | undefined;
904
904
  captured?: boolean | undefined;
905
905
  notes?: Record<string, string> | undefined;
906
+ wallet?: string | null | undefined;
906
907
  tax?: number | undefined;
907
908
  contact?: string | undefined;
908
909
  fee?: number | undefined;
@@ -914,7 +915,6 @@ export declare const razorpayWebhookEnvelopeSchema: z.ZodDiscriminatedUnion<"eve
914
915
  amount_refunded?: number | undefined;
915
916
  refund_status?: string | null | undefined;
916
917
  card_id?: string | null | undefined;
917
- wallet?: string | null | undefined;
918
918
  vpa?: string | null | undefined;
919
919
  error_code?: string | null | undefined;
920
920
  error_description?: string | null | undefined;
@@ -935,6 +935,7 @@ export declare const razorpayWebhookEnvelopeSchema: z.ZodDiscriminatedUnion<"eve
935
935
  method?: string | undefined;
936
936
  captured?: boolean | undefined;
937
937
  notes?: Record<string, string> | undefined;
938
+ wallet?: string | null | undefined;
938
939
  tax?: number | undefined;
939
940
  contact?: string | undefined;
940
941
  fee?: number | undefined;
@@ -946,7 +947,6 @@ export declare const razorpayWebhookEnvelopeSchema: z.ZodDiscriminatedUnion<"eve
946
947
  amount_refunded?: number | undefined;
947
948
  refund_status?: string | null | undefined;
948
949
  card_id?: string | null | undefined;
949
- wallet?: string | null | undefined;
950
950
  vpa?: string | null | undefined;
951
951
  error_code?: string | null | undefined;
952
952
  error_description?: string | null | undefined;
@@ -969,6 +969,7 @@ export declare const razorpayWebhookEnvelopeSchema: z.ZodDiscriminatedUnion<"eve
969
969
  method?: string | undefined;
970
970
  captured?: boolean | undefined;
971
971
  notes?: Record<string, string> | undefined;
972
+ wallet?: string | null | undefined;
972
973
  tax?: number | undefined;
973
974
  contact?: string | undefined;
974
975
  fee?: number | undefined;
@@ -980,7 +981,6 @@ export declare const razorpayWebhookEnvelopeSchema: z.ZodDiscriminatedUnion<"eve
980
981
  amount_refunded?: number | undefined;
981
982
  refund_status?: string | null | undefined;
982
983
  card_id?: string | null | undefined;
983
- wallet?: string | null | undefined;
984
984
  vpa?: string | null | undefined;
985
985
  error_code?: string | null | undefined;
986
986
  error_description?: string | null | undefined;
@@ -1003,6 +1003,7 @@ export declare const razorpayWebhookEnvelopeSchema: z.ZodDiscriminatedUnion<"eve
1003
1003
  method?: string | undefined;
1004
1004
  captured?: boolean | undefined;
1005
1005
  notes?: Record<string, string> | undefined;
1006
+ wallet?: string | null | undefined;
1006
1007
  tax?: number | undefined;
1007
1008
  contact?: string | undefined;
1008
1009
  fee?: number | undefined;
@@ -1014,7 +1015,6 @@ export declare const razorpayWebhookEnvelopeSchema: z.ZodDiscriminatedUnion<"eve
1014
1015
  amount_refunded?: number | undefined;
1015
1016
  refund_status?: string | null | undefined;
1016
1017
  card_id?: string | null | undefined;
1017
- wallet?: string | null | undefined;
1018
1018
  vpa?: string | null | undefined;
1019
1019
  error_code?: string | null | undefined;
1020
1020
  error_description?: string | null | undefined;
@@ -1040,6 +1040,7 @@ export declare const razorpayWebhookEnvelopeSchema: z.ZodDiscriminatedUnion<"eve
1040
1040
  method?: string | undefined;
1041
1041
  captured?: boolean | undefined;
1042
1042
  notes?: Record<string, string> | undefined;
1043
+ wallet?: string | null | undefined;
1043
1044
  tax?: number | undefined;
1044
1045
  contact?: string | undefined;
1045
1046
  fee?: number | undefined;
@@ -1051,7 +1052,6 @@ export declare const razorpayWebhookEnvelopeSchema: z.ZodDiscriminatedUnion<"eve
1051
1052
  amount_refunded?: number | undefined;
1052
1053
  refund_status?: string | null | undefined;
1053
1054
  card_id?: string | null | undefined;
1054
- wallet?: string | null | undefined;
1055
1055
  vpa?: string | null | undefined;
1056
1056
  error_code?: string | null | undefined;
1057
1057
  error_description?: string | null | undefined;
@@ -1080,6 +1080,7 @@ export declare const razorpayWebhookEnvelopeSchema: z.ZodDiscriminatedUnion<"eve
1080
1080
  method?: string | undefined;
1081
1081
  captured?: boolean | undefined;
1082
1082
  notes?: Record<string, string> | undefined;
1083
+ wallet?: string | null | undefined;
1083
1084
  tax?: number | undefined;
1084
1085
  contact?: string | undefined;
1085
1086
  fee?: number | undefined;
@@ -1091,7 +1092,6 @@ export declare const razorpayWebhookEnvelopeSchema: z.ZodDiscriminatedUnion<"eve
1091
1092
  amount_refunded?: number | undefined;
1092
1093
  refund_status?: string | null | undefined;
1093
1094
  card_id?: string | null | undefined;
1094
- wallet?: string | null | undefined;
1095
1095
  vpa?: string | null | undefined;
1096
1096
  error_code?: string | null | undefined;
1097
1097
  error_description?: string | null | undefined;
@@ -1230,6 +1230,7 @@ export declare const razorpayWebhookEnvelopeSchema: z.ZodDiscriminatedUnion<"eve
1230
1230
  method?: string | undefined;
1231
1231
  captured?: boolean | undefined;
1232
1232
  notes?: Record<string, string> | undefined;
1233
+ wallet?: string | null | undefined;
1233
1234
  tax?: number | undefined;
1234
1235
  contact?: string | undefined;
1235
1236
  fee?: number | undefined;
@@ -1241,7 +1242,6 @@ export declare const razorpayWebhookEnvelopeSchema: z.ZodDiscriminatedUnion<"eve
1241
1242
  amount_refunded?: number | undefined;
1242
1243
  refund_status?: string | null | undefined;
1243
1244
  card_id?: string | null | undefined;
1244
- wallet?: string | null | undefined;
1245
1245
  vpa?: string | null | undefined;
1246
1246
  error_code?: string | null | undefined;
1247
1247
  error_description?: string | null | undefined;
@@ -1260,6 +1260,7 @@ export declare const razorpayWebhookEnvelopeSchema: z.ZodDiscriminatedUnion<"eve
1260
1260
  method?: string | undefined;
1261
1261
  captured?: boolean | undefined;
1262
1262
  notes?: Record<string, string> | undefined;
1263
+ wallet?: string | null | undefined;
1263
1264
  tax?: number | undefined;
1264
1265
  contact?: string | undefined;
1265
1266
  fee?: number | undefined;
@@ -1271,7 +1272,6 @@ export declare const razorpayWebhookEnvelopeSchema: z.ZodDiscriminatedUnion<"eve
1271
1272
  amount_refunded?: number | undefined;
1272
1273
  refund_status?: string | null | undefined;
1273
1274
  card_id?: string | null | undefined;
1274
- wallet?: string | null | undefined;
1275
1275
  vpa?: string | null | undefined;
1276
1276
  error_code?: string | null | undefined;
1277
1277
  error_description?: string | null | undefined;
@@ -1292,6 +1292,7 @@ export declare const razorpayWebhookEnvelopeSchema: z.ZodDiscriminatedUnion<"eve
1292
1292
  method?: string | undefined;
1293
1293
  captured?: boolean | undefined;
1294
1294
  notes?: Record<string, string> | undefined;
1295
+ wallet?: string | null | undefined;
1295
1296
  tax?: number | undefined;
1296
1297
  contact?: string | undefined;
1297
1298
  fee?: number | undefined;
@@ -1303,7 +1304,6 @@ export declare const razorpayWebhookEnvelopeSchema: z.ZodDiscriminatedUnion<"eve
1303
1304
  amount_refunded?: number | undefined;
1304
1305
  refund_status?: string | null | undefined;
1305
1306
  card_id?: string | null | undefined;
1306
- wallet?: string | null | undefined;
1307
1307
  vpa?: string | null | undefined;
1308
1308
  error_code?: string | null | undefined;
1309
1309
  error_description?: string | null | undefined;
@@ -1324,6 +1324,7 @@ export declare const razorpayWebhookEnvelopeSchema: z.ZodDiscriminatedUnion<"eve
1324
1324
  method?: string | undefined;
1325
1325
  captured?: boolean | undefined;
1326
1326
  notes?: Record<string, string> | undefined;
1327
+ wallet?: string | null | undefined;
1327
1328
  tax?: number | undefined;
1328
1329
  contact?: string | undefined;
1329
1330
  fee?: number | undefined;
@@ -1335,7 +1336,6 @@ export declare const razorpayWebhookEnvelopeSchema: z.ZodDiscriminatedUnion<"eve
1335
1336
  amount_refunded?: number | undefined;
1336
1337
  refund_status?: string | null | undefined;
1337
1338
  card_id?: string | null | undefined;
1338
- wallet?: string | null | undefined;
1339
1339
  vpa?: string | null | undefined;
1340
1340
  error_code?: string | null | undefined;
1341
1341
  error_description?: string | null | undefined;
@@ -1375,6 +1375,7 @@ export declare const razorpayWebhookEnvelopeSchema: z.ZodDiscriminatedUnion<"eve
1375
1375
  method?: string | undefined;
1376
1376
  captured?: boolean | undefined;
1377
1377
  notes?: Record<string, string> | undefined;
1378
+ wallet?: string | null | undefined;
1378
1379
  tax?: number | undefined;
1379
1380
  contact?: string | undefined;
1380
1381
  fee?: number | undefined;
@@ -1386,7 +1387,6 @@ export declare const razorpayWebhookEnvelopeSchema: z.ZodDiscriminatedUnion<"eve
1386
1387
  amount_refunded?: number | undefined;
1387
1388
  refund_status?: string | null | undefined;
1388
1389
  card_id?: string | null | undefined;
1389
- wallet?: string | null | undefined;
1390
1390
  vpa?: string | null | undefined;
1391
1391
  error_code?: string | null | undefined;
1392
1392
  error_description?: string | null | undefined;
@@ -1426,6 +1426,7 @@ export declare const razorpayWebhookEnvelopeSchema: z.ZodDiscriminatedUnion<"eve
1426
1426
  method?: string | undefined;
1427
1427
  captured?: boolean | undefined;
1428
1428
  notes?: Record<string, string> | undefined;
1429
+ wallet?: string | null | undefined;
1429
1430
  tax?: number | undefined;
1430
1431
  contact?: string | undefined;
1431
1432
  fee?: number | undefined;
@@ -1437,7 +1438,6 @@ export declare const razorpayWebhookEnvelopeSchema: z.ZodDiscriminatedUnion<"eve
1437
1438
  amount_refunded?: number | undefined;
1438
1439
  refund_status?: string | null | undefined;
1439
1440
  card_id?: string | null | undefined;
1440
- wallet?: string | null | undefined;
1441
1441
  vpa?: string | null | undefined;
1442
1442
  error_code?: string | null | undefined;
1443
1443
  error_description?: string | null | undefined;
@@ -1480,6 +1480,7 @@ export declare const razorpayWebhookEnvelopeSchema: z.ZodDiscriminatedUnion<"eve
1480
1480
  method?: string | undefined;
1481
1481
  captured?: boolean | undefined;
1482
1482
  notes?: Record<string, string> | undefined;
1483
+ wallet?: string | null | undefined;
1483
1484
  tax?: number | undefined;
1484
1485
  contact?: string | undefined;
1485
1486
  fee?: number | undefined;
@@ -1491,7 +1492,6 @@ export declare const razorpayWebhookEnvelopeSchema: z.ZodDiscriminatedUnion<"eve
1491
1492
  amount_refunded?: number | undefined;
1492
1493
  refund_status?: string | null | undefined;
1493
1494
  card_id?: string | null | undefined;
1494
- wallet?: string | null | undefined;
1495
1495
  vpa?: string | null | undefined;
1496
1496
  error_code?: string | null | undefined;
1497
1497
  error_description?: string | null | undefined;
@@ -1537,6 +1537,7 @@ export declare const razorpayWebhookEnvelopeSchema: z.ZodDiscriminatedUnion<"eve
1537
1537
  method?: string | undefined;
1538
1538
  captured?: boolean | undefined;
1539
1539
  notes?: Record<string, string> | undefined;
1540
+ wallet?: string | null | undefined;
1540
1541
  tax?: number | undefined;
1541
1542
  contact?: string | undefined;
1542
1543
  fee?: number | undefined;
@@ -1548,7 +1549,6 @@ export declare const razorpayWebhookEnvelopeSchema: z.ZodDiscriminatedUnion<"eve
1548
1549
  amount_refunded?: number | undefined;
1549
1550
  refund_status?: string | null | undefined;
1550
1551
  card_id?: string | null | undefined;
1551
- wallet?: string | null | undefined;
1552
1552
  vpa?: string | null | undefined;
1553
1553
  error_code?: string | null | undefined;
1554
1554
  error_description?: string | null | undefined;
@@ -1855,6 +1855,7 @@ export declare const razorpayWebhookEnvelopeSchema: z.ZodDiscriminatedUnion<"eve
1855
1855
  method?: string | undefined;
1856
1856
  captured?: boolean | undefined;
1857
1857
  notes?: Record<string, string> | undefined;
1858
+ wallet?: string | null | undefined;
1858
1859
  tax?: number | undefined;
1859
1860
  contact?: string | undefined;
1860
1861
  fee?: number | undefined;
@@ -1866,7 +1867,6 @@ export declare const razorpayWebhookEnvelopeSchema: z.ZodDiscriminatedUnion<"eve
1866
1867
  amount_refunded?: number | undefined;
1867
1868
  refund_status?: string | null | undefined;
1868
1869
  card_id?: string | null | undefined;
1869
- wallet?: string | null | undefined;
1870
1870
  vpa?: string | null | undefined;
1871
1871
  error_code?: string | null | undefined;
1872
1872
  error_description?: string | null | undefined;
@@ -1885,6 +1885,7 @@ export declare const razorpayWebhookEnvelopeSchema: z.ZodDiscriminatedUnion<"eve
1885
1885
  method?: string | undefined;
1886
1886
  captured?: boolean | undefined;
1887
1887
  notes?: Record<string, string> | undefined;
1888
+ wallet?: string | null | undefined;
1888
1889
  tax?: number | undefined;
1889
1890
  contact?: string | undefined;
1890
1891
  fee?: number | undefined;
@@ -1896,7 +1897,6 @@ export declare const razorpayWebhookEnvelopeSchema: z.ZodDiscriminatedUnion<"eve
1896
1897
  amount_refunded?: number | undefined;
1897
1898
  refund_status?: string | null | undefined;
1898
1899
  card_id?: string | null | undefined;
1899
- wallet?: string | null | undefined;
1900
1900
  vpa?: string | null | undefined;
1901
1901
  error_code?: string | null | undefined;
1902
1902
  error_description?: string | null | undefined;
@@ -1917,6 +1917,7 @@ export declare const razorpayWebhookEnvelopeSchema: z.ZodDiscriminatedUnion<"eve
1917
1917
  method?: string | undefined;
1918
1918
  captured?: boolean | undefined;
1919
1919
  notes?: Record<string, string> | undefined;
1920
+ wallet?: string | null | undefined;
1920
1921
  tax?: number | undefined;
1921
1922
  contact?: string | undefined;
1922
1923
  fee?: number | undefined;
@@ -1928,7 +1929,6 @@ export declare const razorpayWebhookEnvelopeSchema: z.ZodDiscriminatedUnion<"eve
1928
1929
  amount_refunded?: number | undefined;
1929
1930
  refund_status?: string | null | undefined;
1930
1931
  card_id?: string | null | undefined;
1931
- wallet?: string | null | undefined;
1932
1932
  vpa?: string | null | undefined;
1933
1933
  error_code?: string | null | undefined;
1934
1934
  error_description?: string | null | undefined;
@@ -1949,6 +1949,7 @@ export declare const razorpayWebhookEnvelopeSchema: z.ZodDiscriminatedUnion<"eve
1949
1949
  method?: string | undefined;
1950
1950
  captured?: boolean | undefined;
1951
1951
  notes?: Record<string, string> | undefined;
1952
+ wallet?: string | null | undefined;
1952
1953
  tax?: number | undefined;
1953
1954
  contact?: string | undefined;
1954
1955
  fee?: number | undefined;
@@ -1960,7 +1961,6 @@ export declare const razorpayWebhookEnvelopeSchema: z.ZodDiscriminatedUnion<"eve
1960
1961
  amount_refunded?: number | undefined;
1961
1962
  refund_status?: string | null | undefined;
1962
1963
  card_id?: string | null | undefined;
1963
- wallet?: string | null | undefined;
1964
1964
  vpa?: string | null | undefined;
1965
1965
  error_code?: string | null | undefined;
1966
1966
  error_description?: string | null | undefined;
@@ -2000,6 +2000,7 @@ export declare const razorpayWebhookEnvelopeSchema: z.ZodDiscriminatedUnion<"eve
2000
2000
  method?: string | undefined;
2001
2001
  captured?: boolean | undefined;
2002
2002
  notes?: Record<string, string> | undefined;
2003
+ wallet?: string | null | undefined;
2003
2004
  tax?: number | undefined;
2004
2005
  contact?: string | undefined;
2005
2006
  fee?: number | undefined;
@@ -2011,7 +2012,6 @@ export declare const razorpayWebhookEnvelopeSchema: z.ZodDiscriminatedUnion<"eve
2011
2012
  amount_refunded?: number | undefined;
2012
2013
  refund_status?: string | null | undefined;
2013
2014
  card_id?: string | null | undefined;
2014
- wallet?: string | null | undefined;
2015
2015
  vpa?: string | null | undefined;
2016
2016
  error_code?: string | null | undefined;
2017
2017
  error_description?: string | null | undefined;
@@ -2051,6 +2051,7 @@ export declare const razorpayWebhookEnvelopeSchema: z.ZodDiscriminatedUnion<"eve
2051
2051
  method?: string | undefined;
2052
2052
  captured?: boolean | undefined;
2053
2053
  notes?: Record<string, string> | undefined;
2054
+ wallet?: string | null | undefined;
2054
2055
  tax?: number | undefined;
2055
2056
  contact?: string | undefined;
2056
2057
  fee?: number | undefined;
@@ -2062,7 +2063,6 @@ export declare const razorpayWebhookEnvelopeSchema: z.ZodDiscriminatedUnion<"eve
2062
2063
  amount_refunded?: number | undefined;
2063
2064
  refund_status?: string | null | undefined;
2064
2065
  card_id?: string | null | undefined;
2065
- wallet?: string | null | undefined;
2066
2066
  vpa?: string | null | undefined;
2067
2067
  error_code?: string | null | undefined;
2068
2068
  error_description?: string | null | undefined;
@@ -2105,6 +2105,7 @@ export declare const razorpayWebhookEnvelopeSchema: z.ZodDiscriminatedUnion<"eve
2105
2105
  method?: string | undefined;
2106
2106
  captured?: boolean | undefined;
2107
2107
  notes?: Record<string, string> | undefined;
2108
+ wallet?: string | null | undefined;
2108
2109
  tax?: number | undefined;
2109
2110
  contact?: string | undefined;
2110
2111
  fee?: number | undefined;
@@ -2116,7 +2117,6 @@ export declare const razorpayWebhookEnvelopeSchema: z.ZodDiscriminatedUnion<"eve
2116
2117
  amount_refunded?: number | undefined;
2117
2118
  refund_status?: string | null | undefined;
2118
2119
  card_id?: string | null | undefined;
2119
- wallet?: string | null | undefined;
2120
2120
  vpa?: string | null | undefined;
2121
2121
  error_code?: string | null | undefined;
2122
2122
  error_description?: string | null | undefined;
@@ -2162,6 +2162,7 @@ export declare const razorpayWebhookEnvelopeSchema: z.ZodDiscriminatedUnion<"eve
2162
2162
  method?: string | undefined;
2163
2163
  captured?: boolean | undefined;
2164
2164
  notes?: Record<string, string> | undefined;
2165
+ wallet?: string | null | undefined;
2165
2166
  tax?: number | undefined;
2166
2167
  contact?: string | undefined;
2167
2168
  fee?: number | undefined;
@@ -2173,7 +2174,6 @@ export declare const razorpayWebhookEnvelopeSchema: z.ZodDiscriminatedUnion<"eve
2173
2174
  amount_refunded?: number | undefined;
2174
2175
  refund_status?: string | null | undefined;
2175
2176
  card_id?: string | null | undefined;
2176
- wallet?: string | null | undefined;
2177
2177
  vpa?: string | null | undefined;
2178
2178
  error_code?: string | null | undefined;
2179
2179
  error_description?: string | null | undefined;
@@ -2302,6 +2302,7 @@ export declare const razorpayWebhookEnvelopeSchema: z.ZodDiscriminatedUnion<"eve
2302
2302
  method?: string | undefined;
2303
2303
  captured?: boolean | undefined;
2304
2304
  notes?: Record<string, string> | undefined;
2305
+ wallet?: string | null | undefined;
2305
2306
  tax?: number | undefined;
2306
2307
  contact?: string | undefined;
2307
2308
  fee?: number | undefined;
@@ -2313,7 +2314,6 @@ export declare const razorpayWebhookEnvelopeSchema: z.ZodDiscriminatedUnion<"eve
2313
2314
  amount_refunded?: number | undefined;
2314
2315
  refund_status?: string | null | undefined;
2315
2316
  card_id?: string | null | undefined;
2316
- wallet?: string | null | undefined;
2317
2317
  vpa?: string | null | undefined;
2318
2318
  error_code?: string | null | undefined;
2319
2319
  error_description?: string | null | undefined;
@@ -2332,6 +2332,7 @@ export declare const razorpayWebhookEnvelopeSchema: z.ZodDiscriminatedUnion<"eve
2332
2332
  method?: string | undefined;
2333
2333
  captured?: boolean | undefined;
2334
2334
  notes?: Record<string, string> | undefined;
2335
+ wallet?: string | null | undefined;
2335
2336
  tax?: number | undefined;
2336
2337
  contact?: string | undefined;
2337
2338
  fee?: number | undefined;
@@ -2343,7 +2344,6 @@ export declare const razorpayWebhookEnvelopeSchema: z.ZodDiscriminatedUnion<"eve
2343
2344
  amount_refunded?: number | undefined;
2344
2345
  refund_status?: string | null | undefined;
2345
2346
  card_id?: string | null | undefined;
2346
- wallet?: string | null | undefined;
2347
2347
  vpa?: string | null | undefined;
2348
2348
  error_code?: string | null | undefined;
2349
2349
  error_description?: string | null | undefined;
@@ -2364,6 +2364,7 @@ export declare const razorpayWebhookEnvelopeSchema: z.ZodDiscriminatedUnion<"eve
2364
2364
  method?: string | undefined;
2365
2365
  captured?: boolean | undefined;
2366
2366
  notes?: Record<string, string> | undefined;
2367
+ wallet?: string | null | undefined;
2367
2368
  tax?: number | undefined;
2368
2369
  contact?: string | undefined;
2369
2370
  fee?: number | undefined;
@@ -2375,7 +2376,6 @@ export declare const razorpayWebhookEnvelopeSchema: z.ZodDiscriminatedUnion<"eve
2375
2376
  amount_refunded?: number | undefined;
2376
2377
  refund_status?: string | null | undefined;
2377
2378
  card_id?: string | null | undefined;
2378
- wallet?: string | null | undefined;
2379
2379
  vpa?: string | null | undefined;
2380
2380
  error_code?: string | null | undefined;
2381
2381
  error_description?: string | null | undefined;
@@ -2396,6 +2396,7 @@ export declare const razorpayWebhookEnvelopeSchema: z.ZodDiscriminatedUnion<"eve
2396
2396
  method?: string | undefined;
2397
2397
  captured?: boolean | undefined;
2398
2398
  notes?: Record<string, string> | undefined;
2399
+ wallet?: string | null | undefined;
2399
2400
  tax?: number | undefined;
2400
2401
  contact?: string | undefined;
2401
2402
  fee?: number | undefined;
@@ -2407,7 +2408,6 @@ export declare const razorpayWebhookEnvelopeSchema: z.ZodDiscriminatedUnion<"eve
2407
2408
  amount_refunded?: number | undefined;
2408
2409
  refund_status?: string | null | undefined;
2409
2410
  card_id?: string | null | undefined;
2410
- wallet?: string | null | undefined;
2411
2411
  vpa?: string | null | undefined;
2412
2412
  error_code?: string | null | undefined;
2413
2413
  error_description?: string | null | undefined;
@@ -2445,6 +2445,7 @@ export declare const razorpayWebhookEnvelopeSchema: z.ZodDiscriminatedUnion<"eve
2445
2445
  method?: string | undefined;
2446
2446
  captured?: boolean | undefined;
2447
2447
  notes?: Record<string, string> | undefined;
2448
+ wallet?: string | null | undefined;
2448
2449
  tax?: number | undefined;
2449
2450
  contact?: string | undefined;
2450
2451
  fee?: number | undefined;
@@ -2456,7 +2457,6 @@ export declare const razorpayWebhookEnvelopeSchema: z.ZodDiscriminatedUnion<"eve
2456
2457
  amount_refunded?: number | undefined;
2457
2458
  refund_status?: string | null | undefined;
2458
2459
  card_id?: string | null | undefined;
2459
- wallet?: string | null | undefined;
2460
2460
  vpa?: string | null | undefined;
2461
2461
  error_code?: string | null | undefined;
2462
2462
  error_description?: string | null | undefined;
@@ -2494,6 +2494,7 @@ export declare const razorpayWebhookEnvelopeSchema: z.ZodDiscriminatedUnion<"eve
2494
2494
  method?: string | undefined;
2495
2495
  captured?: boolean | undefined;
2496
2496
  notes?: Record<string, string> | undefined;
2497
+ wallet?: string | null | undefined;
2497
2498
  tax?: number | undefined;
2498
2499
  contact?: string | undefined;
2499
2500
  fee?: number | undefined;
@@ -2505,7 +2506,6 @@ export declare const razorpayWebhookEnvelopeSchema: z.ZodDiscriminatedUnion<"eve
2505
2506
  amount_refunded?: number | undefined;
2506
2507
  refund_status?: string | null | undefined;
2507
2508
  card_id?: string | null | undefined;
2508
- wallet?: string | null | undefined;
2509
2509
  vpa?: string | null | undefined;
2510
2510
  error_code?: string | null | undefined;
2511
2511
  error_description?: string | null | undefined;
@@ -2546,6 +2546,7 @@ export declare const razorpayWebhookEnvelopeSchema: z.ZodDiscriminatedUnion<"eve
2546
2546
  method?: string | undefined;
2547
2547
  captured?: boolean | undefined;
2548
2548
  notes?: Record<string, string> | undefined;
2549
+ wallet?: string | null | undefined;
2549
2550
  tax?: number | undefined;
2550
2551
  contact?: string | undefined;
2551
2552
  fee?: number | undefined;
@@ -2557,7 +2558,6 @@ export declare const razorpayWebhookEnvelopeSchema: z.ZodDiscriminatedUnion<"eve
2557
2558
  amount_refunded?: number | undefined;
2558
2559
  refund_status?: string | null | undefined;
2559
2560
  card_id?: string | null | undefined;
2560
- wallet?: string | null | undefined;
2561
2561
  vpa?: string | null | undefined;
2562
2562
  error_code?: string | null | undefined;
2563
2563
  error_description?: string | null | undefined;
@@ -2601,6 +2601,7 @@ export declare const razorpayWebhookEnvelopeSchema: z.ZodDiscriminatedUnion<"eve
2601
2601
  method?: string | undefined;
2602
2602
  captured?: boolean | undefined;
2603
2603
  notes?: Record<string, string> | undefined;
2604
+ wallet?: string | null | undefined;
2604
2605
  tax?: number | undefined;
2605
2606
  contact?: string | undefined;
2606
2607
  fee?: number | undefined;
@@ -2612,7 +2613,6 @@ export declare const razorpayWebhookEnvelopeSchema: z.ZodDiscriminatedUnion<"eve
2612
2613
  amount_refunded?: number | undefined;
2613
2614
  refund_status?: string | null | undefined;
2614
2615
  card_id?: string | null | undefined;
2615
- wallet?: string | null | undefined;
2616
2616
  vpa?: string | null | undefined;
2617
2617
  error_code?: string | null | undefined;
2618
2618
  error_description?: string | null | undefined;