@mohasinac/appkit 3.4.8 → 3.5.1

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 (605) hide show
  1. package/dist/_internal/client/features/classified/ClassifiedDetailView.js +1 -1
  2. package/dist/_internal/client/features/digital-code/CodeRevealPanel.js +1 -1
  3. package/dist/_internal/client/features/digital-code/DigitalCodeDetailView.js +1 -1
  4. package/dist/_internal/client/features/filters/filter-load-options.js +10 -9
  5. package/dist/_internal/client/features/layout/DashboardLayoutClient.d.ts +6 -1
  6. package/dist/_internal/client/features/layout/DashboardLayoutClient.js +11 -4
  7. package/dist/_internal/client/features/live/LiveItemDetailView.js +2 -2
  8. package/dist/_internal/client/features/maintenance/views/AnalysisRunnerView.js +10 -3
  9. package/dist/_internal/client/features/maintenance/views/ServerErrorsListView.js +2 -2
  10. package/dist/_internal/client/scaffolds/DashboardScaffold.js +3 -1
  11. package/dist/_internal/server/features/checkout/actions.d.ts +16 -0
  12. package/dist/_internal/server/features/checkout/actions.js +149 -35
  13. package/dist/_internal/server/features/checkout/bundle-expansion.d.ts +31 -0
  14. package/dist/_internal/server/features/checkout/bundle-expansion.js +41 -0
  15. package/dist/_internal/server/features/lottery/actions.js +14 -4
  16. package/dist/_internal/server/features/maintenance/analyze.js +4 -2
  17. package/dist/_internal/server/features/orders/actions.js +9 -0
  18. package/dist/_internal/server/features/orders/adapters.js +19 -0
  19. package/dist/_internal/server/features/seo/robots.js +1 -1
  20. package/dist/_internal/server/functions/firestore.d.ts +47 -1
  21. package/dist/_internal/server/functions/firestore.js +56 -1
  22. package/dist/_internal/server/functions/scheduled.d.ts +2 -1
  23. package/dist/_internal/server/functions/scheduled.js +9 -1
  24. package/dist/_internal/server/jobs/core/catalogueImageStalenessReminder.d.ts +10 -0
  25. package/dist/_internal/server/jobs/core/catalogueImageStalenessReminder.js +49 -0
  26. package/dist/_internal/server/jobs/core/cleanupRtdbEvents.js +32 -0
  27. package/dist/_internal/server/jobs/core/hardBanCascade.d.ts +26 -0
  28. package/dist/_internal/server/jobs/core/hardBanCascade.js +181 -0
  29. package/dist/_internal/server/jobs/core/index.d.ts +4 -1
  30. package/dist/_internal/server/jobs/core/index.js +4 -1
  31. package/dist/_internal/server/jobs/core/jobRunners.d.ts +28 -0
  32. package/dist/_internal/server/jobs/core/jobRunners.js +37 -0
  33. package/dist/_internal/server/jobs/core/onCatalogueSubmittedForApproval.d.ts +15 -0
  34. package/dist/_internal/server/jobs/core/onCatalogueSubmittedForApproval.js +38 -0
  35. package/dist/_internal/server/jobs/core/onJobCreated.d.ts +22 -0
  36. package/dist/_internal/server/jobs/core/onJobCreated.js +59 -0
  37. package/dist/_internal/server/jobs/core/weeklyPayoutEligibility.d.ts +6 -1
  38. package/dist/_internal/server/jobs/core/weeklyPayoutEligibility.js +5 -2
  39. package/dist/_internal/server/jobs/handlers/catalogueImageStalenessReminder.d.ts +2 -0
  40. package/dist/_internal/server/jobs/handlers/catalogueImageStalenessReminder.js +2 -0
  41. package/dist/_internal/server/jobs/handlers/index.d.ts +6 -0
  42. package/dist/_internal/server/jobs/handlers/index.js +8 -0
  43. package/dist/_internal/server/jobs/handlers/onCatalogueSubmittedForApproval.d.ts +12 -0
  44. package/dist/_internal/server/jobs/handlers/onCatalogueSubmittedForApproval.js +20 -0
  45. package/dist/_internal/server/jobs/handlers/onJobCreated.d.ts +3 -0
  46. package/dist/_internal/server/jobs/handlers/onJobCreated.js +9 -0
  47. package/dist/_internal/server/jobs/handlers/onShipmentAllocationSync.d.ts +25 -0
  48. package/dist/_internal/server/jobs/handlers/onShipmentAllocationSync.js +71 -0
  49. package/dist/_internal/server/jobs/handlers/onShipmentDeleted.d.ts +14 -0
  50. package/dist/_internal/server/jobs/handlers/onShipmentDeleted.js +23 -0
  51. package/dist/_internal/server/jobs/handlers/onShipmentItemWrite.d.ts +17 -0
  52. package/dist/_internal/server/jobs/handlers/onShipmentItemWrite.js +26 -0
  53. package/dist/_internal/server/jobs/handlers/weeklyPayoutEligibility.js +3 -1
  54. package/dist/_internal/shared/actions/action-registry.d.ts +1 -1
  55. package/dist/_internal/shared/actions/action-registry.js +136 -0
  56. package/dist/_internal/shared/features/blog/schema.d.ts +8 -8
  57. package/dist/_internal/shared/features/brands/schema.d.ts +4 -4
  58. package/dist/_internal/shared/features/categories/bundle-schemas.d.ts +8 -8
  59. package/dist/_internal/shared/features/events/schema.d.ts +4 -4
  60. package/dist/_internal/shared/features/products/schema.d.ts +8 -8
  61. package/dist/_internal/shared/features/promotions/schema.d.ts +4 -4
  62. package/dist/_internal/shared/features/reviews/schema.d.ts +4 -4
  63. package/dist/client/api/useFeatureFlags.d.ts +22 -0
  64. package/dist/client/api/useFeatureFlags.js +27 -0
  65. package/dist/client/observability/reportClientError.js +3 -2
  66. package/dist/client.d.ts +4 -2
  67. package/dist/client.js +2 -1
  68. package/dist/configs/next.js +1 -0
  69. package/dist/constants/api-endpoints.d.ts +279 -3
  70. package/dist/constants/api-endpoints.js +130 -2
  71. package/dist/core/hooks/useSyncManager.js +5 -4
  72. package/dist/errors/conflict-error.d.ts +4 -0
  73. package/dist/errors/conflict-error.js +6 -0
  74. package/dist/errors/index.d.ts +1 -0
  75. package/dist/errors/index.js +1 -0
  76. package/dist/features/about/components/FeesView.js +2 -2
  77. package/dist/features/about/components/HelpPageView.js +2 -2
  78. package/dist/features/about/components/HowAuctionsWorkView.js +2 -2
  79. package/dist/features/about/components/HowCheckoutWorksView.js +2 -2
  80. package/dist/features/about/components/HowEmiWorksView.js +2 -2
  81. package/dist/features/about/components/HowOffersWorkView.js +3 -3
  82. package/dist/features/about/components/HowOrdersWorkView.js +3 -3
  83. package/dist/features/about/components/HowPayoutsWorkView.js +2 -2
  84. package/dist/features/about/components/HowPreOrdersWorkView.js +2 -2
  85. package/dist/features/about/components/HowReviewsWorkView.js +2 -2
  86. package/dist/features/about/components/PublicProfileView.d.ts +8 -1
  87. package/dist/features/about/components/PublicProfileView.js +11 -9
  88. package/dist/features/about/components/SecurityPrivacyView.js +2 -2
  89. package/dist/features/about/components/UnauthorizedView.js +2 -2
  90. package/dist/features/account/components/AddressBook.js +1 -1
  91. package/dist/features/account/components/AddressesIndexListing.js +1 -1
  92. package/dist/features/account/components/NotificationBell.js +5 -5
  93. package/dist/features/account/components/NotificationPreferencesPanel.js +5 -2
  94. package/dist/features/account/components/UserOffersPanel.js +5 -4
  95. package/dist/features/account/components/UserSidebar.js +2 -2
  96. package/dist/features/account/components/UserSupportView.js +3 -3
  97. package/dist/features/account/schemas/index.d.ts +12 -12
  98. package/dist/features/addresses/schemas/index.d.ts +6 -6
  99. package/dist/features/admin/components/AdminAdEditorView.js +3 -3
  100. package/dist/features/admin/components/AdminAddressEditorView.js +3 -3
  101. package/dist/features/admin/components/AdminAdsView.js +3 -3
  102. package/dist/features/admin/components/AdminBlogEditorView.js +1 -1
  103. package/dist/features/admin/components/AdminBlogView.js +12 -15
  104. package/dist/features/admin/components/AdminBrandEditorView.js +1 -1
  105. package/dist/features/admin/components/AdminBrandsView.js +12 -13
  106. package/dist/features/admin/components/AdminBundleEditorView.js +5 -4
  107. package/dist/features/admin/components/AdminBundlesView.js +32 -23
  108. package/dist/features/admin/components/AdminCarouselEditorView.js +5 -5
  109. package/dist/features/admin/components/AdminCarouselView.js +2 -2
  110. package/dist/features/admin/components/AdminCatalogGuideView.js +1 -1
  111. package/dist/features/admin/components/AdminCategoriesView.js +12 -13
  112. package/dist/features/admin/components/AdminCategoryEditorView.js +2 -2
  113. package/dist/features/admin/components/AdminContactEditorView.js +2 -2
  114. package/dist/features/admin/components/AdminCouponEditorView.d.ts +10 -1
  115. package/dist/features/admin/components/AdminCouponEditorView.js +7 -2
  116. package/dist/features/admin/components/AdminCouponsView.js +32 -27
  117. package/dist/features/admin/components/AdminEmployeeEditorView.js +3 -3
  118. package/dist/features/admin/components/AdminFaqEditorView.js +1 -1
  119. package/dist/features/admin/components/AdminFaqsView.js +20 -20
  120. package/dist/features/admin/components/AdminFeatureEditorView.js +5 -5
  121. package/dist/features/admin/components/AdminFeaturesView.js +9 -10
  122. package/dist/features/admin/components/AdminFilterBar.js +1 -1
  123. package/dist/features/admin/components/AdminFulfillmentView.js +4 -4
  124. package/dist/features/admin/components/AdminGuideHubView.js +2 -2
  125. package/dist/features/admin/components/AdminMediaView.js +3 -2
  126. package/dist/features/admin/components/AdminNavigationView.js +1 -1
  127. package/dist/features/admin/components/AdminOrderEditorView.js +3 -3
  128. package/dist/features/admin/components/AdminOrdersView.js +21 -30
  129. package/dist/features/admin/components/AdminPageHeader.js +3 -3
  130. package/dist/features/admin/components/AdminPayoutsView.js +8 -8
  131. package/dist/features/admin/components/AdminPrizeDrawsView.js +8 -9
  132. package/dist/features/admin/components/AdminProductEditorView.d.ts +9 -1
  133. package/dist/features/admin/components/AdminProductEditorView.js +7 -4
  134. package/dist/features/admin/components/AdminProductsView.js +30 -41
  135. package/dist/features/admin/components/AdminReviewsView.js +14 -17
  136. package/dist/features/admin/components/AdminScammerEditorView.js +5 -5
  137. package/dist/features/admin/components/AdminSectionsView.js +3 -3
  138. package/dist/features/admin/components/AdminSessionsView.js +8 -10
  139. package/dist/features/admin/components/AdminSidebar.js +2 -2
  140. package/dist/features/admin/components/AdminSiteSettingsView.js +10 -3
  141. package/dist/features/admin/components/AdminStoreEditorView.js +4 -5
  142. package/dist/features/admin/components/AdminStoresView.js +18 -13
  143. package/dist/features/admin/components/AdminSupportTicketDetailView.js +7 -7
  144. package/dist/features/admin/components/AdminTeamView.js +9 -5
  145. package/dist/features/admin/components/AdminUsersView.js +19 -15
  146. package/dist/features/admin/components/AdminViewCards.js +5 -5
  147. package/dist/features/admin/components/DashboardStats.js +1 -1
  148. package/dist/features/admin/components/DataListingView.js +2 -2
  149. package/dist/features/admin/components/DataTable.js +2 -2
  150. package/dist/features/admin/components/DrawerFormFooter.js +1 -1
  151. package/dist/features/admin/components/analytics/AdminAnalyticsCharts.js +2 -2
  152. package/dist/features/admin/components/analytics/AdminStatCard.js +1 -1
  153. package/dist/features/admin/hooks/useAdminListing.d.ts +3 -2
  154. package/dist/features/admin/hooks/useAdminListing.js +8 -2
  155. package/dist/features/admin/permission-map.js +2 -0
  156. package/dist/features/admin/schemas/firestore.d.ts +7 -0
  157. package/dist/features/admin/schemas/firestore.js +4 -0
  158. package/dist/features/auctions/components/AuctionBidsTable.js +1 -1
  159. package/dist/features/auctions/components/AuctionDetailPageView.js +7 -7
  160. package/dist/features/auctions/components/MarketplaceAuctionCard.js +3 -3
  161. package/dist/features/auctions/components/MarketplaceAuctionGrid.js +4 -4
  162. package/dist/features/auctions/components/PlaceBidFormClient.js +1 -1
  163. package/dist/features/auctions/schemas/index.d.ts +16 -16
  164. package/dist/features/auth/permissions/constants.d.ts +1 -1
  165. package/dist/features/auth/permissions/constants.js +2 -0
  166. package/dist/features/auth/schemas/index.d.ts +6 -6
  167. package/dist/features/before-after/schemas/index.d.ts +3 -3
  168. package/dist/features/blog/actions/blog-actions.d.ts +32 -32
  169. package/dist/features/blog/components/BlogFeaturedCard.js +2 -2
  170. package/dist/features/blog/components/BlogIndexListing.js +2 -2
  171. package/dist/features/blog/components/BlogListView.js +4 -4
  172. package/dist/features/blog/components/BlogPostView.js +4 -4
  173. package/dist/features/blog/schemas/index.d.ts +77 -77
  174. package/dist/features/cart/components/CartDrawer.js +2 -2
  175. package/dist/features/catalogue/actions/approve-catalogue-listing.d.ts +12 -0
  176. package/dist/features/catalogue/actions/approve-catalogue-listing.js +50 -0
  177. package/dist/features/catalogue/actions/list-from-catalogue.d.ts +17 -0
  178. package/dist/features/catalogue/actions/list-from-catalogue.js +50 -0
  179. package/dist/features/catalogue/actions/submit-for-approval.d.ts +8 -0
  180. package/dist/features/catalogue/actions/submit-for-approval.js +30 -0
  181. package/dist/features/catalogue/components/AdminCatalogueApprovalsView.d.ts +2 -0
  182. package/dist/features/catalogue/components/AdminCatalogueApprovalsView.js +53 -0
  183. package/dist/features/catalogue/components/CatalogueItemEditorView.d.ts +7 -0
  184. package/dist/features/catalogue/components/CatalogueItemEditorView.js +79 -0
  185. package/dist/features/catalogue/components/PublicCatalogueView.d.ts +5 -0
  186. package/dist/features/catalogue/components/PublicCatalogueView.js +22 -0
  187. package/dist/features/catalogue/components/UserCatalogueView.d.ts +12 -0
  188. package/dist/features/catalogue/components/UserCatalogueView.js +51 -0
  189. package/dist/features/catalogue/index.d.ts +12 -0
  190. package/dist/features/catalogue/index.js +9 -0
  191. package/dist/features/catalogue/repository/catalogue.repository.d.ts +39 -0
  192. package/dist/features/catalogue/repository/catalogue.repository.js +68 -0
  193. package/dist/features/catalogue/schemas/firestore.d.ts +47 -0
  194. package/dist/features/catalogue/schemas/firestore.js +22 -0
  195. package/dist/features/catalogue/schemas/index.d.ts +2 -0
  196. package/dist/features/catalogue/schemas/index.js +2 -0
  197. package/dist/features/catalogue/schemas/validation.d.ts +71 -0
  198. package/dist/features/catalogue/schemas/validation.js +25 -0
  199. package/dist/features/catalogue/utils/freshness.d.ts +10 -0
  200. package/dist/features/catalogue/utils/freshness.js +15 -0
  201. package/dist/features/catalogue/utils/product-from-item.d.ts +15 -0
  202. package/dist/features/catalogue/utils/product-from-item.js +34 -0
  203. package/dist/features/categories/components/BrandDetailPageView.js +1 -1
  204. package/dist/features/categories/components/BrandDetailTabs.js +2 -2
  205. package/dist/features/categories/components/BundleCollage.js +2 -2
  206. package/dist/features/categories/components/BundleItemsPicker.js +3 -2
  207. package/dist/features/categories/components/CategoriesIndexListing.js +8 -6
  208. package/dist/features/categories/components/CategoryBundlesListing.js +10 -4
  209. package/dist/features/categories/components/CategoryDetailPageView.js +1 -1
  210. package/dist/features/categories/components/CategoryDetailTabs.js +2 -2
  211. package/dist/features/categories/components/CategoryGrid.js +3 -3
  212. package/dist/features/categories/components/CategoryProductsListing.js +1 -1
  213. package/dist/features/categories/components/CategorySortSelect.js +1 -1
  214. package/dist/features/categories/components/CategoryStoresListing.js +1 -1
  215. package/dist/features/categories/components/CategoryTableColumns.js +1 -1
  216. package/dist/features/categories/components/CategoryTree.js +2 -2
  217. package/dist/features/categories/components/ConcernCard.js +1 -1
  218. package/dist/features/categories/hooks/useCategories.js +1 -1
  219. package/dist/features/categories/schemas/index.d.ts +32 -32
  220. package/dist/features/classified/components/ClassifiedFilters.js +2 -2
  221. package/dist/features/classified/components/ClassifiedIndexListing.js +9 -3
  222. package/dist/features/collections/schemas/index.d.ts +2 -2
  223. package/dist/features/consultation/components/ConsultationForm.js +1 -1
  224. package/dist/features/consultation/schemas/index.d.ts +10 -10
  225. package/dist/features/contact/components/ContactForm.js +4 -4
  226. package/dist/features/contact/components/ContactInfoSidebar.js +1 -1
  227. package/dist/features/contact/components/ContactPageView.js +2 -1
  228. package/dist/features/copilot/components/AdminCopilotView.js +5 -4
  229. package/dist/features/corporate/schemas/index.d.ts +2 -2
  230. package/dist/features/digital-codes/components/DigitalCodesIndexListing.js +3 -3
  231. package/dist/features/events/components/AdminEventEditorView.js +4 -4
  232. package/dist/features/events/components/AdminEventEntriesView.js +2 -2
  233. package/dist/features/events/components/AdminEventsView.js +8 -8
  234. package/dist/features/events/components/EventBanner.js +1 -1
  235. package/dist/features/events/components/EventCard.js +3 -3
  236. package/dist/features/events/components/EventLeaderboard.js +1 -1
  237. package/dist/features/events/components/EventOfferCard.js +1 -1
  238. package/dist/features/events/components/EventPollWidget.js +6 -5
  239. package/dist/features/events/components/EventRaffleEntryForm.js +1 -1
  240. package/dist/features/events/components/EventRaffleWinnerView.js +5 -5
  241. package/dist/features/events/components/EventRafflesSection.js +1 -1
  242. package/dist/features/events/components/EventSaleBanner.js +1 -1
  243. package/dist/features/events/components/EventsIndexListing.js +4 -2
  244. package/dist/features/events/components/EventsListView.js +2 -2
  245. package/dist/features/events/components/SpinWheelView.js +11 -5
  246. package/dist/features/events/schemas/index.d.ts +100 -100
  247. package/dist/features/faq/actions/faq-actions.d.ts +6 -6
  248. package/dist/features/faq/components/ContactCTA.js +3 -3
  249. package/dist/features/faq/components/FAQCategorySidebar.js +2 -2
  250. package/dist/features/faq/components/FAQHelpfulButtons.js +3 -3
  251. package/dist/features/faq/schemas/index.d.ts +12 -12
  252. package/dist/features/filters/AsyncFacetSection.js +4 -4
  253. package/dist/features/filters/FilterFacetSection.js +8 -8
  254. package/dist/features/filters/RangeFilter.js +2 -2
  255. package/dist/features/filters/SwitchFilter.js +1 -1
  256. package/dist/features/forms/Checkbox.js +2 -8
  257. package/dist/features/forms/Input.js +2 -1
  258. package/dist/features/forms/Radio.js +3 -3
  259. package/dist/features/forms/Select.d.ts +1 -1
  260. package/dist/features/forms/Select.js +3 -2
  261. package/dist/features/forms/Slider.js +5 -11
  262. package/dist/features/forms/Textarea.js +2 -1
  263. package/dist/features/grouped/schemas/index.d.ts +6 -6
  264. package/dist/features/homepage/actions/homepage-section-actions.d.ts +4 -4
  265. package/dist/features/homepage/components/AdvertisementBanner.js +4 -4
  266. package/dist/features/homepage/components/AnnouncementBar.js +3 -3
  267. package/dist/features/homepage/components/BeforeAfterCard.js +1 -1
  268. package/dist/features/homepage/components/BrandsSection.js +9 -9
  269. package/dist/features/homepage/components/CTABannerSection.js +1 -1
  270. package/dist/features/homepage/components/CharacterHotspot.js +4 -4
  271. package/dist/features/homepage/components/CharacterHotspotForm.js +15 -13
  272. package/dist/features/homepage/components/CollectionCardsSection.js +1 -1
  273. package/dist/features/homepage/components/CustomCardsSection.js +6 -6
  274. package/dist/features/homepage/components/CustomerReviewsSection.js +2 -2
  275. package/dist/features/homepage/components/FAQSection.js +2 -2
  276. package/dist/features/homepage/components/FeaturedBundlesSection.js +3 -3
  277. package/dist/features/homepage/components/FeaturedResultsSection.js +2 -2
  278. package/dist/features/homepage/components/GoogleReviewsSection.js +6 -6
  279. package/dist/features/homepage/components/HeroBanner.js +1 -1
  280. package/dist/features/homepage/components/HeroCarousel.js +5 -4
  281. package/dist/features/homepage/components/HeroSection.js +1 -7
  282. package/dist/features/homepage/components/HomepageSkeleton.js +1 -1
  283. package/dist/features/homepage/components/HowItWorksInfoView.js +1 -1
  284. package/dist/features/homepage/components/HowItWorksSection.js +2 -2
  285. package/dist/features/homepage/components/NewsletterBanner.js +2 -2
  286. package/dist/features/homepage/components/NewsletterSection.js +1 -1
  287. package/dist/features/homepage/components/PromoGrid.js +1 -1
  288. package/dist/features/homepage/components/SectionCarousel.js +6 -6
  289. package/dist/features/homepage/components/SecurityHighlightsSection.js +2 -2
  290. package/dist/features/homepage/components/ShopByCategorySection.js +10 -10
  291. package/dist/features/homepage/components/SiteFeaturesSection.js +2 -2
  292. package/dist/features/homepage/components/SocialFeedSection.js +5 -5
  293. package/dist/features/homepage/components/SocialPostCard.js +1 -1
  294. package/dist/features/homepage/components/StatsCounterSection.js +1 -1
  295. package/dist/features/homepage/components/TestimonialsCarousel.js +1 -1
  296. package/dist/features/homepage/components/TrustBadges.js +1 -1
  297. package/dist/features/homepage/components/TrustFeaturesSection.js +2 -2
  298. package/dist/features/homepage/components/TrustIndicatorsSection.js +2 -2
  299. package/dist/features/homepage/components/WelcomeSection.js +2 -2
  300. package/dist/features/homepage/components/WhatsAppCommunitySection.js +1 -1
  301. package/dist/features/homepage/hooks/useActiveAd.js +2 -1
  302. package/dist/features/homepage/schemas/firestore.d.ts +10 -0
  303. package/dist/features/homepage/schemas/index.d.ts +116 -116
  304. package/dist/features/jobs/actions/enqueue-job.d.ts +24 -0
  305. package/dist/features/jobs/actions/enqueue-job.js +44 -0
  306. package/dist/features/jobs/repository/jobs.repository.d.ts +21 -0
  307. package/dist/features/jobs/repository/jobs.repository.js +48 -0
  308. package/dist/features/jobs/schemas/firestore.d.ts +54 -0
  309. package/dist/features/jobs/schemas/firestore.js +24 -0
  310. package/dist/features/layout/AppLayoutShell.js +17 -11
  311. package/dist/features/layout/AutoBreadcrumbs.js +1 -1
  312. package/dist/features/layout/BackToTop.js +2 -2
  313. package/dist/features/layout/BottomActions.js +7 -7
  314. package/dist/features/layout/BottomNavItem.js +2 -2
  315. package/dist/features/layout/BottomNavLayout.js +13 -4
  316. package/dist/features/layout/BottomNavbar.d.ts +9 -1
  317. package/dist/features/layout/BottomNavbar.js +12 -5
  318. package/dist/features/layout/BottomSheet.js +1 -1
  319. package/dist/features/layout/Breadcrumbs.js +1 -1
  320. package/dist/features/layout/FooterLayout.js +2 -2
  321. package/dist/features/layout/NavItem.js +3 -3
  322. package/dist/features/layout/NavbarLayout.js +6 -6
  323. package/dist/features/layout/SidebarLayout.d.ts +3 -0
  324. package/dist/features/layout/SidebarLayout.js +3 -3
  325. package/dist/features/layout/TitleBarLayout.js +4 -4
  326. package/dist/features/live/components/LiveItemFilters.js +2 -2
  327. package/dist/features/live/components/LiveItemsIndexListing.js +3 -3
  328. package/dist/features/lottery/types/index.d.ts +3 -1
  329. package/dist/features/lottery/types/index.js +16 -3
  330. package/dist/features/loyalty/components/CoinsDisplay.js +2 -2
  331. package/dist/features/media/MediaImage.d.ts +6 -1
  332. package/dist/features/media/MediaImage.js +10 -4
  333. package/dist/features/media/MediaLightbox.js +1 -1
  334. package/dist/features/media/MediaPickerModal.js +4 -3
  335. package/dist/features/media/MediaVideo.js +1 -1
  336. package/dist/features/media/modals/ImageCropModal.js +1 -1
  337. package/dist/features/media/modals/ImageEditor.js +1 -1
  338. package/dist/features/media/repository/media-assets.repository.d.ts +9 -0
  339. package/dist/features/media/types/index.d.ts +4 -4
  340. package/dist/features/media/upload/MediaUploadField.js +3 -3
  341. package/dist/features/media/upload/MediaUploadList.js +1 -1
  342. package/dist/features/messages/hooks/useConversation.js +4 -3
  343. package/dist/features/messages/hooks/useConversations.js +2 -1
  344. package/dist/features/messages/schemas/index.d.ts +6 -6
  345. package/dist/features/orders/components/MarketplaceOrderCard.js +1 -1
  346. package/dist/features/orders/components/OrderPaymentSummary.d.ts +16 -0
  347. package/dist/features/orders/components/OrderPaymentSummary.js +32 -0
  348. package/dist/features/orders/components/OrderSiblingPayments.js +1 -1
  349. package/dist/features/orders/components/OrdersList.d.ts +7 -2
  350. package/dist/features/orders/components/OrdersList.js +5 -5
  351. package/dist/features/orders/components/RefundHistoryTable.js +1 -1
  352. package/dist/features/orders/components/RefundRequestView.js +1 -1
  353. package/dist/features/orders/components/index.d.ts +2 -0
  354. package/dist/features/orders/components/index.js +1 -0
  355. package/dist/features/orders/repository/orders.repository.d.ts +8 -0
  356. package/dist/features/orders/repository/orders.repository.js +24 -0
  357. package/dist/features/orders/schemas/firestore.d.ts +59 -0
  358. package/dist/features/orders/schemas/firestore.js +5 -0
  359. package/dist/features/orders/schemas/index.d.ts +91 -40
  360. package/dist/features/orders/schemas/index.js +10 -0
  361. package/dist/features/orders/types/index.d.ts +15 -0
  362. package/dist/features/payments/schemas/index.d.ts +12 -12
  363. package/dist/features/pre-orders/components/MarketplacePreorderCard.js +5 -5
  364. package/dist/features/pre-orders/components/PreOrderActionsClient.js +1 -1
  365. package/dist/features/pre-orders/components/PreOrderBadge.js +1 -1
  366. package/dist/features/pre-orders/components/PreOrderDetailPageView.js +7 -7
  367. package/dist/features/pre-orders/components/PreOrdersIndexListing.js +3 -3
  368. package/dist/features/pre-orders/schemas/index.d.ts +12 -12
  369. package/dist/features/products/columns/productTableColumns.js +2 -2
  370. package/dist/features/products/components/AuctionsIndexListing.js +3 -3
  371. package/dist/features/products/components/CompareOverlay.js +15 -10
  372. package/dist/features/products/components/CustomFieldsEditor.js +2 -2
  373. package/dist/features/products/components/CustomSectionsEditor.js +3 -3
  374. package/dist/features/products/components/FeatureBadge.js +2 -2
  375. package/dist/features/products/components/GroupSettingsPanel.js +5 -4
  376. package/dist/features/products/components/MakeOfferButton.js +4 -4
  377. package/dist/features/products/components/MarketplaceBundleCard.js +3 -2
  378. package/dist/features/products/components/MarketplacePrizeDrawCard.js +1 -1
  379. package/dist/features/products/components/PrizeDrawCollage.js +6 -6
  380. package/dist/features/products/components/PrizeDrawDetailPageView.js +5 -5
  381. package/dist/features/products/components/PrizeDrawEntryActions.js +1 -1
  382. package/dist/features/products/components/PrizeDrawItemsEditor.js +4 -4
  383. package/dist/features/products/components/PrizeDrawsIndexListing.js +11 -4
  384. package/dist/features/products/components/PrizeDrawsSection.js +1 -1
  385. package/dist/features/products/components/PrizeRevealModal.js +9 -4
  386. package/dist/features/products/components/ProductDetailActions.js +2 -1
  387. package/dist/features/products/components/ProductDetailPageView.js +16 -16
  388. package/dist/features/products/components/ProductFeaturesSelector.js +5 -5
  389. package/dist/features/products/components/ProductForm.js +1 -1
  390. package/dist/features/products/components/ProductGalleryClient.js +5 -3
  391. package/dist/features/products/components/ProductGrid.js +11 -11
  392. package/dist/features/products/components/ProductTabs.js +2 -2
  393. package/dist/features/products/components/ProductTabsShell.js +2 -1
  394. package/dist/features/products/components/ProductsIndexListing.js +6 -1
  395. package/dist/features/products/components/ShareButton.js +2 -1
  396. package/dist/features/products/components/ShowGroupSection.js +9 -5
  397. package/dist/features/products/components/SublistingCarouselSection.js +8 -4
  398. package/dist/features/products/constants/action-defs.d.ts +10 -2
  399. package/dist/features/products/constants/action-defs.js +20 -2
  400. package/dist/features/products/schemas/firestore.d.ts +5 -0
  401. package/dist/features/products/schemas/index.d.ts +40 -40
  402. package/dist/features/products/schemas/product-features.validators.d.ts +14 -14
  403. package/dist/features/promotions/components/CouponCard.js +13 -7
  404. package/dist/features/promotions/components/CouponsIndexListing.js +4 -6
  405. package/dist/features/promotions/components/PromotionsView.js +2 -2
  406. package/dist/features/promotions/schemas/index.d.ts +26 -26
  407. package/dist/features/reviews/components/ReviewDetailPageView.js +1 -1
  408. package/dist/features/reviews/components/ReviewDetailShell.js +11 -11
  409. package/dist/features/reviews/components/ReviewModal.js +1 -1
  410. package/dist/features/reviews/components/ReviewsIndexListing.js +2 -2
  411. package/dist/features/reviews/components/ReviewsList.js +2 -2
  412. package/dist/features/reviews/schemas/index.d.ts +22 -22
  413. package/dist/features/scams/components/ScamAwarenessModal.js +2 -2
  414. package/dist/features/scams/components/ScamProfileView.js +3 -3
  415. package/dist/features/scams/components/ScamRegistryView.js +2 -2
  416. package/dist/features/scams/schemas/index.d.ts +20 -20
  417. package/dist/features/search/components/Search.js +9 -9
  418. package/dist/features/search/components/SearchFiltersRow.js +1 -1
  419. package/dist/features/search/components/SearchResultsSection.js +3 -3
  420. package/dist/features/search/components/SearchView.js +1 -1
  421. package/dist/features/search/hooks/useNavSuggestions.js +2 -1
  422. package/dist/features/search/hooks/useSearch.js +2 -2
  423. package/dist/features/search/schemas/index.d.ts +3 -3
  424. package/dist/features/seller/components/BrandInlineSelect.js +2 -2
  425. package/dist/features/seller/components/CategoryInlineSelect.js +2 -2
  426. package/dist/features/seller/components/QuickProductForm.js +1 -1
  427. package/dist/features/seller/components/SellerAddressesView.js +4 -4
  428. package/dist/features/seller/components/SellerAnalyticsAlertsView.js +3 -3
  429. package/dist/features/seller/components/SellerAnalyticsView.js +2 -2
  430. package/dist/features/seller/components/SellerArtView.js +11 -11
  431. package/dist/features/seller/components/SellerAuctionsView.js +11 -11
  432. package/dist/features/seller/components/SellerBidsView.js +3 -3
  433. package/dist/features/seller/components/SellerBundlesView.js +12 -12
  434. package/dist/features/seller/components/SellerClassifiedView.js +11 -11
  435. package/dist/features/seller/components/SellerCouponEditorView.js +2 -2
  436. package/dist/features/seller/components/SellerDigitalCodesView.js +11 -11
  437. package/dist/features/seller/components/SellerFeaturesView.js +4 -4
  438. package/dist/features/seller/components/SellerLiveView.js +11 -11
  439. package/dist/features/seller/components/SellerOffersPanel.js +3 -2
  440. package/dist/features/seller/components/SellerOrdersView.js +2 -2
  441. package/dist/features/seller/components/SellerPayoutMethodsView.js +1 -1
  442. package/dist/features/seller/components/SellerPayoutRequestView.js +6 -5
  443. package/dist/features/seller/components/SellerPayoutSettingsView.js +5 -4
  444. package/dist/features/seller/components/SellerPreOrdersView.js +1 -1
  445. package/dist/features/seller/components/SellerPrizeDrawsView.js +1 -1
  446. package/dist/features/seller/components/SellerProductShell.js +20 -6
  447. package/dist/features/seller/components/SellerProductsCards.js +3 -3
  448. package/dist/features/seller/components/SellerProductsView.js +4 -4
  449. package/dist/features/seller/components/SellerReviewsView.js +7 -6
  450. package/dist/features/seller/components/SellerShippingView.js +2 -1
  451. package/dist/features/seller/components/SellerSidebar.js +5 -5
  452. package/dist/features/seller/components/SellerStickersView.js +11 -11
  453. package/dist/features/seller/components/SellerTemplatesView.js +1 -1
  454. package/dist/features/seller/schemas/index.d.ts +20 -20
  455. package/dist/features/server-errors/schemas/index.d.ts +6 -6
  456. package/dist/features/shell/CommandPalette.d.ts +27 -0
  457. package/dist/features/shell/CommandPalette.js +92 -0
  458. package/dist/features/shell/FormShell.js +4 -3
  459. package/dist/features/shell/QuickFormDrawer.js +3 -2
  460. package/dist/features/shell/StepForm.js +2 -2
  461. package/dist/features/shell/index.d.ts +2 -0
  462. package/dist/features/shell/index.js +1 -0
  463. package/dist/features/shipments/components/AdminShipmentEditorView.d.ts +7 -0
  464. package/dist/features/shipments/components/AdminShipmentEditorView.js +123 -0
  465. package/dist/features/shipments/components/AdminShipmentLotItemsView.d.ts +6 -0
  466. package/dist/features/shipments/components/AdminShipmentLotItemsView.js +96 -0
  467. package/dist/features/shipments/components/AdminShipmentProjectionsView.d.ts +9 -0
  468. package/dist/features/shipments/components/AdminShipmentProjectionsView.js +44 -0
  469. package/dist/features/shipments/components/AdminShipmentsView.d.ts +8 -0
  470. package/dist/features/shipments/components/AdminShipmentsView.js +82 -0
  471. package/dist/features/shipments/components/ShipmentItemLinkModal.d.ts +15 -0
  472. package/dist/features/shipments/components/ShipmentItemLinkModal.js +37 -0
  473. package/dist/features/shipments/hooks/useShipments.d.ts +69 -0
  474. package/dist/features/shipments/hooks/useShipments.js +96 -0
  475. package/dist/features/shipments/index.d.ts +10 -0
  476. package/dist/features/shipments/index.js +7 -0
  477. package/dist/features/shipments/manifest.d.ts +2 -0
  478. package/dist/features/shipments/manifest.js +26 -0
  479. package/dist/features/shipments/repository/shipment-items.repository.d.ts +56 -0
  480. package/dist/features/shipments/repository/shipment-items.repository.js +78 -0
  481. package/dist/features/shipments/repository/shipment-lots.repository.d.ts +48 -0
  482. package/dist/features/shipments/repository/shipment-lots.repository.js +55 -0
  483. package/dist/features/shipments/repository/shipments.repository.d.ts +50 -0
  484. package/dist/features/shipments/repository/shipments.repository.js +77 -0
  485. package/dist/features/shipments/schemas/firestore.d.ts +150 -0
  486. package/dist/features/shipments/schemas/firestore.js +76 -0
  487. package/dist/features/shipments/schemas/index.d.ts +2 -0
  488. package/dist/features/shipments/schemas/index.js +2 -0
  489. package/dist/features/shipments/schemas/validation.d.ts +350 -0
  490. package/dist/features/shipments/schemas/validation.js +96 -0
  491. package/dist/features/shipments/utils/cost-allocation.d.ts +25 -0
  492. package/dist/features/shipments/utils/cost-allocation.js +83 -0
  493. package/dist/features/site-settings/components/ActionPermissionsManager.js +2 -2
  494. package/dist/features/stores/components/InteractiveStoreCard.js +2 -2
  495. package/dist/features/stores/components/StoreAboutView.js +1 -1
  496. package/dist/features/stores/components/StoreAuctionsListing.js +3 -3
  497. package/dist/features/stores/components/StoreAuctionsView.js +1 -1
  498. package/dist/features/stores/components/StoreCapabilitiesGuideView.js +1 -1
  499. package/dist/features/stores/components/StoreClassifiedsListing.js +2 -2
  500. package/dist/features/stores/components/StoreDetailLayoutView.js +1 -1
  501. package/dist/features/stores/components/StoreDigitalCodesListing.js +2 -2
  502. package/dist/features/stores/components/StoreFinanceGuideView.js +2 -2
  503. package/dist/features/stores/components/StoreGuideHubView.js +2 -2
  504. package/dist/features/stores/components/StoreHeader.js +4 -4
  505. package/dist/features/stores/components/StoreLiveItemsListing.js +2 -2
  506. package/dist/features/stores/components/StoreNavTabs.js +2 -2
  507. package/dist/features/stores/components/StoreOrdersGuideView.js +1 -1
  508. package/dist/features/stores/components/StorePreOrdersListing.js +3 -3
  509. package/dist/features/stores/components/StoreProductsListing.js +1 -1
  510. package/dist/features/stores/components/StoreReviewsListing.js +2 -2
  511. package/dist/features/stores/components/StoreReviewsView.js +1 -1
  512. package/dist/features/stores/components/StoreSettingsGuideView.js +1 -1
  513. package/dist/features/stores/components/StoresIndexListing.js +9 -3
  514. package/dist/features/stores/schemas/index.d.ts +10 -10
  515. package/dist/features/support/schemas/index.d.ts +22 -22
  516. package/dist/features/whatsapp-bot/components/SellerWhatsAppSettingsView.js +3 -3
  517. package/dist/features/whatsapp-bot/components/WhatsAppChatButton.js +1 -1
  518. package/dist/features/wishlist/hooks/useWishlistCount.js +1 -2
  519. package/dist/index.d.ts +44 -1
  520. package/dist/index.js +37 -1
  521. package/dist/next/routing/route-map.d.ts +18 -0
  522. package/dist/next/routing/route-map.js +9 -0
  523. package/dist/react/hooks/useVisualViewportInset.d.ts +1 -0
  524. package/dist/react/hooks/useVisualViewportInset.js +59 -0
  525. package/dist/react/index.d.ts +1 -0
  526. package/dist/react/index.js +1 -0
  527. package/dist/repositories/index.d.ts +5 -0
  528. package/dist/repositories/index.js +5 -0
  529. package/dist/schemas/registry.d.ts +398 -364
  530. package/dist/schemas/sieve.d.ts +2 -2
  531. package/dist/schemas/webhooks/google-oauth.d.ts +2 -2
  532. package/dist/schemas/webhooks/razorpay.d.ts +100 -100
  533. package/dist/seed/_helpers/media.js +1 -0
  534. package/dist/seed/actions/demo-seed-actions.d.ts +1 -1
  535. package/dist/seed/catalogue-seed-data.d.ts +2 -0
  536. package/dist/seed/catalogue-seed-data.js +112 -0
  537. package/dist/seed/grouped-listings-seed-data.d.ts +5 -0
  538. package/dist/seed/homepage-sections-seed-data.js +0 -1
  539. package/dist/seed/index.d.ts +2 -0
  540. package/dist/seed/index.js +2 -0
  541. package/dist/seed/manifest.js +6 -0
  542. package/dist/seed/products-preorders-seed-data.d.ts +5 -0
  543. package/dist/seed/shipments-seed-data.d.ts +5 -0
  544. package/dist/seed/shipments-seed-data.js +185 -0
  545. package/dist/server.d.ts +4 -0
  546. package/dist/server.js +5 -0
  547. package/dist/styles.css +75 -19
  548. package/dist/tailwind-utilities.css +1 -1
  549. package/dist/tokens/index.d.ts +0 -2
  550. package/dist/tokens/index.js +0 -2
  551. package/dist/tokens/tokens.css +12 -2
  552. package/dist/ui/DataTable.js +4 -3
  553. package/dist/ui/components/Button.d.ts +4 -1
  554. package/dist/ui/components/Button.js +11 -5
  555. package/dist/ui/components/Checkbox.d.ts +9 -1
  556. package/dist/ui/components/Checkbox.js +5 -2
  557. package/dist/ui/components/ClaimCouponButton.js +2 -1
  558. package/dist/ui/components/ConfirmDeleteModal.style.css +1 -1
  559. package/dist/ui/components/Drawer.style.css +13 -1
  560. package/dist/ui/components/Dropdown.style.css +2 -2
  561. package/dist/ui/components/FilterDrawer.d.ts +4 -1
  562. package/dist/ui/components/FilterDrawer.js +8 -2
  563. package/dist/ui/components/Form.d.ts +1 -1
  564. package/dist/ui/components/Form.js +2 -2
  565. package/dist/ui/components/FormActionBar.style.css +6 -1
  566. package/dist/ui/components/IconButton.d.ts +6 -1
  567. package/dist/ui/components/IconButton.js +5 -2
  568. package/dist/ui/components/IconButton.style.css +11 -0
  569. package/dist/ui/components/ImageGallery.style.css +2 -0
  570. package/dist/ui/components/ImageLightbox.style.css +1 -0
  571. package/dist/ui/components/ListingFilterDrawer.d.ts +4 -1
  572. package/dist/ui/components/ListingFilterDrawer.js +4 -3
  573. package/dist/ui/components/ListingLayout.style.css +2 -2
  574. package/dist/ui/components/Modal.style.css +1 -1
  575. package/dist/ui/components/Pagination.d.ts +5 -1
  576. package/dist/ui/components/Pagination.js +4 -2
  577. package/dist/ui/components/RowActionMenu.js +1 -1
  578. package/dist/ui/components/RowActionMenu.style.css +1 -1
  579. package/dist/ui/components/Select.d.ts +6 -1
  580. package/dist/ui/components/Select.js +18 -13
  581. package/dist/ui/components/Select.style.css +1 -1
  582. package/dist/ui/components/Semantic.d.ts +13 -0
  583. package/dist/ui/components/Semantic.js +16 -3
  584. package/dist/ui/components/SideDrawer.style.css +16 -4
  585. package/dist/ui/components/SideModal.style.css +1 -1
  586. package/dist/ui/components/StickyToolbar.d.ts +3 -2
  587. package/dist/ui/components/StickyToolbar.js +1 -1
  588. package/dist/ui/components/Textarea.d.ts +5 -0
  589. package/dist/ui/components/Textarea.js +8 -4
  590. package/dist/ui/components/Toast.style.css +3 -0
  591. package/dist/ui/components/UnsavedChangesModal.style.css +1 -1
  592. package/dist/ui/components/surface-tokens.d.ts +121 -113
  593. package/dist/ui/components/surface-tokens.js +110 -104
  594. package/dist/ui/forms/FormShell.d.ts +8 -27
  595. package/dist/ui/forms/FormShell.js +1 -194
  596. package/dist/ui/forms/index.d.ts +2 -2
  597. package/dist/ui/forms/index.js +1 -1
  598. package/dist/ui/index.d.ts +8 -4
  599. package/dist/ui/index.js +4 -2
  600. package/dist/utils/id-generators.d.ts +27 -0
  601. package/dist/utils/id-generators.js +45 -0
  602. package/dist/utils/number.formatter.d.ts +7 -0
  603. package/dist/utils/number.formatter.js +9 -0
  604. package/dist/validation/schemas.d.ts +5 -5
  605. package/package.json +1 -1
@@ -34,12 +34,12 @@ export declare const razorpayPaymentEntitySchema: z.ZodObject<{
34
34
  status: string;
35
35
  id: string;
36
36
  amount: number;
37
- description?: string | null | undefined;
38
- method?: string | undefined;
39
37
  email?: string | undefined;
40
38
  captured?: boolean | undefined;
41
39
  notes?: Record<string, string> | undefined;
42
40
  wallet?: string | null | undefined;
41
+ description?: string | null | undefined;
42
+ method?: string | undefined;
43
43
  tax?: number | undefined;
44
44
  contact?: string | undefined;
45
45
  fee?: number | undefined;
@@ -64,12 +64,12 @@ export declare const razorpayPaymentEntitySchema: z.ZodObject<{
64
64
  status: string;
65
65
  id: string;
66
66
  amount: number;
67
- description?: string | null | undefined;
68
- method?: string | undefined;
69
67
  email?: string | undefined;
70
68
  captured?: boolean | undefined;
71
69
  notes?: Record<string, string> | undefined;
72
70
  wallet?: string | null | undefined;
71
+ description?: string | null | undefined;
72
+ method?: string | undefined;
73
73
  tax?: number | undefined;
74
74
  contact?: string | undefined;
75
75
  fee?: number | undefined;
@@ -212,12 +212,12 @@ export declare const razorpayWebhookEnvelopeSchema: z.ZodDiscriminatedUnion<"eve
212
212
  status: string;
213
213
  id: string;
214
214
  amount: number;
215
- description?: string | null | undefined;
216
- method?: string | undefined;
217
215
  email?: string | undefined;
218
216
  captured?: boolean | undefined;
219
217
  notes?: Record<string, string> | undefined;
220
218
  wallet?: string | null | undefined;
219
+ description?: string | null | undefined;
220
+ method?: string | undefined;
221
221
  tax?: number | undefined;
222
222
  contact?: string | undefined;
223
223
  fee?: number | undefined;
@@ -242,12 +242,12 @@ export declare const razorpayWebhookEnvelopeSchema: z.ZodDiscriminatedUnion<"eve
242
242
  status: string;
243
243
  id: string;
244
244
  amount: number;
245
- description?: string | null | undefined;
246
- method?: string | undefined;
247
245
  email?: string | undefined;
248
246
  captured?: boolean | undefined;
249
247
  notes?: Record<string, string> | undefined;
250
248
  wallet?: string | null | undefined;
249
+ description?: string | null | undefined;
250
+ method?: string | undefined;
251
251
  tax?: number | undefined;
252
252
  contact?: string | undefined;
253
253
  fee?: number | undefined;
@@ -274,12 +274,12 @@ export declare const razorpayWebhookEnvelopeSchema: z.ZodDiscriminatedUnion<"eve
274
274
  status: string;
275
275
  id: string;
276
276
  amount: number;
277
- description?: string | null | undefined;
278
- method?: string | undefined;
279
277
  email?: string | undefined;
280
278
  captured?: boolean | undefined;
281
279
  notes?: Record<string, string> | undefined;
282
280
  wallet?: string | null | undefined;
281
+ description?: string | null | undefined;
282
+ method?: string | undefined;
283
283
  tax?: number | undefined;
284
284
  contact?: string | undefined;
285
285
  fee?: number | undefined;
@@ -306,12 +306,12 @@ export declare const razorpayWebhookEnvelopeSchema: z.ZodDiscriminatedUnion<"eve
306
306
  status: string;
307
307
  id: string;
308
308
  amount: number;
309
- description?: string | null | undefined;
310
- method?: string | undefined;
311
309
  email?: string | undefined;
312
310
  captured?: boolean | undefined;
313
311
  notes?: Record<string, string> | undefined;
314
312
  wallet?: string | null | undefined;
313
+ description?: string | null | undefined;
314
+ method?: string | undefined;
315
315
  tax?: number | undefined;
316
316
  contact?: string | undefined;
317
317
  fee?: number | undefined;
@@ -340,12 +340,12 @@ export declare const razorpayWebhookEnvelopeSchema: z.ZodDiscriminatedUnion<"eve
340
340
  status: string;
341
341
  id: string;
342
342
  amount: number;
343
- description?: string | null | undefined;
344
- method?: string | undefined;
345
343
  email?: string | undefined;
346
344
  captured?: boolean | undefined;
347
345
  notes?: Record<string, string> | undefined;
348
346
  wallet?: string | null | undefined;
347
+ description?: string | null | undefined;
348
+ method?: string | undefined;
349
349
  tax?: number | undefined;
350
350
  contact?: string | undefined;
351
351
  fee?: number | undefined;
@@ -374,12 +374,12 @@ export declare const razorpayWebhookEnvelopeSchema: z.ZodDiscriminatedUnion<"eve
374
374
  status: string;
375
375
  id: string;
376
376
  amount: number;
377
- description?: string | null | undefined;
378
- method?: string | undefined;
379
377
  email?: string | undefined;
380
378
  captured?: boolean | undefined;
381
379
  notes?: Record<string, string> | undefined;
382
380
  wallet?: string | null | undefined;
381
+ description?: string | null | undefined;
382
+ method?: string | undefined;
383
383
  tax?: number | undefined;
384
384
  contact?: string | undefined;
385
385
  fee?: number | undefined;
@@ -411,12 +411,12 @@ export declare const razorpayWebhookEnvelopeSchema: z.ZodDiscriminatedUnion<"eve
411
411
  status: string;
412
412
  id: string;
413
413
  amount: number;
414
- description?: string | null | undefined;
415
- method?: string | undefined;
416
414
  email?: string | undefined;
417
415
  captured?: boolean | undefined;
418
416
  notes?: Record<string, string> | undefined;
419
417
  wallet?: string | null | undefined;
418
+ description?: string | null | undefined;
419
+ method?: string | undefined;
420
420
  tax?: number | undefined;
421
421
  contact?: string | undefined;
422
422
  fee?: number | undefined;
@@ -451,12 +451,12 @@ export declare const razorpayWebhookEnvelopeSchema: z.ZodDiscriminatedUnion<"eve
451
451
  status: string;
452
452
  id: string;
453
453
  amount: number;
454
- description?: string | null | undefined;
455
- method?: string | undefined;
456
454
  email?: string | undefined;
457
455
  captured?: boolean | undefined;
458
456
  notes?: Record<string, string> | undefined;
459
457
  wallet?: string | null | undefined;
458
+ description?: string | null | undefined;
459
+ method?: string | undefined;
460
460
  tax?: number | undefined;
461
461
  contact?: string | undefined;
462
462
  fee?: number | undefined;
@@ -524,12 +524,12 @@ export declare const razorpayWebhookEnvelopeSchema: z.ZodDiscriminatedUnion<"eve
524
524
  status: string;
525
525
  id: string;
526
526
  amount: number;
527
- description?: string | null | undefined;
528
- method?: string | undefined;
529
527
  email?: string | undefined;
530
528
  captured?: boolean | undefined;
531
529
  notes?: Record<string, string> | undefined;
532
530
  wallet?: string | null | undefined;
531
+ description?: string | null | undefined;
532
+ method?: string | undefined;
533
533
  tax?: number | undefined;
534
534
  contact?: string | undefined;
535
535
  fee?: number | undefined;
@@ -554,12 +554,12 @@ export declare const razorpayWebhookEnvelopeSchema: z.ZodDiscriminatedUnion<"eve
554
554
  status: string;
555
555
  id: string;
556
556
  amount: number;
557
- description?: string | null | undefined;
558
- method?: string | undefined;
559
557
  email?: string | undefined;
560
558
  captured?: boolean | undefined;
561
559
  notes?: Record<string, string> | undefined;
562
560
  wallet?: string | null | undefined;
561
+ description?: string | null | undefined;
562
+ method?: string | undefined;
563
563
  tax?: number | undefined;
564
564
  contact?: string | undefined;
565
565
  fee?: number | undefined;
@@ -586,12 +586,12 @@ export declare const razorpayWebhookEnvelopeSchema: z.ZodDiscriminatedUnion<"eve
586
586
  status: string;
587
587
  id: string;
588
588
  amount: number;
589
- description?: string | null | undefined;
590
- method?: string | undefined;
591
589
  email?: string | undefined;
592
590
  captured?: boolean | undefined;
593
591
  notes?: Record<string, string> | undefined;
594
592
  wallet?: string | null | undefined;
593
+ description?: string | null | undefined;
594
+ method?: string | undefined;
595
595
  tax?: number | undefined;
596
596
  contact?: string | undefined;
597
597
  fee?: number | undefined;
@@ -618,12 +618,12 @@ export declare const razorpayWebhookEnvelopeSchema: z.ZodDiscriminatedUnion<"eve
618
618
  status: string;
619
619
  id: string;
620
620
  amount: number;
621
- description?: string | null | undefined;
622
- method?: string | undefined;
623
621
  email?: string | undefined;
624
622
  captured?: boolean | undefined;
625
623
  notes?: Record<string, string> | undefined;
626
624
  wallet?: string | null | undefined;
625
+ description?: string | null | undefined;
626
+ method?: string | undefined;
627
627
  tax?: number | undefined;
628
628
  contact?: string | undefined;
629
629
  fee?: number | undefined;
@@ -652,12 +652,12 @@ export declare const razorpayWebhookEnvelopeSchema: z.ZodDiscriminatedUnion<"eve
652
652
  status: string;
653
653
  id: string;
654
654
  amount: number;
655
- description?: string | null | undefined;
656
- method?: string | undefined;
657
655
  email?: string | undefined;
658
656
  captured?: boolean | undefined;
659
657
  notes?: Record<string, string> | undefined;
660
658
  wallet?: string | null | undefined;
659
+ description?: string | null | undefined;
660
+ method?: string | undefined;
661
661
  tax?: number | undefined;
662
662
  contact?: string | undefined;
663
663
  fee?: number | undefined;
@@ -686,12 +686,12 @@ export declare const razorpayWebhookEnvelopeSchema: z.ZodDiscriminatedUnion<"eve
686
686
  status: string;
687
687
  id: string;
688
688
  amount: number;
689
- description?: string | null | undefined;
690
- method?: string | undefined;
691
689
  email?: string | undefined;
692
690
  captured?: boolean | undefined;
693
691
  notes?: Record<string, string> | undefined;
694
692
  wallet?: string | null | undefined;
693
+ description?: string | null | undefined;
694
+ method?: string | undefined;
695
695
  tax?: number | undefined;
696
696
  contact?: string | undefined;
697
697
  fee?: number | undefined;
@@ -723,12 +723,12 @@ export declare const razorpayWebhookEnvelopeSchema: z.ZodDiscriminatedUnion<"eve
723
723
  status: string;
724
724
  id: string;
725
725
  amount: number;
726
- description?: string | null | undefined;
727
- method?: string | undefined;
728
726
  email?: string | undefined;
729
727
  captured?: boolean | undefined;
730
728
  notes?: Record<string, string> | undefined;
731
729
  wallet?: string | null | undefined;
730
+ description?: string | null | undefined;
731
+ method?: string | undefined;
732
732
  tax?: number | undefined;
733
733
  contact?: string | undefined;
734
734
  fee?: number | undefined;
@@ -763,12 +763,12 @@ export declare const razorpayWebhookEnvelopeSchema: z.ZodDiscriminatedUnion<"eve
763
763
  status: string;
764
764
  id: string;
765
765
  amount: number;
766
- description?: string | null | undefined;
767
- method?: string | undefined;
768
766
  email?: string | undefined;
769
767
  captured?: boolean | undefined;
770
768
  notes?: Record<string, string> | undefined;
771
769
  wallet?: string | null | undefined;
770
+ description?: string | null | undefined;
771
+ method?: string | undefined;
772
772
  tax?: number | undefined;
773
773
  contact?: string | undefined;
774
774
  fee?: number | undefined;
@@ -836,12 +836,12 @@ export declare const razorpayWebhookEnvelopeSchema: z.ZodDiscriminatedUnion<"eve
836
836
  status: string;
837
837
  id: string;
838
838
  amount: number;
839
- description?: string | null | undefined;
840
- method?: string | undefined;
841
839
  email?: string | undefined;
842
840
  captured?: boolean | undefined;
843
841
  notes?: Record<string, string> | undefined;
844
842
  wallet?: string | null | undefined;
843
+ description?: string | null | undefined;
844
+ method?: string | undefined;
845
845
  tax?: number | undefined;
846
846
  contact?: string | undefined;
847
847
  fee?: number | undefined;
@@ -866,12 +866,12 @@ export declare const razorpayWebhookEnvelopeSchema: z.ZodDiscriminatedUnion<"eve
866
866
  status: string;
867
867
  id: string;
868
868
  amount: number;
869
- description?: string | null | undefined;
870
- method?: string | undefined;
871
869
  email?: string | undefined;
872
870
  captured?: boolean | undefined;
873
871
  notes?: Record<string, string> | undefined;
874
872
  wallet?: string | null | undefined;
873
+ description?: string | null | undefined;
874
+ method?: string | undefined;
875
875
  tax?: number | undefined;
876
876
  contact?: string | undefined;
877
877
  fee?: number | undefined;
@@ -898,12 +898,12 @@ export declare const razorpayWebhookEnvelopeSchema: z.ZodDiscriminatedUnion<"eve
898
898
  status: string;
899
899
  id: string;
900
900
  amount: number;
901
- description?: string | null | undefined;
902
- method?: string | undefined;
903
901
  email?: string | undefined;
904
902
  captured?: boolean | undefined;
905
903
  notes?: Record<string, string> | undefined;
906
904
  wallet?: string | null | undefined;
905
+ description?: string | null | undefined;
906
+ method?: string | undefined;
907
907
  tax?: number | undefined;
908
908
  contact?: string | undefined;
909
909
  fee?: number | undefined;
@@ -930,12 +930,12 @@ export declare const razorpayWebhookEnvelopeSchema: z.ZodDiscriminatedUnion<"eve
930
930
  status: string;
931
931
  id: string;
932
932
  amount: number;
933
- description?: string | null | undefined;
934
- method?: string | undefined;
935
933
  email?: string | undefined;
936
934
  captured?: boolean | undefined;
937
935
  notes?: Record<string, string> | undefined;
938
936
  wallet?: string | null | undefined;
937
+ description?: string | null | undefined;
938
+ method?: string | undefined;
939
939
  tax?: number | undefined;
940
940
  contact?: string | undefined;
941
941
  fee?: number | undefined;
@@ -964,12 +964,12 @@ export declare const razorpayWebhookEnvelopeSchema: z.ZodDiscriminatedUnion<"eve
964
964
  status: string;
965
965
  id: string;
966
966
  amount: number;
967
- description?: string | null | undefined;
968
- method?: string | undefined;
969
967
  email?: string | undefined;
970
968
  captured?: boolean | undefined;
971
969
  notes?: Record<string, string> | undefined;
972
970
  wallet?: string | null | undefined;
971
+ description?: string | null | undefined;
972
+ method?: string | undefined;
973
973
  tax?: number | undefined;
974
974
  contact?: string | undefined;
975
975
  fee?: number | undefined;
@@ -998,12 +998,12 @@ export declare const razorpayWebhookEnvelopeSchema: z.ZodDiscriminatedUnion<"eve
998
998
  status: string;
999
999
  id: string;
1000
1000
  amount: number;
1001
- description?: string | null | undefined;
1002
- method?: string | undefined;
1003
1001
  email?: string | undefined;
1004
1002
  captured?: boolean | undefined;
1005
1003
  notes?: Record<string, string> | undefined;
1006
1004
  wallet?: string | null | undefined;
1005
+ description?: string | null | undefined;
1006
+ method?: string | undefined;
1007
1007
  tax?: number | undefined;
1008
1008
  contact?: string | undefined;
1009
1009
  fee?: number | undefined;
@@ -1035,12 +1035,12 @@ export declare const razorpayWebhookEnvelopeSchema: z.ZodDiscriminatedUnion<"eve
1035
1035
  status: string;
1036
1036
  id: string;
1037
1037
  amount: number;
1038
- description?: string | null | undefined;
1039
- method?: string | undefined;
1040
1038
  email?: string | undefined;
1041
1039
  captured?: boolean | undefined;
1042
1040
  notes?: Record<string, string> | undefined;
1043
1041
  wallet?: string | null | undefined;
1042
+ description?: string | null | undefined;
1043
+ method?: string | undefined;
1044
1044
  tax?: number | undefined;
1045
1045
  contact?: string | undefined;
1046
1046
  fee?: number | undefined;
@@ -1075,12 +1075,12 @@ export declare const razorpayWebhookEnvelopeSchema: z.ZodDiscriminatedUnion<"eve
1075
1075
  status: string;
1076
1076
  id: string;
1077
1077
  amount: number;
1078
- description?: string | null | undefined;
1079
- method?: string | undefined;
1080
1078
  email?: string | undefined;
1081
1079
  captured?: boolean | undefined;
1082
1080
  notes?: Record<string, string> | undefined;
1083
1081
  wallet?: string | null | undefined;
1082
+ description?: string | null | undefined;
1083
+ method?: string | undefined;
1084
1084
  tax?: number | undefined;
1085
1085
  contact?: string | undefined;
1086
1086
  fee?: number | undefined;
@@ -1225,12 +1225,12 @@ export declare const razorpayWebhookEnvelopeSchema: z.ZodDiscriminatedUnion<"eve
1225
1225
  status: string;
1226
1226
  id: string;
1227
1227
  amount: number;
1228
- description?: string | null | undefined;
1229
- method?: string | undefined;
1230
1228
  email?: string | undefined;
1231
1229
  captured?: boolean | undefined;
1232
1230
  notes?: Record<string, string> | undefined;
1233
1231
  wallet?: string | null | undefined;
1232
+ description?: string | null | undefined;
1233
+ method?: string | undefined;
1234
1234
  tax?: number | undefined;
1235
1235
  contact?: string | undefined;
1236
1236
  fee?: number | undefined;
@@ -1255,12 +1255,12 @@ export declare const razorpayWebhookEnvelopeSchema: z.ZodDiscriminatedUnion<"eve
1255
1255
  status: string;
1256
1256
  id: string;
1257
1257
  amount: number;
1258
- description?: string | null | undefined;
1259
- method?: string | undefined;
1260
1258
  email?: string | undefined;
1261
1259
  captured?: boolean | undefined;
1262
1260
  notes?: Record<string, string> | undefined;
1263
1261
  wallet?: string | null | undefined;
1262
+ description?: string | null | undefined;
1263
+ method?: string | undefined;
1264
1264
  tax?: number | undefined;
1265
1265
  contact?: string | undefined;
1266
1266
  fee?: number | undefined;
@@ -1287,12 +1287,12 @@ export declare const razorpayWebhookEnvelopeSchema: z.ZodDiscriminatedUnion<"eve
1287
1287
  status: string;
1288
1288
  id: string;
1289
1289
  amount: number;
1290
- description?: string | null | undefined;
1291
- method?: string | undefined;
1292
1290
  email?: string | undefined;
1293
1291
  captured?: boolean | undefined;
1294
1292
  notes?: Record<string, string> | undefined;
1295
1293
  wallet?: string | null | undefined;
1294
+ description?: string | null | undefined;
1295
+ method?: string | undefined;
1296
1296
  tax?: number | undefined;
1297
1297
  contact?: string | undefined;
1298
1298
  fee?: number | undefined;
@@ -1319,12 +1319,12 @@ export declare const razorpayWebhookEnvelopeSchema: z.ZodDiscriminatedUnion<"eve
1319
1319
  status: string;
1320
1320
  id: string;
1321
1321
  amount: number;
1322
- description?: string | null | undefined;
1323
- method?: string | undefined;
1324
1322
  email?: string | undefined;
1325
1323
  captured?: boolean | undefined;
1326
1324
  notes?: Record<string, string> | undefined;
1327
1325
  wallet?: string | null | undefined;
1326
+ description?: string | null | undefined;
1327
+ method?: string | undefined;
1328
1328
  tax?: number | undefined;
1329
1329
  contact?: string | undefined;
1330
1330
  fee?: number | undefined;
@@ -1370,12 +1370,12 @@ export declare const razorpayWebhookEnvelopeSchema: z.ZodDiscriminatedUnion<"eve
1370
1370
  status: string;
1371
1371
  id: string;
1372
1372
  amount: number;
1373
- description?: string | null | undefined;
1374
- method?: string | undefined;
1375
1373
  email?: string | undefined;
1376
1374
  captured?: boolean | undefined;
1377
1375
  notes?: Record<string, string> | undefined;
1378
1376
  wallet?: string | null | undefined;
1377
+ description?: string | null | undefined;
1378
+ method?: string | undefined;
1379
1379
  tax?: number | undefined;
1380
1380
  contact?: string | undefined;
1381
1381
  fee?: number | undefined;
@@ -1421,12 +1421,12 @@ export declare const razorpayWebhookEnvelopeSchema: z.ZodDiscriminatedUnion<"eve
1421
1421
  status: string;
1422
1422
  id: string;
1423
1423
  amount: number;
1424
- description?: string | null | undefined;
1425
- method?: string | undefined;
1426
1424
  email?: string | undefined;
1427
1425
  captured?: boolean | undefined;
1428
1426
  notes?: Record<string, string> | undefined;
1429
1427
  wallet?: string | null | undefined;
1428
+ description?: string | null | undefined;
1429
+ method?: string | undefined;
1430
1430
  tax?: number | undefined;
1431
1431
  contact?: string | undefined;
1432
1432
  fee?: number | undefined;
@@ -1475,12 +1475,12 @@ export declare const razorpayWebhookEnvelopeSchema: z.ZodDiscriminatedUnion<"eve
1475
1475
  status: string;
1476
1476
  id: string;
1477
1477
  amount: number;
1478
- description?: string | null | undefined;
1479
- method?: string | undefined;
1480
1478
  email?: string | undefined;
1481
1479
  captured?: boolean | undefined;
1482
1480
  notes?: Record<string, string> | undefined;
1483
1481
  wallet?: string | null | undefined;
1482
+ description?: string | null | undefined;
1483
+ method?: string | undefined;
1484
1484
  tax?: number | undefined;
1485
1485
  contact?: string | undefined;
1486
1486
  fee?: number | undefined;
@@ -1532,12 +1532,12 @@ export declare const razorpayWebhookEnvelopeSchema: z.ZodDiscriminatedUnion<"eve
1532
1532
  status: string;
1533
1533
  id: string;
1534
1534
  amount: number;
1535
- description?: string | null | undefined;
1536
- method?: string | undefined;
1537
1535
  email?: string | undefined;
1538
1536
  captured?: boolean | undefined;
1539
1537
  notes?: Record<string, string> | undefined;
1540
1538
  wallet?: string | null | undefined;
1539
+ description?: string | null | undefined;
1540
+ method?: string | undefined;
1541
1541
  tax?: number | undefined;
1542
1542
  contact?: string | undefined;
1543
1543
  fee?: number | undefined;
@@ -1850,12 +1850,12 @@ export declare const razorpayWebhookEnvelopeSchema: z.ZodDiscriminatedUnion<"eve
1850
1850
  status: string;
1851
1851
  id: string;
1852
1852
  amount: number;
1853
- description?: string | null | undefined;
1854
- method?: string | undefined;
1855
1853
  email?: string | undefined;
1856
1854
  captured?: boolean | undefined;
1857
1855
  notes?: Record<string, string> | undefined;
1858
1856
  wallet?: string | null | undefined;
1857
+ description?: string | null | undefined;
1858
+ method?: string | undefined;
1859
1859
  tax?: number | undefined;
1860
1860
  contact?: string | undefined;
1861
1861
  fee?: number | undefined;
@@ -1880,12 +1880,12 @@ export declare const razorpayWebhookEnvelopeSchema: z.ZodDiscriminatedUnion<"eve
1880
1880
  status: string;
1881
1881
  id: string;
1882
1882
  amount: number;
1883
- description?: string | null | undefined;
1884
- method?: string | undefined;
1885
1883
  email?: string | undefined;
1886
1884
  captured?: boolean | undefined;
1887
1885
  notes?: Record<string, string> | undefined;
1888
1886
  wallet?: string | null | undefined;
1887
+ description?: string | null | undefined;
1888
+ method?: string | undefined;
1889
1889
  tax?: number | undefined;
1890
1890
  contact?: string | undefined;
1891
1891
  fee?: number | undefined;
@@ -1912,12 +1912,12 @@ export declare const razorpayWebhookEnvelopeSchema: z.ZodDiscriminatedUnion<"eve
1912
1912
  status: string;
1913
1913
  id: string;
1914
1914
  amount: number;
1915
- description?: string | null | undefined;
1916
- method?: string | undefined;
1917
1915
  email?: string | undefined;
1918
1916
  captured?: boolean | undefined;
1919
1917
  notes?: Record<string, string> | undefined;
1920
1918
  wallet?: string | null | undefined;
1919
+ description?: string | null | undefined;
1920
+ method?: string | undefined;
1921
1921
  tax?: number | undefined;
1922
1922
  contact?: string | undefined;
1923
1923
  fee?: number | undefined;
@@ -1944,12 +1944,12 @@ export declare const razorpayWebhookEnvelopeSchema: z.ZodDiscriminatedUnion<"eve
1944
1944
  status: string;
1945
1945
  id: string;
1946
1946
  amount: number;
1947
- description?: string | null | undefined;
1948
- method?: string | undefined;
1949
1947
  email?: string | undefined;
1950
1948
  captured?: boolean | undefined;
1951
1949
  notes?: Record<string, string> | undefined;
1952
1950
  wallet?: string | null | undefined;
1951
+ description?: string | null | undefined;
1952
+ method?: string | undefined;
1953
1953
  tax?: number | undefined;
1954
1954
  contact?: string | undefined;
1955
1955
  fee?: number | undefined;
@@ -1995,12 +1995,12 @@ export declare const razorpayWebhookEnvelopeSchema: z.ZodDiscriminatedUnion<"eve
1995
1995
  status: string;
1996
1996
  id: string;
1997
1997
  amount: number;
1998
- description?: string | null | undefined;
1999
- method?: string | undefined;
2000
1998
  email?: string | undefined;
2001
1999
  captured?: boolean | undefined;
2002
2000
  notes?: Record<string, string> | undefined;
2003
2001
  wallet?: string | null | undefined;
2002
+ description?: string | null | undefined;
2003
+ method?: string | undefined;
2004
2004
  tax?: number | undefined;
2005
2005
  contact?: string | undefined;
2006
2006
  fee?: number | undefined;
@@ -2046,12 +2046,12 @@ export declare const razorpayWebhookEnvelopeSchema: z.ZodDiscriminatedUnion<"eve
2046
2046
  status: string;
2047
2047
  id: string;
2048
2048
  amount: number;
2049
- description?: string | null | undefined;
2050
- method?: string | undefined;
2051
2049
  email?: string | undefined;
2052
2050
  captured?: boolean | undefined;
2053
2051
  notes?: Record<string, string> | undefined;
2054
2052
  wallet?: string | null | undefined;
2053
+ description?: string | null | undefined;
2054
+ method?: string | undefined;
2055
2055
  tax?: number | undefined;
2056
2056
  contact?: string | undefined;
2057
2057
  fee?: number | undefined;
@@ -2100,12 +2100,12 @@ export declare const razorpayWebhookEnvelopeSchema: z.ZodDiscriminatedUnion<"eve
2100
2100
  status: string;
2101
2101
  id: string;
2102
2102
  amount: number;
2103
- description?: string | null | undefined;
2104
- method?: string | undefined;
2105
2103
  email?: string | undefined;
2106
2104
  captured?: boolean | undefined;
2107
2105
  notes?: Record<string, string> | undefined;
2108
2106
  wallet?: string | null | undefined;
2107
+ description?: string | null | undefined;
2108
+ method?: string | undefined;
2109
2109
  tax?: number | undefined;
2110
2110
  contact?: string | undefined;
2111
2111
  fee?: number | undefined;
@@ -2157,12 +2157,12 @@ export declare const razorpayWebhookEnvelopeSchema: z.ZodDiscriminatedUnion<"eve
2157
2157
  status: string;
2158
2158
  id: string;
2159
2159
  amount: number;
2160
- description?: string | null | undefined;
2161
- method?: string | undefined;
2162
2160
  email?: string | undefined;
2163
2161
  captured?: boolean | undefined;
2164
2162
  notes?: Record<string, string> | undefined;
2165
2163
  wallet?: string | null | undefined;
2164
+ description?: string | null | undefined;
2165
+ method?: string | undefined;
2166
2166
  tax?: number | undefined;
2167
2167
  contact?: string | undefined;
2168
2168
  fee?: number | undefined;
@@ -2297,12 +2297,12 @@ export declare const razorpayWebhookEnvelopeSchema: z.ZodDiscriminatedUnion<"eve
2297
2297
  status: string;
2298
2298
  id: string;
2299
2299
  amount: number;
2300
- description?: string | null | undefined;
2301
- method?: string | undefined;
2302
2300
  email?: string | undefined;
2303
2301
  captured?: boolean | undefined;
2304
2302
  notes?: Record<string, string> | undefined;
2305
2303
  wallet?: string | null | undefined;
2304
+ description?: string | null | undefined;
2305
+ method?: string | undefined;
2306
2306
  tax?: number | undefined;
2307
2307
  contact?: string | undefined;
2308
2308
  fee?: number | undefined;
@@ -2327,12 +2327,12 @@ export declare const razorpayWebhookEnvelopeSchema: z.ZodDiscriminatedUnion<"eve
2327
2327
  status: string;
2328
2328
  id: string;
2329
2329
  amount: number;
2330
- description?: string | null | undefined;
2331
- method?: string | undefined;
2332
2330
  email?: string | undefined;
2333
2331
  captured?: boolean | undefined;
2334
2332
  notes?: Record<string, string> | undefined;
2335
2333
  wallet?: string | null | undefined;
2334
+ description?: string | null | undefined;
2335
+ method?: string | undefined;
2336
2336
  tax?: number | undefined;
2337
2337
  contact?: string | undefined;
2338
2338
  fee?: number | undefined;
@@ -2359,12 +2359,12 @@ export declare const razorpayWebhookEnvelopeSchema: z.ZodDiscriminatedUnion<"eve
2359
2359
  status: string;
2360
2360
  id: string;
2361
2361
  amount: number;
2362
- description?: string | null | undefined;
2363
- method?: string | undefined;
2364
2362
  email?: string | undefined;
2365
2363
  captured?: boolean | undefined;
2366
2364
  notes?: Record<string, string> | undefined;
2367
2365
  wallet?: string | null | undefined;
2366
+ description?: string | null | undefined;
2367
+ method?: string | undefined;
2368
2368
  tax?: number | undefined;
2369
2369
  contact?: string | undefined;
2370
2370
  fee?: number | undefined;
@@ -2391,12 +2391,12 @@ export declare const razorpayWebhookEnvelopeSchema: z.ZodDiscriminatedUnion<"eve
2391
2391
  status: string;
2392
2392
  id: string;
2393
2393
  amount: number;
2394
- description?: string | null | undefined;
2395
- method?: string | undefined;
2396
2394
  email?: string | undefined;
2397
2395
  captured?: boolean | undefined;
2398
2396
  notes?: Record<string, string> | undefined;
2399
2397
  wallet?: string | null | undefined;
2398
+ description?: string | null | undefined;
2399
+ method?: string | undefined;
2400
2400
  tax?: number | undefined;
2401
2401
  contact?: string | undefined;
2402
2402
  fee?: number | undefined;
@@ -2440,12 +2440,12 @@ export declare const razorpayWebhookEnvelopeSchema: z.ZodDiscriminatedUnion<"eve
2440
2440
  status: string;
2441
2441
  id: string;
2442
2442
  amount: number;
2443
- description?: string | null | undefined;
2444
- method?: string | undefined;
2445
2443
  email?: string | undefined;
2446
2444
  captured?: boolean | undefined;
2447
2445
  notes?: Record<string, string> | undefined;
2448
2446
  wallet?: string | null | undefined;
2447
+ description?: string | null | undefined;
2448
+ method?: string | undefined;
2449
2449
  tax?: number | undefined;
2450
2450
  contact?: string | undefined;
2451
2451
  fee?: number | undefined;
@@ -2489,12 +2489,12 @@ export declare const razorpayWebhookEnvelopeSchema: z.ZodDiscriminatedUnion<"eve
2489
2489
  status: string;
2490
2490
  id: string;
2491
2491
  amount: number;
2492
- description?: string | null | undefined;
2493
- method?: string | undefined;
2494
2492
  email?: string | undefined;
2495
2493
  captured?: boolean | undefined;
2496
2494
  notes?: Record<string, string> | undefined;
2497
2495
  wallet?: string | null | undefined;
2496
+ description?: string | null | undefined;
2497
+ method?: string | undefined;
2498
2498
  tax?: number | undefined;
2499
2499
  contact?: string | undefined;
2500
2500
  fee?: number | undefined;
@@ -2541,12 +2541,12 @@ export declare const razorpayWebhookEnvelopeSchema: z.ZodDiscriminatedUnion<"eve
2541
2541
  status: string;
2542
2542
  id: string;
2543
2543
  amount: number;
2544
- description?: string | null | undefined;
2545
- method?: string | undefined;
2546
2544
  email?: string | undefined;
2547
2545
  captured?: boolean | undefined;
2548
2546
  notes?: Record<string, string> | undefined;
2549
2547
  wallet?: string | null | undefined;
2548
+ description?: string | null | undefined;
2549
+ method?: string | undefined;
2550
2550
  tax?: number | undefined;
2551
2551
  contact?: string | undefined;
2552
2552
  fee?: number | undefined;
@@ -2596,12 +2596,12 @@ export declare const razorpayWebhookEnvelopeSchema: z.ZodDiscriminatedUnion<"eve
2596
2596
  status: string;
2597
2597
  id: string;
2598
2598
  amount: number;
2599
- description?: string | null | undefined;
2600
- method?: string | undefined;
2601
2599
  email?: string | undefined;
2602
2600
  captured?: boolean | undefined;
2603
2601
  notes?: Record<string, string> | undefined;
2604
2602
  wallet?: string | null | undefined;
2603
+ description?: string | null | undefined;
2604
+ method?: string | undefined;
2605
2605
  tax?: number | undefined;
2606
2606
  contact?: string | undefined;
2607
2607
  fee?: number | undefined;