@mohasinac/appkit 3.3.1 → 3.3.3
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.
- package/dist/_internal/server/features/checkout/actions.js +11 -15
- package/dist/client/api/surface-error.js +9 -1
- package/dist/client.d.ts +7 -1
- package/dist/client.js +5 -1
- package/dist/errors/error-handler.d.ts +6 -0
- package/dist/errors/error-handler.js +26 -28
- package/dist/features/account/hooks/useProfile.d.ts +8 -0
- package/dist/features/account/schemas/index.d.ts +12 -3
- package/dist/features/account/schemas/index.js +10 -3
- package/dist/features/auth/components/RegisterForm.js +2 -2
- package/dist/features/auth/permissions/constants.d.ts +1 -1
- package/dist/features/auth/schemas/index.d.ts +8 -0
- package/dist/features/auth/schemas/index.js +15 -1
- package/dist/features/faq/actions/faq-actions.d.ts +6 -6
- package/dist/features/faq/schemas/index.d.ts +4 -4
- package/dist/features/seller/actions/seller-actions.js +54 -13
- package/dist/features/seller/components/SellerOrdersView.js +24 -9
- package/dist/features/seller/components/SellerProductShell.js +17 -2
- package/dist/features/support/schemas/index.d.ts +2 -2
- package/dist/http/ApiClient.d.ts +11 -0
- package/dist/http/ApiClient.js +4 -0
- package/dist/schemas/registry.d.ts +52 -52
- package/dist/schemas/webhooks/razorpay.d.ts +50 -50
- package/dist/validation/schemas.d.ts +4 -4
- package/package.json +1 -1
|
@@ -35,8 +35,8 @@ export declare const razorpayPaymentEntitySchema: z.ZodObject<{
|
|
|
35
35
|
id: string;
|
|
36
36
|
amount: number;
|
|
37
37
|
description?: string | null | undefined;
|
|
38
|
-
email?: string | undefined;
|
|
39
38
|
method?: string | undefined;
|
|
39
|
+
email?: string | undefined;
|
|
40
40
|
captured?: boolean | undefined;
|
|
41
41
|
notes?: Record<string, string> | undefined;
|
|
42
42
|
wallet?: string | null | undefined;
|
|
@@ -65,8 +65,8 @@ export declare const razorpayPaymentEntitySchema: z.ZodObject<{
|
|
|
65
65
|
id: string;
|
|
66
66
|
amount: number;
|
|
67
67
|
description?: string | null | undefined;
|
|
68
|
-
email?: string | undefined;
|
|
69
68
|
method?: string | undefined;
|
|
69
|
+
email?: string | undefined;
|
|
70
70
|
captured?: boolean | undefined;
|
|
71
71
|
notes?: Record<string, string> | undefined;
|
|
72
72
|
wallet?: string | null | undefined;
|
|
@@ -213,8 +213,8 @@ export declare const razorpayWebhookEnvelopeSchema: z.ZodDiscriminatedUnion<"eve
|
|
|
213
213
|
id: string;
|
|
214
214
|
amount: number;
|
|
215
215
|
description?: string | null | undefined;
|
|
216
|
-
email?: string | undefined;
|
|
217
216
|
method?: string | undefined;
|
|
217
|
+
email?: string | undefined;
|
|
218
218
|
captured?: boolean | undefined;
|
|
219
219
|
notes?: Record<string, string> | undefined;
|
|
220
220
|
wallet?: string | null | undefined;
|
|
@@ -243,8 +243,8 @@ export declare const razorpayWebhookEnvelopeSchema: z.ZodDiscriminatedUnion<"eve
|
|
|
243
243
|
id: string;
|
|
244
244
|
amount: number;
|
|
245
245
|
description?: string | null | undefined;
|
|
246
|
-
email?: string | undefined;
|
|
247
246
|
method?: string | undefined;
|
|
247
|
+
email?: string | undefined;
|
|
248
248
|
captured?: boolean | undefined;
|
|
249
249
|
notes?: Record<string, string> | undefined;
|
|
250
250
|
wallet?: string | null | undefined;
|
|
@@ -275,8 +275,8 @@ export declare const razorpayWebhookEnvelopeSchema: z.ZodDiscriminatedUnion<"eve
|
|
|
275
275
|
id: string;
|
|
276
276
|
amount: number;
|
|
277
277
|
description?: string | null | undefined;
|
|
278
|
-
email?: string | undefined;
|
|
279
278
|
method?: string | undefined;
|
|
279
|
+
email?: string | undefined;
|
|
280
280
|
captured?: boolean | undefined;
|
|
281
281
|
notes?: Record<string, string> | undefined;
|
|
282
282
|
wallet?: string | null | undefined;
|
|
@@ -307,8 +307,8 @@ export declare const razorpayWebhookEnvelopeSchema: z.ZodDiscriminatedUnion<"eve
|
|
|
307
307
|
id: string;
|
|
308
308
|
amount: number;
|
|
309
309
|
description?: string | null | undefined;
|
|
310
|
-
email?: string | undefined;
|
|
311
310
|
method?: string | undefined;
|
|
311
|
+
email?: string | undefined;
|
|
312
312
|
captured?: boolean | undefined;
|
|
313
313
|
notes?: Record<string, string> | undefined;
|
|
314
314
|
wallet?: string | null | undefined;
|
|
@@ -341,8 +341,8 @@ export declare const razorpayWebhookEnvelopeSchema: z.ZodDiscriminatedUnion<"eve
|
|
|
341
341
|
id: string;
|
|
342
342
|
amount: number;
|
|
343
343
|
description?: string | null | undefined;
|
|
344
|
-
email?: string | undefined;
|
|
345
344
|
method?: string | undefined;
|
|
345
|
+
email?: string | undefined;
|
|
346
346
|
captured?: boolean | undefined;
|
|
347
347
|
notes?: Record<string, string> | undefined;
|
|
348
348
|
wallet?: string | null | undefined;
|
|
@@ -375,8 +375,8 @@ export declare const razorpayWebhookEnvelopeSchema: z.ZodDiscriminatedUnion<"eve
|
|
|
375
375
|
id: string;
|
|
376
376
|
amount: number;
|
|
377
377
|
description?: string | null | undefined;
|
|
378
|
-
email?: string | undefined;
|
|
379
378
|
method?: string | undefined;
|
|
379
|
+
email?: string | undefined;
|
|
380
380
|
captured?: boolean | undefined;
|
|
381
381
|
notes?: Record<string, string> | undefined;
|
|
382
382
|
wallet?: string | null | undefined;
|
|
@@ -412,8 +412,8 @@ export declare const razorpayWebhookEnvelopeSchema: z.ZodDiscriminatedUnion<"eve
|
|
|
412
412
|
id: string;
|
|
413
413
|
amount: number;
|
|
414
414
|
description?: string | null | undefined;
|
|
415
|
-
email?: string | undefined;
|
|
416
415
|
method?: string | undefined;
|
|
416
|
+
email?: string | undefined;
|
|
417
417
|
captured?: boolean | undefined;
|
|
418
418
|
notes?: Record<string, string> | undefined;
|
|
419
419
|
wallet?: string | null | undefined;
|
|
@@ -452,8 +452,8 @@ export declare const razorpayWebhookEnvelopeSchema: z.ZodDiscriminatedUnion<"eve
|
|
|
452
452
|
id: string;
|
|
453
453
|
amount: number;
|
|
454
454
|
description?: string | null | undefined;
|
|
455
|
-
email?: string | undefined;
|
|
456
455
|
method?: string | undefined;
|
|
456
|
+
email?: string | undefined;
|
|
457
457
|
captured?: boolean | undefined;
|
|
458
458
|
notes?: Record<string, string> | undefined;
|
|
459
459
|
wallet?: string | null | undefined;
|
|
@@ -525,8 +525,8 @@ export declare const razorpayWebhookEnvelopeSchema: z.ZodDiscriminatedUnion<"eve
|
|
|
525
525
|
id: string;
|
|
526
526
|
amount: number;
|
|
527
527
|
description?: string | null | undefined;
|
|
528
|
-
email?: string | undefined;
|
|
529
528
|
method?: string | undefined;
|
|
529
|
+
email?: string | undefined;
|
|
530
530
|
captured?: boolean | undefined;
|
|
531
531
|
notes?: Record<string, string> | undefined;
|
|
532
532
|
wallet?: string | null | undefined;
|
|
@@ -555,8 +555,8 @@ export declare const razorpayWebhookEnvelopeSchema: z.ZodDiscriminatedUnion<"eve
|
|
|
555
555
|
id: string;
|
|
556
556
|
amount: number;
|
|
557
557
|
description?: string | null | undefined;
|
|
558
|
-
email?: string | undefined;
|
|
559
558
|
method?: string | undefined;
|
|
559
|
+
email?: string | undefined;
|
|
560
560
|
captured?: boolean | undefined;
|
|
561
561
|
notes?: Record<string, string> | undefined;
|
|
562
562
|
wallet?: string | null | undefined;
|
|
@@ -587,8 +587,8 @@ export declare const razorpayWebhookEnvelopeSchema: z.ZodDiscriminatedUnion<"eve
|
|
|
587
587
|
id: string;
|
|
588
588
|
amount: number;
|
|
589
589
|
description?: string | null | undefined;
|
|
590
|
-
email?: string | undefined;
|
|
591
590
|
method?: string | undefined;
|
|
591
|
+
email?: string | undefined;
|
|
592
592
|
captured?: boolean | undefined;
|
|
593
593
|
notes?: Record<string, string> | undefined;
|
|
594
594
|
wallet?: string | null | undefined;
|
|
@@ -619,8 +619,8 @@ export declare const razorpayWebhookEnvelopeSchema: z.ZodDiscriminatedUnion<"eve
|
|
|
619
619
|
id: string;
|
|
620
620
|
amount: number;
|
|
621
621
|
description?: string | null | undefined;
|
|
622
|
-
email?: string | undefined;
|
|
623
622
|
method?: string | undefined;
|
|
623
|
+
email?: string | undefined;
|
|
624
624
|
captured?: boolean | undefined;
|
|
625
625
|
notes?: Record<string, string> | undefined;
|
|
626
626
|
wallet?: string | null | undefined;
|
|
@@ -653,8 +653,8 @@ export declare const razorpayWebhookEnvelopeSchema: z.ZodDiscriminatedUnion<"eve
|
|
|
653
653
|
id: string;
|
|
654
654
|
amount: number;
|
|
655
655
|
description?: string | null | undefined;
|
|
656
|
-
email?: string | undefined;
|
|
657
656
|
method?: string | undefined;
|
|
657
|
+
email?: string | undefined;
|
|
658
658
|
captured?: boolean | undefined;
|
|
659
659
|
notes?: Record<string, string> | undefined;
|
|
660
660
|
wallet?: string | null | undefined;
|
|
@@ -687,8 +687,8 @@ export declare const razorpayWebhookEnvelopeSchema: z.ZodDiscriminatedUnion<"eve
|
|
|
687
687
|
id: string;
|
|
688
688
|
amount: number;
|
|
689
689
|
description?: string | null | undefined;
|
|
690
|
-
email?: string | undefined;
|
|
691
690
|
method?: string | undefined;
|
|
691
|
+
email?: string | undefined;
|
|
692
692
|
captured?: boolean | undefined;
|
|
693
693
|
notes?: Record<string, string> | undefined;
|
|
694
694
|
wallet?: string | null | undefined;
|
|
@@ -724,8 +724,8 @@ export declare const razorpayWebhookEnvelopeSchema: z.ZodDiscriminatedUnion<"eve
|
|
|
724
724
|
id: string;
|
|
725
725
|
amount: number;
|
|
726
726
|
description?: string | null | undefined;
|
|
727
|
-
email?: string | undefined;
|
|
728
727
|
method?: string | undefined;
|
|
728
|
+
email?: string | undefined;
|
|
729
729
|
captured?: boolean | undefined;
|
|
730
730
|
notes?: Record<string, string> | undefined;
|
|
731
731
|
wallet?: string | null | undefined;
|
|
@@ -764,8 +764,8 @@ export declare const razorpayWebhookEnvelopeSchema: z.ZodDiscriminatedUnion<"eve
|
|
|
764
764
|
id: string;
|
|
765
765
|
amount: number;
|
|
766
766
|
description?: string | null | undefined;
|
|
767
|
-
email?: string | undefined;
|
|
768
767
|
method?: string | undefined;
|
|
768
|
+
email?: string | undefined;
|
|
769
769
|
captured?: boolean | undefined;
|
|
770
770
|
notes?: Record<string, string> | undefined;
|
|
771
771
|
wallet?: string | null | undefined;
|
|
@@ -837,8 +837,8 @@ export declare const razorpayWebhookEnvelopeSchema: z.ZodDiscriminatedUnion<"eve
|
|
|
837
837
|
id: string;
|
|
838
838
|
amount: number;
|
|
839
839
|
description?: string | null | undefined;
|
|
840
|
-
email?: string | undefined;
|
|
841
840
|
method?: string | undefined;
|
|
841
|
+
email?: string | undefined;
|
|
842
842
|
captured?: boolean | undefined;
|
|
843
843
|
notes?: Record<string, string> | undefined;
|
|
844
844
|
wallet?: string | null | undefined;
|
|
@@ -867,8 +867,8 @@ export declare const razorpayWebhookEnvelopeSchema: z.ZodDiscriminatedUnion<"eve
|
|
|
867
867
|
id: string;
|
|
868
868
|
amount: number;
|
|
869
869
|
description?: string | null | undefined;
|
|
870
|
-
email?: string | undefined;
|
|
871
870
|
method?: string | undefined;
|
|
871
|
+
email?: string | undefined;
|
|
872
872
|
captured?: boolean | undefined;
|
|
873
873
|
notes?: Record<string, string> | undefined;
|
|
874
874
|
wallet?: string | null | undefined;
|
|
@@ -899,8 +899,8 @@ export declare const razorpayWebhookEnvelopeSchema: z.ZodDiscriminatedUnion<"eve
|
|
|
899
899
|
id: string;
|
|
900
900
|
amount: number;
|
|
901
901
|
description?: string | null | undefined;
|
|
902
|
-
email?: string | undefined;
|
|
903
902
|
method?: string | undefined;
|
|
903
|
+
email?: string | undefined;
|
|
904
904
|
captured?: boolean | undefined;
|
|
905
905
|
notes?: Record<string, string> | undefined;
|
|
906
906
|
wallet?: string | null | undefined;
|
|
@@ -931,8 +931,8 @@ export declare const razorpayWebhookEnvelopeSchema: z.ZodDiscriminatedUnion<"eve
|
|
|
931
931
|
id: string;
|
|
932
932
|
amount: number;
|
|
933
933
|
description?: string | null | undefined;
|
|
934
|
-
email?: string | undefined;
|
|
935
934
|
method?: string | undefined;
|
|
935
|
+
email?: string | undefined;
|
|
936
936
|
captured?: boolean | undefined;
|
|
937
937
|
notes?: Record<string, string> | undefined;
|
|
938
938
|
wallet?: string | null | undefined;
|
|
@@ -965,8 +965,8 @@ export declare const razorpayWebhookEnvelopeSchema: z.ZodDiscriminatedUnion<"eve
|
|
|
965
965
|
id: string;
|
|
966
966
|
amount: number;
|
|
967
967
|
description?: string | null | undefined;
|
|
968
|
-
email?: string | undefined;
|
|
969
968
|
method?: string | undefined;
|
|
969
|
+
email?: string | undefined;
|
|
970
970
|
captured?: boolean | undefined;
|
|
971
971
|
notes?: Record<string, string> | undefined;
|
|
972
972
|
wallet?: string | null | undefined;
|
|
@@ -999,8 +999,8 @@ export declare const razorpayWebhookEnvelopeSchema: z.ZodDiscriminatedUnion<"eve
|
|
|
999
999
|
id: string;
|
|
1000
1000
|
amount: number;
|
|
1001
1001
|
description?: string | null | undefined;
|
|
1002
|
-
email?: string | undefined;
|
|
1003
1002
|
method?: string | undefined;
|
|
1003
|
+
email?: string | undefined;
|
|
1004
1004
|
captured?: boolean | undefined;
|
|
1005
1005
|
notes?: Record<string, string> | undefined;
|
|
1006
1006
|
wallet?: string | null | undefined;
|
|
@@ -1036,8 +1036,8 @@ export declare const razorpayWebhookEnvelopeSchema: z.ZodDiscriminatedUnion<"eve
|
|
|
1036
1036
|
id: string;
|
|
1037
1037
|
amount: number;
|
|
1038
1038
|
description?: string | null | undefined;
|
|
1039
|
-
email?: string | undefined;
|
|
1040
1039
|
method?: string | undefined;
|
|
1040
|
+
email?: string | undefined;
|
|
1041
1041
|
captured?: boolean | undefined;
|
|
1042
1042
|
notes?: Record<string, string> | undefined;
|
|
1043
1043
|
wallet?: string | null | undefined;
|
|
@@ -1076,8 +1076,8 @@ export declare const razorpayWebhookEnvelopeSchema: z.ZodDiscriminatedUnion<"eve
|
|
|
1076
1076
|
id: string;
|
|
1077
1077
|
amount: number;
|
|
1078
1078
|
description?: string | null | undefined;
|
|
1079
|
-
email?: string | undefined;
|
|
1080
1079
|
method?: string | undefined;
|
|
1080
|
+
email?: string | undefined;
|
|
1081
1081
|
captured?: boolean | undefined;
|
|
1082
1082
|
notes?: Record<string, string> | undefined;
|
|
1083
1083
|
wallet?: string | null | undefined;
|
|
@@ -1226,8 +1226,8 @@ export declare const razorpayWebhookEnvelopeSchema: z.ZodDiscriminatedUnion<"eve
|
|
|
1226
1226
|
id: string;
|
|
1227
1227
|
amount: number;
|
|
1228
1228
|
description?: string | null | undefined;
|
|
1229
|
-
email?: string | undefined;
|
|
1230
1229
|
method?: string | undefined;
|
|
1230
|
+
email?: string | undefined;
|
|
1231
1231
|
captured?: boolean | undefined;
|
|
1232
1232
|
notes?: Record<string, string> | undefined;
|
|
1233
1233
|
wallet?: string | null | undefined;
|
|
@@ -1256,8 +1256,8 @@ export declare const razorpayWebhookEnvelopeSchema: z.ZodDiscriminatedUnion<"eve
|
|
|
1256
1256
|
id: string;
|
|
1257
1257
|
amount: number;
|
|
1258
1258
|
description?: string | null | undefined;
|
|
1259
|
-
email?: string | undefined;
|
|
1260
1259
|
method?: string | undefined;
|
|
1260
|
+
email?: string | undefined;
|
|
1261
1261
|
captured?: boolean | undefined;
|
|
1262
1262
|
notes?: Record<string, string> | undefined;
|
|
1263
1263
|
wallet?: string | null | undefined;
|
|
@@ -1288,8 +1288,8 @@ export declare const razorpayWebhookEnvelopeSchema: z.ZodDiscriminatedUnion<"eve
|
|
|
1288
1288
|
id: string;
|
|
1289
1289
|
amount: number;
|
|
1290
1290
|
description?: string | null | undefined;
|
|
1291
|
-
email?: string | undefined;
|
|
1292
1291
|
method?: string | undefined;
|
|
1292
|
+
email?: string | undefined;
|
|
1293
1293
|
captured?: boolean | undefined;
|
|
1294
1294
|
notes?: Record<string, string> | undefined;
|
|
1295
1295
|
wallet?: string | null | undefined;
|
|
@@ -1320,8 +1320,8 @@ export declare const razorpayWebhookEnvelopeSchema: z.ZodDiscriminatedUnion<"eve
|
|
|
1320
1320
|
id: string;
|
|
1321
1321
|
amount: number;
|
|
1322
1322
|
description?: string | null | undefined;
|
|
1323
|
-
email?: string | undefined;
|
|
1324
1323
|
method?: string | undefined;
|
|
1324
|
+
email?: string | undefined;
|
|
1325
1325
|
captured?: boolean | undefined;
|
|
1326
1326
|
notes?: Record<string, string> | undefined;
|
|
1327
1327
|
wallet?: string | null | undefined;
|
|
@@ -1371,8 +1371,8 @@ export declare const razorpayWebhookEnvelopeSchema: z.ZodDiscriminatedUnion<"eve
|
|
|
1371
1371
|
id: string;
|
|
1372
1372
|
amount: number;
|
|
1373
1373
|
description?: string | null | undefined;
|
|
1374
|
-
email?: string | undefined;
|
|
1375
1374
|
method?: string | undefined;
|
|
1375
|
+
email?: string | undefined;
|
|
1376
1376
|
captured?: boolean | undefined;
|
|
1377
1377
|
notes?: Record<string, string> | undefined;
|
|
1378
1378
|
wallet?: string | null | undefined;
|
|
@@ -1422,8 +1422,8 @@ export declare const razorpayWebhookEnvelopeSchema: z.ZodDiscriminatedUnion<"eve
|
|
|
1422
1422
|
id: string;
|
|
1423
1423
|
amount: number;
|
|
1424
1424
|
description?: string | null | undefined;
|
|
1425
|
-
email?: string | undefined;
|
|
1426
1425
|
method?: string | undefined;
|
|
1426
|
+
email?: string | undefined;
|
|
1427
1427
|
captured?: boolean | undefined;
|
|
1428
1428
|
notes?: Record<string, string> | undefined;
|
|
1429
1429
|
wallet?: string | null | undefined;
|
|
@@ -1476,8 +1476,8 @@ export declare const razorpayWebhookEnvelopeSchema: z.ZodDiscriminatedUnion<"eve
|
|
|
1476
1476
|
id: string;
|
|
1477
1477
|
amount: number;
|
|
1478
1478
|
description?: string | null | undefined;
|
|
1479
|
-
email?: string | undefined;
|
|
1480
1479
|
method?: string | undefined;
|
|
1480
|
+
email?: string | undefined;
|
|
1481
1481
|
captured?: boolean | undefined;
|
|
1482
1482
|
notes?: Record<string, string> | undefined;
|
|
1483
1483
|
wallet?: string | null | undefined;
|
|
@@ -1533,8 +1533,8 @@ export declare const razorpayWebhookEnvelopeSchema: z.ZodDiscriminatedUnion<"eve
|
|
|
1533
1533
|
id: string;
|
|
1534
1534
|
amount: number;
|
|
1535
1535
|
description?: string | null | undefined;
|
|
1536
|
-
email?: string | undefined;
|
|
1537
1536
|
method?: string | undefined;
|
|
1537
|
+
email?: string | undefined;
|
|
1538
1538
|
captured?: boolean | undefined;
|
|
1539
1539
|
notes?: Record<string, string> | undefined;
|
|
1540
1540
|
wallet?: string | null | undefined;
|
|
@@ -1851,8 +1851,8 @@ export declare const razorpayWebhookEnvelopeSchema: z.ZodDiscriminatedUnion<"eve
|
|
|
1851
1851
|
id: string;
|
|
1852
1852
|
amount: number;
|
|
1853
1853
|
description?: string | null | undefined;
|
|
1854
|
-
email?: string | undefined;
|
|
1855
1854
|
method?: string | undefined;
|
|
1855
|
+
email?: string | undefined;
|
|
1856
1856
|
captured?: boolean | undefined;
|
|
1857
1857
|
notes?: Record<string, string> | undefined;
|
|
1858
1858
|
wallet?: string | null | undefined;
|
|
@@ -1881,8 +1881,8 @@ export declare const razorpayWebhookEnvelopeSchema: z.ZodDiscriminatedUnion<"eve
|
|
|
1881
1881
|
id: string;
|
|
1882
1882
|
amount: number;
|
|
1883
1883
|
description?: string | null | undefined;
|
|
1884
|
-
email?: string | undefined;
|
|
1885
1884
|
method?: string | undefined;
|
|
1885
|
+
email?: string | undefined;
|
|
1886
1886
|
captured?: boolean | undefined;
|
|
1887
1887
|
notes?: Record<string, string> | undefined;
|
|
1888
1888
|
wallet?: string | null | undefined;
|
|
@@ -1913,8 +1913,8 @@ export declare const razorpayWebhookEnvelopeSchema: z.ZodDiscriminatedUnion<"eve
|
|
|
1913
1913
|
id: string;
|
|
1914
1914
|
amount: number;
|
|
1915
1915
|
description?: string | null | undefined;
|
|
1916
|
-
email?: string | undefined;
|
|
1917
1916
|
method?: string | undefined;
|
|
1917
|
+
email?: string | undefined;
|
|
1918
1918
|
captured?: boolean | undefined;
|
|
1919
1919
|
notes?: Record<string, string> | undefined;
|
|
1920
1920
|
wallet?: string | null | undefined;
|
|
@@ -1945,8 +1945,8 @@ export declare const razorpayWebhookEnvelopeSchema: z.ZodDiscriminatedUnion<"eve
|
|
|
1945
1945
|
id: string;
|
|
1946
1946
|
amount: number;
|
|
1947
1947
|
description?: string | null | undefined;
|
|
1948
|
-
email?: string | undefined;
|
|
1949
1948
|
method?: string | undefined;
|
|
1949
|
+
email?: string | undefined;
|
|
1950
1950
|
captured?: boolean | undefined;
|
|
1951
1951
|
notes?: Record<string, string> | undefined;
|
|
1952
1952
|
wallet?: string | null | undefined;
|
|
@@ -1996,8 +1996,8 @@ export declare const razorpayWebhookEnvelopeSchema: z.ZodDiscriminatedUnion<"eve
|
|
|
1996
1996
|
id: string;
|
|
1997
1997
|
amount: number;
|
|
1998
1998
|
description?: string | null | undefined;
|
|
1999
|
-
email?: string | undefined;
|
|
2000
1999
|
method?: string | undefined;
|
|
2000
|
+
email?: string | undefined;
|
|
2001
2001
|
captured?: boolean | undefined;
|
|
2002
2002
|
notes?: Record<string, string> | undefined;
|
|
2003
2003
|
wallet?: string | null | undefined;
|
|
@@ -2047,8 +2047,8 @@ export declare const razorpayWebhookEnvelopeSchema: z.ZodDiscriminatedUnion<"eve
|
|
|
2047
2047
|
id: string;
|
|
2048
2048
|
amount: number;
|
|
2049
2049
|
description?: string | null | undefined;
|
|
2050
|
-
email?: string | undefined;
|
|
2051
2050
|
method?: string | undefined;
|
|
2051
|
+
email?: string | undefined;
|
|
2052
2052
|
captured?: boolean | undefined;
|
|
2053
2053
|
notes?: Record<string, string> | undefined;
|
|
2054
2054
|
wallet?: string | null | undefined;
|
|
@@ -2101,8 +2101,8 @@ export declare const razorpayWebhookEnvelopeSchema: z.ZodDiscriminatedUnion<"eve
|
|
|
2101
2101
|
id: string;
|
|
2102
2102
|
amount: number;
|
|
2103
2103
|
description?: string | null | undefined;
|
|
2104
|
-
email?: string | undefined;
|
|
2105
2104
|
method?: string | undefined;
|
|
2105
|
+
email?: string | undefined;
|
|
2106
2106
|
captured?: boolean | undefined;
|
|
2107
2107
|
notes?: Record<string, string> | undefined;
|
|
2108
2108
|
wallet?: string | null | undefined;
|
|
@@ -2158,8 +2158,8 @@ export declare const razorpayWebhookEnvelopeSchema: z.ZodDiscriminatedUnion<"eve
|
|
|
2158
2158
|
id: string;
|
|
2159
2159
|
amount: number;
|
|
2160
2160
|
description?: string | null | undefined;
|
|
2161
|
-
email?: string | undefined;
|
|
2162
2161
|
method?: string | undefined;
|
|
2162
|
+
email?: string | undefined;
|
|
2163
2163
|
captured?: boolean | undefined;
|
|
2164
2164
|
notes?: Record<string, string> | undefined;
|
|
2165
2165
|
wallet?: string | null | undefined;
|
|
@@ -2298,8 +2298,8 @@ export declare const razorpayWebhookEnvelopeSchema: z.ZodDiscriminatedUnion<"eve
|
|
|
2298
2298
|
id: string;
|
|
2299
2299
|
amount: number;
|
|
2300
2300
|
description?: string | null | undefined;
|
|
2301
|
-
email?: string | undefined;
|
|
2302
2301
|
method?: string | undefined;
|
|
2302
|
+
email?: string | undefined;
|
|
2303
2303
|
captured?: boolean | undefined;
|
|
2304
2304
|
notes?: Record<string, string> | undefined;
|
|
2305
2305
|
wallet?: string | null | undefined;
|
|
@@ -2328,8 +2328,8 @@ export declare const razorpayWebhookEnvelopeSchema: z.ZodDiscriminatedUnion<"eve
|
|
|
2328
2328
|
id: string;
|
|
2329
2329
|
amount: number;
|
|
2330
2330
|
description?: string | null | undefined;
|
|
2331
|
-
email?: string | undefined;
|
|
2332
2331
|
method?: string | undefined;
|
|
2332
|
+
email?: string | undefined;
|
|
2333
2333
|
captured?: boolean | undefined;
|
|
2334
2334
|
notes?: Record<string, string> | undefined;
|
|
2335
2335
|
wallet?: string | null | undefined;
|
|
@@ -2360,8 +2360,8 @@ export declare const razorpayWebhookEnvelopeSchema: z.ZodDiscriminatedUnion<"eve
|
|
|
2360
2360
|
id: string;
|
|
2361
2361
|
amount: number;
|
|
2362
2362
|
description?: string | null | undefined;
|
|
2363
|
-
email?: string | undefined;
|
|
2364
2363
|
method?: string | undefined;
|
|
2364
|
+
email?: string | undefined;
|
|
2365
2365
|
captured?: boolean | undefined;
|
|
2366
2366
|
notes?: Record<string, string> | undefined;
|
|
2367
2367
|
wallet?: string | null | undefined;
|
|
@@ -2392,8 +2392,8 @@ export declare const razorpayWebhookEnvelopeSchema: z.ZodDiscriminatedUnion<"eve
|
|
|
2392
2392
|
id: string;
|
|
2393
2393
|
amount: number;
|
|
2394
2394
|
description?: string | null | undefined;
|
|
2395
|
-
email?: string | undefined;
|
|
2396
2395
|
method?: string | undefined;
|
|
2396
|
+
email?: string | undefined;
|
|
2397
2397
|
captured?: boolean | undefined;
|
|
2398
2398
|
notes?: Record<string, string> | undefined;
|
|
2399
2399
|
wallet?: string | null | undefined;
|
|
@@ -2441,8 +2441,8 @@ export declare const razorpayWebhookEnvelopeSchema: z.ZodDiscriminatedUnion<"eve
|
|
|
2441
2441
|
id: string;
|
|
2442
2442
|
amount: number;
|
|
2443
2443
|
description?: string | null | undefined;
|
|
2444
|
-
email?: string | undefined;
|
|
2445
2444
|
method?: string | undefined;
|
|
2445
|
+
email?: string | undefined;
|
|
2446
2446
|
captured?: boolean | undefined;
|
|
2447
2447
|
notes?: Record<string, string> | undefined;
|
|
2448
2448
|
wallet?: string | null | undefined;
|
|
@@ -2490,8 +2490,8 @@ export declare const razorpayWebhookEnvelopeSchema: z.ZodDiscriminatedUnion<"eve
|
|
|
2490
2490
|
id: string;
|
|
2491
2491
|
amount: number;
|
|
2492
2492
|
description?: string | null | undefined;
|
|
2493
|
-
email?: string | undefined;
|
|
2494
2493
|
method?: string | undefined;
|
|
2494
|
+
email?: string | undefined;
|
|
2495
2495
|
captured?: boolean | undefined;
|
|
2496
2496
|
notes?: Record<string, string> | undefined;
|
|
2497
2497
|
wallet?: string | null | undefined;
|
|
@@ -2542,8 +2542,8 @@ export declare const razorpayWebhookEnvelopeSchema: z.ZodDiscriminatedUnion<"eve
|
|
|
2542
2542
|
id: string;
|
|
2543
2543
|
amount: number;
|
|
2544
2544
|
description?: string | null | undefined;
|
|
2545
|
-
email?: string | undefined;
|
|
2546
2545
|
method?: string | undefined;
|
|
2546
|
+
email?: string | undefined;
|
|
2547
2547
|
captured?: boolean | undefined;
|
|
2548
2548
|
notes?: Record<string, string> | undefined;
|
|
2549
2549
|
wallet?: string | null | undefined;
|
|
@@ -2597,8 +2597,8 @@ export declare const razorpayWebhookEnvelopeSchema: z.ZodDiscriminatedUnion<"eve
|
|
|
2597
2597
|
id: string;
|
|
2598
2598
|
amount: number;
|
|
2599
2599
|
description?: string | null | undefined;
|
|
2600
|
-
email?: string | undefined;
|
|
2601
2600
|
method?: string | undefined;
|
|
2601
|
+
email?: string | undefined;
|
|
2602
2602
|
captured?: boolean | undefined;
|
|
2603
2603
|
notes?: Record<string, string> | undefined;
|
|
2604
2604
|
wallet?: string | null | undefined;
|
|
@@ -257,28 +257,28 @@ export declare const trimDataSchema: z.ZodEffects<z.ZodObject<{
|
|
|
257
257
|
startTime: number;
|
|
258
258
|
endTime: number;
|
|
259
259
|
sourceUrl: string;
|
|
260
|
-
quality?: "
|
|
260
|
+
quality?: "high" | "low" | "medium" | undefined;
|
|
261
261
|
outputFormat?: "mp4" | "webm" | undefined;
|
|
262
262
|
outputFolder?: string | undefined;
|
|
263
263
|
}, {
|
|
264
264
|
startTime: number;
|
|
265
265
|
endTime: number;
|
|
266
266
|
sourceUrl: string;
|
|
267
|
-
quality?: "
|
|
267
|
+
quality?: "high" | "low" | "medium" | undefined;
|
|
268
268
|
outputFormat?: "mp4" | "webm" | undefined;
|
|
269
269
|
outputFolder?: string | undefined;
|
|
270
270
|
}>, {
|
|
271
271
|
startTime: number;
|
|
272
272
|
endTime: number;
|
|
273
273
|
sourceUrl: string;
|
|
274
|
-
quality?: "
|
|
274
|
+
quality?: "high" | "low" | "medium" | undefined;
|
|
275
275
|
outputFormat?: "mp4" | "webm" | undefined;
|
|
276
276
|
outputFolder?: string | undefined;
|
|
277
277
|
}, {
|
|
278
278
|
startTime: number;
|
|
279
279
|
endTime: number;
|
|
280
280
|
sourceUrl: string;
|
|
281
|
-
quality?: "
|
|
281
|
+
quality?: "high" | "low" | "medium" | undefined;
|
|
282
282
|
outputFormat?: "mp4" | "webm" | undefined;
|
|
283
283
|
outputFolder?: string | undefined;
|
|
284
284
|
}>;
|