@mxpicture/tesla-superchargers-generated 0.1.51 → 0.1.52
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/PicAddressType.d.ts +11 -0
- package/dist/public/PicAddressType.d.ts.map +1 -0
- package/dist/public/PicAddressType.js +11 -0
- package/dist/public/PicAddressType.js.map +1 -0
- package/dist/public/PicRefType.d.ts +10 -0
- package/dist/public/PicRefType.d.ts.map +1 -0
- package/dist/public/PicRefType.js +6 -0
- package/dist/public/PicRefType.js.map +1 -0
- package/dist/public/PicRefs.d.ts +156 -0
- package/dist/public/PicRefs.d.ts.map +1 -0
- package/dist/public/PicRefs.js +179 -0
- package/dist/public/PicRefs.js.map +1 -0
- package/dist/public/index.d.ts +3 -0
- package/dist/public/index.d.ts.map +1 -1
- package/dist/public/index.js +3 -0
- package/dist/public/index.js.map +1 -1
- package/package.json +1 -1
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { z } from "zod";
|
|
2
|
+
/** Represents the enum public.pic_address_type */
|
|
3
|
+
export type PicAddressType = "geofence" | "cluster" | "address" | "position";
|
|
4
|
+
/** Zod schema for pic_address_type */
|
|
5
|
+
export declare const picAddressType: z.ZodEnum<{
|
|
6
|
+
geofence: "geofence";
|
|
7
|
+
cluster: "cluster";
|
|
8
|
+
address: "address";
|
|
9
|
+
position: "position";
|
|
10
|
+
}>;
|
|
11
|
+
//# sourceMappingURL=PicAddressType.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"PicAddressType.d.ts","sourceRoot":"","sources":["../../src/public/PicAddressType.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAExB,kDAAkD;AAClD,MAAM,MAAM,cAAc,GAAG,UAAU,GAAG,SAAS,GAAG,SAAS,GAAG,UAAU,CAAC;AAE7E,sCAAsC;AACtC,eAAO,MAAM,cAAc;;;;;EAKzB,CAAC"}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
// @generated
|
|
2
|
+
// This file is automatically generated by Kanel. Do not modify manually.
|
|
3
|
+
import { z } from "zod";
|
|
4
|
+
/** Zod schema for pic_address_type */
|
|
5
|
+
export const picAddressType = z.enum([
|
|
6
|
+
"geofence",
|
|
7
|
+
"cluster",
|
|
8
|
+
"address",
|
|
9
|
+
"position",
|
|
10
|
+
]);
|
|
11
|
+
//# sourceMappingURL=PicAddressType.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"PicAddressType.js","sourceRoot":"","sources":["../../src/public/PicAddressType.ts"],"names":[],"mappings":"AAAA,aAAa;AACb,yEAAyE;AAEzE,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAKxB,sCAAsC;AACtC,MAAM,CAAC,MAAM,cAAc,GAAG,CAAC,CAAC,IAAI,CAAC;IACnC,UAAU;IACV,SAAS;IACT,SAAS;IACT,UAAU;CACX,CAAC,CAAC"}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { z } from "zod";
|
|
2
|
+
/** Represents the enum public.pic_ref_type */
|
|
3
|
+
export type PicRefType = "drive" | "charge" | "idle";
|
|
4
|
+
/** Zod schema for pic_ref_type */
|
|
5
|
+
export declare const picRefType: z.ZodEnum<{
|
|
6
|
+
drive: "drive";
|
|
7
|
+
charge: "charge";
|
|
8
|
+
idle: "idle";
|
|
9
|
+
}>;
|
|
10
|
+
//# sourceMappingURL=PicRefType.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"PicRefType.d.ts","sourceRoot":"","sources":["../../src/public/PicRefType.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAExB,8CAA8C;AAC9C,MAAM,MAAM,UAAU,GAAG,OAAO,GAAG,QAAQ,GAAG,MAAM,CAAC;AAErD,kCAAkC;AAClC,eAAO,MAAM,UAAU;;;;EAAsC,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"PicRefType.js","sourceRoot":"","sources":["../../src/public/PicRefType.ts"],"names":[],"mappings":"AAAA,aAAa;AACb,yEAAyE;AAEzE,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAKxB,kCAAkC;AAClC,MAAM,CAAC,MAAM,UAAU,GAAG,CAAC,CAAC,IAAI,CAAC,CAAC,OAAO,EAAE,QAAQ,EAAE,MAAM,CAAC,CAAC,CAAC"}
|
|
@@ -0,0 +1,156 @@
|
|
|
1
|
+
import { type PicRefType } from "./PicRefType.js";
|
|
2
|
+
import { z } from "zod";
|
|
3
|
+
import type { KeyParams } from "./KeyParams.js";
|
|
4
|
+
/** Identifier type for public.pic_refs */
|
|
5
|
+
export type PicRefsRefType = PicRefType;
|
|
6
|
+
/** Identifier type for public.pic_refs */
|
|
7
|
+
export type PicRefsRefId = number;
|
|
8
|
+
/** Represents the table public.pic_refs */
|
|
9
|
+
export interface PicRefs {
|
|
10
|
+
ref_type: PicRefsRefType;
|
|
11
|
+
ref_id: PicRefsRefId;
|
|
12
|
+
car_id: number;
|
|
13
|
+
created_at: Date;
|
|
14
|
+
start_date: Date;
|
|
15
|
+
end_date: Date;
|
|
16
|
+
start_range_km: string;
|
|
17
|
+
end_range_km: string;
|
|
18
|
+
prev_type: PicRefType | null;
|
|
19
|
+
prev_id: number | null;
|
|
20
|
+
next_type: PicRefType | null;
|
|
21
|
+
next_id: number | null;
|
|
22
|
+
start_position_id: number | null;
|
|
23
|
+
end_position_id: number | null;
|
|
24
|
+
start_address_id: number | null;
|
|
25
|
+
end_address_id: number | null;
|
|
26
|
+
start_geofence_id: number | null;
|
|
27
|
+
end_geofence_id: number | null;
|
|
28
|
+
efficiency: string;
|
|
29
|
+
real_km: string | null;
|
|
30
|
+
used_cp_ids: number[] | null;
|
|
31
|
+
cost: string | null;
|
|
32
|
+
hours: string | null;
|
|
33
|
+
mean_draw_kw: string | null;
|
|
34
|
+
dropped_km: string | null;
|
|
35
|
+
dropped_kwh: string | null;
|
|
36
|
+
kwh_per_real_1km: string | null;
|
|
37
|
+
cost_per_real_100km: string | null;
|
|
38
|
+
cost_per_kwh: string | null;
|
|
39
|
+
}
|
|
40
|
+
/** Represents the initializer for the table public.pic_refs */
|
|
41
|
+
export interface PicRefsInitializer {
|
|
42
|
+
ref_type: PicRefsRefType;
|
|
43
|
+
ref_id: PicRefsRefId;
|
|
44
|
+
car_id: number;
|
|
45
|
+
/** Default value: now() */
|
|
46
|
+
created_at?: Date;
|
|
47
|
+
start_date: Date;
|
|
48
|
+
end_date: Date;
|
|
49
|
+
start_range_km: string;
|
|
50
|
+
end_range_km: string;
|
|
51
|
+
prev_type?: PicRefType | null;
|
|
52
|
+
prev_id?: number | null;
|
|
53
|
+
next_type?: PicRefType | null;
|
|
54
|
+
next_id?: number | null;
|
|
55
|
+
start_position_id?: number | null;
|
|
56
|
+
end_position_id?: number | null;
|
|
57
|
+
start_address_id?: number | null;
|
|
58
|
+
end_address_id?: number | null;
|
|
59
|
+
start_geofence_id?: number | null;
|
|
60
|
+
end_geofence_id?: number | null;
|
|
61
|
+
efficiency: string;
|
|
62
|
+
real_km?: string | null;
|
|
63
|
+
used_cp_ids?: number[] | null;
|
|
64
|
+
cost?: string | null;
|
|
65
|
+
}
|
|
66
|
+
/** Represents the mutator for the table public.pic_refs */
|
|
67
|
+
export interface PicRefsMutator {
|
|
68
|
+
ref_type?: PicRefsRefType;
|
|
69
|
+
ref_id?: PicRefsRefId;
|
|
70
|
+
car_id?: number;
|
|
71
|
+
created_at?: Date;
|
|
72
|
+
start_date?: Date;
|
|
73
|
+
end_date?: Date;
|
|
74
|
+
start_range_km?: string;
|
|
75
|
+
end_range_km?: string;
|
|
76
|
+
prev_type?: PicRefType | null;
|
|
77
|
+
prev_id?: number | null;
|
|
78
|
+
next_type?: PicRefType | null;
|
|
79
|
+
next_id?: number | null;
|
|
80
|
+
start_position_id?: number | null;
|
|
81
|
+
end_position_id?: number | null;
|
|
82
|
+
start_address_id?: number | null;
|
|
83
|
+
end_address_id?: number | null;
|
|
84
|
+
start_geofence_id?: number | null;
|
|
85
|
+
end_geofence_id?: number | null;
|
|
86
|
+
efficiency?: string;
|
|
87
|
+
real_km?: string | null;
|
|
88
|
+
used_cp_ids?: number[] | null;
|
|
89
|
+
cost?: string | null;
|
|
90
|
+
}
|
|
91
|
+
export declare const picRefsRefType: z.Schema<PicRefsRefType>;
|
|
92
|
+
export declare const picRefsRefId: z.Schema<PicRefsRefId>;
|
|
93
|
+
export declare const picRefs: z.Schema<PicRefs>;
|
|
94
|
+
export declare const picRefsInitializer: z.Schema<PicRefsInitializer>;
|
|
95
|
+
export declare const picRefsMutator: z.Schema<PicRefsMutator>;
|
|
96
|
+
/**
|
|
97
|
+
* Represents the initializer for the table public.pic_refs
|
|
98
|
+
* Strict variant: optional properties are required and typed with an explicit `| undefined` instead of `?:`.
|
|
99
|
+
*/
|
|
100
|
+
export interface PicRefsInitializerStrict {
|
|
101
|
+
ref_type: PicRefsRefType;
|
|
102
|
+
ref_id: PicRefsRefId;
|
|
103
|
+
car_id: number;
|
|
104
|
+
/** Default value: now() */
|
|
105
|
+
created_at: Date | undefined;
|
|
106
|
+
start_date: Date;
|
|
107
|
+
end_date: Date;
|
|
108
|
+
start_range_km: string;
|
|
109
|
+
end_range_km: string;
|
|
110
|
+
prev_type: PicRefType | null | undefined;
|
|
111
|
+
prev_id: number | null | undefined;
|
|
112
|
+
next_type: PicRefType | null | undefined;
|
|
113
|
+
next_id: number | null | undefined;
|
|
114
|
+
start_position_id: number | null | undefined;
|
|
115
|
+
end_position_id: number | null | undefined;
|
|
116
|
+
start_address_id: number | null | undefined;
|
|
117
|
+
end_address_id: number | null | undefined;
|
|
118
|
+
start_geofence_id: number | null | undefined;
|
|
119
|
+
end_geofence_id: number | null | undefined;
|
|
120
|
+
efficiency: string;
|
|
121
|
+
real_km: string | null | undefined;
|
|
122
|
+
used_cp_ids: number[] | null | undefined;
|
|
123
|
+
cost: string | null | undefined;
|
|
124
|
+
}
|
|
125
|
+
/**
|
|
126
|
+
* Represents the mutator for the table public.pic_refs
|
|
127
|
+
* Strict variant: optional properties are required and typed with an explicit `| undefined` instead of `?:`.
|
|
128
|
+
*/
|
|
129
|
+
export interface PicRefsMutatorStrict {
|
|
130
|
+
ref_type: PicRefsRefType | undefined;
|
|
131
|
+
ref_id: PicRefsRefId | undefined;
|
|
132
|
+
car_id: number | undefined;
|
|
133
|
+
created_at: Date | undefined;
|
|
134
|
+
start_date: Date | undefined;
|
|
135
|
+
end_date: Date | undefined;
|
|
136
|
+
start_range_km: string | undefined;
|
|
137
|
+
end_range_km: string | undefined;
|
|
138
|
+
prev_type: PicRefType | null | undefined;
|
|
139
|
+
prev_id: number | null | undefined;
|
|
140
|
+
next_type: PicRefType | null | undefined;
|
|
141
|
+
next_id: number | null | undefined;
|
|
142
|
+
start_position_id: number | null | undefined;
|
|
143
|
+
end_position_id: number | null | undefined;
|
|
144
|
+
start_address_id: number | null | undefined;
|
|
145
|
+
end_address_id: number | null | undefined;
|
|
146
|
+
start_geofence_id: number | null | undefined;
|
|
147
|
+
end_geofence_id: number | null | undefined;
|
|
148
|
+
efficiency: string | undefined;
|
|
149
|
+
real_km: string | null | undefined;
|
|
150
|
+
used_cp_ids: number[] | null | undefined;
|
|
151
|
+
cost: string | null | undefined;
|
|
152
|
+
}
|
|
153
|
+
export declare const picRefsKeys: KeyParams<PicRefs>[];
|
|
154
|
+
export declare const picRefsInitializerKeys: KeyParams<PicRefsInitializer>[];
|
|
155
|
+
export declare const picRefsMutatorKeys: KeyParams<PicRefsMutator>[];
|
|
156
|
+
//# sourceMappingURL=PicRefs.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"PicRefs.d.ts","sourceRoot":"","sources":["../../src/public/PicRefs.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,179 @@
|
|
|
1
|
+
// @generated
|
|
2
|
+
// This file is automatically generated by Kanel. Do not modify manually.
|
|
3
|
+
import { picRefType } from "./PicRefType.js";
|
|
4
|
+
import { z } from "zod";
|
|
5
|
+
export const picRefsRefType = picRefType;
|
|
6
|
+
export const picRefsRefId = z.number();
|
|
7
|
+
export const picRefs = z.object({
|
|
8
|
+
ref_type: picRefsRefType,
|
|
9
|
+
ref_id: picRefsRefId,
|
|
10
|
+
car_id: z.number(),
|
|
11
|
+
created_at: z.date(),
|
|
12
|
+
start_date: z.date(),
|
|
13
|
+
end_date: z.date(),
|
|
14
|
+
start_range_km: z.string(),
|
|
15
|
+
end_range_km: z.string(),
|
|
16
|
+
prev_type: picRefType.nullable(),
|
|
17
|
+
prev_id: z.number().nullable(),
|
|
18
|
+
next_type: picRefType.nullable(),
|
|
19
|
+
next_id: z.number().nullable(),
|
|
20
|
+
start_position_id: z.number().nullable(),
|
|
21
|
+
end_position_id: z.number().nullable(),
|
|
22
|
+
start_address_id: z.number().nullable(),
|
|
23
|
+
end_address_id: z.number().nullable(),
|
|
24
|
+
start_geofence_id: z.number().nullable(),
|
|
25
|
+
end_geofence_id: z.number().nullable(),
|
|
26
|
+
efficiency: z.string(),
|
|
27
|
+
real_km: z.string().nullable(),
|
|
28
|
+
used_cp_ids: z.number().array().nullable(),
|
|
29
|
+
cost: z.string().nullable(),
|
|
30
|
+
hours: z.string().nullable(),
|
|
31
|
+
mean_draw_kw: z.string().nullable(),
|
|
32
|
+
dropped_km: z.string().nullable(),
|
|
33
|
+
dropped_kwh: z.string().nullable(),
|
|
34
|
+
kwh_per_real_1km: z.string().nullable(),
|
|
35
|
+
cost_per_real_100km: z.string().nullable(),
|
|
36
|
+
cost_per_kwh: z.string().nullable(),
|
|
37
|
+
});
|
|
38
|
+
export const picRefsInitializer = z.object({
|
|
39
|
+
ref_type: picRefsRefType,
|
|
40
|
+
ref_id: picRefsRefId,
|
|
41
|
+
car_id: z.number(),
|
|
42
|
+
created_at: z.date().optional(),
|
|
43
|
+
start_date: z.date(),
|
|
44
|
+
end_date: z.date(),
|
|
45
|
+
start_range_km: z.string(),
|
|
46
|
+
end_range_km: z.string(),
|
|
47
|
+
prev_type: picRefType.optional().nullable(),
|
|
48
|
+
prev_id: z.number().optional().nullable(),
|
|
49
|
+
next_type: picRefType.optional().nullable(),
|
|
50
|
+
next_id: z.number().optional().nullable(),
|
|
51
|
+
start_position_id: z.number().optional().nullable(),
|
|
52
|
+
end_position_id: z.number().optional().nullable(),
|
|
53
|
+
start_address_id: z.number().optional().nullable(),
|
|
54
|
+
end_address_id: z.number().optional().nullable(),
|
|
55
|
+
start_geofence_id: z.number().optional().nullable(),
|
|
56
|
+
end_geofence_id: z.number().optional().nullable(),
|
|
57
|
+
efficiency: z.string(),
|
|
58
|
+
real_km: z.string().optional().nullable(),
|
|
59
|
+
used_cp_ids: z.number().array().optional().nullable(),
|
|
60
|
+
cost: z.string().optional().nullable(),
|
|
61
|
+
hours: z.string().optional().nullable(),
|
|
62
|
+
mean_draw_kw: z.string().optional().nullable(),
|
|
63
|
+
dropped_km: z.string().optional().nullable(),
|
|
64
|
+
dropped_kwh: z.string().optional().nullable(),
|
|
65
|
+
kwh_per_real_1km: z.string().optional().nullable(),
|
|
66
|
+
cost_per_real_100km: z.string().optional().nullable(),
|
|
67
|
+
cost_per_kwh: z.string().optional().nullable(),
|
|
68
|
+
});
|
|
69
|
+
export const picRefsMutator = z.object({
|
|
70
|
+
ref_type: picRefsRefType.optional(),
|
|
71
|
+
ref_id: picRefsRefId.optional(),
|
|
72
|
+
car_id: z.number().optional(),
|
|
73
|
+
created_at: z.date().optional(),
|
|
74
|
+
start_date: z.date().optional(),
|
|
75
|
+
end_date: z.date().optional(),
|
|
76
|
+
start_range_km: z.string().optional(),
|
|
77
|
+
end_range_km: z.string().optional(),
|
|
78
|
+
prev_type: picRefType.optional().nullable(),
|
|
79
|
+
prev_id: z.number().optional().nullable(),
|
|
80
|
+
next_type: picRefType.optional().nullable(),
|
|
81
|
+
next_id: z.number().optional().nullable(),
|
|
82
|
+
start_position_id: z.number().optional().nullable(),
|
|
83
|
+
end_position_id: z.number().optional().nullable(),
|
|
84
|
+
start_address_id: z.number().optional().nullable(),
|
|
85
|
+
end_address_id: z.number().optional().nullable(),
|
|
86
|
+
start_geofence_id: z.number().optional().nullable(),
|
|
87
|
+
end_geofence_id: z.number().optional().nullable(),
|
|
88
|
+
efficiency: z.string().optional(),
|
|
89
|
+
real_km: z.string().optional().nullable(),
|
|
90
|
+
used_cp_ids: z.number().array().optional().nullable(),
|
|
91
|
+
cost: z.string().optional().nullable(),
|
|
92
|
+
hours: z.string().optional().nullable(),
|
|
93
|
+
mean_draw_kw: z.string().optional().nullable(),
|
|
94
|
+
dropped_km: z.string().optional().nullable(),
|
|
95
|
+
dropped_kwh: z.string().optional().nullable(),
|
|
96
|
+
kwh_per_real_1km: z.string().optional().nullable(),
|
|
97
|
+
cost_per_real_100km: z.string().optional().nullable(),
|
|
98
|
+
cost_per_kwh: z.string().optional().nullable(),
|
|
99
|
+
});
|
|
100
|
+
export const picRefsKeys = [
|
|
101
|
+
{ name: "ref_type" },
|
|
102
|
+
{ name: "ref_id" },
|
|
103
|
+
{ name: "car_id" },
|
|
104
|
+
{ name: "created_at" },
|
|
105
|
+
{ name: "start_date" },
|
|
106
|
+
{ name: "end_date" },
|
|
107
|
+
{ name: "start_range_km" },
|
|
108
|
+
{ name: "end_range_km" },
|
|
109
|
+
{ name: "prev_type", nullable: true },
|
|
110
|
+
{ name: "prev_id", nullable: true },
|
|
111
|
+
{ name: "next_type", nullable: true },
|
|
112
|
+
{ name: "next_id", nullable: true },
|
|
113
|
+
{ name: "start_position_id", nullable: true },
|
|
114
|
+
{ name: "end_position_id", nullable: true },
|
|
115
|
+
{ name: "start_address_id", nullable: true },
|
|
116
|
+
{ name: "end_address_id", nullable: true },
|
|
117
|
+
{ name: "start_geofence_id", nullable: true },
|
|
118
|
+
{ name: "end_geofence_id", nullable: true },
|
|
119
|
+
{ name: "efficiency" },
|
|
120
|
+
{ name: "real_km", nullable: true },
|
|
121
|
+
{ name: "used_cp_ids", nullable: true },
|
|
122
|
+
{ name: "cost", nullable: true },
|
|
123
|
+
{ name: "hours", nullable: true },
|
|
124
|
+
{ name: "mean_draw_kw", nullable: true },
|
|
125
|
+
{ name: "dropped_km", nullable: true },
|
|
126
|
+
{ name: "dropped_kwh", nullable: true },
|
|
127
|
+
{ name: "kwh_per_real_1km", nullable: true },
|
|
128
|
+
{ name: "cost_per_real_100km", nullable: true },
|
|
129
|
+
{ name: "cost_per_kwh", nullable: true },
|
|
130
|
+
];
|
|
131
|
+
export const picRefsInitializerKeys = [
|
|
132
|
+
{ name: "ref_type" },
|
|
133
|
+
{ name: "ref_id" },
|
|
134
|
+
{ name: "car_id" },
|
|
135
|
+
{ name: "created_at", optional: true },
|
|
136
|
+
{ name: "start_date" },
|
|
137
|
+
{ name: "end_date" },
|
|
138
|
+
{ name: "start_range_km" },
|
|
139
|
+
{ name: "end_range_km" },
|
|
140
|
+
{ name: "prev_type", optional: true, nullable: true },
|
|
141
|
+
{ name: "prev_id", optional: true, nullable: true },
|
|
142
|
+
{ name: "next_type", optional: true, nullable: true },
|
|
143
|
+
{ name: "next_id", optional: true, nullable: true },
|
|
144
|
+
{ name: "start_position_id", optional: true, nullable: true },
|
|
145
|
+
{ name: "end_position_id", optional: true, nullable: true },
|
|
146
|
+
{ name: "start_address_id", optional: true, nullable: true },
|
|
147
|
+
{ name: "end_address_id", optional: true, nullable: true },
|
|
148
|
+
{ name: "start_geofence_id", optional: true, nullable: true },
|
|
149
|
+
{ name: "end_geofence_id", optional: true, nullable: true },
|
|
150
|
+
{ name: "efficiency" },
|
|
151
|
+
{ name: "real_km", optional: true, nullable: true },
|
|
152
|
+
{ name: "used_cp_ids", optional: true, nullable: true },
|
|
153
|
+
{ name: "cost", optional: true, nullable: true },
|
|
154
|
+
];
|
|
155
|
+
export const picRefsMutatorKeys = [
|
|
156
|
+
{ name: "ref_type", optional: true },
|
|
157
|
+
{ name: "ref_id", optional: true },
|
|
158
|
+
{ name: "car_id", optional: true },
|
|
159
|
+
{ name: "created_at", optional: true },
|
|
160
|
+
{ name: "start_date", optional: true },
|
|
161
|
+
{ name: "end_date", optional: true },
|
|
162
|
+
{ name: "start_range_km", optional: true },
|
|
163
|
+
{ name: "end_range_km", optional: true },
|
|
164
|
+
{ name: "prev_type", optional: true, nullable: true },
|
|
165
|
+
{ name: "prev_id", optional: true, nullable: true },
|
|
166
|
+
{ name: "next_type", optional: true, nullable: true },
|
|
167
|
+
{ name: "next_id", optional: true, nullable: true },
|
|
168
|
+
{ name: "start_position_id", optional: true, nullable: true },
|
|
169
|
+
{ name: "end_position_id", optional: true, nullable: true },
|
|
170
|
+
{ name: "start_address_id", optional: true, nullable: true },
|
|
171
|
+
{ name: "end_address_id", optional: true, nullable: true },
|
|
172
|
+
{ name: "start_geofence_id", optional: true, nullable: true },
|
|
173
|
+
{ name: "end_geofence_id", optional: true, nullable: true },
|
|
174
|
+
{ name: "efficiency", optional: true },
|
|
175
|
+
{ name: "real_km", optional: true, nullable: true },
|
|
176
|
+
{ name: "used_cp_ids", optional: true, nullable: true },
|
|
177
|
+
{ name: "cost", optional: true, nullable: true },
|
|
178
|
+
];
|
|
179
|
+
//# sourceMappingURL=PicRefs.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"PicRefs.js","sourceRoot":"","sources":["../../src/public/PicRefs.ts"],"names":[],"mappings":"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"}
|
package/dist/public/index.d.ts
CHANGED
|
@@ -7,6 +7,7 @@ export * from "./ChargingProcesses.js";
|
|
|
7
7
|
export * from "./Drives.js";
|
|
8
8
|
export * from "./Geofences.js";
|
|
9
9
|
export * from "./KeyParams.js";
|
|
10
|
+
export * from "./PicAddressType.js";
|
|
10
11
|
export * from "./PicChargers.js";
|
|
11
12
|
export * from "./PicChargingProcessLinks.js";
|
|
12
13
|
export * from "./PicChargingProcessStates.js";
|
|
@@ -16,6 +17,8 @@ export * from "./PicInvoiceFiles.js";
|
|
|
16
17
|
export * from "./PicInvoiceMissingStates.js";
|
|
17
18
|
export * from "./PicInvoices.js";
|
|
18
19
|
export * from "./PicPricebooks.js";
|
|
20
|
+
export * from "./PicRefType.js";
|
|
21
|
+
export * from "./PicRefs.js";
|
|
19
22
|
export * from "./PicSchemaMigrations.js";
|
|
20
23
|
export * from "./PicSlugs.js";
|
|
21
24
|
export * from "./PicZipCodes.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,iBAAiB,CAAC;AAChC,cAAc,uBAAuB,CAAC;AACtC,cAAc,sBAAsB,CAAC;AACrC,cAAc,8BAA8B,CAAC;AAC7C,cAAc,kBAAkB,CAAC;AACjC,cAAc,oBAAoB,CAAC;AACnC,cAAc,0BAA0B,CAAC;AACzC,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"}
|
|
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,qBAAqB,CAAC;AACpC,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,iBAAiB,CAAC;AAChC,cAAc,cAAc,CAAC;AAC7B,cAAc,0BAA0B,CAAC;AACzC,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
|
@@ -8,6 +8,7 @@ export * from "./ChargingProcesses.js";
|
|
|
8
8
|
export * from "./Drives.js";
|
|
9
9
|
export * from "./Geofences.js";
|
|
10
10
|
export * from "./KeyParams.js";
|
|
11
|
+
export * from "./PicAddressType.js";
|
|
11
12
|
export * from "./PicChargers.js";
|
|
12
13
|
export * from "./PicChargingProcessLinks.js";
|
|
13
14
|
export * from "./PicChargingProcessStates.js";
|
|
@@ -17,6 +18,8 @@ export * from "./PicInvoiceFiles.js";
|
|
|
17
18
|
export * from "./PicInvoiceMissingStates.js";
|
|
18
19
|
export * from "./PicInvoices.js";
|
|
19
20
|
export * from "./PicPricebooks.js";
|
|
21
|
+
export * from "./PicRefType.js";
|
|
22
|
+
export * from "./PicRefs.js";
|
|
20
23
|
export * from "./PicSchemaMigrations.js";
|
|
21
24
|
export * from "./PicSlugs.js";
|
|
22
25
|
export * from "./PicZipCodes.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,iBAAiB,CAAC;AAChC,cAAc,uBAAuB,CAAC;AACtC,cAAc,sBAAsB,CAAC;AACrC,cAAc,8BAA8B,CAAC;AAC7C,cAAc,kBAAkB,CAAC;AACjC,cAAc,oBAAoB,CAAC;AACnC,cAAc,0BAA0B,CAAC;AACzC,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"}
|
|
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,qBAAqB,CAAC;AACpC,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,iBAAiB,CAAC;AAChC,cAAc,cAAc,CAAC;AAC7B,cAAc,0BAA0B,CAAC;AACzC,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"}
|