@mxpicture/tesla-superchargers-generated 0.1.48 → 0.1.49
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/public/PicCluster.d.ts +68 -0
- package/dist/public/PicCluster.d.ts.map +1 -0
- package/dist/public/PicCluster.js +57 -0
- package/dist/public/PicCluster.js.map +1 -0
- package/dist/public/PicClusterMember.d.ts +56 -0
- package/dist/public/PicClusterMember.d.ts.map +1 -0
- package/dist/public/PicClusterMember.js +42 -0
- package/dist/public/PicClusterMember.js.map +1 -0
- package/dist/public/PicZipCodes.d.ts +99 -0
- package/dist/public/PicZipCodes.d.ts.map +1 -0
- package/dist/public/PicZipCodes.js +91 -0
- package/dist/public/PicZipCodes.js.map +1 -0
- package/dist/public/PicZipCountry.d.ts +35 -0
- package/dist/public/PicZipCountry.d.ts.map +1 -0
- package/dist/public/PicZipCountry.js +26 -0
- package/dist/public/PicZipCountry.js.map +1 -0
- package/dist/public/PicZipImport.d.ts +85 -0
- package/dist/public/PicZipImport.d.ts.map +1 -0
- package/dist/public/PicZipImport.js +82 -0
- package/dist/public/PicZipImport.js.map +1 -0
- package/dist/public/index.d.ts +5 -0
- package/dist/public/index.d.ts.map +1 -1
- package/dist/public/index.js +5 -0
- package/dist/public/index.js.map +1 -1
- package/package.json +1 -1
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
import { z } from "zod";
|
|
2
|
+
import type { KeyParams } from "./KeyParams.js";
|
|
3
|
+
/** Identifier type for public.pic_cluster */
|
|
4
|
+
export type PicClusterClusterId = string;
|
|
5
|
+
/** Represents the table public.pic_cluster */
|
|
6
|
+
export interface PicCluster {
|
|
7
|
+
cluster_id: PicClusterClusterId;
|
|
8
|
+
center_lat: number;
|
|
9
|
+
center_lon: number;
|
|
10
|
+
seed_address_id: number;
|
|
11
|
+
radius_m: number;
|
|
12
|
+
member_count: number;
|
|
13
|
+
created_at: Date;
|
|
14
|
+
}
|
|
15
|
+
/** Represents the initializer for the table public.pic_cluster */
|
|
16
|
+
export interface PicClusterInitializer {
|
|
17
|
+
center_lat: number;
|
|
18
|
+
center_lon: number;
|
|
19
|
+
seed_address_id: number;
|
|
20
|
+
radius_m: number;
|
|
21
|
+
/** Default value: 0 */
|
|
22
|
+
member_count?: number;
|
|
23
|
+
/** Default value: now() */
|
|
24
|
+
created_at?: Date;
|
|
25
|
+
}
|
|
26
|
+
/** Represents the mutator for the table public.pic_cluster */
|
|
27
|
+
export interface PicClusterMutator {
|
|
28
|
+
center_lat?: number;
|
|
29
|
+
center_lon?: number;
|
|
30
|
+
seed_address_id?: number;
|
|
31
|
+
radius_m?: number;
|
|
32
|
+
member_count?: number;
|
|
33
|
+
created_at?: Date;
|
|
34
|
+
}
|
|
35
|
+
export declare const picClusterClusterId: z.Schema<PicClusterClusterId>;
|
|
36
|
+
export declare const picCluster: z.Schema<PicCluster>;
|
|
37
|
+
export declare const picClusterInitializer: z.Schema<PicClusterInitializer>;
|
|
38
|
+
export declare const picClusterMutator: z.Schema<PicClusterMutator>;
|
|
39
|
+
/**
|
|
40
|
+
* Represents the initializer for the table public.pic_cluster
|
|
41
|
+
* Strict variant: optional properties are required and typed with an explicit `| undefined` instead of `?:`.
|
|
42
|
+
*/
|
|
43
|
+
export interface PicClusterInitializerStrict {
|
|
44
|
+
center_lat: number;
|
|
45
|
+
center_lon: number;
|
|
46
|
+
seed_address_id: number;
|
|
47
|
+
radius_m: number;
|
|
48
|
+
/** Default value: 0 */
|
|
49
|
+
member_count: number | undefined;
|
|
50
|
+
/** Default value: now() */
|
|
51
|
+
created_at: Date | undefined;
|
|
52
|
+
}
|
|
53
|
+
/**
|
|
54
|
+
* Represents the mutator for the table public.pic_cluster
|
|
55
|
+
* Strict variant: optional properties are required and typed with an explicit `| undefined` instead of `?:`.
|
|
56
|
+
*/
|
|
57
|
+
export interface PicClusterMutatorStrict {
|
|
58
|
+
center_lat: number | undefined;
|
|
59
|
+
center_lon: number | undefined;
|
|
60
|
+
seed_address_id: number | undefined;
|
|
61
|
+
radius_m: number | undefined;
|
|
62
|
+
member_count: number | undefined;
|
|
63
|
+
created_at: Date | undefined;
|
|
64
|
+
}
|
|
65
|
+
export declare const picClusterKeys: KeyParams<PicCluster>[];
|
|
66
|
+
export declare const picClusterInitializerKeys: KeyParams<PicClusterInitializer>[];
|
|
67
|
+
export declare const picClusterMutatorKeys: KeyParams<PicClusterMutator>[];
|
|
68
|
+
//# sourceMappingURL=PicCluster.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"PicCluster.d.ts","sourceRoot":"","sources":["../../src/public/PicCluster.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AACxB,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,gBAAgB,CAAC;AAEhD,6CAA6C;AAC7C,MAAM,MAAM,mBAAmB,GAAG,MAAM,CAAC;AAEzC,8CAA8C;AAC9C,MAAM,WAAW,UAAU;IACzB,UAAU,EAAE,mBAAmB,CAAC;IAEhC,UAAU,EAAE,MAAM,CAAC;IAEnB,UAAU,EAAE,MAAM,CAAC;IAEnB,eAAe,EAAE,MAAM,CAAC;IAExB,QAAQ,EAAE,MAAM,CAAC;IAEjB,YAAY,EAAE,MAAM,CAAC;IAErB,UAAU,EAAE,IAAI,CAAC;CAClB;AAED,kEAAkE;AAClE,MAAM,WAAW,qBAAqB;IACpC,UAAU,EAAE,MAAM,CAAC;IAEnB,UAAU,EAAE,MAAM,CAAC;IAEnB,eAAe,EAAE,MAAM,CAAC;IAExB,QAAQ,EAAE,MAAM,CAAC;IAEjB,uBAAuB;IACvB,YAAY,CAAC,EAAE,MAAM,CAAC;IAEtB,2BAA2B;IAC3B,UAAU,CAAC,EAAE,IAAI,CAAC;CACnB;AAED,8DAA8D;AAC9D,MAAM,WAAW,iBAAiB;IAChC,UAAU,CAAC,EAAE,MAAM,CAAC;IAEpB,UAAU,CAAC,EAAE,MAAM,CAAC;IAEpB,eAAe,CAAC,EAAE,MAAM,CAAC;IAEzB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAElB,YAAY,CAAC,EAAE,MAAM,CAAC;IAEtB,UAAU,CAAC,EAAE,IAAI,CAAC;CACnB;AAED,eAAO,MAAM,mBAAmB,EACL,CAAC,CAAC,MAAM,CAAC,mBAAmB,CAAC,CAAC;AAEzD,eAAO,MAAM,UAAU,EAQN,CAAC,CAAC,MAAM,CAAC,UAAU,CAAC,CAAC;AAEtC,eAAO,MAAM,qBAAqB,EAQjB,CAAC,CAAC,MAAM,CAAC,qBAAqB,CAAC,CAAC;AAEjD,eAAO,MAAM,iBAAiB,EAQb,CAAC,CAAC,MAAM,CAAC,iBAAiB,CAAC,CAAC;AAE7C;;;GAGG;AACH,MAAM,WAAW,2BAA2B;IAC1C,UAAU,EAAE,MAAM,CAAC;IAEnB,UAAU,EAAE,MAAM,CAAC;IAEnB,eAAe,EAAE,MAAM,CAAC;IAExB,QAAQ,EAAE,MAAM,CAAC;IAEjB,uBAAuB;IACvB,YAAY,EAAE,MAAM,GAAG,SAAS,CAAC;IAEjC,2BAA2B;IAC3B,UAAU,EAAE,IAAI,GAAG,SAAS,CAAC;CAC9B;AAED;;;GAGG;AACH,MAAM,WAAW,uBAAuB;IACtC,UAAU,EAAE,MAAM,GAAG,SAAS,CAAC;IAE/B,UAAU,EAAE,MAAM,GAAG,SAAS,CAAC;IAE/B,eAAe,EAAE,MAAM,GAAG,SAAS,CAAC;IAEpC,QAAQ,EAAE,MAAM,GAAG,SAAS,CAAC;IAE7B,YAAY,EAAE,MAAM,GAAG,SAAS,CAAC;IAEjC,UAAU,EAAE,IAAI,GAAG,SAAS,CAAC;CAC9B;AAED,eAAO,MAAM,cAAc,EAAE,SAAS,CAAC,UAAU,CAAC,EAQjD,CAAC;AAEF,eAAO,MAAM,yBAAyB,EAAE,SAAS,CAAC,qBAAqB,CAAC,EAOvE,CAAC;AAEF,eAAO,MAAM,qBAAqB,EAAE,SAAS,CAAC,iBAAiB,CAAC,EAO/D,CAAC"}
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
// @generated
|
|
2
|
+
// This file is automatically generated by Kanel. Do not modify manually.
|
|
3
|
+
import { z } from "zod";
|
|
4
|
+
export const picClusterClusterId = z.string();
|
|
5
|
+
export const picCluster = z.object({
|
|
6
|
+
cluster_id: picClusterClusterId,
|
|
7
|
+
center_lat: z.number(),
|
|
8
|
+
center_lon: z.number(),
|
|
9
|
+
seed_address_id: z.number(),
|
|
10
|
+
radius_m: z.number(),
|
|
11
|
+
member_count: z.number(),
|
|
12
|
+
created_at: z.date(),
|
|
13
|
+
});
|
|
14
|
+
export const picClusterInitializer = z.object({
|
|
15
|
+
cluster_id: picClusterClusterId.optional(),
|
|
16
|
+
center_lat: z.number(),
|
|
17
|
+
center_lon: z.number(),
|
|
18
|
+
seed_address_id: z.number(),
|
|
19
|
+
radius_m: z.number(),
|
|
20
|
+
member_count: z.number().optional(),
|
|
21
|
+
created_at: z.date().optional(),
|
|
22
|
+
});
|
|
23
|
+
export const picClusterMutator = z.object({
|
|
24
|
+
cluster_id: picClusterClusterId.optional(),
|
|
25
|
+
center_lat: z.number().optional(),
|
|
26
|
+
center_lon: z.number().optional(),
|
|
27
|
+
seed_address_id: z.number().optional(),
|
|
28
|
+
radius_m: z.number().optional(),
|
|
29
|
+
member_count: z.number().optional(),
|
|
30
|
+
created_at: z.date().optional(),
|
|
31
|
+
});
|
|
32
|
+
export const picClusterKeys = [
|
|
33
|
+
{ name: "cluster_id" },
|
|
34
|
+
{ name: "center_lat" },
|
|
35
|
+
{ name: "center_lon" },
|
|
36
|
+
{ name: "seed_address_id" },
|
|
37
|
+
{ name: "radius_m" },
|
|
38
|
+
{ name: "member_count" },
|
|
39
|
+
{ name: "created_at" },
|
|
40
|
+
];
|
|
41
|
+
export const picClusterInitializerKeys = [
|
|
42
|
+
{ name: "center_lat" },
|
|
43
|
+
{ name: "center_lon" },
|
|
44
|
+
{ name: "seed_address_id" },
|
|
45
|
+
{ name: "radius_m" },
|
|
46
|
+
{ name: "member_count", optional: true },
|
|
47
|
+
{ name: "created_at", optional: true },
|
|
48
|
+
];
|
|
49
|
+
export const picClusterMutatorKeys = [
|
|
50
|
+
{ name: "center_lat", optional: true },
|
|
51
|
+
{ name: "center_lon", optional: true },
|
|
52
|
+
{ name: "seed_address_id", optional: true },
|
|
53
|
+
{ name: "radius_m", optional: true },
|
|
54
|
+
{ name: "member_count", optional: true },
|
|
55
|
+
{ name: "created_at", optional: true },
|
|
56
|
+
];
|
|
57
|
+
//# sourceMappingURL=PicCluster.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"PicCluster.js","sourceRoot":"","sources":["../../src/public/PicCluster.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
import { type PicClusterClusterId } from "./PicCluster.js";
|
|
2
|
+
import { z } from "zod";
|
|
3
|
+
import type { KeyParams } from "./KeyParams.js";
|
|
4
|
+
/** Identifier type for public.pic_cluster_member */
|
|
5
|
+
export type PicClusterMemberAddressId = number;
|
|
6
|
+
/** Represents the table public.pic_cluster_member */
|
|
7
|
+
export interface PicClusterMember {
|
|
8
|
+
address_id: PicClusterMemberAddressId;
|
|
9
|
+
cluster_id: PicClusterClusterId;
|
|
10
|
+
distance_m: number;
|
|
11
|
+
assigned_at: Date;
|
|
12
|
+
}
|
|
13
|
+
/** Represents the initializer for the table public.pic_cluster_member */
|
|
14
|
+
export interface PicClusterMemberInitializer {
|
|
15
|
+
address_id: PicClusterMemberAddressId;
|
|
16
|
+
cluster_id: PicClusterClusterId;
|
|
17
|
+
distance_m: number;
|
|
18
|
+
/** Default value: now() */
|
|
19
|
+
assigned_at?: Date;
|
|
20
|
+
}
|
|
21
|
+
/** Represents the mutator for the table public.pic_cluster_member */
|
|
22
|
+
export interface PicClusterMemberMutator {
|
|
23
|
+
address_id?: PicClusterMemberAddressId;
|
|
24
|
+
cluster_id?: PicClusterClusterId;
|
|
25
|
+
distance_m?: number;
|
|
26
|
+
assigned_at?: Date;
|
|
27
|
+
}
|
|
28
|
+
export declare const picClusterMemberAddressId: z.Schema<PicClusterMemberAddressId>;
|
|
29
|
+
export declare const picClusterMember: z.Schema<PicClusterMember>;
|
|
30
|
+
export declare const picClusterMemberInitializer: z.Schema<PicClusterMemberInitializer>;
|
|
31
|
+
export declare const picClusterMemberMutator: z.Schema<PicClusterMemberMutator>;
|
|
32
|
+
/**
|
|
33
|
+
* Represents the initializer for the table public.pic_cluster_member
|
|
34
|
+
* Strict variant: optional properties are required and typed with an explicit `| undefined` instead of `?:`.
|
|
35
|
+
*/
|
|
36
|
+
export interface PicClusterMemberInitializerStrict {
|
|
37
|
+
address_id: PicClusterMemberAddressId;
|
|
38
|
+
cluster_id: PicClusterClusterId;
|
|
39
|
+
distance_m: number;
|
|
40
|
+
/** Default value: now() */
|
|
41
|
+
assigned_at: Date | undefined;
|
|
42
|
+
}
|
|
43
|
+
/**
|
|
44
|
+
* Represents the mutator for the table public.pic_cluster_member
|
|
45
|
+
* Strict variant: optional properties are required and typed with an explicit `| undefined` instead of `?:`.
|
|
46
|
+
*/
|
|
47
|
+
export interface PicClusterMemberMutatorStrict {
|
|
48
|
+
address_id: PicClusterMemberAddressId | undefined;
|
|
49
|
+
cluster_id: PicClusterClusterId | undefined;
|
|
50
|
+
distance_m: number | undefined;
|
|
51
|
+
assigned_at: Date | undefined;
|
|
52
|
+
}
|
|
53
|
+
export declare const picClusterMemberKeys: KeyParams<PicClusterMember>[];
|
|
54
|
+
export declare const picClusterMemberInitializerKeys: KeyParams<PicClusterMemberInitializer>[];
|
|
55
|
+
export declare const picClusterMemberMutatorKeys: KeyParams<PicClusterMemberMutator>[];
|
|
56
|
+
//# sourceMappingURL=PicClusterMember.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"PicClusterMember.d.ts","sourceRoot":"","sources":["../../src/public/PicClusterMember.ts"],"names":[],"mappings":"AAGA,OAAO,EAAuB,KAAK,mBAAmB,EAAE,MAAM,iBAAiB,CAAC;AAChF,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AACxB,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,gBAAgB,CAAC;AAEhD,oDAAoD;AACpD,MAAM,MAAM,yBAAyB,GAAG,MAAM,CAAC;AAE/C,qDAAqD;AACrD,MAAM,WAAW,gBAAgB;IAC/B,UAAU,EAAE,yBAAyB,CAAC;IAEtC,UAAU,EAAE,mBAAmB,CAAC;IAEhC,UAAU,EAAE,MAAM,CAAC;IAEnB,WAAW,EAAE,IAAI,CAAC;CACnB;AAED,yEAAyE;AACzE,MAAM,WAAW,2BAA2B;IAC1C,UAAU,EAAE,yBAAyB,CAAC;IAEtC,UAAU,EAAE,mBAAmB,CAAC;IAEhC,UAAU,EAAE,MAAM,CAAC;IAEnB,2BAA2B;IAC3B,WAAW,CAAC,EAAE,IAAI,CAAC;CACpB;AAED,qEAAqE;AACrE,MAAM,WAAW,uBAAuB;IACtC,UAAU,CAAC,EAAE,yBAAyB,CAAC;IAEvC,UAAU,CAAC,EAAE,mBAAmB,CAAC;IAEjC,UAAU,CAAC,EAAE,MAAM,CAAC;IAEpB,WAAW,CAAC,EAAE,IAAI,CAAC;CACpB;AAED,eAAO,MAAM,yBAAyB,EACX,CAAC,CAAC,MAAM,CAAC,yBAAyB,CAAC,CAAC;AAE/D,eAAO,MAAM,gBAAgB,EAKZ,CAAC,CAAC,MAAM,CAAC,gBAAgB,CAAC,CAAC;AAE5C,eAAO,MAAM,2BAA2B,EAKvB,CAAC,CAAC,MAAM,CAAC,2BAA2B,CAAC,CAAC;AAEvD,eAAO,MAAM,uBAAuB,EAKnB,CAAC,CAAC,MAAM,CAAC,uBAAuB,CAAC,CAAC;AAEnD;;;GAGG;AACH,MAAM,WAAW,iCAAiC;IAChD,UAAU,EAAE,yBAAyB,CAAC;IAEtC,UAAU,EAAE,mBAAmB,CAAC;IAEhC,UAAU,EAAE,MAAM,CAAC;IAEnB,2BAA2B;IAC3B,WAAW,EAAE,IAAI,GAAG,SAAS,CAAC;CAC/B;AAED;;;GAGG;AACH,MAAM,WAAW,6BAA6B;IAC5C,UAAU,EAAE,yBAAyB,GAAG,SAAS,CAAC;IAElD,UAAU,EAAE,mBAAmB,GAAG,SAAS,CAAC;IAE5C,UAAU,EAAE,MAAM,GAAG,SAAS,CAAC;IAE/B,WAAW,EAAE,IAAI,GAAG,SAAS,CAAC;CAC/B;AAED,eAAO,MAAM,oBAAoB,EAAE,SAAS,CAAC,gBAAgB,CAAC,EAK7D,CAAC;AAEF,eAAO,MAAM,+BAA+B,EAAE,SAAS,CAAC,2BAA2B,CAAC,EAMjF,CAAC;AAEJ,eAAO,MAAM,2BAA2B,EAAE,SAAS,CAAC,uBAAuB,CAAC,EAMzE,CAAC"}
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
// @generated
|
|
2
|
+
// This file is automatically generated by Kanel. Do not modify manually.
|
|
3
|
+
import { picClusterClusterId } from "./PicCluster.js";
|
|
4
|
+
import { z } from "zod";
|
|
5
|
+
export const picClusterMemberAddressId = z.number();
|
|
6
|
+
export const picClusterMember = z.object({
|
|
7
|
+
address_id: picClusterMemberAddressId,
|
|
8
|
+
cluster_id: z.lazy(() => picClusterClusterId),
|
|
9
|
+
distance_m: z.number(),
|
|
10
|
+
assigned_at: z.date(),
|
|
11
|
+
});
|
|
12
|
+
export const picClusterMemberInitializer = z.object({
|
|
13
|
+
address_id: picClusterMemberAddressId,
|
|
14
|
+
cluster_id: z.lazy(() => picClusterClusterId),
|
|
15
|
+
distance_m: z.number(),
|
|
16
|
+
assigned_at: z.date().optional(),
|
|
17
|
+
});
|
|
18
|
+
export const picClusterMemberMutator = z.object({
|
|
19
|
+
address_id: picClusterMemberAddressId.optional(),
|
|
20
|
+
cluster_id: z.lazy(() => picClusterClusterId.optional()),
|
|
21
|
+
distance_m: z.number().optional(),
|
|
22
|
+
assigned_at: z.date().optional(),
|
|
23
|
+
});
|
|
24
|
+
export const picClusterMemberKeys = [
|
|
25
|
+
{ name: "address_id" },
|
|
26
|
+
{ name: "cluster_id" },
|
|
27
|
+
{ name: "distance_m" },
|
|
28
|
+
{ name: "assigned_at" },
|
|
29
|
+
];
|
|
30
|
+
export const picClusterMemberInitializerKeys = [
|
|
31
|
+
{ name: "address_id" },
|
|
32
|
+
{ name: "cluster_id" },
|
|
33
|
+
{ name: "distance_m" },
|
|
34
|
+
{ name: "assigned_at", optional: true },
|
|
35
|
+
];
|
|
36
|
+
export const picClusterMemberMutatorKeys = [
|
|
37
|
+
{ name: "address_id", optional: true },
|
|
38
|
+
{ name: "cluster_id", optional: true },
|
|
39
|
+
{ name: "distance_m", optional: true },
|
|
40
|
+
{ name: "assigned_at", optional: true },
|
|
41
|
+
];
|
|
42
|
+
//# sourceMappingURL=PicClusterMember.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"PicClusterMember.js","sourceRoot":"","sources":["../../src/public/PicClusterMember.ts"],"names":[],"mappings":"AAAA,aAAa;AACb,yEAAyE;AAEzE,OAAO,EAAE,mBAAmB,EAA4B,MAAM,iBAAiB,CAAC;AAChF,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAwCxB,MAAM,CAAC,MAAM,yBAAyB,GACpC,CAAC,CAAC,MAAM,EAAoD,CAAC;AAE/D,MAAM,CAAC,MAAM,gBAAgB,GAAG,CAAC,CAAC,MAAM,CAAC;IACvC,UAAU,EAAE,yBAAyB;IACrC,UAAU,EAAE,CAAC,CAAC,IAAI,CAAC,GAAG,EAAE,CAAC,mBAAmB,CAAC;IAC7C,UAAU,EAAE,CAAC,CAAC,MAAM,EAAE;IACtB,WAAW,EAAE,CAAC,CAAC,IAAI,EAAE;CACtB,CAA0C,CAAC;AAE5C,MAAM,CAAC,MAAM,2BAA2B,GAAG,CAAC,CAAC,MAAM,CAAC;IAClD,UAAU,EAAE,yBAAyB;IACrC,UAAU,EAAE,CAAC,CAAC,IAAI,CAAC,GAAG,EAAE,CAAC,mBAAmB,CAAC;IAC7C,UAAU,EAAE,CAAC,CAAC,MAAM,EAAE;IACtB,WAAW,EAAE,CAAC,CAAC,IAAI,EAAE,CAAC,QAAQ,EAAE;CACjC,CAAqD,CAAC;AAEvD,MAAM,CAAC,MAAM,uBAAuB,GAAG,CAAC,CAAC,MAAM,CAAC;IAC9C,UAAU,EAAE,yBAAyB,CAAC,QAAQ,EAAE;IAChD,UAAU,EAAE,CAAC,CAAC,IAAI,CAAC,GAAG,EAAE,CAAC,mBAAmB,CAAC,QAAQ,EAAE,CAAC;IACxD,UAAU,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACjC,WAAW,EAAE,CAAC,CAAC,IAAI,EAAE,CAAC,QAAQ,EAAE;CACjC,CAAiD,CAAC;AA+BnD,MAAM,CAAC,MAAM,oBAAoB,GAAkC;IACjE,EAAE,IAAI,EAAE,YAAY,EAAE;IACtB,EAAE,IAAI,EAAE,YAAY,EAAE;IACtB,EAAE,IAAI,EAAE,YAAY,EAAE;IACtB,EAAE,IAAI,EAAE,aAAa,EAAE;CACxB,CAAC;AAEF,MAAM,CAAC,MAAM,+BAA+B,GAC1C;IACE,EAAE,IAAI,EAAE,YAAY,EAAE;IACtB,EAAE,IAAI,EAAE,YAAY,EAAE;IACtB,EAAE,IAAI,EAAE,YAAY,EAAE;IACtB,EAAE,IAAI,EAAE,aAAa,EAAE,QAAQ,EAAE,IAAI,EAAE;CACxC,CAAC;AAEJ,MAAM,CAAC,MAAM,2BAA2B,GACtC;IACE,EAAE,IAAI,EAAE,YAAY,EAAE,QAAQ,EAAE,IAAI,EAAE;IACtC,EAAE,IAAI,EAAE,YAAY,EAAE,QAAQ,EAAE,IAAI,EAAE;IACtC,EAAE,IAAI,EAAE,YAAY,EAAE,QAAQ,EAAE,IAAI,EAAE;IACtC,EAAE,IAAI,EAAE,aAAa,EAAE,QAAQ,EAAE,IAAI,EAAE;CACxC,CAAC"}
|
|
@@ -0,0 +1,99 @@
|
|
|
1
|
+
import { type PicZipCountryCountryCode } from "./PicZipCountry.js";
|
|
2
|
+
import { z } from "zod";
|
|
3
|
+
import type { KeyParams } from "./KeyParams.js";
|
|
4
|
+
/** Identifier type for public.pic_zip_codes */
|
|
5
|
+
export type PicZipCodesZipcode = string;
|
|
6
|
+
/** Identifier type for public.pic_zip_codes */
|
|
7
|
+
export type PicZipCodesPlace = string;
|
|
8
|
+
/** Represents the table public.pic_zip_codes */
|
|
9
|
+
export interface PicZipCodes {
|
|
10
|
+
country_code: PicZipCountryCountryCode;
|
|
11
|
+
zipcode: PicZipCodesZipcode;
|
|
12
|
+
place: PicZipCodesPlace;
|
|
13
|
+
state_code: string | null;
|
|
14
|
+
state_name: string | null;
|
|
15
|
+
province_code: string | null;
|
|
16
|
+
province_name: string | null;
|
|
17
|
+
community_code: string | null;
|
|
18
|
+
community_name: string | null;
|
|
19
|
+
latitude: number;
|
|
20
|
+
longitude: number;
|
|
21
|
+
imported_at: Date;
|
|
22
|
+
}
|
|
23
|
+
/** Represents the initializer for the table public.pic_zip_codes */
|
|
24
|
+
export interface PicZipCodesInitializer {
|
|
25
|
+
country_code: PicZipCountryCountryCode;
|
|
26
|
+
zipcode: PicZipCodesZipcode;
|
|
27
|
+
place: PicZipCodesPlace;
|
|
28
|
+
state_code?: string | null;
|
|
29
|
+
state_name?: string | null;
|
|
30
|
+
province_code?: string | null;
|
|
31
|
+
province_name?: string | null;
|
|
32
|
+
community_code?: string | null;
|
|
33
|
+
community_name?: string | null;
|
|
34
|
+
latitude: number;
|
|
35
|
+
longitude: number;
|
|
36
|
+
/** Default value: now() */
|
|
37
|
+
imported_at?: Date;
|
|
38
|
+
}
|
|
39
|
+
/** Represents the mutator for the table public.pic_zip_codes */
|
|
40
|
+
export interface PicZipCodesMutator {
|
|
41
|
+
country_code?: PicZipCountryCountryCode;
|
|
42
|
+
zipcode?: PicZipCodesZipcode;
|
|
43
|
+
place?: PicZipCodesPlace;
|
|
44
|
+
state_code?: string | null;
|
|
45
|
+
state_name?: string | null;
|
|
46
|
+
province_code?: string | null;
|
|
47
|
+
province_name?: string | null;
|
|
48
|
+
community_code?: string | null;
|
|
49
|
+
community_name?: string | null;
|
|
50
|
+
latitude?: number;
|
|
51
|
+
longitude?: number;
|
|
52
|
+
imported_at?: Date;
|
|
53
|
+
}
|
|
54
|
+
export declare const picZipCodesZipcode: z.Schema<PicZipCodesZipcode>;
|
|
55
|
+
export declare const picZipCodesPlace: z.Schema<PicZipCodesPlace>;
|
|
56
|
+
export declare const picZipCodes: z.Schema<PicZipCodes>;
|
|
57
|
+
export declare const picZipCodesInitializer: z.Schema<PicZipCodesInitializer>;
|
|
58
|
+
export declare const picZipCodesMutator: z.Schema<PicZipCodesMutator>;
|
|
59
|
+
/**
|
|
60
|
+
* Represents the initializer for the table public.pic_zip_codes
|
|
61
|
+
* Strict variant: optional properties are required and typed with an explicit `| undefined` instead of `?:`.
|
|
62
|
+
*/
|
|
63
|
+
export interface PicZipCodesInitializerStrict {
|
|
64
|
+
country_code: PicZipCountryCountryCode;
|
|
65
|
+
zipcode: PicZipCodesZipcode;
|
|
66
|
+
place: PicZipCodesPlace;
|
|
67
|
+
state_code: string | null | undefined;
|
|
68
|
+
state_name: string | null | undefined;
|
|
69
|
+
province_code: string | null | undefined;
|
|
70
|
+
province_name: string | null | undefined;
|
|
71
|
+
community_code: string | null | undefined;
|
|
72
|
+
community_name: string | null | undefined;
|
|
73
|
+
latitude: number;
|
|
74
|
+
longitude: number;
|
|
75
|
+
/** Default value: now() */
|
|
76
|
+
imported_at: Date | undefined;
|
|
77
|
+
}
|
|
78
|
+
/**
|
|
79
|
+
* Represents the mutator for the table public.pic_zip_codes
|
|
80
|
+
* Strict variant: optional properties are required and typed with an explicit `| undefined` instead of `?:`.
|
|
81
|
+
*/
|
|
82
|
+
export interface PicZipCodesMutatorStrict {
|
|
83
|
+
country_code: PicZipCountryCountryCode | undefined;
|
|
84
|
+
zipcode: PicZipCodesZipcode | undefined;
|
|
85
|
+
place: PicZipCodesPlace | undefined;
|
|
86
|
+
state_code: string | null | undefined;
|
|
87
|
+
state_name: string | null | undefined;
|
|
88
|
+
province_code: string | null | undefined;
|
|
89
|
+
province_name: string | null | undefined;
|
|
90
|
+
community_code: string | null | undefined;
|
|
91
|
+
community_name: string | null | undefined;
|
|
92
|
+
latitude: number | undefined;
|
|
93
|
+
longitude: number | undefined;
|
|
94
|
+
imported_at: Date | undefined;
|
|
95
|
+
}
|
|
96
|
+
export declare const picZipCodesKeys: KeyParams<PicZipCodes>[];
|
|
97
|
+
export declare const picZipCodesInitializerKeys: KeyParams<PicZipCodesInitializer>[];
|
|
98
|
+
export declare const picZipCodesMutatorKeys: KeyParams<PicZipCodesMutator>[];
|
|
99
|
+
//# sourceMappingURL=PicZipCodes.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"PicZipCodes.d.ts","sourceRoot":"","sources":["../../src/public/PicZipCodes.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,91 @@
|
|
|
1
|
+
// @generated
|
|
2
|
+
// This file is automatically generated by Kanel. Do not modify manually.
|
|
3
|
+
import { picZipCountryCountryCode, } from "./PicZipCountry.js";
|
|
4
|
+
import { z } from "zod";
|
|
5
|
+
export const picZipCodesZipcode = z.string();
|
|
6
|
+
export const picZipCodesPlace = z.string();
|
|
7
|
+
export const picZipCodes = z.object({
|
|
8
|
+
country_code: picZipCountryCountryCode,
|
|
9
|
+
zipcode: picZipCodesZipcode,
|
|
10
|
+
place: picZipCodesPlace,
|
|
11
|
+
state_code: z.string().nullable(),
|
|
12
|
+
state_name: z.string().nullable(),
|
|
13
|
+
province_code: z.string().nullable(),
|
|
14
|
+
province_name: z.string().nullable(),
|
|
15
|
+
community_code: z.string().nullable(),
|
|
16
|
+
community_name: z.string().nullable(),
|
|
17
|
+
latitude: z.number(),
|
|
18
|
+
longitude: z.number(),
|
|
19
|
+
imported_at: z.date(),
|
|
20
|
+
});
|
|
21
|
+
export const picZipCodesInitializer = z.object({
|
|
22
|
+
country_code: picZipCountryCountryCode,
|
|
23
|
+
zipcode: picZipCodesZipcode,
|
|
24
|
+
place: picZipCodesPlace,
|
|
25
|
+
state_code: z.string().optional().nullable(),
|
|
26
|
+
state_name: z.string().optional().nullable(),
|
|
27
|
+
province_code: z.string().optional().nullable(),
|
|
28
|
+
province_name: z.string().optional().nullable(),
|
|
29
|
+
community_code: z.string().optional().nullable(),
|
|
30
|
+
community_name: z.string().optional().nullable(),
|
|
31
|
+
latitude: z.number(),
|
|
32
|
+
longitude: z.number(),
|
|
33
|
+
imported_at: z.date().optional(),
|
|
34
|
+
});
|
|
35
|
+
export const picZipCodesMutator = z.object({
|
|
36
|
+
country_code: picZipCountryCountryCode.optional(),
|
|
37
|
+
zipcode: picZipCodesZipcode.optional(),
|
|
38
|
+
place: picZipCodesPlace.optional(),
|
|
39
|
+
state_code: z.string().optional().nullable(),
|
|
40
|
+
state_name: z.string().optional().nullable(),
|
|
41
|
+
province_code: z.string().optional().nullable(),
|
|
42
|
+
province_name: z.string().optional().nullable(),
|
|
43
|
+
community_code: z.string().optional().nullable(),
|
|
44
|
+
community_name: z.string().optional().nullable(),
|
|
45
|
+
latitude: z.number().optional(),
|
|
46
|
+
longitude: z.number().optional(),
|
|
47
|
+
imported_at: z.date().optional(),
|
|
48
|
+
});
|
|
49
|
+
export const picZipCodesKeys = [
|
|
50
|
+
{ name: "country_code" },
|
|
51
|
+
{ name: "zipcode" },
|
|
52
|
+
{ name: "place" },
|
|
53
|
+
{ name: "state_code", nullable: true },
|
|
54
|
+
{ name: "state_name", nullable: true },
|
|
55
|
+
{ name: "province_code", nullable: true },
|
|
56
|
+
{ name: "province_name", nullable: true },
|
|
57
|
+
{ name: "community_code", nullable: true },
|
|
58
|
+
{ name: "community_name", nullable: true },
|
|
59
|
+
{ name: "latitude" },
|
|
60
|
+
{ name: "longitude" },
|
|
61
|
+
{ name: "imported_at" },
|
|
62
|
+
];
|
|
63
|
+
export const picZipCodesInitializerKeys = [
|
|
64
|
+
{ name: "country_code" },
|
|
65
|
+
{ name: "zipcode" },
|
|
66
|
+
{ name: "place" },
|
|
67
|
+
{ name: "state_code", optional: true, nullable: true },
|
|
68
|
+
{ name: "state_name", optional: true, nullable: true },
|
|
69
|
+
{ name: "province_code", optional: true, nullable: true },
|
|
70
|
+
{ name: "province_name", optional: true, nullable: true },
|
|
71
|
+
{ name: "community_code", optional: true, nullable: true },
|
|
72
|
+
{ name: "community_name", optional: true, nullable: true },
|
|
73
|
+
{ name: "latitude" },
|
|
74
|
+
{ name: "longitude" },
|
|
75
|
+
{ name: "imported_at", optional: true },
|
|
76
|
+
];
|
|
77
|
+
export const picZipCodesMutatorKeys = [
|
|
78
|
+
{ name: "country_code", optional: true },
|
|
79
|
+
{ name: "zipcode", optional: true },
|
|
80
|
+
{ name: "place", optional: true },
|
|
81
|
+
{ name: "state_code", optional: true, nullable: true },
|
|
82
|
+
{ name: "state_name", optional: true, nullable: true },
|
|
83
|
+
{ name: "province_code", optional: true, nullable: true },
|
|
84
|
+
{ name: "province_name", optional: true, nullable: true },
|
|
85
|
+
{ name: "community_code", optional: true, nullable: true },
|
|
86
|
+
{ name: "community_name", optional: true, nullable: true },
|
|
87
|
+
{ name: "latitude", optional: true },
|
|
88
|
+
{ name: "longitude", optional: true },
|
|
89
|
+
{ name: "imported_at", optional: true },
|
|
90
|
+
];
|
|
91
|
+
//# sourceMappingURL=PicZipCodes.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"PicZipCodes.js","sourceRoot":"","sources":["../../src/public/PicZipCodes.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import { z } from "zod";
|
|
2
|
+
import type { KeyParams } from "./KeyParams.js";
|
|
3
|
+
/** Identifier type for public.pic_zip_country */
|
|
4
|
+
export type PicZipCountryCountryCode = string;
|
|
5
|
+
/** Represents the table public.pic_zip_country */
|
|
6
|
+
export interface PicZipCountry {
|
|
7
|
+
country_code: PicZipCountryCountryCode;
|
|
8
|
+
country_name: string;
|
|
9
|
+
}
|
|
10
|
+
/** Represents the initializer for the table public.pic_zip_country */
|
|
11
|
+
export interface PicZipCountryInitializer {
|
|
12
|
+
country_code: PicZipCountryCountryCode;
|
|
13
|
+
country_name: string;
|
|
14
|
+
}
|
|
15
|
+
/** Represents the mutator for the table public.pic_zip_country */
|
|
16
|
+
export interface PicZipCountryMutator {
|
|
17
|
+
country_code?: PicZipCountryCountryCode;
|
|
18
|
+
country_name?: string;
|
|
19
|
+
}
|
|
20
|
+
export declare const picZipCountryCountryCode: z.Schema<PicZipCountryCountryCode>;
|
|
21
|
+
export declare const picZipCountry: z.Schema<PicZipCountry>;
|
|
22
|
+
export declare const picZipCountryInitializer: z.Schema<PicZipCountryInitializer>;
|
|
23
|
+
export declare const picZipCountryMutator: z.Schema<PicZipCountryMutator>;
|
|
24
|
+
/**
|
|
25
|
+
* Represents the mutator for the table public.pic_zip_country
|
|
26
|
+
* Strict variant: optional properties are required and typed with an explicit `| undefined` instead of `?:`.
|
|
27
|
+
*/
|
|
28
|
+
export interface PicZipCountryMutatorStrict {
|
|
29
|
+
country_code: PicZipCountryCountryCode | undefined;
|
|
30
|
+
country_name: string | undefined;
|
|
31
|
+
}
|
|
32
|
+
export declare const picZipCountryKeys: KeyParams<PicZipCountry>[];
|
|
33
|
+
export declare const picZipCountryInitializerKeys: KeyParams<PicZipCountryInitializer>[];
|
|
34
|
+
export declare const picZipCountryMutatorKeys: KeyParams<PicZipCountryMutator>[];
|
|
35
|
+
//# sourceMappingURL=PicZipCountry.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"PicZipCountry.d.ts","sourceRoot":"","sources":["../../src/public/PicZipCountry.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AACxB,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,gBAAgB,CAAC;AAEhD,iDAAiD;AACjD,MAAM,MAAM,wBAAwB,GAAG,MAAM,CAAC;AAE9C,kDAAkD;AAClD,MAAM,WAAW,aAAa;IAC5B,YAAY,EAAE,wBAAwB,CAAC;IAEvC,YAAY,EAAE,MAAM,CAAC;CACtB;AAED,sEAAsE;AACtE,MAAM,WAAW,wBAAwB;IACvC,YAAY,EAAE,wBAAwB,CAAC;IAEvC,YAAY,EAAE,MAAM,CAAC;CACtB;AAED,kEAAkE;AAClE,MAAM,WAAW,oBAAoB;IACnC,YAAY,CAAC,EAAE,wBAAwB,CAAC;IAExC,YAAY,CAAC,EAAE,MAAM,CAAC;CACvB;AAED,eAAO,MAAM,wBAAwB,EACV,CAAC,CAAC,MAAM,CAAC,wBAAwB,CAAC,CAAC;AAE9D,eAAO,MAAM,aAAa,EAGT,CAAC,CAAC,MAAM,CAAC,aAAa,CAAC,CAAC;AAEzC,eAAO,MAAM,wBAAwB,EAGpB,CAAC,CAAC,MAAM,CAAC,wBAAwB,CAAC,CAAC;AAEpD,eAAO,MAAM,oBAAoB,EAGhB,CAAC,CAAC,MAAM,CAAC,oBAAoB,CAAC,CAAC;AAEhD;;;GAGG;AACH,MAAM,WAAW,0BAA0B;IACzC,YAAY,EAAE,wBAAwB,GAAG,SAAS,CAAC;IAEnD,YAAY,EAAE,MAAM,GAAG,SAAS,CAAC;CAClC;AAED,eAAO,MAAM,iBAAiB,EAAE,SAAS,CAAC,aAAa,CAAC,EAGvD,CAAC;AAEF,eAAO,MAAM,4BAA4B,EAAE,SAAS,CAAC,wBAAwB,CAAC,EACxB,CAAC;AAEvD,eAAO,MAAM,wBAAwB,EAAE,SAAS,CAAC,oBAAoB,CAAC,EAGrE,CAAC"}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
// @generated
|
|
2
|
+
// This file is automatically generated by Kanel. Do not modify manually.
|
|
3
|
+
import { z } from "zod";
|
|
4
|
+
export const picZipCountryCountryCode = z.string();
|
|
5
|
+
export const picZipCountry = z.object({
|
|
6
|
+
country_code: picZipCountryCountryCode,
|
|
7
|
+
country_name: z.string(),
|
|
8
|
+
});
|
|
9
|
+
export const picZipCountryInitializer = z.object({
|
|
10
|
+
country_code: picZipCountryCountryCode,
|
|
11
|
+
country_name: z.string(),
|
|
12
|
+
});
|
|
13
|
+
export const picZipCountryMutator = z.object({
|
|
14
|
+
country_code: picZipCountryCountryCode.optional(),
|
|
15
|
+
country_name: z.string().optional(),
|
|
16
|
+
});
|
|
17
|
+
export const picZipCountryKeys = [
|
|
18
|
+
{ name: "country_code" },
|
|
19
|
+
{ name: "country_name" },
|
|
20
|
+
];
|
|
21
|
+
export const picZipCountryInitializerKeys = [{ name: "country_code" }, { name: "country_name" }];
|
|
22
|
+
export const picZipCountryMutatorKeys = [
|
|
23
|
+
{ name: "country_code", optional: true },
|
|
24
|
+
{ name: "country_name", optional: true },
|
|
25
|
+
];
|
|
26
|
+
//# sourceMappingURL=PicZipCountry.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"PicZipCountry.js","sourceRoot":"","sources":["../../src/public/PicZipCountry.ts"],"names":[],"mappings":"AAAA,aAAa;AACb,yEAAyE;AAEzE,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AA2BxB,MAAM,CAAC,MAAM,wBAAwB,GACnC,CAAC,CAAC,MAAM,EAAmD,CAAC;AAE9D,MAAM,CAAC,MAAM,aAAa,GAAG,CAAC,CAAC,MAAM,CAAC;IACpC,YAAY,EAAE,wBAAwB;IACtC,YAAY,EAAE,CAAC,CAAC,MAAM,EAAE;CACzB,CAAuC,CAAC;AAEzC,MAAM,CAAC,MAAM,wBAAwB,GAAG,CAAC,CAAC,MAAM,CAAC;IAC/C,YAAY,EAAE,wBAAwB;IACtC,YAAY,EAAE,CAAC,CAAC,MAAM,EAAE;CACzB,CAAkD,CAAC;AAEpD,MAAM,CAAC,MAAM,oBAAoB,GAAG,CAAC,CAAC,MAAM,CAAC;IAC3C,YAAY,EAAE,wBAAwB,CAAC,QAAQ,EAAE;IACjD,YAAY,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;CACpC,CAA8C,CAAC;AAYhD,MAAM,CAAC,MAAM,iBAAiB,GAA+B;IAC3D,EAAE,IAAI,EAAE,cAAc,EAAE;IACxB,EAAE,IAAI,EAAE,cAAc,EAAE;CACzB,CAAC;AAEF,MAAM,CAAC,MAAM,4BAA4B,GACvC,CAAC,EAAE,IAAI,EAAE,cAAc,EAAE,EAAE,EAAE,IAAI,EAAE,cAAc,EAAE,CAAC,CAAC;AAEvD,MAAM,CAAC,MAAM,wBAAwB,GAAsC;IACzE,EAAE,IAAI,EAAE,cAAc,EAAE,QAAQ,EAAE,IAAI,EAAE;IACxC,EAAE,IAAI,EAAE,cAAc,EAAE,QAAQ,EAAE,IAAI,EAAE;CACzC,CAAC"}
|
|
@@ -0,0 +1,85 @@
|
|
|
1
|
+
import { z } from "zod";
|
|
2
|
+
import type { KeyParams } from "./KeyParams.js";
|
|
3
|
+
/** Represents the table public.pic_zip_import */
|
|
4
|
+
export interface PicZipImport {
|
|
5
|
+
country_code: string | null;
|
|
6
|
+
zipcode: string | null;
|
|
7
|
+
place: string | null;
|
|
8
|
+
state: string | null;
|
|
9
|
+
state_code: string | null;
|
|
10
|
+
province: string | null;
|
|
11
|
+
province_code: string | null;
|
|
12
|
+
community: string | null;
|
|
13
|
+
community_code: string | null;
|
|
14
|
+
latitude: string | null;
|
|
15
|
+
longitude: string | null;
|
|
16
|
+
}
|
|
17
|
+
/** Represents the initializer for the table public.pic_zip_import */
|
|
18
|
+
export interface PicZipImportInitializer {
|
|
19
|
+
country_code?: string | null;
|
|
20
|
+
zipcode?: string | null;
|
|
21
|
+
place?: string | null;
|
|
22
|
+
state?: string | null;
|
|
23
|
+
state_code?: string | null;
|
|
24
|
+
province?: string | null;
|
|
25
|
+
province_code?: string | null;
|
|
26
|
+
community?: string | null;
|
|
27
|
+
community_code?: string | null;
|
|
28
|
+
latitude?: string | null;
|
|
29
|
+
longitude?: string | null;
|
|
30
|
+
}
|
|
31
|
+
/** Represents the mutator for the table public.pic_zip_import */
|
|
32
|
+
export interface PicZipImportMutator {
|
|
33
|
+
country_code?: string | null;
|
|
34
|
+
zipcode?: string | null;
|
|
35
|
+
place?: string | null;
|
|
36
|
+
state?: string | null;
|
|
37
|
+
state_code?: string | null;
|
|
38
|
+
province?: string | null;
|
|
39
|
+
province_code?: string | null;
|
|
40
|
+
community?: string | null;
|
|
41
|
+
community_code?: string | null;
|
|
42
|
+
latitude?: string | null;
|
|
43
|
+
longitude?: string | null;
|
|
44
|
+
}
|
|
45
|
+
export declare const picZipImport: z.Schema<PicZipImport>;
|
|
46
|
+
export declare const picZipImportInitializer: z.Schema<PicZipImportInitializer>;
|
|
47
|
+
export declare const picZipImportMutator: z.Schema<PicZipImportMutator>;
|
|
48
|
+
/**
|
|
49
|
+
* Represents the initializer for the table public.pic_zip_import
|
|
50
|
+
* Strict variant: optional properties are required and typed with an explicit `| undefined` instead of `?:`.
|
|
51
|
+
*/
|
|
52
|
+
export interface PicZipImportInitializerStrict {
|
|
53
|
+
country_code: string | null | undefined;
|
|
54
|
+
zipcode: string | null | undefined;
|
|
55
|
+
place: string | null | undefined;
|
|
56
|
+
state: string | null | undefined;
|
|
57
|
+
state_code: string | null | undefined;
|
|
58
|
+
province: string | null | undefined;
|
|
59
|
+
province_code: string | null | undefined;
|
|
60
|
+
community: string | null | undefined;
|
|
61
|
+
community_code: string | null | undefined;
|
|
62
|
+
latitude: string | null | undefined;
|
|
63
|
+
longitude: string | null | undefined;
|
|
64
|
+
}
|
|
65
|
+
/**
|
|
66
|
+
* Represents the mutator for the table public.pic_zip_import
|
|
67
|
+
* Strict variant: optional properties are required and typed with an explicit `| undefined` instead of `?:`.
|
|
68
|
+
*/
|
|
69
|
+
export interface PicZipImportMutatorStrict {
|
|
70
|
+
country_code: string | null | undefined;
|
|
71
|
+
zipcode: string | null | undefined;
|
|
72
|
+
place: string | null | undefined;
|
|
73
|
+
state: string | null | undefined;
|
|
74
|
+
state_code: string | null | undefined;
|
|
75
|
+
province: string | null | undefined;
|
|
76
|
+
province_code: string | null | undefined;
|
|
77
|
+
community: string | null | undefined;
|
|
78
|
+
community_code: string | null | undefined;
|
|
79
|
+
latitude: string | null | undefined;
|
|
80
|
+
longitude: string | null | undefined;
|
|
81
|
+
}
|
|
82
|
+
export declare const picZipImportKeys: KeyParams<PicZipImport>[];
|
|
83
|
+
export declare const picZipImportInitializerKeys: KeyParams<PicZipImportInitializer>[];
|
|
84
|
+
export declare const picZipImportMutatorKeys: KeyParams<PicZipImportMutator>[];
|
|
85
|
+
//# sourceMappingURL=PicZipImport.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"PicZipImport.d.ts","sourceRoot":"","sources":["../../src/public/PicZipImport.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,82 @@
|
|
|
1
|
+
// @generated
|
|
2
|
+
// This file is automatically generated by Kanel. Do not modify manually.
|
|
3
|
+
import { z } from "zod";
|
|
4
|
+
export const picZipImport = z.object({
|
|
5
|
+
country_code: z.string().nullable(),
|
|
6
|
+
zipcode: z.string().nullable(),
|
|
7
|
+
place: z.string().nullable(),
|
|
8
|
+
state: z.string().nullable(),
|
|
9
|
+
state_code: z.string().nullable(),
|
|
10
|
+
province: z.string().nullable(),
|
|
11
|
+
province_code: z.string().nullable(),
|
|
12
|
+
community: z.string().nullable(),
|
|
13
|
+
community_code: z.string().nullable(),
|
|
14
|
+
latitude: z.string().nullable(),
|
|
15
|
+
longitude: z.string().nullable(),
|
|
16
|
+
});
|
|
17
|
+
export const picZipImportInitializer = z.object({
|
|
18
|
+
country_code: z.string().optional().nullable(),
|
|
19
|
+
zipcode: z.string().optional().nullable(),
|
|
20
|
+
place: z.string().optional().nullable(),
|
|
21
|
+
state: z.string().optional().nullable(),
|
|
22
|
+
state_code: z.string().optional().nullable(),
|
|
23
|
+
province: z.string().optional().nullable(),
|
|
24
|
+
province_code: z.string().optional().nullable(),
|
|
25
|
+
community: z.string().optional().nullable(),
|
|
26
|
+
community_code: z.string().optional().nullable(),
|
|
27
|
+
latitude: z.string().optional().nullable(),
|
|
28
|
+
longitude: z.string().optional().nullable(),
|
|
29
|
+
});
|
|
30
|
+
export const picZipImportMutator = z.object({
|
|
31
|
+
country_code: z.string().optional().nullable(),
|
|
32
|
+
zipcode: z.string().optional().nullable(),
|
|
33
|
+
place: z.string().optional().nullable(),
|
|
34
|
+
state: z.string().optional().nullable(),
|
|
35
|
+
state_code: z.string().optional().nullable(),
|
|
36
|
+
province: z.string().optional().nullable(),
|
|
37
|
+
province_code: z.string().optional().nullable(),
|
|
38
|
+
community: z.string().optional().nullable(),
|
|
39
|
+
community_code: z.string().optional().nullable(),
|
|
40
|
+
latitude: z.string().optional().nullable(),
|
|
41
|
+
longitude: z.string().optional().nullable(),
|
|
42
|
+
});
|
|
43
|
+
export const picZipImportKeys = [
|
|
44
|
+
{ name: "country_code", nullable: true },
|
|
45
|
+
{ name: "zipcode", nullable: true },
|
|
46
|
+
{ name: "place", nullable: true },
|
|
47
|
+
{ name: "state", nullable: true },
|
|
48
|
+
{ name: "state_code", nullable: true },
|
|
49
|
+
{ name: "province", nullable: true },
|
|
50
|
+
{ name: "province_code", nullable: true },
|
|
51
|
+
{ name: "community", nullable: true },
|
|
52
|
+
{ name: "community_code", nullable: true },
|
|
53
|
+
{ name: "latitude", nullable: true },
|
|
54
|
+
{ name: "longitude", nullable: true },
|
|
55
|
+
];
|
|
56
|
+
export const picZipImportInitializerKeys = [
|
|
57
|
+
{ name: "country_code", optional: true, nullable: true },
|
|
58
|
+
{ name: "zipcode", optional: true, nullable: true },
|
|
59
|
+
{ name: "place", optional: true, nullable: true },
|
|
60
|
+
{ name: "state", optional: true, nullable: true },
|
|
61
|
+
{ name: "state_code", optional: true, nullable: true },
|
|
62
|
+
{ name: "province", optional: true, nullable: true },
|
|
63
|
+
{ name: "province_code", optional: true, nullable: true },
|
|
64
|
+
{ name: "community", optional: true, nullable: true },
|
|
65
|
+
{ name: "community_code", optional: true, nullable: true },
|
|
66
|
+
{ name: "latitude", optional: true, nullable: true },
|
|
67
|
+
{ name: "longitude", optional: true, nullable: true },
|
|
68
|
+
];
|
|
69
|
+
export const picZipImportMutatorKeys = [
|
|
70
|
+
{ name: "country_code", optional: true, nullable: true },
|
|
71
|
+
{ name: "zipcode", optional: true, nullable: true },
|
|
72
|
+
{ name: "place", optional: true, nullable: true },
|
|
73
|
+
{ name: "state", optional: true, nullable: true },
|
|
74
|
+
{ name: "state_code", optional: true, nullable: true },
|
|
75
|
+
{ name: "province", optional: true, nullable: true },
|
|
76
|
+
{ name: "province_code", optional: true, nullable: true },
|
|
77
|
+
{ name: "community", optional: true, nullable: true },
|
|
78
|
+
{ name: "community_code", optional: true, nullable: true },
|
|
79
|
+
{ name: "latitude", optional: true, nullable: true },
|
|
80
|
+
{ name: "longitude", optional: true, nullable: true },
|
|
81
|
+
];
|
|
82
|
+
//# sourceMappingURL=PicZipImport.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"PicZipImport.js","sourceRoot":"","sources":["../../src/public/PicZipImport.ts"],"names":[],"mappings":"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"}
|
package/dist/public/index.d.ts
CHANGED
|
@@ -10,11 +10,16 @@ export * from "./KeyParams.js";
|
|
|
10
10
|
export * from "./PicChargers.js";
|
|
11
11
|
export * from "./PicChargingProcessLinks.js";
|
|
12
12
|
export * from "./PicChargingProcessStates.js";
|
|
13
|
+
export * from "./PicCluster.js";
|
|
14
|
+
export * from "./PicClusterMember.js";
|
|
13
15
|
export * from "./PicInvoiceFiles.js";
|
|
14
16
|
export * from "./PicInvoiceMissingStates.js";
|
|
15
17
|
export * from "./PicInvoices.js";
|
|
16
18
|
export * from "./PicPricebooks.js";
|
|
17
19
|
export * from "./PicSlugs.js";
|
|
20
|
+
export * from "./PicZipCodes.js";
|
|
21
|
+
export * from "./PicZipCountry.js";
|
|
22
|
+
export * from "./PicZipImport.js";
|
|
18
23
|
export * from "./Positions.js";
|
|
19
24
|
export * from "./Range.js";
|
|
20
25
|
export * from "./SchemaMigrations.js";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/public/index.ts"],"names":[],"mappings":"AACA,cAAc,gBAAgB,CAAC;AAC/B,cAAc,kBAAkB,CAAC;AACjC,cAAc,kBAAkB,CAAC;AACjC,cAAc,WAAW,CAAC;AAC1B,cAAc,cAAc,CAAC;AAC7B,cAAc,wBAAwB,CAAC;AACvC,cAAc,aAAa,CAAC;AAC5B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,kBAAkB,CAAC;AACjC,cAAc,8BAA8B,CAAC;AAC7C,cAAc,+BAA+B,CAAC;AAC9C,cAAc,sBAAsB,CAAC;AACrC,cAAc,8BAA8B,CAAC;AAC7C,cAAc,kBAAkB,CAAC;AACjC,cAAc,oBAAoB,CAAC;AACnC,cAAc,eAAe,CAAC;AAC9B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,YAAY,CAAC;AAC3B,cAAc,uBAAuB,CAAC;AACtC,cAAc,eAAe,CAAC;AAC9B,cAAc,aAAa,CAAC;AAC5B,cAAc,mBAAmB,CAAC;AAClC,cAAc,mBAAmB,CAAC;AAClC,cAAc,qBAAqB,CAAC;AACpC,cAAc,wBAAwB,CAAC;AACvC,cAAc,cAAc,CAAC"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/public/index.ts"],"names":[],"mappings":"AACA,cAAc,gBAAgB,CAAC;AAC/B,cAAc,kBAAkB,CAAC;AACjC,cAAc,kBAAkB,CAAC;AACjC,cAAc,WAAW,CAAC;AAC1B,cAAc,cAAc,CAAC;AAC7B,cAAc,wBAAwB,CAAC;AACvC,cAAc,aAAa,CAAC;AAC5B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,kBAAkB,CAAC;AACjC,cAAc,8BAA8B,CAAC;AAC7C,cAAc,+BAA+B,CAAC;AAC9C,cAAc,iBAAiB,CAAC;AAChC,cAAc,uBAAuB,CAAC;AACtC,cAAc,sBAAsB,CAAC;AACrC,cAAc,8BAA8B,CAAC;AAC7C,cAAc,kBAAkB,CAAC;AACjC,cAAc,oBAAoB,CAAC;AACnC,cAAc,eAAe,CAAC;AAC9B,cAAc,kBAAkB,CAAC;AACjC,cAAc,oBAAoB,CAAC;AACnC,cAAc,mBAAmB,CAAC;AAClC,cAAc,gBAAgB,CAAC;AAC/B,cAAc,YAAY,CAAC;AAC3B,cAAc,uBAAuB,CAAC;AACtC,cAAc,eAAe,CAAC;AAC9B,cAAc,aAAa,CAAC;AAC5B,cAAc,mBAAmB,CAAC;AAClC,cAAc,mBAAmB,CAAC;AAClC,cAAc,qBAAqB,CAAC;AACpC,cAAc,wBAAwB,CAAC;AACvC,cAAc,cAAc,CAAC"}
|
package/dist/public/index.js
CHANGED
|
@@ -11,11 +11,16 @@ export * from "./KeyParams.js";
|
|
|
11
11
|
export * from "./PicChargers.js";
|
|
12
12
|
export * from "./PicChargingProcessLinks.js";
|
|
13
13
|
export * from "./PicChargingProcessStates.js";
|
|
14
|
+
export * from "./PicCluster.js";
|
|
15
|
+
export * from "./PicClusterMember.js";
|
|
14
16
|
export * from "./PicInvoiceFiles.js";
|
|
15
17
|
export * from "./PicInvoiceMissingStates.js";
|
|
16
18
|
export * from "./PicInvoices.js";
|
|
17
19
|
export * from "./PicPricebooks.js";
|
|
18
20
|
export * from "./PicSlugs.js";
|
|
21
|
+
export * from "./PicZipCodes.js";
|
|
22
|
+
export * from "./PicZipCountry.js";
|
|
23
|
+
export * from "./PicZipImport.js";
|
|
19
24
|
export * from "./Positions.js";
|
|
20
25
|
export * from "./Range.js";
|
|
21
26
|
export * from "./SchemaMigrations.js";
|
package/dist/public/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/public/index.ts"],"names":[],"mappings":"AAAA,kEAAkE;AAClE,cAAc,gBAAgB,CAAC;AAC/B,cAAc,kBAAkB,CAAC;AACjC,cAAc,kBAAkB,CAAC;AACjC,cAAc,WAAW,CAAC;AAC1B,cAAc,cAAc,CAAC;AAC7B,cAAc,wBAAwB,CAAC;AACvC,cAAc,aAAa,CAAC;AAC5B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,kBAAkB,CAAC;AACjC,cAAc,8BAA8B,CAAC;AAC7C,cAAc,+BAA+B,CAAC;AAC9C,cAAc,sBAAsB,CAAC;AACrC,cAAc,8BAA8B,CAAC;AAC7C,cAAc,kBAAkB,CAAC;AACjC,cAAc,oBAAoB,CAAC;AACnC,cAAc,eAAe,CAAC;AAC9B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,YAAY,CAAC;AAC3B,cAAc,uBAAuB,CAAC;AACtC,cAAc,eAAe,CAAC;AAC9B,cAAc,aAAa,CAAC;AAC5B,cAAc,mBAAmB,CAAC;AAClC,cAAc,mBAAmB,CAAC;AAClC,cAAc,qBAAqB,CAAC;AACpC,cAAc,wBAAwB,CAAC;AACvC,cAAc,cAAc,CAAC"}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/public/index.ts"],"names":[],"mappings":"AAAA,kEAAkE;AAClE,cAAc,gBAAgB,CAAC;AAC/B,cAAc,kBAAkB,CAAC;AACjC,cAAc,kBAAkB,CAAC;AACjC,cAAc,WAAW,CAAC;AAC1B,cAAc,cAAc,CAAC;AAC7B,cAAc,wBAAwB,CAAC;AACvC,cAAc,aAAa,CAAC;AAC5B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,kBAAkB,CAAC;AACjC,cAAc,8BAA8B,CAAC;AAC7C,cAAc,+BAA+B,CAAC;AAC9C,cAAc,iBAAiB,CAAC;AAChC,cAAc,uBAAuB,CAAC;AACtC,cAAc,sBAAsB,CAAC;AACrC,cAAc,8BAA8B,CAAC;AAC7C,cAAc,kBAAkB,CAAC;AACjC,cAAc,oBAAoB,CAAC;AACnC,cAAc,eAAe,CAAC;AAC9B,cAAc,kBAAkB,CAAC;AACjC,cAAc,oBAAoB,CAAC;AACnC,cAAc,mBAAmB,CAAC;AAClC,cAAc,gBAAgB,CAAC;AAC/B,cAAc,YAAY,CAAC;AAC3B,cAAc,uBAAuB,CAAC;AACtC,cAAc,eAAe,CAAC;AAC9B,cAAc,aAAa,CAAC;AAC5B,cAAc,mBAAmB,CAAC;AAClC,cAAc,mBAAmB,CAAC;AAClC,cAAc,qBAAqB,CAAC;AACpC,cAAc,wBAAwB,CAAC;AACvC,cAAc,cAAc,CAAC"}
|