Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions dist/base/index.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -660,8 +660,9 @@ var freeEsimSchema = zod.z.object({
enabled: zod.z.boolean(),
package_specification: zod.z.object({
size: zod.z.string(),
type: zod.z.string(),
destination: zod.z.string()
package_type: zod.z.string(),
destination: zod.z.string(),
package_duration: zod.z.number()
}),
booking_id_verification: zod.z.boolean().default(false),
booking_id_verification_pattern: zod.z.string().nullable().optional(),
Expand Down
2 changes: 1 addition & 1 deletion dist/base/index.cjs.map

Large diffs are not rendered by default.

90 changes: 60 additions & 30 deletions dist/base/index.d.cts
Original file line number Diff line number Diff line change
Expand Up @@ -1315,26 +1315,30 @@ declare const HPartnerSchema: z.ZodObject<{
enabled: z.ZodBoolean;
package_specification: z.ZodObject<{
size: z.ZodString;
type: z.ZodString;
package_type: z.ZodString;
destination: z.ZodString;
package_duration: z.ZodNumber;
}, "strip", z.ZodTypeAny, {
type: string;
destination: string;
size: string;
package_duration: number;
package_type: string;
}, {
type: string;
destination: string;
size: string;
package_duration: number;
package_type: string;
}>;
booking_id_verification: z.ZodDefault<z.ZodBoolean>;
booking_id_verification_pattern: z.ZodOptional<z.ZodNullable<z.ZodString>>;
allowance: z.ZodNumber;
total_allowance: z.ZodNumber;
}, "strip", z.ZodTypeAny, {
package_specification: {
type: string;
destination: string;
size: string;
package_duration: number;
package_type: string;
};
enabled: boolean;
booking_id_verification: boolean;
Expand All @@ -1343,9 +1347,10 @@ declare const HPartnerSchema: z.ZodObject<{
booking_id_verification_pattern?: string | null | undefined;
}, {
package_specification: {
type: string;
destination: string;
size: string;
package_duration: number;
package_type: string;
};
enabled: boolean;
allowance: number;
Expand Down Expand Up @@ -1496,9 +1501,10 @@ declare const HPartnerSchema: z.ZodObject<{
} | null | undefined;
free_esim?: {
package_specification: {
type: string;
destination: string;
size: string;
package_duration: number;
package_type: string;
};
enabled: boolean;
booking_id_verification: boolean;
Expand Down Expand Up @@ -1555,9 +1561,10 @@ declare const HPartnerSchema: z.ZodObject<{
} | null | undefined;
free_esim?: {
package_specification: {
type: string;
destination: string;
size: string;
package_duration: number;
package_type: string;
};
enabled: boolean;
allowance: number;
Expand Down Expand Up @@ -1779,9 +1786,10 @@ declare const HPartnerSchema: z.ZodObject<{
} | null | undefined;
free_esim?: {
package_specification: {
type: string;
destination: string;
size: string;
package_duration: number;
package_type: string;
};
enabled: boolean;
booking_id_verification: boolean;
Expand Down Expand Up @@ -1957,9 +1965,10 @@ declare const HPartnerSchema: z.ZodObject<{
} | null | undefined;
free_esim?: {
package_specification: {
type: string;
destination: string;
size: string;
package_duration: number;
package_type: string;
};
enabled: boolean;
allowance: number;
Expand Down Expand Up @@ -2839,26 +2848,30 @@ declare const HPartnerAppSchema: z.ZodObject<{
enabled: z.ZodBoolean;
package_specification: z.ZodObject<{
size: z.ZodString;
type: z.ZodString;
package_type: z.ZodString;
destination: z.ZodString;
package_duration: z.ZodNumber;
}, "strip", z.ZodTypeAny, {
type: string;
destination: string;
size: string;
package_duration: number;
package_type: string;
}, {
type: string;
destination: string;
size: string;
package_duration: number;
package_type: string;
}>;
booking_id_verification: z.ZodDefault<z.ZodBoolean>;
booking_id_verification_pattern: z.ZodOptional<z.ZodNullable<z.ZodString>>;
allowance: z.ZodNumber;
total_allowance: z.ZodNumber;
}, "strip", z.ZodTypeAny, {
package_specification: {
type: string;
destination: string;
size: string;
package_duration: number;
package_type: string;
};
enabled: boolean;
booking_id_verification: boolean;
Expand All @@ -2867,9 +2880,10 @@ declare const HPartnerAppSchema: z.ZodObject<{
booking_id_verification_pattern?: string | null | undefined;
}, {
package_specification: {
type: string;
destination: string;
size: string;
package_duration: number;
package_type: string;
};
enabled: boolean;
allowance: number;
Expand Down Expand Up @@ -3020,9 +3034,10 @@ declare const HPartnerAppSchema: z.ZodObject<{
} | null | undefined;
free_esim?: {
package_specification: {
type: string;
destination: string;
size: string;
package_duration: number;
package_type: string;
};
enabled: boolean;
booking_id_verification: boolean;
Expand Down Expand Up @@ -3079,9 +3094,10 @@ declare const HPartnerAppSchema: z.ZodObject<{
} | null | undefined;
free_esim?: {
package_specification: {
type: string;
destination: string;
size: string;
package_duration: number;
package_type: string;
};
enabled: boolean;
allowance: number;
Expand Down Expand Up @@ -3303,9 +3319,10 @@ declare const HPartnerAppSchema: z.ZodObject<{
} | null | undefined;
free_esim?: {
package_specification: {
type: string;
destination: string;
size: string;
package_duration: number;
package_type: string;
};
enabled: boolean;
booking_id_verification: boolean;
Expand Down Expand Up @@ -3481,9 +3498,10 @@ declare const HPartnerAppSchema: z.ZodObject<{
} | null | undefined;
free_esim?: {
package_specification: {
type: string;
destination: string;
size: string;
package_duration: number;
package_type: string;
};
enabled: boolean;
allowance: number;
Expand Down Expand Up @@ -3575,26 +3593,30 @@ declare const HPlatformSettingsSchema: z.ZodObject<{
enabled: z.ZodBoolean;
package_specification: z.ZodObject<{
size: z.ZodString;
type: z.ZodString;
package_type: z.ZodString;
destination: z.ZodString;
package_duration: z.ZodNumber;
}, "strip", z.ZodTypeAny, {
type: string;
destination: string;
size: string;
package_duration: number;
package_type: string;
}, {
type: string;
destination: string;
size: string;
package_duration: number;
package_type: string;
}>;
booking_id_verification: z.ZodDefault<z.ZodBoolean>;
booking_id_verification_pattern: z.ZodOptional<z.ZodNullable<z.ZodString>>;
allowance: z.ZodNumber;
total_allowance: z.ZodNumber;
}, "strip", z.ZodTypeAny, {
package_specification: {
type: string;
destination: string;
size: string;
package_duration: number;
package_type: string;
};
enabled: boolean;
booking_id_verification: boolean;
Expand All @@ -3603,9 +3625,10 @@ declare const HPlatformSettingsSchema: z.ZodObject<{
booking_id_verification_pattern?: string | null | undefined;
}, {
package_specification: {
type: string;
destination: string;
size: string;
package_duration: number;
package_type: string;
};
enabled: boolean;
allowance: number;
Expand Down Expand Up @@ -3756,9 +3779,10 @@ declare const HPlatformSettingsSchema: z.ZodObject<{
} | null | undefined;
free_esim?: {
package_specification: {
type: string;
destination: string;
size: string;
package_duration: number;
package_type: string;
};
enabled: boolean;
booking_id_verification: boolean;
Expand Down Expand Up @@ -3815,9 +3839,10 @@ declare const HPlatformSettingsSchema: z.ZodObject<{
} | null | undefined;
free_esim?: {
package_specification: {
type: string;
destination: string;
size: string;
package_duration: number;
package_type: string;
};
enabled: boolean;
allowance: number;
Expand Down Expand Up @@ -4093,26 +4118,30 @@ declare const HFreeEsimSchema: z.ZodObject<{
enabled: z.ZodBoolean;
package_specification: z.ZodObject<{
size: z.ZodString;
type: z.ZodString;
package_type: z.ZodString;
destination: z.ZodString;
package_duration: z.ZodNumber;
}, "strip", z.ZodTypeAny, {
type: string;
destination: string;
size: string;
package_duration: number;
package_type: string;
}, {
type: string;
destination: string;
size: string;
package_duration: number;
package_type: string;
}>;
booking_id_verification: z.ZodDefault<z.ZodBoolean>;
booking_id_verification_pattern: z.ZodOptional<z.ZodNullable<z.ZodString>>;
allowance: z.ZodNumber;
total_allowance: z.ZodNumber;
}, "strip", z.ZodTypeAny, {
package_specification: {
type: string;
destination: string;
size: string;
package_duration: number;
package_type: string;
};
enabled: boolean;
booking_id_verification: boolean;
Expand All @@ -4121,9 +4150,10 @@ declare const HFreeEsimSchema: z.ZodObject<{
booking_id_verification_pattern?: string | null | undefined;
}, {
package_specification: {
type: string;
destination: string;
size: string;
package_duration: number;
package_type: string;
};
enabled: boolean;
allowance: number;
Expand Down
Loading