@mohasinac/appkit 3.2.6 → 3.2.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/_internal/shared/actions/action-registry.js +62 -0
- package/dist/constants/api-endpoints.d.ts +12 -0
- package/dist/constants/api-endpoints.js +4 -0
- package/dist/features/about/components/PublicProfileView.js +8 -5
- package/dist/features/addresses/repository/addresses.repository.d.ts +14 -1
- package/dist/features/addresses/repository/addresses.repository.js +122 -1
- package/dist/features/addresses/schemas/firestore.d.ts +22 -3
- package/dist/features/addresses/schemas/firestore.js +25 -0
- package/dist/features/addresses/schemas/index.d.ts +2 -2
- package/dist/features/admin/components/AdminAddressClustersView.d.ts +5 -0
- package/dist/features/admin/components/AdminAddressClustersView.js +38 -0
- package/dist/features/admin/components/AdminAddressesView.d.ts +5 -0
- package/dist/features/admin/components/AdminAddressesView.js +137 -0
- package/dist/features/admin/components/AdminPaymentClustersView.d.ts +5 -0
- package/dist/features/admin/components/AdminPaymentClustersView.js +37 -0
- package/dist/features/admin/components/AdminPaymentMethodsView.d.ts +5 -0
- package/dist/features/admin/components/AdminPaymentMethodsView.js +130 -0
- package/dist/features/admin/components/index.d.ts +8 -0
- package/dist/features/admin/components/index.js +4 -0
- package/dist/features/auth/actions/profile-actions.d.ts +3 -1
- package/dist/features/auth/actions/profile-actions.js +29 -2
- package/dist/features/cart/schemas/index.d.ts +6 -6
- package/dist/features/orders/schemas/index.d.ts +4 -4
- package/dist/features/payments/repository/saved-payment-methods.repository.d.ts +48 -0
- package/dist/features/payments/repository/saved-payment-methods.repository.js +236 -0
- package/dist/features/payments/schemas/index.d.ts +1 -0
- package/dist/features/payments/schemas/index.js +1 -0
- package/dist/features/payments/schemas/saved-methods-firestore.d.ts +63 -0
- package/dist/features/payments/schemas/saved-methods-firestore.js +60 -0
- package/dist/features/payments/server.d.ts +2 -0
- package/dist/features/payments/server.js +2 -0
- package/dist/features/promotions/schemas/index.d.ts +6 -6
- package/dist/features/reviews/repository/reviews.repository.d.ts +12 -0
- package/dist/features/reviews/repository/reviews.repository.js +24 -0
- package/dist/features/reviews/schemas/firestore.d.ts +5 -1
- package/dist/features/reviews/schemas/firestore.js +2 -0
- package/dist/features/reviews/schemas/index.d.ts +6 -6
- package/dist/features/seller/components/SellerAddressesView.js +7 -3
- package/dist/features/support/schemas/index.d.ts +8 -8
- package/dist/features/wishlist/schemas/index.d.ts +2 -2
- package/dist/index.d.ts +9 -0
- package/dist/index.js +10 -0
- package/dist/next/routing/route-map.d.ts +8 -0
- package/dist/next/routing/route-map.js +4 -0
- package/dist/repositories/index.d.ts +1 -0
- package/dist/repositories/index.js +1 -0
- package/dist/schemas/registry.d.ts +66 -66
- package/dist/schemas/webhooks/razorpay.d.ts +50 -50
- package/dist/security/index.d.ts +1 -1
- package/dist/security/index.js +1 -1
- package/dist/security/pii-schemas.d.ts +2 -0
- package/dist/security/pii-schemas.js +2 -0
- package/package.json +1 -2
|
@@ -41,13 +41,13 @@ export declare const SCHEMAS: {
|
|
|
41
41
|
toDate: import("zod").ZodFunction<import("zod").ZodTuple<[], import("zod").ZodUnknown>, import("zod").ZodDate>;
|
|
42
42
|
}, import("zod").ZodTypeAny, "passthrough">;
|
|
43
43
|
label: string;
|
|
44
|
+
isDefault: boolean;
|
|
44
45
|
state: string;
|
|
45
46
|
city: string;
|
|
46
47
|
addressLine1: string;
|
|
47
48
|
fullName: string;
|
|
48
49
|
ownerType: "user" | "store";
|
|
49
50
|
ownerId: string;
|
|
50
|
-
isDefault: boolean;
|
|
51
51
|
postalCode: string;
|
|
52
52
|
addressLine2?: string | undefined;
|
|
53
53
|
landmark?: string | undefined;
|
|
@@ -62,13 +62,13 @@ export declare const SCHEMAS: {
|
|
|
62
62
|
toDate: import("zod").ZodFunction<import("zod").ZodTuple<[], import("zod").ZodUnknown>, import("zod").ZodDate>;
|
|
63
63
|
}, import("zod").ZodTypeAny, "passthrough">;
|
|
64
64
|
label: string;
|
|
65
|
+
isDefault: boolean;
|
|
65
66
|
state: string;
|
|
66
67
|
city: string;
|
|
67
68
|
addressLine1: string;
|
|
68
69
|
fullName: string;
|
|
69
70
|
ownerType: "user" | "store";
|
|
70
71
|
ownerId: string;
|
|
71
|
-
isDefault: boolean;
|
|
72
72
|
postalCode: string;
|
|
73
73
|
addressLine2?: string | undefined;
|
|
74
74
|
landmark?: string | undefined;
|
|
@@ -1943,22 +1943,22 @@ export declare const SCHEMAS: {
|
|
|
1943
1943
|
orders: import("zod").ZodArray<import("zod").ZodString, "many">;
|
|
1944
1944
|
}, "strip", import("zod").ZodTypeAny, {
|
|
1945
1945
|
id: string;
|
|
1946
|
-
orders: string[];
|
|
1947
1946
|
userId: string;
|
|
1948
|
-
couponCode: string;
|
|
1949
|
-
usageCount: number;
|
|
1950
1947
|
lastUsedAt: string | Date | import("zod").objectOutputType<{
|
|
1951
1948
|
toDate: import("zod").ZodFunction<import("zod").ZodTuple<[], import("zod").ZodUnknown>, import("zod").ZodDate>;
|
|
1952
1949
|
}, import("zod").ZodTypeAny, "passthrough">;
|
|
1953
|
-
}, {
|
|
1954
|
-
id: string;
|
|
1955
1950
|
orders: string[];
|
|
1956
|
-
userId: string;
|
|
1957
1951
|
couponCode: string;
|
|
1958
1952
|
usageCount: number;
|
|
1953
|
+
}, {
|
|
1954
|
+
id: string;
|
|
1955
|
+
userId: string;
|
|
1959
1956
|
lastUsedAt: string | Date | import("zod").objectInputType<{
|
|
1960
1957
|
toDate: import("zod").ZodFunction<import("zod").ZodTuple<[], import("zod").ZodUnknown>, import("zod").ZodDate>;
|
|
1961
1958
|
}, import("zod").ZodTypeAny, "passthrough">;
|
|
1959
|
+
orders: string[];
|
|
1960
|
+
couponCode: string;
|
|
1961
|
+
usageCount: number;
|
|
1962
1962
|
}>;
|
|
1963
1963
|
readonly faqs: import("zod").ZodObject<{
|
|
1964
1964
|
createdAt: import("zod").ZodUnion<[import("zod").ZodDate, import("zod").ZodString, import("zod").ZodObject<{
|
|
@@ -2510,10 +2510,10 @@ export declare const SCHEMAS: {
|
|
|
2510
2510
|
updatedAt: string | Date | import("zod").objectOutputType<{
|
|
2511
2511
|
toDate: import("zod").ZodFunction<import("zod").ZodTuple<[], import("zod").ZodUnknown>, import("zod").ZodDate>;
|
|
2512
2512
|
}, import("zod").ZodTypeAny, "passthrough">;
|
|
2513
|
+
userId: string;
|
|
2513
2514
|
productId: string;
|
|
2514
2515
|
quantity: number;
|
|
2515
2516
|
productTitle: string;
|
|
2516
|
-
userId: string;
|
|
2517
2517
|
userEmail: string;
|
|
2518
2518
|
paymentStatus: "pending" | "paid" | "failed" | "processing" | "refunded" | "partial_refund";
|
|
2519
2519
|
orderDate: string | Date | import("zod").objectOutputType<{
|
|
@@ -2639,10 +2639,10 @@ export declare const SCHEMAS: {
|
|
|
2639
2639
|
updatedAt: string | Date | import("zod").objectInputType<{
|
|
2640
2640
|
toDate: import("zod").ZodFunction<import("zod").ZodTuple<[], import("zod").ZodUnknown>, import("zod").ZodDate>;
|
|
2641
2641
|
}, import("zod").ZodTypeAny, "passthrough">;
|
|
2642
|
+
userId: string;
|
|
2642
2643
|
productId: string;
|
|
2643
2644
|
quantity: number;
|
|
2644
2645
|
productTitle: string;
|
|
2645
|
-
userId: string;
|
|
2646
2646
|
userEmail: string;
|
|
2647
2647
|
paymentStatus: "pending" | "paid" | "failed" | "processing" | "refunded" | "partial_refund";
|
|
2648
2648
|
orderDate: string | Date | import("zod").objectInputType<{
|
|
@@ -3047,10 +3047,10 @@ export declare const SCHEMAS: {
|
|
|
3047
3047
|
updatedAt: string | Date | import("zod").objectOutputType<{
|
|
3048
3048
|
toDate: import("zod").ZodFunction<import("zod").ZodTuple<[], import("zod").ZodUnknown>, import("zod").ZodDate>;
|
|
3049
3049
|
}, import("zod").ZodTypeAny, "passthrough">;
|
|
3050
|
+
userId: string;
|
|
3050
3051
|
productId: string;
|
|
3051
3052
|
productTitle: string;
|
|
3052
3053
|
rating: number;
|
|
3053
|
-
userId: string;
|
|
3054
3054
|
userName: string;
|
|
3055
3055
|
comment: string;
|
|
3056
3056
|
helpfulCount: number;
|
|
@@ -3094,10 +3094,10 @@ export declare const SCHEMAS: {
|
|
|
3094
3094
|
updatedAt: string | Date | import("zod").objectInputType<{
|
|
3095
3095
|
toDate: import("zod").ZodFunction<import("zod").ZodTuple<[], import("zod").ZodUnknown>, import("zod").ZodDate>;
|
|
3096
3096
|
}, import("zod").ZodTypeAny, "passthrough">;
|
|
3097
|
+
userId: string;
|
|
3097
3098
|
productId: string;
|
|
3098
3099
|
productTitle: string;
|
|
3099
3100
|
rating: number;
|
|
3100
|
-
userId: string;
|
|
3101
3101
|
userName: string;
|
|
3102
3102
|
comment: string;
|
|
3103
3103
|
helpfulCount: number;
|
|
@@ -3970,15 +3970,15 @@ export declare const SCHEMAS: {
|
|
|
3970
3970
|
bidId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
3971
3971
|
}, "strip", import("zod").ZodTypeAny, {
|
|
3972
3972
|
storeId?: string | undefined;
|
|
3973
|
+
userId?: string | undefined;
|
|
3973
3974
|
orderId?: string | undefined;
|
|
3974
3975
|
productId?: string | undefined;
|
|
3975
|
-
userId?: string | undefined;
|
|
3976
3976
|
bidId?: string | undefined;
|
|
3977
3977
|
}, {
|
|
3978
3978
|
storeId?: string | undefined;
|
|
3979
|
+
userId?: string | undefined;
|
|
3979
3980
|
orderId?: string | undefined;
|
|
3980
3981
|
productId?: string | undefined;
|
|
3981
|
-
userId?: string | undefined;
|
|
3982
3982
|
bidId?: string | undefined;
|
|
3983
3983
|
}>>;
|
|
3984
3984
|
status: import("zod").ZodEnum<["open", "in_progress", "waiting_on_user", "resolved", "closed"]>;
|
|
@@ -4043,6 +4043,7 @@ export declare const SCHEMAS: {
|
|
|
4043
4043
|
updatedAt: string | Date | import("zod").objectOutputType<{
|
|
4044
4044
|
toDate: import("zod").ZodFunction<import("zod").ZodTuple<[], import("zod").ZodUnknown>, import("zod").ZodDate>;
|
|
4045
4045
|
}, import("zod").ZodTypeAny, "passthrough">;
|
|
4046
|
+
userId: string;
|
|
4046
4047
|
priority: "normal" | "high" | "low" | "urgent";
|
|
4047
4048
|
messages: {
|
|
4048
4049
|
createdAt: string | Date | import("zod").objectOutputType<{
|
|
@@ -4054,7 +4055,6 @@ export declare const SCHEMAS: {
|
|
|
4054
4055
|
authorRole: "user" | "admin" | "support";
|
|
4055
4056
|
attachments?: string[] | undefined;
|
|
4056
4057
|
}[];
|
|
4057
|
-
userId: string;
|
|
4058
4058
|
userEmail: string;
|
|
4059
4059
|
userDisplayName: string;
|
|
4060
4060
|
subject: string;
|
|
@@ -4068,9 +4068,9 @@ export declare const SCHEMAS: {
|
|
|
4068
4068
|
}, import("zod").ZodTypeAny, "passthrough"> | undefined;
|
|
4069
4069
|
relatedParties?: {
|
|
4070
4070
|
storeId?: string | undefined;
|
|
4071
|
+
userId?: string | undefined;
|
|
4071
4072
|
orderId?: string | undefined;
|
|
4072
4073
|
productId?: string | undefined;
|
|
4073
|
-
userId?: string | undefined;
|
|
4074
4074
|
bidId?: string | undefined;
|
|
4075
4075
|
} | undefined;
|
|
4076
4076
|
assignedToName?: string | undefined;
|
|
@@ -4086,6 +4086,7 @@ export declare const SCHEMAS: {
|
|
|
4086
4086
|
updatedAt: string | Date | import("zod").objectInputType<{
|
|
4087
4087
|
toDate: import("zod").ZodFunction<import("zod").ZodTuple<[], import("zod").ZodUnknown>, import("zod").ZodDate>;
|
|
4088
4088
|
}, import("zod").ZodTypeAny, "passthrough">;
|
|
4089
|
+
userId: string;
|
|
4089
4090
|
priority: "normal" | "high" | "low" | "urgent";
|
|
4090
4091
|
messages: {
|
|
4091
4092
|
createdAt: string | Date | import("zod").objectInputType<{
|
|
@@ -4097,7 +4098,6 @@ export declare const SCHEMAS: {
|
|
|
4097
4098
|
authorRole: "user" | "admin" | "support";
|
|
4098
4099
|
attachments?: string[] | undefined;
|
|
4099
4100
|
}[];
|
|
4100
|
-
userId: string;
|
|
4101
4101
|
userEmail: string;
|
|
4102
4102
|
userDisplayName: string;
|
|
4103
4103
|
subject: string;
|
|
@@ -4111,9 +4111,9 @@ export declare const SCHEMAS: {
|
|
|
4111
4111
|
}, import("zod").ZodTypeAny, "passthrough"> | undefined;
|
|
4112
4112
|
relatedParties?: {
|
|
4113
4113
|
storeId?: string | undefined;
|
|
4114
|
+
userId?: string | undefined;
|
|
4114
4115
|
orderId?: string | undefined;
|
|
4115
4116
|
productId?: string | undefined;
|
|
4116
|
-
userId?: string | undefined;
|
|
4117
4117
|
bidId?: string | undefined;
|
|
4118
4118
|
} | undefined;
|
|
4119
4119
|
assignedToName?: string | undefined;
|
|
@@ -4179,6 +4179,7 @@ export declare const SCHEMAS: {
|
|
|
4179
4179
|
method?: string | undefined;
|
|
4180
4180
|
captured?: boolean | undefined;
|
|
4181
4181
|
notes?: Record<string, string> | undefined;
|
|
4182
|
+
wallet?: string | null | undefined;
|
|
4182
4183
|
tax?: number | undefined;
|
|
4183
4184
|
contact?: string | undefined;
|
|
4184
4185
|
fee?: number | undefined;
|
|
@@ -4190,7 +4191,6 @@ export declare const SCHEMAS: {
|
|
|
4190
4191
|
amount_refunded?: number | undefined;
|
|
4191
4192
|
refund_status?: string | null | undefined;
|
|
4192
4193
|
card_id?: string | null | undefined;
|
|
4193
|
-
wallet?: string | null | undefined;
|
|
4194
4194
|
vpa?: string | null | undefined;
|
|
4195
4195
|
error_code?: string | null | undefined;
|
|
4196
4196
|
error_description?: string | null | undefined;
|
|
@@ -4209,6 +4209,7 @@ export declare const SCHEMAS: {
|
|
|
4209
4209
|
method?: string | undefined;
|
|
4210
4210
|
captured?: boolean | undefined;
|
|
4211
4211
|
notes?: Record<string, string> | undefined;
|
|
4212
|
+
wallet?: string | null | undefined;
|
|
4212
4213
|
tax?: number | undefined;
|
|
4213
4214
|
contact?: string | undefined;
|
|
4214
4215
|
fee?: number | undefined;
|
|
@@ -4220,7 +4221,6 @@ export declare const SCHEMAS: {
|
|
|
4220
4221
|
amount_refunded?: number | undefined;
|
|
4221
4222
|
refund_status?: string | null | undefined;
|
|
4222
4223
|
card_id?: string | null | undefined;
|
|
4223
|
-
wallet?: string | null | undefined;
|
|
4224
4224
|
vpa?: string | null | undefined;
|
|
4225
4225
|
error_code?: string | null | undefined;
|
|
4226
4226
|
error_description?: string | null | undefined;
|
|
@@ -4241,6 +4241,7 @@ export declare const SCHEMAS: {
|
|
|
4241
4241
|
method?: string | undefined;
|
|
4242
4242
|
captured?: boolean | undefined;
|
|
4243
4243
|
notes?: Record<string, string> | undefined;
|
|
4244
|
+
wallet?: string | null | undefined;
|
|
4244
4245
|
tax?: number | undefined;
|
|
4245
4246
|
contact?: string | undefined;
|
|
4246
4247
|
fee?: number | undefined;
|
|
@@ -4252,7 +4253,6 @@ export declare const SCHEMAS: {
|
|
|
4252
4253
|
amount_refunded?: number | undefined;
|
|
4253
4254
|
refund_status?: string | null | undefined;
|
|
4254
4255
|
card_id?: string | null | undefined;
|
|
4255
|
-
wallet?: string | null | undefined;
|
|
4256
4256
|
vpa?: string | null | undefined;
|
|
4257
4257
|
error_code?: string | null | undefined;
|
|
4258
4258
|
error_description?: string | null | undefined;
|
|
@@ -4273,6 +4273,7 @@ export declare const SCHEMAS: {
|
|
|
4273
4273
|
method?: string | undefined;
|
|
4274
4274
|
captured?: boolean | undefined;
|
|
4275
4275
|
notes?: Record<string, string> | undefined;
|
|
4276
|
+
wallet?: string | null | undefined;
|
|
4276
4277
|
tax?: number | undefined;
|
|
4277
4278
|
contact?: string | undefined;
|
|
4278
4279
|
fee?: number | undefined;
|
|
@@ -4284,7 +4285,6 @@ export declare const SCHEMAS: {
|
|
|
4284
4285
|
amount_refunded?: number | undefined;
|
|
4285
4286
|
refund_status?: string | null | undefined;
|
|
4286
4287
|
card_id?: string | null | undefined;
|
|
4287
|
-
wallet?: string | null | undefined;
|
|
4288
4288
|
vpa?: string | null | undefined;
|
|
4289
4289
|
error_code?: string | null | undefined;
|
|
4290
4290
|
error_description?: string | null | undefined;
|
|
@@ -4307,6 +4307,7 @@ export declare const SCHEMAS: {
|
|
|
4307
4307
|
method?: string | undefined;
|
|
4308
4308
|
captured?: boolean | undefined;
|
|
4309
4309
|
notes?: Record<string, string> | undefined;
|
|
4310
|
+
wallet?: string | null | undefined;
|
|
4310
4311
|
tax?: number | undefined;
|
|
4311
4312
|
contact?: string | undefined;
|
|
4312
4313
|
fee?: number | undefined;
|
|
@@ -4318,7 +4319,6 @@ export declare const SCHEMAS: {
|
|
|
4318
4319
|
amount_refunded?: number | undefined;
|
|
4319
4320
|
refund_status?: string | null | undefined;
|
|
4320
4321
|
card_id?: string | null | undefined;
|
|
4321
|
-
wallet?: string | null | undefined;
|
|
4322
4322
|
vpa?: string | null | undefined;
|
|
4323
4323
|
error_code?: string | null | undefined;
|
|
4324
4324
|
error_description?: string | null | undefined;
|
|
@@ -4341,6 +4341,7 @@ export declare const SCHEMAS: {
|
|
|
4341
4341
|
method?: string | undefined;
|
|
4342
4342
|
captured?: boolean | undefined;
|
|
4343
4343
|
notes?: Record<string, string> | undefined;
|
|
4344
|
+
wallet?: string | null | undefined;
|
|
4344
4345
|
tax?: number | undefined;
|
|
4345
4346
|
contact?: string | undefined;
|
|
4346
4347
|
fee?: number | undefined;
|
|
@@ -4352,7 +4353,6 @@ export declare const SCHEMAS: {
|
|
|
4352
4353
|
amount_refunded?: number | undefined;
|
|
4353
4354
|
refund_status?: string | null | undefined;
|
|
4354
4355
|
card_id?: string | null | undefined;
|
|
4355
|
-
wallet?: string | null | undefined;
|
|
4356
4356
|
vpa?: string | null | undefined;
|
|
4357
4357
|
error_code?: string | null | undefined;
|
|
4358
4358
|
error_description?: string | null | undefined;
|
|
@@ -4378,6 +4378,7 @@ export declare const SCHEMAS: {
|
|
|
4378
4378
|
method?: string | undefined;
|
|
4379
4379
|
captured?: boolean | undefined;
|
|
4380
4380
|
notes?: Record<string, string> | undefined;
|
|
4381
|
+
wallet?: string | null | undefined;
|
|
4381
4382
|
tax?: number | undefined;
|
|
4382
4383
|
contact?: string | undefined;
|
|
4383
4384
|
fee?: number | undefined;
|
|
@@ -4389,7 +4390,6 @@ export declare const SCHEMAS: {
|
|
|
4389
4390
|
amount_refunded?: number | undefined;
|
|
4390
4391
|
refund_status?: string | null | undefined;
|
|
4391
4392
|
card_id?: string | null | undefined;
|
|
4392
|
-
wallet?: string | null | undefined;
|
|
4393
4393
|
vpa?: string | null | undefined;
|
|
4394
4394
|
error_code?: string | null | undefined;
|
|
4395
4395
|
error_description?: string | null | undefined;
|
|
@@ -4418,6 +4418,7 @@ export declare const SCHEMAS: {
|
|
|
4418
4418
|
method?: string | undefined;
|
|
4419
4419
|
captured?: boolean | undefined;
|
|
4420
4420
|
notes?: Record<string, string> | undefined;
|
|
4421
|
+
wallet?: string | null | undefined;
|
|
4421
4422
|
tax?: number | undefined;
|
|
4422
4423
|
contact?: string | undefined;
|
|
4423
4424
|
fee?: number | undefined;
|
|
@@ -4429,7 +4430,6 @@ export declare const SCHEMAS: {
|
|
|
4429
4430
|
amount_refunded?: number | undefined;
|
|
4430
4431
|
refund_status?: string | null | undefined;
|
|
4431
4432
|
card_id?: string | null | undefined;
|
|
4432
|
-
wallet?: string | null | undefined;
|
|
4433
4433
|
vpa?: string | null | undefined;
|
|
4434
4434
|
error_code?: string | null | undefined;
|
|
4435
4435
|
error_description?: string | null | undefined;
|
|
@@ -4491,6 +4491,7 @@ export declare const SCHEMAS: {
|
|
|
4491
4491
|
method?: string | undefined;
|
|
4492
4492
|
captured?: boolean | undefined;
|
|
4493
4493
|
notes?: Record<string, string> | undefined;
|
|
4494
|
+
wallet?: string | null | undefined;
|
|
4494
4495
|
tax?: number | undefined;
|
|
4495
4496
|
contact?: string | undefined;
|
|
4496
4497
|
fee?: number | undefined;
|
|
@@ -4502,7 +4503,6 @@ export declare const SCHEMAS: {
|
|
|
4502
4503
|
amount_refunded?: number | undefined;
|
|
4503
4504
|
refund_status?: string | null | undefined;
|
|
4504
4505
|
card_id?: string | null | undefined;
|
|
4505
|
-
wallet?: string | null | undefined;
|
|
4506
4506
|
vpa?: string | null | undefined;
|
|
4507
4507
|
error_code?: string | null | undefined;
|
|
4508
4508
|
error_description?: string | null | undefined;
|
|
@@ -4521,6 +4521,7 @@ export declare const SCHEMAS: {
|
|
|
4521
4521
|
method?: string | undefined;
|
|
4522
4522
|
captured?: boolean | undefined;
|
|
4523
4523
|
notes?: Record<string, string> | undefined;
|
|
4524
|
+
wallet?: string | null | undefined;
|
|
4524
4525
|
tax?: number | undefined;
|
|
4525
4526
|
contact?: string | undefined;
|
|
4526
4527
|
fee?: number | undefined;
|
|
@@ -4532,7 +4533,6 @@ export declare const SCHEMAS: {
|
|
|
4532
4533
|
amount_refunded?: number | undefined;
|
|
4533
4534
|
refund_status?: string | null | undefined;
|
|
4534
4535
|
card_id?: string | null | undefined;
|
|
4535
|
-
wallet?: string | null | undefined;
|
|
4536
4536
|
vpa?: string | null | undefined;
|
|
4537
4537
|
error_code?: string | null | undefined;
|
|
4538
4538
|
error_description?: string | null | undefined;
|
|
@@ -4553,6 +4553,7 @@ export declare const SCHEMAS: {
|
|
|
4553
4553
|
method?: string | undefined;
|
|
4554
4554
|
captured?: boolean | undefined;
|
|
4555
4555
|
notes?: Record<string, string> | undefined;
|
|
4556
|
+
wallet?: string | null | undefined;
|
|
4556
4557
|
tax?: number | undefined;
|
|
4557
4558
|
contact?: string | undefined;
|
|
4558
4559
|
fee?: number | undefined;
|
|
@@ -4564,7 +4565,6 @@ export declare const SCHEMAS: {
|
|
|
4564
4565
|
amount_refunded?: number | undefined;
|
|
4565
4566
|
refund_status?: string | null | undefined;
|
|
4566
4567
|
card_id?: string | null | undefined;
|
|
4567
|
-
wallet?: string | null | undefined;
|
|
4568
4568
|
vpa?: string | null | undefined;
|
|
4569
4569
|
error_code?: string | null | undefined;
|
|
4570
4570
|
error_description?: string | null | undefined;
|
|
@@ -4585,6 +4585,7 @@ export declare const SCHEMAS: {
|
|
|
4585
4585
|
method?: string | undefined;
|
|
4586
4586
|
captured?: boolean | undefined;
|
|
4587
4587
|
notes?: Record<string, string> | undefined;
|
|
4588
|
+
wallet?: string | null | undefined;
|
|
4588
4589
|
tax?: number | undefined;
|
|
4589
4590
|
contact?: string | undefined;
|
|
4590
4591
|
fee?: number | undefined;
|
|
@@ -4596,7 +4597,6 @@ export declare const SCHEMAS: {
|
|
|
4596
4597
|
amount_refunded?: number | undefined;
|
|
4597
4598
|
refund_status?: string | null | undefined;
|
|
4598
4599
|
card_id?: string | null | undefined;
|
|
4599
|
-
wallet?: string | null | undefined;
|
|
4600
4600
|
vpa?: string | null | undefined;
|
|
4601
4601
|
error_code?: string | null | undefined;
|
|
4602
4602
|
error_description?: string | null | undefined;
|
|
@@ -4619,6 +4619,7 @@ export declare const SCHEMAS: {
|
|
|
4619
4619
|
method?: string | undefined;
|
|
4620
4620
|
captured?: boolean | undefined;
|
|
4621
4621
|
notes?: Record<string, string> | undefined;
|
|
4622
|
+
wallet?: string | null | undefined;
|
|
4622
4623
|
tax?: number | undefined;
|
|
4623
4624
|
contact?: string | undefined;
|
|
4624
4625
|
fee?: number | undefined;
|
|
@@ -4630,7 +4631,6 @@ export declare const SCHEMAS: {
|
|
|
4630
4631
|
amount_refunded?: number | undefined;
|
|
4631
4632
|
refund_status?: string | null | undefined;
|
|
4632
4633
|
card_id?: string | null | undefined;
|
|
4633
|
-
wallet?: string | null | undefined;
|
|
4634
4634
|
vpa?: string | null | undefined;
|
|
4635
4635
|
error_code?: string | null | undefined;
|
|
4636
4636
|
error_description?: string | null | undefined;
|
|
@@ -4653,6 +4653,7 @@ export declare const SCHEMAS: {
|
|
|
4653
4653
|
method?: string | undefined;
|
|
4654
4654
|
captured?: boolean | undefined;
|
|
4655
4655
|
notes?: Record<string, string> | undefined;
|
|
4656
|
+
wallet?: string | null | undefined;
|
|
4656
4657
|
tax?: number | undefined;
|
|
4657
4658
|
contact?: string | undefined;
|
|
4658
4659
|
fee?: number | undefined;
|
|
@@ -4664,7 +4665,6 @@ export declare const SCHEMAS: {
|
|
|
4664
4665
|
amount_refunded?: number | undefined;
|
|
4665
4666
|
refund_status?: string | null | undefined;
|
|
4666
4667
|
card_id?: string | null | undefined;
|
|
4667
|
-
wallet?: string | null | undefined;
|
|
4668
4668
|
vpa?: string | null | undefined;
|
|
4669
4669
|
error_code?: string | null | undefined;
|
|
4670
4670
|
error_description?: string | null | undefined;
|
|
@@ -4690,6 +4690,7 @@ export declare const SCHEMAS: {
|
|
|
4690
4690
|
method?: string | undefined;
|
|
4691
4691
|
captured?: boolean | undefined;
|
|
4692
4692
|
notes?: Record<string, string> | undefined;
|
|
4693
|
+
wallet?: string | null | undefined;
|
|
4693
4694
|
tax?: number | undefined;
|
|
4694
4695
|
contact?: string | undefined;
|
|
4695
4696
|
fee?: number | undefined;
|
|
@@ -4701,7 +4702,6 @@ export declare const SCHEMAS: {
|
|
|
4701
4702
|
amount_refunded?: number | undefined;
|
|
4702
4703
|
refund_status?: string | null | undefined;
|
|
4703
4704
|
card_id?: string | null | undefined;
|
|
4704
|
-
wallet?: string | null | undefined;
|
|
4705
4705
|
vpa?: string | null | undefined;
|
|
4706
4706
|
error_code?: string | null | undefined;
|
|
4707
4707
|
error_description?: string | null | undefined;
|
|
@@ -4730,6 +4730,7 @@ export declare const SCHEMAS: {
|
|
|
4730
4730
|
method?: string | undefined;
|
|
4731
4731
|
captured?: boolean | undefined;
|
|
4732
4732
|
notes?: Record<string, string> | undefined;
|
|
4733
|
+
wallet?: string | null | undefined;
|
|
4733
4734
|
tax?: number | undefined;
|
|
4734
4735
|
contact?: string | undefined;
|
|
4735
4736
|
fee?: number | undefined;
|
|
@@ -4741,7 +4742,6 @@ export declare const SCHEMAS: {
|
|
|
4741
4742
|
amount_refunded?: number | undefined;
|
|
4742
4743
|
refund_status?: string | null | undefined;
|
|
4743
4744
|
card_id?: string | null | undefined;
|
|
4744
|
-
wallet?: string | null | undefined;
|
|
4745
4745
|
vpa?: string | null | undefined;
|
|
4746
4746
|
error_code?: string | null | undefined;
|
|
4747
4747
|
error_description?: string | null | undefined;
|
|
@@ -4803,6 +4803,7 @@ export declare const SCHEMAS: {
|
|
|
4803
4803
|
method?: string | undefined;
|
|
4804
4804
|
captured?: boolean | undefined;
|
|
4805
4805
|
notes?: Record<string, string> | undefined;
|
|
4806
|
+
wallet?: string | null | undefined;
|
|
4806
4807
|
tax?: number | undefined;
|
|
4807
4808
|
contact?: string | undefined;
|
|
4808
4809
|
fee?: number | undefined;
|
|
@@ -4814,7 +4815,6 @@ export declare const SCHEMAS: {
|
|
|
4814
4815
|
amount_refunded?: number | undefined;
|
|
4815
4816
|
refund_status?: string | null | undefined;
|
|
4816
4817
|
card_id?: string | null | undefined;
|
|
4817
|
-
wallet?: string | null | undefined;
|
|
4818
4818
|
vpa?: string | null | undefined;
|
|
4819
4819
|
error_code?: string | null | undefined;
|
|
4820
4820
|
error_description?: string | null | undefined;
|
|
@@ -4833,6 +4833,7 @@ export declare const SCHEMAS: {
|
|
|
4833
4833
|
method?: string | undefined;
|
|
4834
4834
|
captured?: boolean | undefined;
|
|
4835
4835
|
notes?: Record<string, string> | undefined;
|
|
4836
|
+
wallet?: string | null | undefined;
|
|
4836
4837
|
tax?: number | undefined;
|
|
4837
4838
|
contact?: string | undefined;
|
|
4838
4839
|
fee?: number | undefined;
|
|
@@ -4844,7 +4845,6 @@ export declare const SCHEMAS: {
|
|
|
4844
4845
|
amount_refunded?: number | undefined;
|
|
4845
4846
|
refund_status?: string | null | undefined;
|
|
4846
4847
|
card_id?: string | null | undefined;
|
|
4847
|
-
wallet?: string | null | undefined;
|
|
4848
4848
|
vpa?: string | null | undefined;
|
|
4849
4849
|
error_code?: string | null | undefined;
|
|
4850
4850
|
error_description?: string | null | undefined;
|
|
@@ -4865,6 +4865,7 @@ export declare const SCHEMAS: {
|
|
|
4865
4865
|
method?: string | undefined;
|
|
4866
4866
|
captured?: boolean | undefined;
|
|
4867
4867
|
notes?: Record<string, string> | undefined;
|
|
4868
|
+
wallet?: string | null | undefined;
|
|
4868
4869
|
tax?: number | undefined;
|
|
4869
4870
|
contact?: string | undefined;
|
|
4870
4871
|
fee?: number | undefined;
|
|
@@ -4876,7 +4877,6 @@ export declare const SCHEMAS: {
|
|
|
4876
4877
|
amount_refunded?: number | undefined;
|
|
4877
4878
|
refund_status?: string | null | undefined;
|
|
4878
4879
|
card_id?: string | null | undefined;
|
|
4879
|
-
wallet?: string | null | undefined;
|
|
4880
4880
|
vpa?: string | null | undefined;
|
|
4881
4881
|
error_code?: string | null | undefined;
|
|
4882
4882
|
error_description?: string | null | undefined;
|
|
@@ -4897,6 +4897,7 @@ export declare const SCHEMAS: {
|
|
|
4897
4897
|
method?: string | undefined;
|
|
4898
4898
|
captured?: boolean | undefined;
|
|
4899
4899
|
notes?: Record<string, string> | undefined;
|
|
4900
|
+
wallet?: string | null | undefined;
|
|
4900
4901
|
tax?: number | undefined;
|
|
4901
4902
|
contact?: string | undefined;
|
|
4902
4903
|
fee?: number | undefined;
|
|
@@ -4908,7 +4909,6 @@ export declare const SCHEMAS: {
|
|
|
4908
4909
|
amount_refunded?: number | undefined;
|
|
4909
4910
|
refund_status?: string | null | undefined;
|
|
4910
4911
|
card_id?: string | null | undefined;
|
|
4911
|
-
wallet?: string | null | undefined;
|
|
4912
4912
|
vpa?: string | null | undefined;
|
|
4913
4913
|
error_code?: string | null | undefined;
|
|
4914
4914
|
error_description?: string | null | undefined;
|
|
@@ -4931,6 +4931,7 @@ export declare const SCHEMAS: {
|
|
|
4931
4931
|
method?: string | undefined;
|
|
4932
4932
|
captured?: boolean | undefined;
|
|
4933
4933
|
notes?: Record<string, string> | undefined;
|
|
4934
|
+
wallet?: string | null | undefined;
|
|
4934
4935
|
tax?: number | undefined;
|
|
4935
4936
|
contact?: string | undefined;
|
|
4936
4937
|
fee?: number | undefined;
|
|
@@ -4942,7 +4943,6 @@ export declare const SCHEMAS: {
|
|
|
4942
4943
|
amount_refunded?: number | undefined;
|
|
4943
4944
|
refund_status?: string | null | undefined;
|
|
4944
4945
|
card_id?: string | null | undefined;
|
|
4945
|
-
wallet?: string | null | undefined;
|
|
4946
4946
|
vpa?: string | null | undefined;
|
|
4947
4947
|
error_code?: string | null | undefined;
|
|
4948
4948
|
error_description?: string | null | undefined;
|
|
@@ -4965,6 +4965,7 @@ export declare const SCHEMAS: {
|
|
|
4965
4965
|
method?: string | undefined;
|
|
4966
4966
|
captured?: boolean | undefined;
|
|
4967
4967
|
notes?: Record<string, string> | undefined;
|
|
4968
|
+
wallet?: string | null | undefined;
|
|
4968
4969
|
tax?: number | undefined;
|
|
4969
4970
|
contact?: string | undefined;
|
|
4970
4971
|
fee?: number | undefined;
|
|
@@ -4976,7 +4977,6 @@ export declare const SCHEMAS: {
|
|
|
4976
4977
|
amount_refunded?: number | undefined;
|
|
4977
4978
|
refund_status?: string | null | undefined;
|
|
4978
4979
|
card_id?: string | null | undefined;
|
|
4979
|
-
wallet?: string | null | undefined;
|
|
4980
4980
|
vpa?: string | null | undefined;
|
|
4981
4981
|
error_code?: string | null | undefined;
|
|
4982
4982
|
error_description?: string | null | undefined;
|
|
@@ -5002,6 +5002,7 @@ export declare const SCHEMAS: {
|
|
|
5002
5002
|
method?: string | undefined;
|
|
5003
5003
|
captured?: boolean | undefined;
|
|
5004
5004
|
notes?: Record<string, string> | undefined;
|
|
5005
|
+
wallet?: string | null | undefined;
|
|
5005
5006
|
tax?: number | undefined;
|
|
5006
5007
|
contact?: string | undefined;
|
|
5007
5008
|
fee?: number | undefined;
|
|
@@ -5013,7 +5014,6 @@ export declare const SCHEMAS: {
|
|
|
5013
5014
|
amount_refunded?: number | undefined;
|
|
5014
5015
|
refund_status?: string | null | undefined;
|
|
5015
5016
|
card_id?: string | null | undefined;
|
|
5016
|
-
wallet?: string | null | undefined;
|
|
5017
5017
|
vpa?: string | null | undefined;
|
|
5018
5018
|
error_code?: string | null | undefined;
|
|
5019
5019
|
error_description?: string | null | undefined;
|
|
@@ -5042,6 +5042,7 @@ export declare const SCHEMAS: {
|
|
|
5042
5042
|
method?: string | undefined;
|
|
5043
5043
|
captured?: boolean | undefined;
|
|
5044
5044
|
notes?: Record<string, string> | undefined;
|
|
5045
|
+
wallet?: string | null | undefined;
|
|
5045
5046
|
tax?: number | undefined;
|
|
5046
5047
|
contact?: string | undefined;
|
|
5047
5048
|
fee?: number | undefined;
|
|
@@ -5053,7 +5054,6 @@ export declare const SCHEMAS: {
|
|
|
5053
5054
|
amount_refunded?: number | undefined;
|
|
5054
5055
|
refund_status?: string | null | undefined;
|
|
5055
5056
|
card_id?: string | null | undefined;
|
|
5056
|
-
wallet?: string | null | undefined;
|
|
5057
5057
|
vpa?: string | null | undefined;
|
|
5058
5058
|
error_code?: string | null | undefined;
|
|
5059
5059
|
error_description?: string | null | undefined;
|
|
@@ -5192,6 +5192,7 @@ export declare const SCHEMAS: {
|
|
|
5192
5192
|
method?: string | undefined;
|
|
5193
5193
|
captured?: boolean | undefined;
|
|
5194
5194
|
notes?: Record<string, string> | undefined;
|
|
5195
|
+
wallet?: string | null | undefined;
|
|
5195
5196
|
tax?: number | undefined;
|
|
5196
5197
|
contact?: string | undefined;
|
|
5197
5198
|
fee?: number | undefined;
|
|
@@ -5203,7 +5204,6 @@ export declare const SCHEMAS: {
|
|
|
5203
5204
|
amount_refunded?: number | undefined;
|
|
5204
5205
|
refund_status?: string | null | undefined;
|
|
5205
5206
|
card_id?: string | null | undefined;
|
|
5206
|
-
wallet?: string | null | undefined;
|
|
5207
5207
|
vpa?: string | null | undefined;
|
|
5208
5208
|
error_code?: string | null | undefined;
|
|
5209
5209
|
error_description?: string | null | undefined;
|
|
@@ -5222,6 +5222,7 @@ export declare const SCHEMAS: {
|
|
|
5222
5222
|
method?: string | undefined;
|
|
5223
5223
|
captured?: boolean | undefined;
|
|
5224
5224
|
notes?: Record<string, string> | undefined;
|
|
5225
|
+
wallet?: string | null | undefined;
|
|
5225
5226
|
tax?: number | undefined;
|
|
5226
5227
|
contact?: string | undefined;
|
|
5227
5228
|
fee?: number | undefined;
|
|
@@ -5233,7 +5234,6 @@ export declare const SCHEMAS: {
|
|
|
5233
5234
|
amount_refunded?: number | undefined;
|
|
5234
5235
|
refund_status?: string | null | undefined;
|
|
5235
5236
|
card_id?: string | null | undefined;
|
|
5236
|
-
wallet?: string | null | undefined;
|
|
5237
5237
|
vpa?: string | null | undefined;
|
|
5238
5238
|
error_code?: string | null | undefined;
|
|
5239
5239
|
error_description?: string | null | undefined;
|
|
@@ -5254,6 +5254,7 @@ export declare const SCHEMAS: {
|
|
|
5254
5254
|
method?: string | undefined;
|
|
5255
5255
|
captured?: boolean | undefined;
|
|
5256
5256
|
notes?: Record<string, string> | undefined;
|
|
5257
|
+
wallet?: string | null | undefined;
|
|
5257
5258
|
tax?: number | undefined;
|
|
5258
5259
|
contact?: string | undefined;
|
|
5259
5260
|
fee?: number | undefined;
|
|
@@ -5265,7 +5266,6 @@ export declare const SCHEMAS: {
|
|
|
5265
5266
|
amount_refunded?: number | undefined;
|
|
5266
5267
|
refund_status?: string | null | undefined;
|
|
5267
5268
|
card_id?: string | null | undefined;
|
|
5268
|
-
wallet?: string | null | undefined;
|
|
5269
5269
|
vpa?: string | null | undefined;
|
|
5270
5270
|
error_code?: string | null | undefined;
|
|
5271
5271
|
error_description?: string | null | undefined;
|
|
@@ -5286,6 +5286,7 @@ export declare const SCHEMAS: {
|
|
|
5286
5286
|
method?: string | undefined;
|
|
5287
5287
|
captured?: boolean | undefined;
|
|
5288
5288
|
notes?: Record<string, string> | undefined;
|
|
5289
|
+
wallet?: string | null | undefined;
|
|
5289
5290
|
tax?: number | undefined;
|
|
5290
5291
|
contact?: string | undefined;
|
|
5291
5292
|
fee?: number | undefined;
|
|
@@ -5297,7 +5298,6 @@ export declare const SCHEMAS: {
|
|
|
5297
5298
|
amount_refunded?: number | undefined;
|
|
5298
5299
|
refund_status?: string | null | undefined;
|
|
5299
5300
|
card_id?: string | null | undefined;
|
|
5300
|
-
wallet?: string | null | undefined;
|
|
5301
5301
|
vpa?: string | null | undefined;
|
|
5302
5302
|
error_code?: string | null | undefined;
|
|
5303
5303
|
error_description?: string | null | undefined;
|
|
@@ -5337,6 +5337,7 @@ export declare const SCHEMAS: {
|
|
|
5337
5337
|
method?: string | undefined;
|
|
5338
5338
|
captured?: boolean | undefined;
|
|
5339
5339
|
notes?: Record<string, string> | undefined;
|
|
5340
|
+
wallet?: string | null | undefined;
|
|
5340
5341
|
tax?: number | undefined;
|
|
5341
5342
|
contact?: string | undefined;
|
|
5342
5343
|
fee?: number | undefined;
|
|
@@ -5348,7 +5349,6 @@ export declare const SCHEMAS: {
|
|
|
5348
5349
|
amount_refunded?: number | undefined;
|
|
5349
5350
|
refund_status?: string | null | undefined;
|
|
5350
5351
|
card_id?: string | null | undefined;
|
|
5351
|
-
wallet?: string | null | undefined;
|
|
5352
5352
|
vpa?: string | null | undefined;
|
|
5353
5353
|
error_code?: string | null | undefined;
|
|
5354
5354
|
error_description?: string | null | undefined;
|
|
@@ -5388,6 +5388,7 @@ export declare const SCHEMAS: {
|
|
|
5388
5388
|
method?: string | undefined;
|
|
5389
5389
|
captured?: boolean | undefined;
|
|
5390
5390
|
notes?: Record<string, string> | undefined;
|
|
5391
|
+
wallet?: string | null | undefined;
|
|
5391
5392
|
tax?: number | undefined;
|
|
5392
5393
|
contact?: string | undefined;
|
|
5393
5394
|
fee?: number | undefined;
|
|
@@ -5399,7 +5400,6 @@ export declare const SCHEMAS: {
|
|
|
5399
5400
|
amount_refunded?: number | undefined;
|
|
5400
5401
|
refund_status?: string | null | undefined;
|
|
5401
5402
|
card_id?: string | null | undefined;
|
|
5402
|
-
wallet?: string | null | undefined;
|
|
5403
5403
|
vpa?: string | null | undefined;
|
|
5404
5404
|
error_code?: string | null | undefined;
|
|
5405
5405
|
error_description?: string | null | undefined;
|
|
@@ -5442,6 +5442,7 @@ export declare const SCHEMAS: {
|
|
|
5442
5442
|
method?: string | undefined;
|
|
5443
5443
|
captured?: boolean | undefined;
|
|
5444
5444
|
notes?: Record<string, string> | undefined;
|
|
5445
|
+
wallet?: string | null | undefined;
|
|
5445
5446
|
tax?: number | undefined;
|
|
5446
5447
|
contact?: string | undefined;
|
|
5447
5448
|
fee?: number | undefined;
|
|
@@ -5453,7 +5454,6 @@ export declare const SCHEMAS: {
|
|
|
5453
5454
|
amount_refunded?: number | undefined;
|
|
5454
5455
|
refund_status?: string | null | undefined;
|
|
5455
5456
|
card_id?: string | null | undefined;
|
|
5456
|
-
wallet?: string | null | undefined;
|
|
5457
5457
|
vpa?: string | null | undefined;
|
|
5458
5458
|
error_code?: string | null | undefined;
|
|
5459
5459
|
error_description?: string | null | undefined;
|
|
@@ -5499,6 +5499,7 @@ export declare const SCHEMAS: {
|
|
|
5499
5499
|
method?: string | undefined;
|
|
5500
5500
|
captured?: boolean | undefined;
|
|
5501
5501
|
notes?: Record<string, string> | undefined;
|
|
5502
|
+
wallet?: string | null | undefined;
|
|
5502
5503
|
tax?: number | undefined;
|
|
5503
5504
|
contact?: string | undefined;
|
|
5504
5505
|
fee?: number | undefined;
|
|
@@ -5510,7 +5511,6 @@ export declare const SCHEMAS: {
|
|
|
5510
5511
|
amount_refunded?: number | undefined;
|
|
5511
5512
|
refund_status?: string | null | undefined;
|
|
5512
5513
|
card_id?: string | null | undefined;
|
|
5513
|
-
wallet?: string | null | undefined;
|
|
5514
5514
|
vpa?: string | null | undefined;
|
|
5515
5515
|
error_code?: string | null | undefined;
|
|
5516
5516
|
error_description?: string | null | undefined;
|
|
@@ -5817,6 +5817,7 @@ export declare const SCHEMAS: {
|
|
|
5817
5817
|
method?: string | undefined;
|
|
5818
5818
|
captured?: boolean | undefined;
|
|
5819
5819
|
notes?: Record<string, string> | undefined;
|
|
5820
|
+
wallet?: string | null | undefined;
|
|
5820
5821
|
tax?: number | undefined;
|
|
5821
5822
|
contact?: string | undefined;
|
|
5822
5823
|
fee?: number | undefined;
|
|
@@ -5828,7 +5829,6 @@ export declare const SCHEMAS: {
|
|
|
5828
5829
|
amount_refunded?: number | undefined;
|
|
5829
5830
|
refund_status?: string | null | undefined;
|
|
5830
5831
|
card_id?: string | null | undefined;
|
|
5831
|
-
wallet?: string | null | undefined;
|
|
5832
5832
|
vpa?: string | null | undefined;
|
|
5833
5833
|
error_code?: string | null | undefined;
|
|
5834
5834
|
error_description?: string | null | undefined;
|
|
@@ -5847,6 +5847,7 @@ export declare const SCHEMAS: {
|
|
|
5847
5847
|
method?: string | undefined;
|
|
5848
5848
|
captured?: boolean | undefined;
|
|
5849
5849
|
notes?: Record<string, string> | undefined;
|
|
5850
|
+
wallet?: string | null | undefined;
|
|
5850
5851
|
tax?: number | undefined;
|
|
5851
5852
|
contact?: string | undefined;
|
|
5852
5853
|
fee?: number | undefined;
|
|
@@ -5858,7 +5859,6 @@ export declare const SCHEMAS: {
|
|
|
5858
5859
|
amount_refunded?: number | undefined;
|
|
5859
5860
|
refund_status?: string | null | undefined;
|
|
5860
5861
|
card_id?: string | null | undefined;
|
|
5861
|
-
wallet?: string | null | undefined;
|
|
5862
5862
|
vpa?: string | null | undefined;
|
|
5863
5863
|
error_code?: string | null | undefined;
|
|
5864
5864
|
error_description?: string | null | undefined;
|
|
@@ -5879,6 +5879,7 @@ export declare const SCHEMAS: {
|
|
|
5879
5879
|
method?: string | undefined;
|
|
5880
5880
|
captured?: boolean | undefined;
|
|
5881
5881
|
notes?: Record<string, string> | undefined;
|
|
5882
|
+
wallet?: string | null | undefined;
|
|
5882
5883
|
tax?: number | undefined;
|
|
5883
5884
|
contact?: string | undefined;
|
|
5884
5885
|
fee?: number | undefined;
|
|
@@ -5890,7 +5891,6 @@ export declare const SCHEMAS: {
|
|
|
5890
5891
|
amount_refunded?: number | undefined;
|
|
5891
5892
|
refund_status?: string | null | undefined;
|
|
5892
5893
|
card_id?: string | null | undefined;
|
|
5893
|
-
wallet?: string | null | undefined;
|
|
5894
5894
|
vpa?: string | null | undefined;
|
|
5895
5895
|
error_code?: string | null | undefined;
|
|
5896
5896
|
error_description?: string | null | undefined;
|
|
@@ -5911,6 +5911,7 @@ export declare const SCHEMAS: {
|
|
|
5911
5911
|
method?: string | undefined;
|
|
5912
5912
|
captured?: boolean | undefined;
|
|
5913
5913
|
notes?: Record<string, string> | undefined;
|
|
5914
|
+
wallet?: string | null | undefined;
|
|
5914
5915
|
tax?: number | undefined;
|
|
5915
5916
|
contact?: string | undefined;
|
|
5916
5917
|
fee?: number | undefined;
|
|
@@ -5922,7 +5923,6 @@ export declare const SCHEMAS: {
|
|
|
5922
5923
|
amount_refunded?: number | undefined;
|
|
5923
5924
|
refund_status?: string | null | undefined;
|
|
5924
5925
|
card_id?: string | null | undefined;
|
|
5925
|
-
wallet?: string | null | undefined;
|
|
5926
5926
|
vpa?: string | null | undefined;
|
|
5927
5927
|
error_code?: string | null | undefined;
|
|
5928
5928
|
error_description?: string | null | undefined;
|
|
@@ -5962,6 +5962,7 @@ export declare const SCHEMAS: {
|
|
|
5962
5962
|
method?: string | undefined;
|
|
5963
5963
|
captured?: boolean | undefined;
|
|
5964
5964
|
notes?: Record<string, string> | undefined;
|
|
5965
|
+
wallet?: string | null | undefined;
|
|
5965
5966
|
tax?: number | undefined;
|
|
5966
5967
|
contact?: string | undefined;
|
|
5967
5968
|
fee?: number | undefined;
|
|
@@ -5973,7 +5974,6 @@ export declare const SCHEMAS: {
|
|
|
5973
5974
|
amount_refunded?: number | undefined;
|
|
5974
5975
|
refund_status?: string | null | undefined;
|
|
5975
5976
|
card_id?: string | null | undefined;
|
|
5976
|
-
wallet?: string | null | undefined;
|
|
5977
5977
|
vpa?: string | null | undefined;
|
|
5978
5978
|
error_code?: string | null | undefined;
|
|
5979
5979
|
error_description?: string | null | undefined;
|
|
@@ -6013,6 +6013,7 @@ export declare const SCHEMAS: {
|
|
|
6013
6013
|
method?: string | undefined;
|
|
6014
6014
|
captured?: boolean | undefined;
|
|
6015
6015
|
notes?: Record<string, string> | undefined;
|
|
6016
|
+
wallet?: string | null | undefined;
|
|
6016
6017
|
tax?: number | undefined;
|
|
6017
6018
|
contact?: string | undefined;
|
|
6018
6019
|
fee?: number | undefined;
|
|
@@ -6024,7 +6025,6 @@ export declare const SCHEMAS: {
|
|
|
6024
6025
|
amount_refunded?: number | undefined;
|
|
6025
6026
|
refund_status?: string | null | undefined;
|
|
6026
6027
|
card_id?: string | null | undefined;
|
|
6027
|
-
wallet?: string | null | undefined;
|
|
6028
6028
|
vpa?: string | null | undefined;
|
|
6029
6029
|
error_code?: string | null | undefined;
|
|
6030
6030
|
error_description?: string | null | undefined;
|
|
@@ -6067,6 +6067,7 @@ export declare const SCHEMAS: {
|
|
|
6067
6067
|
method?: string | undefined;
|
|
6068
6068
|
captured?: boolean | undefined;
|
|
6069
6069
|
notes?: Record<string, string> | undefined;
|
|
6070
|
+
wallet?: string | null | undefined;
|
|
6070
6071
|
tax?: number | undefined;
|
|
6071
6072
|
contact?: string | undefined;
|
|
6072
6073
|
fee?: number | undefined;
|
|
@@ -6078,7 +6079,6 @@ export declare const SCHEMAS: {
|
|
|
6078
6079
|
amount_refunded?: number | undefined;
|
|
6079
6080
|
refund_status?: string | null | undefined;
|
|
6080
6081
|
card_id?: string | null | undefined;
|
|
6081
|
-
wallet?: string | null | undefined;
|
|
6082
6082
|
vpa?: string | null | undefined;
|
|
6083
6083
|
error_code?: string | null | undefined;
|
|
6084
6084
|
error_description?: string | null | undefined;
|
|
@@ -6124,6 +6124,7 @@ export declare const SCHEMAS: {
|
|
|
6124
6124
|
method?: string | undefined;
|
|
6125
6125
|
captured?: boolean | undefined;
|
|
6126
6126
|
notes?: Record<string, string> | undefined;
|
|
6127
|
+
wallet?: string | null | undefined;
|
|
6127
6128
|
tax?: number | undefined;
|
|
6128
6129
|
contact?: string | undefined;
|
|
6129
6130
|
fee?: number | undefined;
|
|
@@ -6135,7 +6136,6 @@ export declare const SCHEMAS: {
|
|
|
6135
6136
|
amount_refunded?: number | undefined;
|
|
6136
6137
|
refund_status?: string | null | undefined;
|
|
6137
6138
|
card_id?: string | null | undefined;
|
|
6138
|
-
wallet?: string | null | undefined;
|
|
6139
6139
|
vpa?: string | null | undefined;
|
|
6140
6140
|
error_code?: string | null | undefined;
|
|
6141
6141
|
error_description?: string | null | undefined;
|
|
@@ -6264,6 +6264,7 @@ export declare const SCHEMAS: {
|
|
|
6264
6264
|
method?: string | undefined;
|
|
6265
6265
|
captured?: boolean | undefined;
|
|
6266
6266
|
notes?: Record<string, string> | undefined;
|
|
6267
|
+
wallet?: string | null | undefined;
|
|
6267
6268
|
tax?: number | undefined;
|
|
6268
6269
|
contact?: string | undefined;
|
|
6269
6270
|
fee?: number | undefined;
|
|
@@ -6275,7 +6276,6 @@ export declare const SCHEMAS: {
|
|
|
6275
6276
|
amount_refunded?: number | undefined;
|
|
6276
6277
|
refund_status?: string | null | undefined;
|
|
6277
6278
|
card_id?: string | null | undefined;
|
|
6278
|
-
wallet?: string | null | undefined;
|
|
6279
6279
|
vpa?: string | null | undefined;
|
|
6280
6280
|
error_code?: string | null | undefined;
|
|
6281
6281
|
error_description?: string | null | undefined;
|
|
@@ -6294,6 +6294,7 @@ export declare const SCHEMAS: {
|
|
|
6294
6294
|
method?: string | undefined;
|
|
6295
6295
|
captured?: boolean | undefined;
|
|
6296
6296
|
notes?: Record<string, string> | undefined;
|
|
6297
|
+
wallet?: string | null | undefined;
|
|
6297
6298
|
tax?: number | undefined;
|
|
6298
6299
|
contact?: string | undefined;
|
|
6299
6300
|
fee?: number | undefined;
|
|
@@ -6305,7 +6306,6 @@ export declare const SCHEMAS: {
|
|
|
6305
6306
|
amount_refunded?: number | undefined;
|
|
6306
6307
|
refund_status?: string | null | undefined;
|
|
6307
6308
|
card_id?: string | null | undefined;
|
|
6308
|
-
wallet?: string | null | undefined;
|
|
6309
6309
|
vpa?: string | null | undefined;
|
|
6310
6310
|
error_code?: string | null | undefined;
|
|
6311
6311
|
error_description?: string | null | undefined;
|
|
@@ -6326,6 +6326,7 @@ export declare const SCHEMAS: {
|
|
|
6326
6326
|
method?: string | undefined;
|
|
6327
6327
|
captured?: boolean | undefined;
|
|
6328
6328
|
notes?: Record<string, string> | undefined;
|
|
6329
|
+
wallet?: string | null | undefined;
|
|
6329
6330
|
tax?: number | undefined;
|
|
6330
6331
|
contact?: string | undefined;
|
|
6331
6332
|
fee?: number | undefined;
|
|
@@ -6337,7 +6338,6 @@ export declare const SCHEMAS: {
|
|
|
6337
6338
|
amount_refunded?: number | undefined;
|
|
6338
6339
|
refund_status?: string | null | undefined;
|
|
6339
6340
|
card_id?: string | null | undefined;
|
|
6340
|
-
wallet?: string | null | undefined;
|
|
6341
6341
|
vpa?: string | null | undefined;
|
|
6342
6342
|
error_code?: string | null | undefined;
|
|
6343
6343
|
error_description?: string | null | undefined;
|
|
@@ -6358,6 +6358,7 @@ export declare const SCHEMAS: {
|
|
|
6358
6358
|
method?: string | undefined;
|
|
6359
6359
|
captured?: boolean | undefined;
|
|
6360
6360
|
notes?: Record<string, string> | undefined;
|
|
6361
|
+
wallet?: string | null | undefined;
|
|
6361
6362
|
tax?: number | undefined;
|
|
6362
6363
|
contact?: string | undefined;
|
|
6363
6364
|
fee?: number | undefined;
|
|
@@ -6369,7 +6370,6 @@ export declare const SCHEMAS: {
|
|
|
6369
6370
|
amount_refunded?: number | undefined;
|
|
6370
6371
|
refund_status?: string | null | undefined;
|
|
6371
6372
|
card_id?: string | null | undefined;
|
|
6372
|
-
wallet?: string | null | undefined;
|
|
6373
6373
|
vpa?: string | null | undefined;
|
|
6374
6374
|
error_code?: string | null | undefined;
|
|
6375
6375
|
error_description?: string | null | undefined;
|
|
@@ -6407,6 +6407,7 @@ export declare const SCHEMAS: {
|
|
|
6407
6407
|
method?: string | undefined;
|
|
6408
6408
|
captured?: boolean | undefined;
|
|
6409
6409
|
notes?: Record<string, string> | undefined;
|
|
6410
|
+
wallet?: string | null | undefined;
|
|
6410
6411
|
tax?: number | undefined;
|
|
6411
6412
|
contact?: string | undefined;
|
|
6412
6413
|
fee?: number | undefined;
|
|
@@ -6418,7 +6419,6 @@ export declare const SCHEMAS: {
|
|
|
6418
6419
|
amount_refunded?: number | undefined;
|
|
6419
6420
|
refund_status?: string | null | undefined;
|
|
6420
6421
|
card_id?: string | null | undefined;
|
|
6421
|
-
wallet?: string | null | undefined;
|
|
6422
6422
|
vpa?: string | null | undefined;
|
|
6423
6423
|
error_code?: string | null | undefined;
|
|
6424
6424
|
error_description?: string | null | undefined;
|
|
@@ -6456,6 +6456,7 @@ export declare const SCHEMAS: {
|
|
|
6456
6456
|
method?: string | undefined;
|
|
6457
6457
|
captured?: boolean | undefined;
|
|
6458
6458
|
notes?: Record<string, string> | undefined;
|
|
6459
|
+
wallet?: string | null | undefined;
|
|
6459
6460
|
tax?: number | undefined;
|
|
6460
6461
|
contact?: string | undefined;
|
|
6461
6462
|
fee?: number | undefined;
|
|
@@ -6467,7 +6468,6 @@ export declare const SCHEMAS: {
|
|
|
6467
6468
|
amount_refunded?: number | undefined;
|
|
6468
6469
|
refund_status?: string | null | undefined;
|
|
6469
6470
|
card_id?: string | null | undefined;
|
|
6470
|
-
wallet?: string | null | undefined;
|
|
6471
6471
|
vpa?: string | null | undefined;
|
|
6472
6472
|
error_code?: string | null | undefined;
|
|
6473
6473
|
error_description?: string | null | undefined;
|
|
@@ -6508,6 +6508,7 @@ export declare const SCHEMAS: {
|
|
|
6508
6508
|
method?: string | undefined;
|
|
6509
6509
|
captured?: boolean | undefined;
|
|
6510
6510
|
notes?: Record<string, string> | undefined;
|
|
6511
|
+
wallet?: string | null | undefined;
|
|
6511
6512
|
tax?: number | undefined;
|
|
6512
6513
|
contact?: string | undefined;
|
|
6513
6514
|
fee?: number | undefined;
|
|
@@ -6519,7 +6520,6 @@ export declare const SCHEMAS: {
|
|
|
6519
6520
|
amount_refunded?: number | undefined;
|
|
6520
6521
|
refund_status?: string | null | undefined;
|
|
6521
6522
|
card_id?: string | null | undefined;
|
|
6522
|
-
wallet?: string | null | undefined;
|
|
6523
6523
|
vpa?: string | null | undefined;
|
|
6524
6524
|
error_code?: string | null | undefined;
|
|
6525
6525
|
error_description?: string | null | undefined;
|
|
@@ -6563,6 +6563,7 @@ export declare const SCHEMAS: {
|
|
|
6563
6563
|
method?: string | undefined;
|
|
6564
6564
|
captured?: boolean | undefined;
|
|
6565
6565
|
notes?: Record<string, string> | undefined;
|
|
6566
|
+
wallet?: string | null | undefined;
|
|
6566
6567
|
tax?: number | undefined;
|
|
6567
6568
|
contact?: string | undefined;
|
|
6568
6569
|
fee?: number | undefined;
|
|
@@ -6574,7 +6575,6 @@ export declare const SCHEMAS: {
|
|
|
6574
6575
|
amount_refunded?: number | undefined;
|
|
6575
6576
|
refund_status?: string | null | undefined;
|
|
6576
6577
|
card_id?: string | null | undefined;
|
|
6577
|
-
wallet?: string | null | undefined;
|
|
6578
6578
|
vpa?: string | null | undefined;
|
|
6579
6579
|
error_code?: string | null | undefined;
|
|
6580
6580
|
error_description?: string | null | undefined;
|