@benup/bensdk 1.11.3 → 1.11.4
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.
|
@@ -21233,6 +21233,13 @@ export declare const AfterBeforeRechargeActionSchema: z.ZodObject<{
|
|
|
21233
21233
|
updatedAt: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodDate]>>;
|
|
21234
21234
|
} & {
|
|
21235
21235
|
action: z.ZodEnum<["AFTER_ALL_RECHARGE", "BEFORE_ALL_RECHARGE"]>;
|
|
21236
|
+
rechargeHooksInput: z.ZodOptional<z.ZodObject<{
|
|
21237
|
+
rechargeOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean]>>>;
|
|
21238
|
+
}, "strip", z.ZodTypeAny, {
|
|
21239
|
+
rechargeOptions?: Record<string, string | number | boolean>;
|
|
21240
|
+
}, {
|
|
21241
|
+
rechargeOptions?: Record<string, string | number | boolean>;
|
|
21242
|
+
}>>;
|
|
21236
21243
|
rechargeTemplateParameters: z.ZodOptional<z.ZodObject<{
|
|
21237
21244
|
releaseDate: z.ZodOptional<z.ZodString>;
|
|
21238
21245
|
externalPurchaseDate: z.ZodOptional<z.ZodString>;
|
|
@@ -21658,6 +21665,9 @@ export declare const AfterBeforeRechargeActionSchema: z.ZodObject<{
|
|
|
21658
21665
|
requiresPlanApproval?: boolean;
|
|
21659
21666
|
planID?: string;
|
|
21660
21667
|
planApprovalStatus?: "WAITING" | "APPROVED" | "DISCARDED";
|
|
21668
|
+
rechargeHooksInput?: {
|
|
21669
|
+
rechargeOptions?: Record<string, string | number | boolean>;
|
|
21670
|
+
};
|
|
21661
21671
|
}, {
|
|
21662
21672
|
origin?: string;
|
|
21663
21673
|
state?: string;
|
|
@@ -22070,6 +22080,9 @@ export declare const AfterBeforeRechargeActionSchema: z.ZodObject<{
|
|
|
22070
22080
|
requiresPlanApproval?: boolean;
|
|
22071
22081
|
planID?: string;
|
|
22072
22082
|
planApprovalStatus?: "WAITING" | "APPROVED" | "DISCARDED";
|
|
22083
|
+
rechargeHooksInput?: {
|
|
22084
|
+
rechargeOptions?: Record<string, string | number | boolean>;
|
|
22085
|
+
};
|
|
22073
22086
|
}>;
|
|
22074
22087
|
export declare const DeductionFileIngestionActionSchema: z.ZodObject<{
|
|
22075
22088
|
_id: z.ZodUnion<[z.ZodType<import("bson").ObjectId, z.ZodTypeDef, import("bson").ObjectId>, z.ZodEffects<z.ZodString, string, string>]>;
|
|
@@ -32387,18 +32400,18 @@ export declare const RechargeActionSchema: z.ZodObject<{
|
|
|
32387
32400
|
value?: number;
|
|
32388
32401
|
date?: string;
|
|
32389
32402
|
productID?: string;
|
|
32403
|
+
rechargeOptions?: Record<string, string | number | boolean>;
|
|
32390
32404
|
ticketCode?: number;
|
|
32391
32405
|
quantity?: number;
|
|
32392
32406
|
tariffValue?: number;
|
|
32393
|
-
rechargeOptions?: Record<string, string | number | boolean>;
|
|
32394
32407
|
}, {
|
|
32395
32408
|
value?: number;
|
|
32396
32409
|
date?: string;
|
|
32397
32410
|
productID?: string;
|
|
32411
|
+
rechargeOptions?: Record<string, string | number | boolean>;
|
|
32398
32412
|
ticketCode?: number;
|
|
32399
32413
|
quantity?: number;
|
|
32400
32414
|
tariffValue?: number;
|
|
32401
|
-
rechargeOptions?: Record<string, string | number | boolean>;
|
|
32402
32415
|
}>;
|
|
32403
32416
|
}, "strip", z.ZodTypeAny, {
|
|
32404
32417
|
origin?: string;
|
|
@@ -32809,10 +32822,10 @@ export declare const RechargeActionSchema: z.ZodObject<{
|
|
|
32809
32822
|
value?: number;
|
|
32810
32823
|
date?: string;
|
|
32811
32824
|
productID?: string;
|
|
32825
|
+
rechargeOptions?: Record<string, string | number | boolean>;
|
|
32812
32826
|
ticketCode?: number;
|
|
32813
32827
|
quantity?: number;
|
|
32814
32828
|
tariffValue?: number;
|
|
32815
|
-
rechargeOptions?: Record<string, string | number | boolean>;
|
|
32816
32829
|
};
|
|
32817
32830
|
}, {
|
|
32818
32831
|
origin?: string;
|
|
@@ -33223,10 +33236,10 @@ export declare const RechargeActionSchema: z.ZodObject<{
|
|
|
33223
33236
|
value?: number;
|
|
33224
33237
|
date?: string;
|
|
33225
33238
|
productID?: string;
|
|
33239
|
+
rechargeOptions?: Record<string, string | number | boolean>;
|
|
33226
33240
|
ticketCode?: number;
|
|
33227
33241
|
quantity?: number;
|
|
33228
33242
|
tariffValue?: number;
|
|
33229
|
-
rechargeOptions?: Record<string, string | number | boolean>;
|
|
33230
33243
|
};
|
|
33231
33244
|
}>;
|
|
33232
33245
|
export declare const DeductionActionSchema: z.ZodObject<{
|