@mohasinac/appkit 4.7.2 → 4.8.0

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 (45) hide show
  1. package/dist/_internal/client/features/layout/DashboardLayoutClient.js +25 -5
  2. package/dist/_internal/shared/features/cart/schema.d.ts +6 -6
  3. package/dist/_internal/shared/features/orders/schema.d.ts +2 -2
  4. package/dist/_internal/shared/features/products/schema.d.ts +8 -8
  5. package/dist/features/account/schemas/index.d.ts +12 -12
  6. package/dist/features/admin/components/AdminArtView.js +1 -0
  7. package/dist/features/admin/components/AdminBlogView.js +1 -0
  8. package/dist/features/admin/components/AdminClassifiedView.js +1 -0
  9. package/dist/features/admin/components/AdminDigitalCodesView.js +1 -0
  10. package/dist/features/admin/components/AdminLiveView.js +1 -0
  11. package/dist/features/admin/components/AdminPrizeDrawsView.js +1 -0
  12. package/dist/features/admin/components/AdminProductsView.js +1 -0
  13. package/dist/features/admin/components/AdminStickersView.js +1 -0
  14. package/dist/features/admin/components/AdminStoresView.js +1 -0
  15. package/dist/features/admin/components/AdminUsersView.js +1 -0
  16. package/dist/features/admin/components/AdminViewCards.d.ts +3 -1
  17. package/dist/features/admin/components/AdminViewCards.js +21 -7
  18. package/dist/features/admin/components/DataListingView.d.ts +2 -0
  19. package/dist/features/admin/components/DataListingView.js +4 -2
  20. package/dist/features/admin/components/DataTable.d.ts +3 -1
  21. package/dist/features/admin/components/DataTable.js +36 -21
  22. package/dist/features/collections/schemas/index.d.ts +3 -3
  23. package/dist/features/homepage/schemas/index.d.ts +4 -4
  24. package/dist/features/orders/schemas/index.d.ts +22 -22
  25. package/dist/features/pre-orders/schemas/index.d.ts +2 -2
  26. package/dist/features/products/schemas/index.d.ts +8 -8
  27. package/dist/features/products/schemas/product-features.validators.d.ts +6 -6
  28. package/dist/features/reviews/schemas/index.d.ts +4 -4
  29. package/dist/features/scams/schemas/index.d.ts +4 -4
  30. package/dist/features/seller/components/SellerAuctionsView.js +1 -0
  31. package/dist/features/seller/components/SellerPreOrdersView.js +1 -0
  32. package/dist/features/seller/components/SellerPrizeDrawsView.js +1 -0
  33. package/dist/features/seller/components/SellerProductsView.js +1 -0
  34. package/dist/features/shipments/schemas/validation.d.ts +6 -6
  35. package/dist/features/support/schemas/index.d.ts +2 -2
  36. package/dist/features/wishlist/hooks/useWishlistWithGuest.d.ts +1 -1
  37. package/dist/schemas/registry.d.ts +70 -70
  38. package/dist/schemas/webhooks/razorpay.d.ts +50 -50
  39. package/dist/ui/columns/column-renderers.d.ts +5 -0
  40. package/dist/ui/columns/column-renderers.js +135 -0
  41. package/dist/ui/columns/index.d.ts +2 -2
  42. package/dist/ui/columns/index.js +1 -1
  43. package/dist/ui/index.d.ts +2 -2
  44. package/dist/ui/index.js +1 -1
  45. package/package.json +1 -1
@@ -712,6 +712,7 @@ export declare const SCHEMAS: {
712
712
  updatedAt: string | Date | import("zod").objectOutputType<{
713
713
  toDate: import("zod").ZodFunction<import("zod").ZodTuple<[], import("zod").ZodUnknown>, import("zod").ZodDate>;
714
714
  }, import("zod").ZodTypeAny, "passthrough">;
715
+ active: boolean;
715
716
  order: number;
716
717
  cards: {
717
718
  id: string;
@@ -755,7 +756,6 @@ export declare const SCHEMAS: {
755
756
  isButtonOnly?: boolean | undefined;
756
757
  gridCol?: 3 | 1 | 2 | undefined;
757
758
  }[];
758
- active: boolean;
759
759
  createdBy: string;
760
760
  link?: {
761
761
  url: string;
@@ -821,6 +821,7 @@ export declare const SCHEMAS: {
821
821
  updatedAt: string | Date | import("zod").objectInputType<{
822
822
  toDate: import("zod").ZodFunction<import("zod").ZodTuple<[], import("zod").ZodUnknown>, import("zod").ZodDate>;
823
823
  }, import("zod").ZodTypeAny, "passthrough">;
824
+ active: boolean;
824
825
  order: number;
825
826
  cards: {
826
827
  id: string;
@@ -864,7 +865,6 @@ export declare const SCHEMAS: {
864
865
  isButtonOnly?: boolean | undefined;
865
866
  gridCol?: 3 | 1 | 2 | undefined;
866
867
  }[];
867
- active: boolean;
868
868
  createdBy: string;
869
869
  link?: {
870
870
  url: string;
@@ -2216,7 +2216,7 @@ export declare const SCHEMAS: {
2216
2216
  enabled: import("zod").ZodBoolean;
2217
2217
  config: import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodType<import("./types").JsonValue, import("zod").ZodTypeDef, import("./types").JsonValue>>;
2218
2218
  }, "strip", import("zod").ZodTypeAny, {
2219
- type: "banner" | "products" | "features" | "categories" | "reviews" | "events" | "stats" | "welcome" | "trust-indicators" | "auctions" | "whatsapp-community" | "faq" | "blog-articles" | "newsletter" | "stores" | "pre-orders" | "prize-draws" | "brands" | "carousel" | "social-feed" | "custom-cards" | "google-reviews" | "featured-bundles" | "event-raffles" | "collection-cards";
2219
+ type: "banner" | "stores" | "products" | "pre-orders" | "prize-draws" | "auctions" | "reviews" | "events" | "categories" | "brands" | "carousel" | "newsletter" | "features" | "stats" | "welcome" | "trust-indicators" | "whatsapp-community" | "faq" | "blog-articles" | "social-feed" | "custom-cards" | "google-reviews" | "featured-bundles" | "event-raffles" | "collection-cards";
2220
2220
  id: string;
2221
2221
  createdAt: string | Date | import("zod").objectOutputType<{
2222
2222
  toDate: import("zod").ZodFunction<import("zod").ZodTuple<[], import("zod").ZodUnknown>, import("zod").ZodDate>;
@@ -2228,7 +2228,7 @@ export declare const SCHEMAS: {
2228
2228
  order: number;
2229
2229
  config: Record<string, import("./types").JsonValue>;
2230
2230
  }, {
2231
- type: "banner" | "products" | "features" | "categories" | "reviews" | "events" | "stats" | "welcome" | "trust-indicators" | "auctions" | "whatsapp-community" | "faq" | "blog-articles" | "newsletter" | "stores" | "pre-orders" | "prize-draws" | "brands" | "carousel" | "social-feed" | "custom-cards" | "google-reviews" | "featured-bundles" | "event-raffles" | "collection-cards";
2231
+ type: "banner" | "stores" | "products" | "pre-orders" | "prize-draws" | "auctions" | "reviews" | "events" | "categories" | "brands" | "carousel" | "newsletter" | "features" | "stats" | "welcome" | "trust-indicators" | "whatsapp-community" | "faq" | "blog-articles" | "social-feed" | "custom-cards" | "google-reviews" | "featured-bundles" | "event-raffles" | "collection-cards";
2232
2232
  id: string;
2233
2233
  createdAt: string | Date | import("zod").objectInputType<{
2234
2234
  toDate: import("zod").ZodFunction<import("zod").ZodTuple<[], import("zod").ZodUnknown>, import("zod").ZodDate>;
@@ -2277,7 +2277,7 @@ export declare const SCHEMAS: {
2277
2277
  quantity: number;
2278
2278
  unitPrice: number;
2279
2279
  totalPrice: number;
2280
- listingType?: "standard" | "auction" | "pre-order" | "prize-draw" | "classified" | "digital-code" | "live" | undefined;
2280
+ listingType?: "classified" | "standard" | "auction" | "pre-order" | "prize-draw" | "digital-code" | "live" | undefined;
2281
2281
  prizeRevealStatus?: "closed" | "open" | "pending" | "revealed" | undefined;
2282
2282
  }, {
2283
2283
  productId: string;
@@ -2285,7 +2285,7 @@ export declare const SCHEMAS: {
2285
2285
  quantity: number;
2286
2286
  unitPrice: number;
2287
2287
  totalPrice: number;
2288
- listingType?: "standard" | "auction" | "pre-order" | "prize-draw" | "classified" | "digital-code" | "live" | undefined;
2288
+ listingType?: "classified" | "standard" | "auction" | "pre-order" | "prize-draw" | "digital-code" | "live" | undefined;
2289
2289
  prizeRevealStatus?: "closed" | "open" | "pending" | "revealed" | undefined;
2290
2290
  }>, "many">>;
2291
2291
  orderType: import("zod").ZodOptional<import("zod").ZodString>;
@@ -2560,7 +2560,7 @@ export declare const SCHEMAS: {
2560
2560
  refundPending: import("zod").ZodOptional<import("zod").ZodBoolean>;
2561
2561
  }, "strip", import("zod").ZodTypeAny, {
2562
2562
  currency: string;
2563
- status: "pending" | "cancelled" | "processing" | "refunded" | "confirmed" | "shipped" | "delivered" | "return_requested" | "returned";
2563
+ status: "pending" | "cancelled" | "processing" | "refunded" | "delivered" | "confirmed" | "shipped" | "return_requested" | "returned";
2564
2564
  id: string;
2565
2565
  createdAt: string | Date | import("zod").objectOutputType<{
2566
2566
  toDate: import("zod").ZodFunction<import("zod").ZodTuple<[], import("zod").ZodUnknown>, import("zod").ZodDate>;
@@ -2585,7 +2585,7 @@ export declare const SCHEMAS: {
2585
2585
  paymentMethod?: string | undefined;
2586
2586
  notes?: string | undefined;
2587
2587
  storeName?: string | undefined;
2588
- prizeRevealMode?: "instant" | "scheduled" | undefined;
2588
+ prizeRevealMode?: "scheduled" | "instant" | undefined;
2589
2589
  physicalLocation?: {
2590
2590
  zone: string;
2591
2591
  shelf: string;
@@ -2598,7 +2598,7 @@ export declare const SCHEMAS: {
2598
2598
  quantity: number;
2599
2599
  unitPrice: number;
2600
2600
  totalPrice: number;
2601
- listingType?: "standard" | "auction" | "pre-order" | "prize-draw" | "classified" | "digital-code" | "live" | undefined;
2601
+ listingType?: "classified" | "standard" | "auction" | "pre-order" | "prize-draw" | "digital-code" | "live" | undefined;
2602
2602
  prizeRevealStatus?: "closed" | "open" | "pending" | "revealed" | undefined;
2603
2603
  }[] | undefined;
2604
2604
  paymentId?: string | undefined;
@@ -2615,7 +2615,7 @@ export declare const SCHEMAS: {
2615
2615
  }, import("zod").ZodTypeAny, "passthrough"> | undefined;
2616
2616
  cancellationReason?: string | undefined;
2617
2617
  refundAmount?: number | undefined;
2618
- refundStatus?: "pending" | "processing" | "rejected" | "completed" | undefined;
2618
+ refundStatus?: "pending" | "processing" | "completed" | "rejected" | undefined;
2619
2619
  depositAmount?: number | undefined;
2620
2620
  codRemainingAmount?: number | undefined;
2621
2621
  shippingFee?: number | undefined;
@@ -2708,7 +2708,7 @@ export declare const SCHEMAS: {
2708
2708
  refundPending?: boolean | undefined;
2709
2709
  }, {
2710
2710
  currency: string;
2711
- status: "pending" | "cancelled" | "processing" | "refunded" | "confirmed" | "shipped" | "delivered" | "return_requested" | "returned";
2711
+ status: "pending" | "cancelled" | "processing" | "refunded" | "delivered" | "confirmed" | "shipped" | "return_requested" | "returned";
2712
2712
  id: string;
2713
2713
  createdAt: string | Date | import("zod").objectInputType<{
2714
2714
  toDate: import("zod").ZodFunction<import("zod").ZodTuple<[], import("zod").ZodUnknown>, import("zod").ZodDate>;
@@ -2733,7 +2733,7 @@ export declare const SCHEMAS: {
2733
2733
  paymentMethod?: string | undefined;
2734
2734
  notes?: string | undefined;
2735
2735
  storeName?: string | undefined;
2736
- prizeRevealMode?: "instant" | "scheduled" | undefined;
2736
+ prizeRevealMode?: "scheduled" | "instant" | undefined;
2737
2737
  physicalLocation?: {
2738
2738
  zone: string;
2739
2739
  shelf: string;
@@ -2746,7 +2746,7 @@ export declare const SCHEMAS: {
2746
2746
  quantity: number;
2747
2747
  unitPrice: number;
2748
2748
  totalPrice: number;
2749
- listingType?: "standard" | "auction" | "pre-order" | "prize-draw" | "classified" | "digital-code" | "live" | undefined;
2749
+ listingType?: "classified" | "standard" | "auction" | "pre-order" | "prize-draw" | "digital-code" | "live" | undefined;
2750
2750
  prizeRevealStatus?: "closed" | "open" | "pending" | "revealed" | undefined;
2751
2751
  }[] | undefined;
2752
2752
  paymentId?: string | undefined;
@@ -2763,7 +2763,7 @@ export declare const SCHEMAS: {
2763
2763
  }, import("zod").ZodTypeAny, "passthrough"> | undefined;
2764
2764
  cancellationReason?: string | undefined;
2765
2765
  refundAmount?: number | undefined;
2766
- refundStatus?: "pending" | "processing" | "rejected" | "completed" | undefined;
2766
+ refundStatus?: "pending" | "processing" | "completed" | "rejected" | undefined;
2767
2767
  depositAmount?: number | undefined;
2768
2768
  codRemainingAmount?: number | undefined;
2769
2769
  shippingFee?: number | undefined;
@@ -3145,8 +3145,8 @@ export declare const SCHEMAS: {
3145
3145
  toDate: import("zod").ZodFunction<import("zod").ZodTuple<[], import("zod").ZodUnknown>, import("zod").ZodDate>;
3146
3146
  }, import("zod").ZodTypeAny, "passthrough">;
3147
3147
  userId: string;
3148
- rating: number;
3149
3148
  verified: boolean;
3149
+ rating: number;
3150
3150
  productId: string;
3151
3151
  productTitle: string;
3152
3152
  userName: string;
@@ -3193,8 +3193,8 @@ export declare const SCHEMAS: {
3193
3193
  toDate: import("zod").ZodFunction<import("zod").ZodTuple<[], import("zod").ZodUnknown>, import("zod").ZodDate>;
3194
3194
  }, import("zod").ZodTypeAny, "passthrough">;
3195
3195
  userId: string;
3196
- rating: number;
3197
3196
  verified: boolean;
3197
+ rating: number;
3198
3198
  productId: string;
3199
3199
  productTitle: string;
3200
3200
  userName: string;
@@ -3292,7 +3292,7 @@ export declare const SCHEMAS: {
3292
3292
  contestCount: import("zod").ZodNumber;
3293
3293
  isContested: import("zod").ZodOptional<import("zod").ZodBoolean>;
3294
3294
  }, "strip", import("zod").ZodTypeAny, {
3295
- status: "rejected" | "removed" | "pending_review" | "verified";
3295
+ status: "verified" | "rejected" | "removed" | "pending_review";
3296
3296
  id: string;
3297
3297
  createdAt: string | Date | import("zod").objectOutputType<{
3298
3298
  toDate: import("zod").ZodFunction<import("zod").ZodTuple<[], import("zod").ZodUnknown>, import("zod").ZodDate>;
@@ -3332,7 +3332,7 @@ export declare const SCHEMAS: {
3332
3332
  verificationNote?: string | undefined;
3333
3333
  mergedFromIds?: string[] | undefined;
3334
3334
  }, {
3335
- status: "rejected" | "removed" | "pending_review" | "verified";
3335
+ status: "verified" | "rejected" | "removed" | "pending_review";
3336
3336
  id: string;
3337
3337
  createdAt: string | Date | import("zod").objectInputType<{
3338
3338
  toDate: import("zod").ZodFunction<import("zod").ZodTuple<[], import("zod").ZodUnknown>, import("zod").ZodDate>;
@@ -3404,7 +3404,7 @@ export declare const SCHEMAS: {
3404
3404
  toDate: import("zod").ZodFunction<import("zod").ZodTuple<[], import("zod").ZodUnknown>, import("zod").ZodDate>;
3405
3405
  }, import("zod").ZodTypeAny, "passthrough">>]>;
3406
3406
  }, "strip", import("zod").ZodTypeAny, {
3407
- status: "rejected" | "removed" | "pending_review" | "verified";
3407
+ status: "verified" | "rejected" | "removed" | "pending_review";
3408
3408
  id: string;
3409
3409
  createdAt: string | Date | import("zod").objectOutputType<{
3410
3410
  toDate: import("zod").ZodFunction<import("zod").ZodTuple<[], import("zod").ZodUnknown>, import("zod").ZodDate>;
@@ -3427,7 +3427,7 @@ export declare const SCHEMAS: {
3427
3427
  toDate: import("zod").ZodFunction<import("zod").ZodTuple<[], import("zod").ZodUnknown>, import("zod").ZodDate>;
3428
3428
  }, import("zod").ZodTypeAny, "passthrough"> | undefined;
3429
3429
  }, {
3430
- status: "rejected" | "removed" | "pending_review" | "verified";
3430
+ status: "verified" | "rejected" | "removed" | "pending_review";
3431
3431
  id: string;
3432
3432
  createdAt: string | Date | import("zod").objectInputType<{
3433
3433
  toDate: import("zod").ZodFunction<import("zod").ZodTuple<[], import("zod").ZodUnknown>, import("zod").ZodDate>;
@@ -4135,7 +4135,7 @@ export declare const SCHEMAS: {
4135
4135
  toDate: import("zod").ZodFunction<import("zod").ZodTuple<[], import("zod").ZodUnknown>, import("zod").ZodDate>;
4136
4136
  }, import("zod").ZodTypeAny, "passthrough">>]>>;
4137
4137
  }, "strip", import("zod").ZodTypeAny, {
4138
- status: "closed" | "open" | "in_progress" | "resolved" | "waiting_on_user";
4138
+ status: "closed" | "open" | "resolved" | "in_progress" | "waiting_on_user";
4139
4139
  id: string;
4140
4140
  createdAt: string | Date | import("zod").objectOutputType<{
4141
4141
  toDate: import("zod").ZodFunction<import("zod").ZodTuple<[], import("zod").ZodUnknown>, import("zod").ZodDate>;
@@ -4178,7 +4178,7 @@ export declare const SCHEMAS: {
4178
4178
  assignedToName?: string | undefined;
4179
4179
  internalNotes?: string | undefined;
4180
4180
  }, {
4181
- status: "closed" | "open" | "in_progress" | "resolved" | "waiting_on_user";
4181
+ status: "closed" | "open" | "resolved" | "in_progress" | "waiting_on_user";
4182
4182
  id: string;
4183
4183
  createdAt: string | Date | import("zod").objectInputType<{
4184
4184
  toDate: import("zod").ZodFunction<import("zod").ZodTuple<[], import("zod").ZodUnknown>, import("zod").ZodDate>;
@@ -4280,9 +4280,9 @@ export declare const SCHEMAS: {
4280
4280
  captured?: boolean | undefined;
4281
4281
  notes?: Record<string, string> | undefined;
4282
4282
  wallet?: string | null | undefined;
4283
+ contact?: string | undefined;
4283
4284
  description?: string | null | undefined;
4284
4285
  method?: string | undefined;
4285
- contact?: string | undefined;
4286
4286
  tax?: number | undefined;
4287
4287
  fee?: number | undefined;
4288
4288
  bank?: string | null | undefined;
@@ -4310,9 +4310,9 @@ export declare const SCHEMAS: {
4310
4310
  captured?: boolean | undefined;
4311
4311
  notes?: Record<string, string> | undefined;
4312
4312
  wallet?: string | null | undefined;
4313
+ contact?: string | undefined;
4313
4314
  description?: string | null | undefined;
4314
4315
  method?: string | undefined;
4315
- contact?: string | undefined;
4316
4316
  tax?: number | undefined;
4317
4317
  fee?: number | undefined;
4318
4318
  bank?: string | null | undefined;
@@ -4342,9 +4342,9 @@ export declare const SCHEMAS: {
4342
4342
  captured?: boolean | undefined;
4343
4343
  notes?: Record<string, string> | undefined;
4344
4344
  wallet?: string | null | undefined;
4345
+ contact?: string | undefined;
4345
4346
  description?: string | null | undefined;
4346
4347
  method?: string | undefined;
4347
- contact?: string | undefined;
4348
4348
  tax?: number | undefined;
4349
4349
  fee?: number | undefined;
4350
4350
  bank?: string | null | undefined;
@@ -4374,9 +4374,9 @@ export declare const SCHEMAS: {
4374
4374
  captured?: boolean | undefined;
4375
4375
  notes?: Record<string, string> | undefined;
4376
4376
  wallet?: string | null | undefined;
4377
+ contact?: string | undefined;
4377
4378
  description?: string | null | undefined;
4378
4379
  method?: string | undefined;
4379
- contact?: string | undefined;
4380
4380
  tax?: number | undefined;
4381
4381
  fee?: number | undefined;
4382
4382
  bank?: string | null | undefined;
@@ -4408,9 +4408,9 @@ export declare const SCHEMAS: {
4408
4408
  captured?: boolean | undefined;
4409
4409
  notes?: Record<string, string> | undefined;
4410
4410
  wallet?: string | null | undefined;
4411
+ contact?: string | undefined;
4411
4412
  description?: string | null | undefined;
4412
4413
  method?: string | undefined;
4413
- contact?: string | undefined;
4414
4414
  tax?: number | undefined;
4415
4415
  fee?: number | undefined;
4416
4416
  bank?: string | null | undefined;
@@ -4442,9 +4442,9 @@ export declare const SCHEMAS: {
4442
4442
  captured?: boolean | undefined;
4443
4443
  notes?: Record<string, string> | undefined;
4444
4444
  wallet?: string | null | undefined;
4445
+ contact?: string | undefined;
4445
4446
  description?: string | null | undefined;
4446
4447
  method?: string | undefined;
4447
- contact?: string | undefined;
4448
4448
  tax?: number | undefined;
4449
4449
  fee?: number | undefined;
4450
4450
  bank?: string | null | undefined;
@@ -4479,9 +4479,9 @@ export declare const SCHEMAS: {
4479
4479
  captured?: boolean | undefined;
4480
4480
  notes?: Record<string, string> | undefined;
4481
4481
  wallet?: string | null | undefined;
4482
+ contact?: string | undefined;
4482
4483
  description?: string | null | undefined;
4483
4484
  method?: string | undefined;
4484
- contact?: string | undefined;
4485
4485
  tax?: number | undefined;
4486
4486
  fee?: number | undefined;
4487
4487
  bank?: string | null | undefined;
@@ -4519,9 +4519,9 @@ export declare const SCHEMAS: {
4519
4519
  captured?: boolean | undefined;
4520
4520
  notes?: Record<string, string> | undefined;
4521
4521
  wallet?: string | null | undefined;
4522
+ contact?: string | undefined;
4522
4523
  description?: string | null | undefined;
4523
4524
  method?: string | undefined;
4524
- contact?: string | undefined;
4525
4525
  tax?: number | undefined;
4526
4526
  fee?: number | undefined;
4527
4527
  bank?: string | null | undefined;
@@ -4592,9 +4592,9 @@ export declare const SCHEMAS: {
4592
4592
  captured?: boolean | undefined;
4593
4593
  notes?: Record<string, string> | undefined;
4594
4594
  wallet?: string | null | undefined;
4595
+ contact?: string | undefined;
4595
4596
  description?: string | null | undefined;
4596
4597
  method?: string | undefined;
4597
- contact?: string | undefined;
4598
4598
  tax?: number | undefined;
4599
4599
  fee?: number | undefined;
4600
4600
  bank?: string | null | undefined;
@@ -4622,9 +4622,9 @@ export declare const SCHEMAS: {
4622
4622
  captured?: boolean | undefined;
4623
4623
  notes?: Record<string, string> | undefined;
4624
4624
  wallet?: string | null | undefined;
4625
+ contact?: string | undefined;
4625
4626
  description?: string | null | undefined;
4626
4627
  method?: string | undefined;
4627
- contact?: string | undefined;
4628
4628
  tax?: number | undefined;
4629
4629
  fee?: number | undefined;
4630
4630
  bank?: string | null | undefined;
@@ -4654,9 +4654,9 @@ export declare const SCHEMAS: {
4654
4654
  captured?: boolean | undefined;
4655
4655
  notes?: Record<string, string> | undefined;
4656
4656
  wallet?: string | null | undefined;
4657
+ contact?: string | undefined;
4657
4658
  description?: string | null | undefined;
4658
4659
  method?: string | undefined;
4659
- contact?: string | undefined;
4660
4660
  tax?: number | undefined;
4661
4661
  fee?: number | undefined;
4662
4662
  bank?: string | null | undefined;
@@ -4686,9 +4686,9 @@ export declare const SCHEMAS: {
4686
4686
  captured?: boolean | undefined;
4687
4687
  notes?: Record<string, string> | undefined;
4688
4688
  wallet?: string | null | undefined;
4689
+ contact?: string | undefined;
4689
4690
  description?: string | null | undefined;
4690
4691
  method?: string | undefined;
4691
- contact?: string | undefined;
4692
4692
  tax?: number | undefined;
4693
4693
  fee?: number | undefined;
4694
4694
  bank?: string | null | undefined;
@@ -4720,9 +4720,9 @@ export declare const SCHEMAS: {
4720
4720
  captured?: boolean | undefined;
4721
4721
  notes?: Record<string, string> | undefined;
4722
4722
  wallet?: string | null | undefined;
4723
+ contact?: string | undefined;
4723
4724
  description?: string | null | undefined;
4724
4725
  method?: string | undefined;
4725
- contact?: string | undefined;
4726
4726
  tax?: number | undefined;
4727
4727
  fee?: number | undefined;
4728
4728
  bank?: string | null | undefined;
@@ -4754,9 +4754,9 @@ export declare const SCHEMAS: {
4754
4754
  captured?: boolean | undefined;
4755
4755
  notes?: Record<string, string> | undefined;
4756
4756
  wallet?: string | null | undefined;
4757
+ contact?: string | undefined;
4757
4758
  description?: string | null | undefined;
4758
4759
  method?: string | undefined;
4759
- contact?: string | undefined;
4760
4760
  tax?: number | undefined;
4761
4761
  fee?: number | undefined;
4762
4762
  bank?: string | null | undefined;
@@ -4791,9 +4791,9 @@ export declare const SCHEMAS: {
4791
4791
  captured?: boolean | undefined;
4792
4792
  notes?: Record<string, string> | undefined;
4793
4793
  wallet?: string | null | undefined;
4794
+ contact?: string | undefined;
4794
4795
  description?: string | null | undefined;
4795
4796
  method?: string | undefined;
4796
- contact?: string | undefined;
4797
4797
  tax?: number | undefined;
4798
4798
  fee?: number | undefined;
4799
4799
  bank?: string | null | undefined;
@@ -4831,9 +4831,9 @@ export declare const SCHEMAS: {
4831
4831
  captured?: boolean | undefined;
4832
4832
  notes?: Record<string, string> | undefined;
4833
4833
  wallet?: string | null | undefined;
4834
+ contact?: string | undefined;
4834
4835
  description?: string | null | undefined;
4835
4836
  method?: string | undefined;
4836
- contact?: string | undefined;
4837
4837
  tax?: number | undefined;
4838
4838
  fee?: number | undefined;
4839
4839
  bank?: string | null | undefined;
@@ -4904,9 +4904,9 @@ export declare const SCHEMAS: {
4904
4904
  captured?: boolean | undefined;
4905
4905
  notes?: Record<string, string> | undefined;
4906
4906
  wallet?: string | null | undefined;
4907
+ contact?: string | undefined;
4907
4908
  description?: string | null | undefined;
4908
4909
  method?: string | undefined;
4909
- contact?: string | undefined;
4910
4910
  tax?: number | undefined;
4911
4911
  fee?: number | undefined;
4912
4912
  bank?: string | null | undefined;
@@ -4934,9 +4934,9 @@ export declare const SCHEMAS: {
4934
4934
  captured?: boolean | undefined;
4935
4935
  notes?: Record<string, string> | undefined;
4936
4936
  wallet?: string | null | undefined;
4937
+ contact?: string | undefined;
4937
4938
  description?: string | null | undefined;
4938
4939
  method?: string | undefined;
4939
- contact?: string | undefined;
4940
4940
  tax?: number | undefined;
4941
4941
  fee?: number | undefined;
4942
4942
  bank?: string | null | undefined;
@@ -4966,9 +4966,9 @@ export declare const SCHEMAS: {
4966
4966
  captured?: boolean | undefined;
4967
4967
  notes?: Record<string, string> | undefined;
4968
4968
  wallet?: string | null | undefined;
4969
+ contact?: string | undefined;
4969
4970
  description?: string | null | undefined;
4970
4971
  method?: string | undefined;
4971
- contact?: string | undefined;
4972
4972
  tax?: number | undefined;
4973
4973
  fee?: number | undefined;
4974
4974
  bank?: string | null | undefined;
@@ -4998,9 +4998,9 @@ export declare const SCHEMAS: {
4998
4998
  captured?: boolean | undefined;
4999
4999
  notes?: Record<string, string> | undefined;
5000
5000
  wallet?: string | null | undefined;
5001
+ contact?: string | undefined;
5001
5002
  description?: string | null | undefined;
5002
5003
  method?: string | undefined;
5003
- contact?: string | undefined;
5004
5004
  tax?: number | undefined;
5005
5005
  fee?: number | undefined;
5006
5006
  bank?: string | null | undefined;
@@ -5032,9 +5032,9 @@ export declare const SCHEMAS: {
5032
5032
  captured?: boolean | undefined;
5033
5033
  notes?: Record<string, string> | undefined;
5034
5034
  wallet?: string | null | undefined;
5035
+ contact?: string | undefined;
5035
5036
  description?: string | null | undefined;
5036
5037
  method?: string | undefined;
5037
- contact?: string | undefined;
5038
5038
  tax?: number | undefined;
5039
5039
  fee?: number | undefined;
5040
5040
  bank?: string | null | undefined;
@@ -5066,9 +5066,9 @@ export declare const SCHEMAS: {
5066
5066
  captured?: boolean | undefined;
5067
5067
  notes?: Record<string, string> | undefined;
5068
5068
  wallet?: string | null | undefined;
5069
+ contact?: string | undefined;
5069
5070
  description?: string | null | undefined;
5070
5071
  method?: string | undefined;
5071
- contact?: string | undefined;
5072
5072
  tax?: number | undefined;
5073
5073
  fee?: number | undefined;
5074
5074
  bank?: string | null | undefined;
@@ -5103,9 +5103,9 @@ export declare const SCHEMAS: {
5103
5103
  captured?: boolean | undefined;
5104
5104
  notes?: Record<string, string> | undefined;
5105
5105
  wallet?: string | null | undefined;
5106
+ contact?: string | undefined;
5106
5107
  description?: string | null | undefined;
5107
5108
  method?: string | undefined;
5108
- contact?: string | undefined;
5109
5109
  tax?: number | undefined;
5110
5110
  fee?: number | undefined;
5111
5111
  bank?: string | null | undefined;
@@ -5143,9 +5143,9 @@ export declare const SCHEMAS: {
5143
5143
  captured?: boolean | undefined;
5144
5144
  notes?: Record<string, string> | undefined;
5145
5145
  wallet?: string | null | undefined;
5146
+ contact?: string | undefined;
5146
5147
  description?: string | null | undefined;
5147
5148
  method?: string | undefined;
5148
- contact?: string | undefined;
5149
5149
  tax?: number | undefined;
5150
5150
  fee?: number | undefined;
5151
5151
  bank?: string | null | undefined;
@@ -5293,9 +5293,9 @@ export declare const SCHEMAS: {
5293
5293
  captured?: boolean | undefined;
5294
5294
  notes?: Record<string, string> | undefined;
5295
5295
  wallet?: string | null | undefined;
5296
+ contact?: string | undefined;
5296
5297
  description?: string | null | undefined;
5297
5298
  method?: string | undefined;
5298
- contact?: string | undefined;
5299
5299
  tax?: number | undefined;
5300
5300
  fee?: number | undefined;
5301
5301
  bank?: string | null | undefined;
@@ -5323,9 +5323,9 @@ export declare const SCHEMAS: {
5323
5323
  captured?: boolean | undefined;
5324
5324
  notes?: Record<string, string> | undefined;
5325
5325
  wallet?: string | null | undefined;
5326
+ contact?: string | undefined;
5326
5327
  description?: string | null | undefined;
5327
5328
  method?: string | undefined;
5328
- contact?: string | undefined;
5329
5329
  tax?: number | undefined;
5330
5330
  fee?: number | undefined;
5331
5331
  bank?: string | null | undefined;
@@ -5355,9 +5355,9 @@ export declare const SCHEMAS: {
5355
5355
  captured?: boolean | undefined;
5356
5356
  notes?: Record<string, string> | undefined;
5357
5357
  wallet?: string | null | undefined;
5358
+ contact?: string | undefined;
5358
5359
  description?: string | null | undefined;
5359
5360
  method?: string | undefined;
5360
- contact?: string | undefined;
5361
5361
  tax?: number | undefined;
5362
5362
  fee?: number | undefined;
5363
5363
  bank?: string | null | undefined;
@@ -5387,9 +5387,9 @@ export declare const SCHEMAS: {
5387
5387
  captured?: boolean | undefined;
5388
5388
  notes?: Record<string, string> | undefined;
5389
5389
  wallet?: string | null | undefined;
5390
+ contact?: string | undefined;
5390
5391
  description?: string | null | undefined;
5391
5392
  method?: string | undefined;
5392
- contact?: string | undefined;
5393
5393
  tax?: number | undefined;
5394
5394
  fee?: number | undefined;
5395
5395
  bank?: string | null | undefined;
@@ -5438,9 +5438,9 @@ export declare const SCHEMAS: {
5438
5438
  captured?: boolean | undefined;
5439
5439
  notes?: Record<string, string> | undefined;
5440
5440
  wallet?: string | null | undefined;
5441
+ contact?: string | undefined;
5441
5442
  description?: string | null | undefined;
5442
5443
  method?: string | undefined;
5443
- contact?: string | undefined;
5444
5444
  tax?: number | undefined;
5445
5445
  fee?: number | undefined;
5446
5446
  bank?: string | null | undefined;
@@ -5489,9 +5489,9 @@ export declare const SCHEMAS: {
5489
5489
  captured?: boolean | undefined;
5490
5490
  notes?: Record<string, string> | undefined;
5491
5491
  wallet?: string | null | undefined;
5492
+ contact?: string | undefined;
5492
5493
  description?: string | null | undefined;
5493
5494
  method?: string | undefined;
5494
- contact?: string | undefined;
5495
5495
  tax?: number | undefined;
5496
5496
  fee?: number | undefined;
5497
5497
  bank?: string | null | undefined;
@@ -5543,9 +5543,9 @@ export declare const SCHEMAS: {
5543
5543
  captured?: boolean | undefined;
5544
5544
  notes?: Record<string, string> | undefined;
5545
5545
  wallet?: string | null | undefined;
5546
+ contact?: string | undefined;
5546
5547
  description?: string | null | undefined;
5547
5548
  method?: string | undefined;
5548
- contact?: string | undefined;
5549
5549
  tax?: number | undefined;
5550
5550
  fee?: number | undefined;
5551
5551
  bank?: string | null | undefined;
@@ -5600,9 +5600,9 @@ export declare const SCHEMAS: {
5600
5600
  captured?: boolean | undefined;
5601
5601
  notes?: Record<string, string> | undefined;
5602
5602
  wallet?: string | null | undefined;
5603
+ contact?: string | undefined;
5603
5604
  description?: string | null | undefined;
5604
5605
  method?: string | undefined;
5605
- contact?: string | undefined;
5606
5606
  tax?: number | undefined;
5607
5607
  fee?: number | undefined;
5608
5608
  bank?: string | null | undefined;
@@ -5918,9 +5918,9 @@ export declare const SCHEMAS: {
5918
5918
  captured?: boolean | undefined;
5919
5919
  notes?: Record<string, string> | undefined;
5920
5920
  wallet?: string | null | undefined;
5921
+ contact?: string | undefined;
5921
5922
  description?: string | null | undefined;
5922
5923
  method?: string | undefined;
5923
- contact?: string | undefined;
5924
5924
  tax?: number | undefined;
5925
5925
  fee?: number | undefined;
5926
5926
  bank?: string | null | undefined;
@@ -5948,9 +5948,9 @@ export declare const SCHEMAS: {
5948
5948
  captured?: boolean | undefined;
5949
5949
  notes?: Record<string, string> | undefined;
5950
5950
  wallet?: string | null | undefined;
5951
+ contact?: string | undefined;
5951
5952
  description?: string | null | undefined;
5952
5953
  method?: string | undefined;
5953
- contact?: string | undefined;
5954
5954
  tax?: number | undefined;
5955
5955
  fee?: number | undefined;
5956
5956
  bank?: string | null | undefined;
@@ -5980,9 +5980,9 @@ export declare const SCHEMAS: {
5980
5980
  captured?: boolean | undefined;
5981
5981
  notes?: Record<string, string> | undefined;
5982
5982
  wallet?: string | null | undefined;
5983
+ contact?: string | undefined;
5983
5984
  description?: string | null | undefined;
5984
5985
  method?: string | undefined;
5985
- contact?: string | undefined;
5986
5986
  tax?: number | undefined;
5987
5987
  fee?: number | undefined;
5988
5988
  bank?: string | null | undefined;
@@ -6012,9 +6012,9 @@ export declare const SCHEMAS: {
6012
6012
  captured?: boolean | undefined;
6013
6013
  notes?: Record<string, string> | undefined;
6014
6014
  wallet?: string | null | undefined;
6015
+ contact?: string | undefined;
6015
6016
  description?: string | null | undefined;
6016
6017
  method?: string | undefined;
6017
- contact?: string | undefined;
6018
6018
  tax?: number | undefined;
6019
6019
  fee?: number | undefined;
6020
6020
  bank?: string | null | undefined;
@@ -6063,9 +6063,9 @@ export declare const SCHEMAS: {
6063
6063
  captured?: boolean | undefined;
6064
6064
  notes?: Record<string, string> | undefined;
6065
6065
  wallet?: string | null | undefined;
6066
+ contact?: string | undefined;
6066
6067
  description?: string | null | undefined;
6067
6068
  method?: string | undefined;
6068
- contact?: string | undefined;
6069
6069
  tax?: number | undefined;
6070
6070
  fee?: number | undefined;
6071
6071
  bank?: string | null | undefined;
@@ -6114,9 +6114,9 @@ export declare const SCHEMAS: {
6114
6114
  captured?: boolean | undefined;
6115
6115
  notes?: Record<string, string> | undefined;
6116
6116
  wallet?: string | null | undefined;
6117
+ contact?: string | undefined;
6117
6118
  description?: string | null | undefined;
6118
6119
  method?: string | undefined;
6119
- contact?: string | undefined;
6120
6120
  tax?: number | undefined;
6121
6121
  fee?: number | undefined;
6122
6122
  bank?: string | null | undefined;
@@ -6168,9 +6168,9 @@ export declare const SCHEMAS: {
6168
6168
  captured?: boolean | undefined;
6169
6169
  notes?: Record<string, string> | undefined;
6170
6170
  wallet?: string | null | undefined;
6171
+ contact?: string | undefined;
6171
6172
  description?: string | null | undefined;
6172
6173
  method?: string | undefined;
6173
- contact?: string | undefined;
6174
6174
  tax?: number | undefined;
6175
6175
  fee?: number | undefined;
6176
6176
  bank?: string | null | undefined;
@@ -6225,9 +6225,9 @@ export declare const SCHEMAS: {
6225
6225
  captured?: boolean | undefined;
6226
6226
  notes?: Record<string, string> | undefined;
6227
6227
  wallet?: string | null | undefined;
6228
+ contact?: string | undefined;
6228
6229
  description?: string | null | undefined;
6229
6230
  method?: string | undefined;
6230
- contact?: string | undefined;
6231
6231
  tax?: number | undefined;
6232
6232
  fee?: number | undefined;
6233
6233
  bank?: string | null | undefined;
@@ -6365,9 +6365,9 @@ export declare const SCHEMAS: {
6365
6365
  captured?: boolean | undefined;
6366
6366
  notes?: Record<string, string> | undefined;
6367
6367
  wallet?: string | null | undefined;
6368
+ contact?: string | undefined;
6368
6369
  description?: string | null | undefined;
6369
6370
  method?: string | undefined;
6370
- contact?: string | undefined;
6371
6371
  tax?: number | undefined;
6372
6372
  fee?: number | undefined;
6373
6373
  bank?: string | null | undefined;
@@ -6395,9 +6395,9 @@ export declare const SCHEMAS: {
6395
6395
  captured?: boolean | undefined;
6396
6396
  notes?: Record<string, string> | undefined;
6397
6397
  wallet?: string | null | undefined;
6398
+ contact?: string | undefined;
6398
6399
  description?: string | null | undefined;
6399
6400
  method?: string | undefined;
6400
- contact?: string | undefined;
6401
6401
  tax?: number | undefined;
6402
6402
  fee?: number | undefined;
6403
6403
  bank?: string | null | undefined;
@@ -6427,9 +6427,9 @@ export declare const SCHEMAS: {
6427
6427
  captured?: boolean | undefined;
6428
6428
  notes?: Record<string, string> | undefined;
6429
6429
  wallet?: string | null | undefined;
6430
+ contact?: string | undefined;
6430
6431
  description?: string | null | undefined;
6431
6432
  method?: string | undefined;
6432
- contact?: string | undefined;
6433
6433
  tax?: number | undefined;
6434
6434
  fee?: number | undefined;
6435
6435
  bank?: string | null | undefined;
@@ -6459,9 +6459,9 @@ export declare const SCHEMAS: {
6459
6459
  captured?: boolean | undefined;
6460
6460
  notes?: Record<string, string> | undefined;
6461
6461
  wallet?: string | null | undefined;
6462
+ contact?: string | undefined;
6462
6463
  description?: string | null | undefined;
6463
6464
  method?: string | undefined;
6464
- contact?: string | undefined;
6465
6465
  tax?: number | undefined;
6466
6466
  fee?: number | undefined;
6467
6467
  bank?: string | null | undefined;
@@ -6508,9 +6508,9 @@ export declare const SCHEMAS: {
6508
6508
  captured?: boolean | undefined;
6509
6509
  notes?: Record<string, string> | undefined;
6510
6510
  wallet?: string | null | undefined;
6511
+ contact?: string | undefined;
6511
6512
  description?: string | null | undefined;
6512
6513
  method?: string | undefined;
6513
- contact?: string | undefined;
6514
6514
  tax?: number | undefined;
6515
6515
  fee?: number | undefined;
6516
6516
  bank?: string | null | undefined;
@@ -6557,9 +6557,9 @@ export declare const SCHEMAS: {
6557
6557
  captured?: boolean | undefined;
6558
6558
  notes?: Record<string, string> | undefined;
6559
6559
  wallet?: string | null | undefined;
6560
+ contact?: string | undefined;
6560
6561
  description?: string | null | undefined;
6561
6562
  method?: string | undefined;
6562
- contact?: string | undefined;
6563
6563
  tax?: number | undefined;
6564
6564
  fee?: number | undefined;
6565
6565
  bank?: string | null | undefined;
@@ -6609,9 +6609,9 @@ export declare const SCHEMAS: {
6609
6609
  captured?: boolean | undefined;
6610
6610
  notes?: Record<string, string> | undefined;
6611
6611
  wallet?: string | null | undefined;
6612
+ contact?: string | undefined;
6612
6613
  description?: string | null | undefined;
6613
6614
  method?: string | undefined;
6614
- contact?: string | undefined;
6615
6615
  tax?: number | undefined;
6616
6616
  fee?: number | undefined;
6617
6617
  bank?: string | null | undefined;
@@ -6664,9 +6664,9 @@ export declare const SCHEMAS: {
6664
6664
  captured?: boolean | undefined;
6665
6665
  notes?: Record<string, string> | undefined;
6666
6666
  wallet?: string | null | undefined;
6667
+ contact?: string | undefined;
6667
6668
  description?: string | null | undefined;
6668
6669
  method?: string | undefined;
6669
- contact?: string | undefined;
6670
6670
  tax?: number | undefined;
6671
6671
  fee?: number | undefined;
6672
6672
  bank?: string | null | undefined;