@mxpicture/tesla-superchargers-generated 0.1.23 → 0.1.24

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.
@@ -34,9 +34,9 @@ export interface PicChargers {
34
34
  state: string | null;
35
35
  street: string;
36
36
  street_number: string;
37
- site_id: number;
37
+ site_id: string;
38
38
  site_type: string;
39
- trt_id: number;
39
+ trt_id: string;
40
40
  trt_type: string;
41
41
  utc_offset: string | null;
42
42
  failure_notified_at: Date | null;
@@ -71,9 +71,9 @@ export interface PicChargersInitializer {
71
71
  state?: string | null;
72
72
  street: string;
73
73
  street_number: string;
74
- site_id: number;
74
+ site_id: string;
75
75
  site_type: string;
76
- trt_id: number;
76
+ trt_id: string;
77
77
  trt_type: string;
78
78
  utc_offset?: string | null;
79
79
  failure_notified_at?: Date | null;
@@ -108,9 +108,9 @@ export interface PicChargersMutator {
108
108
  state?: string | null;
109
109
  street?: string;
110
110
  street_number?: string;
111
- site_id?: number;
111
+ site_id?: string;
112
112
  site_type?: string;
113
- trt_id?: number;
113
+ trt_id?: string;
114
114
  trt_type?: string;
115
115
  utc_offset?: string | null;
116
116
  failure_notified_at?: Date | null;
@@ -152,9 +152,9 @@ export interface PicChargersInitializerStrict {
152
152
  state: string | null | undefined;
153
153
  street: string;
154
154
  street_number: string;
155
- site_id: number;
155
+ site_id: string;
156
156
  site_type: string;
157
- trt_id: number;
157
+ trt_id: string;
158
158
  trt_type: string;
159
159
  utc_offset: string | null | undefined;
160
160
  failure_notified_at: Date | null | undefined;
@@ -192,9 +192,9 @@ export interface PicChargersMutatorStrict {
192
192
  state: string | null | undefined;
193
193
  street: string | undefined;
194
194
  street_number: string | undefined;
195
- site_id: number | undefined;
195
+ site_id: string | undefined;
196
196
  site_type: string | undefined;
197
- trt_id: number | undefined;
197
+ trt_id: string | undefined;
198
198
  trt_type: string | undefined;
199
199
  utc_offset: string | null | undefined;
200
200
  failure_notified_at: Date | null | undefined;
@@ -33,9 +33,9 @@ export const picChargers = z.object({
33
33
  state: z.string().nullable(),
34
34
  street: z.string(),
35
35
  street_number: z.string(),
36
- site_id: z.number(),
36
+ site_id: z.string(),
37
37
  site_type: z.string(),
38
- trt_id: z.number(),
38
+ trt_id: z.string(),
39
39
  trt_type: z.string(),
40
40
  utc_offset: z.string().nullable(),
41
41
  failure_notified_at: z.date().nullable(),
@@ -70,9 +70,9 @@ export const picChargersInitializer = z.object({
70
70
  state: z.string().optional().nullable(),
71
71
  street: z.string(),
72
72
  street_number: z.string(),
73
- site_id: z.number(),
73
+ site_id: z.string(),
74
74
  site_type: z.string(),
75
- trt_id: z.number(),
75
+ trt_id: z.string(),
76
76
  trt_type: z.string(),
77
77
  utc_offset: z.string().optional().nullable(),
78
78
  failure_notified_at: z.date().optional().nullable(),
@@ -107,9 +107,9 @@ export const picChargersMutator = z.object({
107
107
  state: z.string().optional().nullable(),
108
108
  street: z.string().optional(),
109
109
  street_number: z.string().optional(),
110
- site_id: z.number().optional(),
110
+ site_id: z.string().optional(),
111
111
  site_type: z.string().optional(),
112
- trt_id: z.number().optional(),
112
+ trt_id: z.string().optional(),
113
113
  trt_type: z.string().optional(),
114
114
  utc_offset: z.string().optional().nullable(),
115
115
  failure_notified_at: z.date().optional().nullable(),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mxpicture/tesla-superchargers-generated",
3
- "version": "0.1.23",
3
+ "version": "0.1.24",
4
4
  "description": "Fetch + store Tesla Supercharger locations and pricing",
5
5
  "type": "module",
6
6
  "author": "MXPicture",