@mohasinac/appkit 3.3.2 → 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/client/api/surface-error.js +6 -6
- package/dist/features/faq/actions/faq-actions.d.ts +6 -6
- package/dist/features/faq/schemas/index.d.ts +4 -4
- package/dist/features/support/schemas/index.d.ts +2 -2
- 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
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
import { isApiError } from "./ApiError";
|
|
2
|
+
import { ApiClientError } from "../../http/ApiClient";
|
|
2
3
|
import { normalizeError } from "../../errors/normalize";
|
|
3
4
|
import { getErrorDisplay } from "../../errors/error-display-map";
|
|
4
|
-
/** True for `ApiError` instances and for
|
|
5
|
-
*
|
|
6
|
-
*
|
|
7
|
-
*
|
|
5
|
+
/** True for `ApiError` instances and for `ApiClientError` (the lower-level
|
|
6
|
+
* error `ApiClient.request()` throws) when it carries a stable `code` —
|
|
7
|
+
* both shapes route through the same toast-vs-inline-field-error logic
|
|
8
|
+
* below. */
|
|
8
9
|
function hasStableErrorCode(err) {
|
|
9
|
-
return
|
|
10
|
-
(err instanceof Error && typeof err.code === "string"));
|
|
10
|
+
return isApiError(err) || (err instanceof ApiClientError && typeof err.code === "string");
|
|
11
11
|
}
|
|
12
12
|
export function surfaceError(err, opts) {
|
|
13
13
|
const { showToast, setFieldError, translate, report } = opts;
|
|
@@ -27,8 +27,8 @@ export declare const faqCreateSchema: z.ZodEffects<z.ZodObject<{
|
|
|
27
27
|
template: z.ZodOptional<z.ZodString>;
|
|
28
28
|
}, "strip", z.ZodTypeAny, {
|
|
29
29
|
category: string;
|
|
30
|
-
order: number;
|
|
31
30
|
priority: number;
|
|
31
|
+
order: number;
|
|
32
32
|
isActive: boolean;
|
|
33
33
|
question: string;
|
|
34
34
|
showOnHomepage: boolean;
|
|
@@ -51,9 +51,9 @@ export declare const faqCreateSchema: z.ZodEffects<z.ZodObject<{
|
|
|
51
51
|
format?: "html" | "plain" | "markdown" | undefined;
|
|
52
52
|
};
|
|
53
53
|
tags?: string[] | undefined;
|
|
54
|
+
priority?: number | undefined;
|
|
54
55
|
template?: string | undefined;
|
|
55
56
|
order?: number | undefined;
|
|
56
|
-
priority?: number | undefined;
|
|
57
57
|
isActive?: boolean | undefined;
|
|
58
58
|
variables?: Record<string, string> | undefined;
|
|
59
59
|
showOnHomepage?: boolean | undefined;
|
|
@@ -63,8 +63,8 @@ export declare const faqCreateSchema: z.ZodEffects<z.ZodObject<{
|
|
|
63
63
|
useSiteSettings?: boolean | undefined;
|
|
64
64
|
}>, {
|
|
65
65
|
category: string;
|
|
66
|
-
order: number;
|
|
67
66
|
priority: number;
|
|
67
|
+
order: number;
|
|
68
68
|
isActive: boolean;
|
|
69
69
|
question: string;
|
|
70
70
|
showOnHomepage: boolean;
|
|
@@ -87,9 +87,9 @@ export declare const faqCreateSchema: z.ZodEffects<z.ZodObject<{
|
|
|
87
87
|
format?: "html" | "plain" | "markdown" | undefined;
|
|
88
88
|
};
|
|
89
89
|
tags?: string[] | undefined;
|
|
90
|
+
priority?: number | undefined;
|
|
90
91
|
template?: string | undefined;
|
|
91
92
|
order?: number | undefined;
|
|
92
|
-
priority?: number | undefined;
|
|
93
93
|
isActive?: boolean | undefined;
|
|
94
94
|
variables?: Record<string, string> | undefined;
|
|
95
95
|
showOnHomepage?: boolean | undefined;
|
|
@@ -125,9 +125,9 @@ export declare const faqUpdateSchema: z.ZodObject<{
|
|
|
125
125
|
}, "strip", z.ZodTypeAny, {
|
|
126
126
|
category?: string | undefined;
|
|
127
127
|
tags?: string[] | undefined;
|
|
128
|
+
priority?: number | undefined;
|
|
128
129
|
template?: string | undefined;
|
|
129
130
|
order?: number | undefined;
|
|
130
|
-
priority?: number | undefined;
|
|
131
131
|
isActive?: boolean | undefined;
|
|
132
132
|
variables?: Record<string, string> | undefined;
|
|
133
133
|
question?: string | undefined;
|
|
@@ -143,9 +143,9 @@ export declare const faqUpdateSchema: z.ZodObject<{
|
|
|
143
143
|
}, {
|
|
144
144
|
category?: string | undefined;
|
|
145
145
|
tags?: string[] | undefined;
|
|
146
|
+
priority?: number | undefined;
|
|
146
147
|
template?: string | undefined;
|
|
147
148
|
order?: number | undefined;
|
|
148
|
-
priority?: number | undefined;
|
|
149
149
|
isActive?: boolean | undefined;
|
|
150
150
|
variables?: Record<string, string> | undefined;
|
|
151
151
|
question?: string | undefined;
|
|
@@ -92,8 +92,8 @@ export declare const faqSchema: z.ZodObject<{
|
|
|
92
92
|
createdAt?: string | undefined;
|
|
93
93
|
tags?: string[] | undefined;
|
|
94
94
|
updatedAt?: string | undefined;
|
|
95
|
-
order?: number | undefined;
|
|
96
95
|
priority?: number | undefined;
|
|
96
|
+
order?: number | undefined;
|
|
97
97
|
stats?: {
|
|
98
98
|
views?: number | undefined;
|
|
99
99
|
helpful?: number | undefined;
|
|
@@ -118,8 +118,8 @@ export declare const faqSchema: z.ZodObject<{
|
|
|
118
118
|
createdAt?: string | undefined;
|
|
119
119
|
tags?: string[] | undefined;
|
|
120
120
|
updatedAt?: string | undefined;
|
|
121
|
-
order?: number | undefined;
|
|
122
121
|
priority?: number | undefined;
|
|
122
|
+
order?: number | undefined;
|
|
123
123
|
stats?: {
|
|
124
124
|
views?: number | undefined;
|
|
125
125
|
helpful?: number | undefined;
|
|
@@ -283,8 +283,8 @@ export declare const faqFirestoreSchema: z.ZodObject<{
|
|
|
283
283
|
updatedAt: string | Date | z.objectOutputType<{
|
|
284
284
|
toDate: z.ZodFunction<z.ZodTuple<[], z.ZodUnknown>, z.ZodDate>;
|
|
285
285
|
}, z.ZodTypeAny, "passthrough">;
|
|
286
|
-
order: number;
|
|
287
286
|
priority: number;
|
|
287
|
+
order: number;
|
|
288
288
|
stats: {
|
|
289
289
|
views: number;
|
|
290
290
|
helpful: number;
|
|
@@ -322,8 +322,8 @@ export declare const faqFirestoreSchema: z.ZodObject<{
|
|
|
322
322
|
updatedAt: string | Date | z.objectInputType<{
|
|
323
323
|
toDate: z.ZodFunction<z.ZodTuple<[], z.ZodUnknown>, z.ZodDate>;
|
|
324
324
|
}, z.ZodTypeAny, "passthrough">;
|
|
325
|
-
order: number;
|
|
326
325
|
priority: number;
|
|
326
|
+
order: number;
|
|
327
327
|
stats: {
|
|
328
328
|
views: number;
|
|
329
329
|
helpful: number;
|
|
@@ -159,8 +159,8 @@ export declare const supportTicketFirestoreSchema: z.ZodObject<{
|
|
|
159
159
|
updatedAt: string | Date | z.objectOutputType<{
|
|
160
160
|
toDate: z.ZodFunction<z.ZodTuple<[], z.ZodUnknown>, z.ZodDate>;
|
|
161
161
|
}, z.ZodTypeAny, "passthrough">;
|
|
162
|
+
priority: "high" | "low" | "normal" | "urgent";
|
|
162
163
|
userId: string;
|
|
163
|
-
priority: "normal" | "high" | "low" | "urgent";
|
|
164
164
|
messages: {
|
|
165
165
|
createdAt: string | Date | z.objectOutputType<{
|
|
166
166
|
toDate: z.ZodFunction<z.ZodTuple<[], z.ZodUnknown>, z.ZodDate>;
|
|
@@ -202,8 +202,8 @@ export declare const supportTicketFirestoreSchema: z.ZodObject<{
|
|
|
202
202
|
updatedAt: string | Date | z.objectInputType<{
|
|
203
203
|
toDate: z.ZodFunction<z.ZodTuple<[], z.ZodUnknown>, z.ZodDate>;
|
|
204
204
|
}, z.ZodTypeAny, "passthrough">;
|
|
205
|
+
priority: "high" | "low" | "normal" | "urgent";
|
|
205
206
|
userId: string;
|
|
206
|
-
priority: "normal" | "high" | "low" | "urgent";
|
|
207
207
|
messages: {
|
|
208
208
|
createdAt: string | Date | z.objectInputType<{
|
|
209
209
|
toDate: z.ZodFunction<z.ZodTuple<[], z.ZodUnknown>, z.ZodDate>;
|
|
@@ -2049,8 +2049,8 @@ export declare const SCHEMAS: {
|
|
|
2049
2049
|
updatedAt: string | Date | import("zod").objectOutputType<{
|
|
2050
2050
|
toDate: import("zod").ZodFunction<import("zod").ZodTuple<[], import("zod").ZodUnknown>, import("zod").ZodDate>;
|
|
2051
2051
|
}, import("zod").ZodTypeAny, "passthrough">;
|
|
2052
|
-
order: number;
|
|
2053
2052
|
priority: number;
|
|
2053
|
+
order: number;
|
|
2054
2054
|
stats: {
|
|
2055
2055
|
views: number;
|
|
2056
2056
|
helpful: number;
|
|
@@ -2088,8 +2088,8 @@ export declare const SCHEMAS: {
|
|
|
2088
2088
|
updatedAt: string | Date | import("zod").objectInputType<{
|
|
2089
2089
|
toDate: import("zod").ZodFunction<import("zod").ZodTuple<[], import("zod").ZodUnknown>, import("zod").ZodDate>;
|
|
2090
2090
|
}, import("zod").ZodTypeAny, "passthrough">;
|
|
2091
|
-
order: number;
|
|
2092
2091
|
priority: number;
|
|
2092
|
+
order: number;
|
|
2093
2093
|
stats: {
|
|
2094
2094
|
views: number;
|
|
2095
2095
|
helpful: number;
|
|
@@ -4132,8 +4132,8 @@ export declare const SCHEMAS: {
|
|
|
4132
4132
|
updatedAt: string | Date | import("zod").objectOutputType<{
|
|
4133
4133
|
toDate: import("zod").ZodFunction<import("zod").ZodTuple<[], import("zod").ZodUnknown>, import("zod").ZodDate>;
|
|
4134
4134
|
}, import("zod").ZodTypeAny, "passthrough">;
|
|
4135
|
+
priority: "high" | "low" | "normal" | "urgent";
|
|
4135
4136
|
userId: string;
|
|
4136
|
-
priority: "normal" | "high" | "low" | "urgent";
|
|
4137
4137
|
messages: {
|
|
4138
4138
|
createdAt: string | Date | import("zod").objectOutputType<{
|
|
4139
4139
|
toDate: import("zod").ZodFunction<import("zod").ZodTuple<[], import("zod").ZodUnknown>, import("zod").ZodDate>;
|
|
@@ -4175,8 +4175,8 @@ export declare const SCHEMAS: {
|
|
|
4175
4175
|
updatedAt: string | Date | import("zod").objectInputType<{
|
|
4176
4176
|
toDate: import("zod").ZodFunction<import("zod").ZodTuple<[], import("zod").ZodUnknown>, import("zod").ZodDate>;
|
|
4177
4177
|
}, import("zod").ZodTypeAny, "passthrough">;
|
|
4178
|
+
priority: "high" | "low" | "normal" | "urgent";
|
|
4178
4179
|
userId: string;
|
|
4179
|
-
priority: "normal" | "high" | "low" | "urgent";
|
|
4180
4180
|
messages: {
|
|
4181
4181
|
createdAt: string | Date | import("zod").objectInputType<{
|
|
4182
4182
|
toDate: import("zod").ZodFunction<import("zod").ZodTuple<[], import("zod").ZodUnknown>, import("zod").ZodDate>;
|
|
@@ -4264,8 +4264,8 @@ export declare const SCHEMAS: {
|
|
|
4264
4264
|
id: string;
|
|
4265
4265
|
amount: number;
|
|
4266
4266
|
description?: string | null | undefined;
|
|
4267
|
-
email?: string | undefined;
|
|
4268
4267
|
method?: string | undefined;
|
|
4268
|
+
email?: string | undefined;
|
|
4269
4269
|
captured?: boolean | undefined;
|
|
4270
4270
|
notes?: Record<string, string> | undefined;
|
|
4271
4271
|
wallet?: string | null | undefined;
|
|
@@ -4294,8 +4294,8 @@ export declare const SCHEMAS: {
|
|
|
4294
4294
|
id: string;
|
|
4295
4295
|
amount: number;
|
|
4296
4296
|
description?: string | null | undefined;
|
|
4297
|
-
email?: string | undefined;
|
|
4298
4297
|
method?: string | undefined;
|
|
4298
|
+
email?: string | undefined;
|
|
4299
4299
|
captured?: boolean | undefined;
|
|
4300
4300
|
notes?: Record<string, string> | undefined;
|
|
4301
4301
|
wallet?: string | null | undefined;
|
|
@@ -4326,8 +4326,8 @@ export declare const SCHEMAS: {
|
|
|
4326
4326
|
id: string;
|
|
4327
4327
|
amount: number;
|
|
4328
4328
|
description?: string | null | undefined;
|
|
4329
|
-
email?: string | undefined;
|
|
4330
4329
|
method?: string | undefined;
|
|
4330
|
+
email?: string | undefined;
|
|
4331
4331
|
captured?: boolean | undefined;
|
|
4332
4332
|
notes?: Record<string, string> | undefined;
|
|
4333
4333
|
wallet?: string | null | undefined;
|
|
@@ -4358,8 +4358,8 @@ export declare const SCHEMAS: {
|
|
|
4358
4358
|
id: string;
|
|
4359
4359
|
amount: number;
|
|
4360
4360
|
description?: string | null | undefined;
|
|
4361
|
-
email?: string | undefined;
|
|
4362
4361
|
method?: string | undefined;
|
|
4362
|
+
email?: string | undefined;
|
|
4363
4363
|
captured?: boolean | undefined;
|
|
4364
4364
|
notes?: Record<string, string> | undefined;
|
|
4365
4365
|
wallet?: string | null | undefined;
|
|
@@ -4392,8 +4392,8 @@ export declare const SCHEMAS: {
|
|
|
4392
4392
|
id: string;
|
|
4393
4393
|
amount: number;
|
|
4394
4394
|
description?: string | null | undefined;
|
|
4395
|
-
email?: string | undefined;
|
|
4396
4395
|
method?: string | undefined;
|
|
4396
|
+
email?: string | undefined;
|
|
4397
4397
|
captured?: boolean | undefined;
|
|
4398
4398
|
notes?: Record<string, string> | undefined;
|
|
4399
4399
|
wallet?: string | null | undefined;
|
|
@@ -4426,8 +4426,8 @@ export declare const SCHEMAS: {
|
|
|
4426
4426
|
id: string;
|
|
4427
4427
|
amount: number;
|
|
4428
4428
|
description?: string | null | undefined;
|
|
4429
|
-
email?: string | undefined;
|
|
4430
4429
|
method?: string | undefined;
|
|
4430
|
+
email?: string | undefined;
|
|
4431
4431
|
captured?: boolean | undefined;
|
|
4432
4432
|
notes?: Record<string, string> | undefined;
|
|
4433
4433
|
wallet?: string | null | undefined;
|
|
@@ -4463,8 +4463,8 @@ export declare const SCHEMAS: {
|
|
|
4463
4463
|
id: string;
|
|
4464
4464
|
amount: number;
|
|
4465
4465
|
description?: string | null | undefined;
|
|
4466
|
-
email?: string | undefined;
|
|
4467
4466
|
method?: string | undefined;
|
|
4467
|
+
email?: string | undefined;
|
|
4468
4468
|
captured?: boolean | undefined;
|
|
4469
4469
|
notes?: Record<string, string> | undefined;
|
|
4470
4470
|
wallet?: string | null | undefined;
|
|
@@ -4503,8 +4503,8 @@ export declare const SCHEMAS: {
|
|
|
4503
4503
|
id: string;
|
|
4504
4504
|
amount: number;
|
|
4505
4505
|
description?: string | null | undefined;
|
|
4506
|
-
email?: string | undefined;
|
|
4507
4506
|
method?: string | undefined;
|
|
4507
|
+
email?: string | undefined;
|
|
4508
4508
|
captured?: boolean | undefined;
|
|
4509
4509
|
notes?: Record<string, string> | undefined;
|
|
4510
4510
|
wallet?: string | null | undefined;
|
|
@@ -4576,8 +4576,8 @@ export declare const SCHEMAS: {
|
|
|
4576
4576
|
id: string;
|
|
4577
4577
|
amount: number;
|
|
4578
4578
|
description?: string | null | undefined;
|
|
4579
|
-
email?: string | undefined;
|
|
4580
4579
|
method?: string | undefined;
|
|
4580
|
+
email?: string | undefined;
|
|
4581
4581
|
captured?: boolean | undefined;
|
|
4582
4582
|
notes?: Record<string, string> | undefined;
|
|
4583
4583
|
wallet?: string | null | undefined;
|
|
@@ -4606,8 +4606,8 @@ export declare const SCHEMAS: {
|
|
|
4606
4606
|
id: string;
|
|
4607
4607
|
amount: number;
|
|
4608
4608
|
description?: string | null | undefined;
|
|
4609
|
-
email?: string | undefined;
|
|
4610
4609
|
method?: string | undefined;
|
|
4610
|
+
email?: string | undefined;
|
|
4611
4611
|
captured?: boolean | undefined;
|
|
4612
4612
|
notes?: Record<string, string> | undefined;
|
|
4613
4613
|
wallet?: string | null | undefined;
|
|
@@ -4638,8 +4638,8 @@ export declare const SCHEMAS: {
|
|
|
4638
4638
|
id: string;
|
|
4639
4639
|
amount: number;
|
|
4640
4640
|
description?: string | null | undefined;
|
|
4641
|
-
email?: string | undefined;
|
|
4642
4641
|
method?: string | undefined;
|
|
4642
|
+
email?: string | undefined;
|
|
4643
4643
|
captured?: boolean | undefined;
|
|
4644
4644
|
notes?: Record<string, string> | undefined;
|
|
4645
4645
|
wallet?: string | null | undefined;
|
|
@@ -4670,8 +4670,8 @@ export declare const SCHEMAS: {
|
|
|
4670
4670
|
id: string;
|
|
4671
4671
|
amount: number;
|
|
4672
4672
|
description?: string | null | undefined;
|
|
4673
|
-
email?: string | undefined;
|
|
4674
4673
|
method?: string | undefined;
|
|
4674
|
+
email?: string | undefined;
|
|
4675
4675
|
captured?: boolean | undefined;
|
|
4676
4676
|
notes?: Record<string, string> | undefined;
|
|
4677
4677
|
wallet?: string | null | undefined;
|
|
@@ -4704,8 +4704,8 @@ export declare const SCHEMAS: {
|
|
|
4704
4704
|
id: string;
|
|
4705
4705
|
amount: number;
|
|
4706
4706
|
description?: string | null | undefined;
|
|
4707
|
-
email?: string | undefined;
|
|
4708
4707
|
method?: string | undefined;
|
|
4708
|
+
email?: string | undefined;
|
|
4709
4709
|
captured?: boolean | undefined;
|
|
4710
4710
|
notes?: Record<string, string> | undefined;
|
|
4711
4711
|
wallet?: string | null | undefined;
|
|
@@ -4738,8 +4738,8 @@ export declare const SCHEMAS: {
|
|
|
4738
4738
|
id: string;
|
|
4739
4739
|
amount: number;
|
|
4740
4740
|
description?: string | null | undefined;
|
|
4741
|
-
email?: string | undefined;
|
|
4742
4741
|
method?: string | undefined;
|
|
4742
|
+
email?: string | undefined;
|
|
4743
4743
|
captured?: boolean | undefined;
|
|
4744
4744
|
notes?: Record<string, string> | undefined;
|
|
4745
4745
|
wallet?: string | null | undefined;
|
|
@@ -4775,8 +4775,8 @@ export declare const SCHEMAS: {
|
|
|
4775
4775
|
id: string;
|
|
4776
4776
|
amount: number;
|
|
4777
4777
|
description?: string | null | undefined;
|
|
4778
|
-
email?: string | undefined;
|
|
4779
4778
|
method?: string | undefined;
|
|
4779
|
+
email?: string | undefined;
|
|
4780
4780
|
captured?: boolean | undefined;
|
|
4781
4781
|
notes?: Record<string, string> | undefined;
|
|
4782
4782
|
wallet?: string | null | undefined;
|
|
@@ -4815,8 +4815,8 @@ export declare const SCHEMAS: {
|
|
|
4815
4815
|
id: string;
|
|
4816
4816
|
amount: number;
|
|
4817
4817
|
description?: string | null | undefined;
|
|
4818
|
-
email?: string | undefined;
|
|
4819
4818
|
method?: string | undefined;
|
|
4819
|
+
email?: string | undefined;
|
|
4820
4820
|
captured?: boolean | undefined;
|
|
4821
4821
|
notes?: Record<string, string> | undefined;
|
|
4822
4822
|
wallet?: string | null | undefined;
|
|
@@ -4888,8 +4888,8 @@ export declare const SCHEMAS: {
|
|
|
4888
4888
|
id: string;
|
|
4889
4889
|
amount: number;
|
|
4890
4890
|
description?: string | null | undefined;
|
|
4891
|
-
email?: string | undefined;
|
|
4892
4891
|
method?: string | undefined;
|
|
4892
|
+
email?: string | undefined;
|
|
4893
4893
|
captured?: boolean | undefined;
|
|
4894
4894
|
notes?: Record<string, string> | undefined;
|
|
4895
4895
|
wallet?: string | null | undefined;
|
|
@@ -4918,8 +4918,8 @@ export declare const SCHEMAS: {
|
|
|
4918
4918
|
id: string;
|
|
4919
4919
|
amount: number;
|
|
4920
4920
|
description?: string | null | undefined;
|
|
4921
|
-
email?: string | undefined;
|
|
4922
4921
|
method?: string | undefined;
|
|
4922
|
+
email?: string | undefined;
|
|
4923
4923
|
captured?: boolean | undefined;
|
|
4924
4924
|
notes?: Record<string, string> | undefined;
|
|
4925
4925
|
wallet?: string | null | undefined;
|
|
@@ -4950,8 +4950,8 @@ export declare const SCHEMAS: {
|
|
|
4950
4950
|
id: string;
|
|
4951
4951
|
amount: number;
|
|
4952
4952
|
description?: string | null | undefined;
|
|
4953
|
-
email?: string | undefined;
|
|
4954
4953
|
method?: string | undefined;
|
|
4954
|
+
email?: string | undefined;
|
|
4955
4955
|
captured?: boolean | undefined;
|
|
4956
4956
|
notes?: Record<string, string> | undefined;
|
|
4957
4957
|
wallet?: string | null | undefined;
|
|
@@ -4982,8 +4982,8 @@ export declare const SCHEMAS: {
|
|
|
4982
4982
|
id: string;
|
|
4983
4983
|
amount: number;
|
|
4984
4984
|
description?: string | null | undefined;
|
|
4985
|
-
email?: string | undefined;
|
|
4986
4985
|
method?: string | undefined;
|
|
4986
|
+
email?: string | undefined;
|
|
4987
4987
|
captured?: boolean | undefined;
|
|
4988
4988
|
notes?: Record<string, string> | undefined;
|
|
4989
4989
|
wallet?: string | null | undefined;
|
|
@@ -5016,8 +5016,8 @@ export declare const SCHEMAS: {
|
|
|
5016
5016
|
id: string;
|
|
5017
5017
|
amount: number;
|
|
5018
5018
|
description?: string | null | undefined;
|
|
5019
|
-
email?: string | undefined;
|
|
5020
5019
|
method?: string | undefined;
|
|
5020
|
+
email?: string | undefined;
|
|
5021
5021
|
captured?: boolean | undefined;
|
|
5022
5022
|
notes?: Record<string, string> | undefined;
|
|
5023
5023
|
wallet?: string | null | undefined;
|
|
@@ -5050,8 +5050,8 @@ export declare const SCHEMAS: {
|
|
|
5050
5050
|
id: string;
|
|
5051
5051
|
amount: number;
|
|
5052
5052
|
description?: string | null | undefined;
|
|
5053
|
-
email?: string | undefined;
|
|
5054
5053
|
method?: string | undefined;
|
|
5054
|
+
email?: string | undefined;
|
|
5055
5055
|
captured?: boolean | undefined;
|
|
5056
5056
|
notes?: Record<string, string> | undefined;
|
|
5057
5057
|
wallet?: string | null | undefined;
|
|
@@ -5087,8 +5087,8 @@ export declare const SCHEMAS: {
|
|
|
5087
5087
|
id: string;
|
|
5088
5088
|
amount: number;
|
|
5089
5089
|
description?: string | null | undefined;
|
|
5090
|
-
email?: string | undefined;
|
|
5091
5090
|
method?: string | undefined;
|
|
5091
|
+
email?: string | undefined;
|
|
5092
5092
|
captured?: boolean | undefined;
|
|
5093
5093
|
notes?: Record<string, string> | undefined;
|
|
5094
5094
|
wallet?: string | null | undefined;
|
|
@@ -5127,8 +5127,8 @@ export declare const SCHEMAS: {
|
|
|
5127
5127
|
id: string;
|
|
5128
5128
|
amount: number;
|
|
5129
5129
|
description?: string | null | undefined;
|
|
5130
|
-
email?: string | undefined;
|
|
5131
5130
|
method?: string | undefined;
|
|
5131
|
+
email?: string | undefined;
|
|
5132
5132
|
captured?: boolean | undefined;
|
|
5133
5133
|
notes?: Record<string, string> | undefined;
|
|
5134
5134
|
wallet?: string | null | undefined;
|
|
@@ -5277,8 +5277,8 @@ export declare const SCHEMAS: {
|
|
|
5277
5277
|
id: string;
|
|
5278
5278
|
amount: number;
|
|
5279
5279
|
description?: string | null | undefined;
|
|
5280
|
-
email?: string | undefined;
|
|
5281
5280
|
method?: string | undefined;
|
|
5281
|
+
email?: string | undefined;
|
|
5282
5282
|
captured?: boolean | undefined;
|
|
5283
5283
|
notes?: Record<string, string> | undefined;
|
|
5284
5284
|
wallet?: string | null | undefined;
|
|
@@ -5307,8 +5307,8 @@ export declare const SCHEMAS: {
|
|
|
5307
5307
|
id: string;
|
|
5308
5308
|
amount: number;
|
|
5309
5309
|
description?: string | null | undefined;
|
|
5310
|
-
email?: string | undefined;
|
|
5311
5310
|
method?: string | undefined;
|
|
5311
|
+
email?: string | undefined;
|
|
5312
5312
|
captured?: boolean | undefined;
|
|
5313
5313
|
notes?: Record<string, string> | undefined;
|
|
5314
5314
|
wallet?: string | null | undefined;
|
|
@@ -5339,8 +5339,8 @@ export declare const SCHEMAS: {
|
|
|
5339
5339
|
id: string;
|
|
5340
5340
|
amount: number;
|
|
5341
5341
|
description?: string | null | undefined;
|
|
5342
|
-
email?: string | undefined;
|
|
5343
5342
|
method?: string | undefined;
|
|
5343
|
+
email?: string | undefined;
|
|
5344
5344
|
captured?: boolean | undefined;
|
|
5345
5345
|
notes?: Record<string, string> | undefined;
|
|
5346
5346
|
wallet?: string | null | undefined;
|
|
@@ -5371,8 +5371,8 @@ export declare const SCHEMAS: {
|
|
|
5371
5371
|
id: string;
|
|
5372
5372
|
amount: number;
|
|
5373
5373
|
description?: string | null | undefined;
|
|
5374
|
-
email?: string | undefined;
|
|
5375
5374
|
method?: string | undefined;
|
|
5375
|
+
email?: string | undefined;
|
|
5376
5376
|
captured?: boolean | undefined;
|
|
5377
5377
|
notes?: Record<string, string> | undefined;
|
|
5378
5378
|
wallet?: string | null | undefined;
|
|
@@ -5422,8 +5422,8 @@ export declare const SCHEMAS: {
|
|
|
5422
5422
|
id: string;
|
|
5423
5423
|
amount: number;
|
|
5424
5424
|
description?: string | null | undefined;
|
|
5425
|
-
email?: string | undefined;
|
|
5426
5425
|
method?: string | undefined;
|
|
5426
|
+
email?: string | undefined;
|
|
5427
5427
|
captured?: boolean | undefined;
|
|
5428
5428
|
notes?: Record<string, string> | undefined;
|
|
5429
5429
|
wallet?: string | null | undefined;
|
|
@@ -5473,8 +5473,8 @@ export declare const SCHEMAS: {
|
|
|
5473
5473
|
id: string;
|
|
5474
5474
|
amount: number;
|
|
5475
5475
|
description?: string | null | undefined;
|
|
5476
|
-
email?: string | undefined;
|
|
5477
5476
|
method?: string | undefined;
|
|
5477
|
+
email?: string | undefined;
|
|
5478
5478
|
captured?: boolean | undefined;
|
|
5479
5479
|
notes?: Record<string, string> | undefined;
|
|
5480
5480
|
wallet?: string | null | undefined;
|
|
@@ -5527,8 +5527,8 @@ export declare const SCHEMAS: {
|
|
|
5527
5527
|
id: string;
|
|
5528
5528
|
amount: number;
|
|
5529
5529
|
description?: string | null | undefined;
|
|
5530
|
-
email?: string | undefined;
|
|
5531
5530
|
method?: string | undefined;
|
|
5531
|
+
email?: string | undefined;
|
|
5532
5532
|
captured?: boolean | undefined;
|
|
5533
5533
|
notes?: Record<string, string> | undefined;
|
|
5534
5534
|
wallet?: string | null | undefined;
|
|
@@ -5584,8 +5584,8 @@ export declare const SCHEMAS: {
|
|
|
5584
5584
|
id: string;
|
|
5585
5585
|
amount: number;
|
|
5586
5586
|
description?: string | null | undefined;
|
|
5587
|
-
email?: string | undefined;
|
|
5588
5587
|
method?: string | undefined;
|
|
5588
|
+
email?: string | undefined;
|
|
5589
5589
|
captured?: boolean | undefined;
|
|
5590
5590
|
notes?: Record<string, string> | undefined;
|
|
5591
5591
|
wallet?: string | null | undefined;
|
|
@@ -5902,8 +5902,8 @@ export declare const SCHEMAS: {
|
|
|
5902
5902
|
id: string;
|
|
5903
5903
|
amount: number;
|
|
5904
5904
|
description?: string | null | undefined;
|
|
5905
|
-
email?: string | undefined;
|
|
5906
5905
|
method?: string | undefined;
|
|
5906
|
+
email?: string | undefined;
|
|
5907
5907
|
captured?: boolean | undefined;
|
|
5908
5908
|
notes?: Record<string, string> | undefined;
|
|
5909
5909
|
wallet?: string | null | undefined;
|
|
@@ -5932,8 +5932,8 @@ export declare const SCHEMAS: {
|
|
|
5932
5932
|
id: string;
|
|
5933
5933
|
amount: number;
|
|
5934
5934
|
description?: string | null | undefined;
|
|
5935
|
-
email?: string | undefined;
|
|
5936
5935
|
method?: string | undefined;
|
|
5936
|
+
email?: string | undefined;
|
|
5937
5937
|
captured?: boolean | undefined;
|
|
5938
5938
|
notes?: Record<string, string> | undefined;
|
|
5939
5939
|
wallet?: string | null | undefined;
|
|
@@ -5964,8 +5964,8 @@ export declare const SCHEMAS: {
|
|
|
5964
5964
|
id: string;
|
|
5965
5965
|
amount: number;
|
|
5966
5966
|
description?: string | null | undefined;
|
|
5967
|
-
email?: string | undefined;
|
|
5968
5967
|
method?: string | undefined;
|
|
5968
|
+
email?: string | undefined;
|
|
5969
5969
|
captured?: boolean | undefined;
|
|
5970
5970
|
notes?: Record<string, string> | undefined;
|
|
5971
5971
|
wallet?: string | null | undefined;
|
|
@@ -5996,8 +5996,8 @@ export declare const SCHEMAS: {
|
|
|
5996
5996
|
id: string;
|
|
5997
5997
|
amount: number;
|
|
5998
5998
|
description?: string | null | undefined;
|
|
5999
|
-
email?: string | undefined;
|
|
6000
5999
|
method?: string | undefined;
|
|
6000
|
+
email?: string | undefined;
|
|
6001
6001
|
captured?: boolean | undefined;
|
|
6002
6002
|
notes?: Record<string, string> | undefined;
|
|
6003
6003
|
wallet?: string | null | undefined;
|
|
@@ -6047,8 +6047,8 @@ export declare const SCHEMAS: {
|
|
|
6047
6047
|
id: string;
|
|
6048
6048
|
amount: number;
|
|
6049
6049
|
description?: string | null | undefined;
|
|
6050
|
-
email?: string | undefined;
|
|
6051
6050
|
method?: string | undefined;
|
|
6051
|
+
email?: string | undefined;
|
|
6052
6052
|
captured?: boolean | undefined;
|
|
6053
6053
|
notes?: Record<string, string> | undefined;
|
|
6054
6054
|
wallet?: string | null | undefined;
|
|
@@ -6098,8 +6098,8 @@ export declare const SCHEMAS: {
|
|
|
6098
6098
|
id: string;
|
|
6099
6099
|
amount: number;
|
|
6100
6100
|
description?: string | null | undefined;
|
|
6101
|
-
email?: string | undefined;
|
|
6102
6101
|
method?: string | undefined;
|
|
6102
|
+
email?: string | undefined;
|
|
6103
6103
|
captured?: boolean | undefined;
|
|
6104
6104
|
notes?: Record<string, string> | undefined;
|
|
6105
6105
|
wallet?: string | null | undefined;
|
|
@@ -6152,8 +6152,8 @@ export declare const SCHEMAS: {
|
|
|
6152
6152
|
id: string;
|
|
6153
6153
|
amount: number;
|
|
6154
6154
|
description?: string | null | undefined;
|
|
6155
|
-
email?: string | undefined;
|
|
6156
6155
|
method?: string | undefined;
|
|
6156
|
+
email?: string | undefined;
|
|
6157
6157
|
captured?: boolean | undefined;
|
|
6158
6158
|
notes?: Record<string, string> | undefined;
|
|
6159
6159
|
wallet?: string | null | undefined;
|
|
@@ -6209,8 +6209,8 @@ export declare const SCHEMAS: {
|
|
|
6209
6209
|
id: string;
|
|
6210
6210
|
amount: number;
|
|
6211
6211
|
description?: string | null | undefined;
|
|
6212
|
-
email?: string | undefined;
|
|
6213
6212
|
method?: string | undefined;
|
|
6213
|
+
email?: string | undefined;
|
|
6214
6214
|
captured?: boolean | undefined;
|
|
6215
6215
|
notes?: Record<string, string> | undefined;
|
|
6216
6216
|
wallet?: string | null | undefined;
|
|
@@ -6349,8 +6349,8 @@ export declare const SCHEMAS: {
|
|
|
6349
6349
|
id: string;
|
|
6350
6350
|
amount: number;
|
|
6351
6351
|
description?: string | null | undefined;
|
|
6352
|
-
email?: string | undefined;
|
|
6353
6352
|
method?: string | undefined;
|
|
6353
|
+
email?: string | undefined;
|
|
6354
6354
|
captured?: boolean | undefined;
|
|
6355
6355
|
notes?: Record<string, string> | undefined;
|
|
6356
6356
|
wallet?: string | null | undefined;
|
|
@@ -6379,8 +6379,8 @@ export declare const SCHEMAS: {
|
|
|
6379
6379
|
id: string;
|
|
6380
6380
|
amount: number;
|
|
6381
6381
|
description?: string | null | undefined;
|
|
6382
|
-
email?: string | undefined;
|
|
6383
6382
|
method?: string | undefined;
|
|
6383
|
+
email?: string | undefined;
|
|
6384
6384
|
captured?: boolean | undefined;
|
|
6385
6385
|
notes?: Record<string, string> | undefined;
|
|
6386
6386
|
wallet?: string | null | undefined;
|
|
@@ -6411,8 +6411,8 @@ export declare const SCHEMAS: {
|
|
|
6411
6411
|
id: string;
|
|
6412
6412
|
amount: number;
|
|
6413
6413
|
description?: string | null | undefined;
|
|
6414
|
-
email?: string | undefined;
|
|
6415
6414
|
method?: string | undefined;
|
|
6415
|
+
email?: string | undefined;
|
|
6416
6416
|
captured?: boolean | undefined;
|
|
6417
6417
|
notes?: Record<string, string> | undefined;
|
|
6418
6418
|
wallet?: string | null | undefined;
|
|
@@ -6443,8 +6443,8 @@ export declare const SCHEMAS: {
|
|
|
6443
6443
|
id: string;
|
|
6444
6444
|
amount: number;
|
|
6445
6445
|
description?: string | null | undefined;
|
|
6446
|
-
email?: string | undefined;
|
|
6447
6446
|
method?: string | undefined;
|
|
6447
|
+
email?: string | undefined;
|
|
6448
6448
|
captured?: boolean | undefined;
|
|
6449
6449
|
notes?: Record<string, string> | undefined;
|
|
6450
6450
|
wallet?: string | null | undefined;
|
|
@@ -6492,8 +6492,8 @@ export declare const SCHEMAS: {
|
|
|
6492
6492
|
id: string;
|
|
6493
6493
|
amount: number;
|
|
6494
6494
|
description?: string | null | undefined;
|
|
6495
|
-
email?: string | undefined;
|
|
6496
6495
|
method?: string | undefined;
|
|
6496
|
+
email?: string | undefined;
|
|
6497
6497
|
captured?: boolean | undefined;
|
|
6498
6498
|
notes?: Record<string, string> | undefined;
|
|
6499
6499
|
wallet?: string | null | undefined;
|
|
@@ -6541,8 +6541,8 @@ export declare const SCHEMAS: {
|
|
|
6541
6541
|
id: string;
|
|
6542
6542
|
amount: number;
|
|
6543
6543
|
description?: string | null | undefined;
|
|
6544
|
-
email?: string | undefined;
|
|
6545
6544
|
method?: string | undefined;
|
|
6545
|
+
email?: string | undefined;
|
|
6546
6546
|
captured?: boolean | undefined;
|
|
6547
6547
|
notes?: Record<string, string> | undefined;
|
|
6548
6548
|
wallet?: string | null | undefined;
|
|
@@ -6593,8 +6593,8 @@ export declare const SCHEMAS: {
|
|
|
6593
6593
|
id: string;
|
|
6594
6594
|
amount: number;
|
|
6595
6595
|
description?: string | null | undefined;
|
|
6596
|
-
email?: string | undefined;
|
|
6597
6596
|
method?: string | undefined;
|
|
6597
|
+
email?: string | undefined;
|
|
6598
6598
|
captured?: boolean | undefined;
|
|
6599
6599
|
notes?: Record<string, string> | undefined;
|
|
6600
6600
|
wallet?: string | null | undefined;
|
|
@@ -6648,8 +6648,8 @@ export declare const SCHEMAS: {
|
|
|
6648
6648
|
id: string;
|
|
6649
6649
|
amount: number;
|
|
6650
6650
|
description?: string | null | undefined;
|
|
6651
|
-
email?: string | undefined;
|
|
6652
6651
|
method?: string | undefined;
|
|
6652
|
+
email?: string | undefined;
|
|
6653
6653
|
captured?: boolean | undefined;
|
|
6654
6654
|
notes?: Record<string, string> | undefined;
|
|
6655
6655
|
wallet?: string | null | undefined;
|
|
@@ -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
|
}>;
|