Upgrade system finished

This commit is contained in:
2026-03-22 21:47:09 -06:00
parent a71ba20176
commit bb1935027d
299 changed files with 8067 additions and 2758 deletions

View File

@@ -13,9 +13,9 @@ export declare const postalCodeParamSchema: z.ZodObject<{
export declare const postalCodeQuerySchema: z.ZodObject<{
refresh: z.ZodDefault<z.ZodOptional<z.ZodEnum<["true", "false"]>>>;
}, "strip", z.ZodTypeAny, {
refresh: "true" | "false";
refresh: "false" | "true";
}, {
refresh?: "true" | "false" | undefined;
refresh?: "false" | "true" | undefined;
}>;
export type PostalCodeParam = z.infer<typeof postalCodeParamSchema>;
export type PostalCodeQuery = z.infer<typeof postalCodeQuerySchema>;

View File

@@ -12,18 +12,18 @@ export declare const postalCodesService: {
city: string | null;
postalCode: string;
province: string | null;
lastUpdated: Date;
centroidLat: Prisma.Decimal | null;
centroidLng: Prisma.Decimal | null;
lastUpdated: Date;
}>;
findByPostalCode(code: string): Promise<{
id: string;
city: string | null;
postalCode: string;
province: string | null;
lastUpdated: Date;
centroidLat: Prisma.Decimal | null;
centroidLng: Prisma.Decimal | null;
lastUpdated: Date;
} | null>;
findAll(filters: {
page: number;
@@ -35,9 +35,9 @@ export declare const postalCodesService: {
city: string | null;
postalCode: string;
province: string | null;
lastUpdated: Date;
centroidLat: Prisma.Decimal | null;
centroidLng: Prisma.Decimal | null;
lastUpdated: Date;
}[];
pagination: {
page: number;
@@ -51,9 +51,9 @@ export declare const postalCodesService: {
city: string | null;
postalCode: string;
province: string | null;
lastUpdated: Date;
centroidLat: Prisma.Decimal | null;
centroidLng: Prisma.Decimal | null;
lastUpdated: Date;
}>;
};
export {};