expo-backend-types 0.56.0-EXPO-379-EB-Rutas-necesarias.2 → 0.56.0-EXPO-379-EB-Rutas-necesarias.3

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.
@@ -40,14 +40,16 @@ export declare const findByPhoneNumberResponseSchema: import("zod").ZodObject<im
40
40
  city: import("zod").ZodString;
41
41
  created_at: import("zod").ZodDate;
42
42
  updated_at: import("zod").ZodDate;
43
- }, "latitude" | "longitude" | "country" | "city">, "strip", import("zod").ZodTypeAny, {
43
+ }, "latitude" | "longitude" | "state" | "country" | "city">, "strip", import("zod").ZodTypeAny, {
44
44
  latitude: number;
45
45
  longitude: number;
46
+ state: string;
46
47
  country: string;
47
48
  city: string;
48
49
  }, {
49
50
  latitude: number;
50
51
  longitude: number;
52
+ state: string;
51
53
  country: string;
52
54
  city: string;
53
55
  }>>;
@@ -60,14 +62,16 @@ export declare const findByPhoneNumberResponseSchema: import("zod").ZodObject<im
60
62
  city: import("zod").ZodString;
61
63
  created_at: import("zod").ZodDate;
62
64
  updated_at: import("zod").ZodDate;
63
- }, "latitude" | "longitude" | "country" | "city">, "strip", import("zod").ZodTypeAny, {
65
+ }, "latitude" | "longitude" | "state" | "country" | "city">, "strip", import("zod").ZodTypeAny, {
64
66
  latitude: number;
65
67
  longitude: number;
68
+ state: string;
66
69
  country: string;
67
70
  city: string;
68
71
  }, {
69
72
  latitude: number;
70
73
  longitude: number;
74
+ state: string;
71
75
  country: string;
72
76
  city: string;
73
77
  }>>;
@@ -100,12 +104,14 @@ export declare const findByPhoneNumberResponseSchema: import("zod").ZodObject<im
100
104
  birthLocation: {
101
105
  latitude: number;
102
106
  longitude: number;
107
+ state: string;
103
108
  country: string;
104
109
  city: string;
105
110
  } | null;
106
111
  residenceLocation: {
107
112
  latitude: number;
108
113
  longitude: number;
114
+ state: string;
109
115
  country: string;
110
116
  city: string;
111
117
  } | null;
@@ -137,12 +143,14 @@ export declare const findByPhoneNumberResponseSchema: import("zod").ZodObject<im
137
143
  birthLocation: {
138
144
  latitude: number;
139
145
  longitude: number;
146
+ state: string;
140
147
  country: string;
141
148
  city: string;
142
149
  } | null;
143
150
  residenceLocation: {
144
151
  latitude: number;
145
152
  longitude: number;
153
+ state: string;
146
154
  country: string;
147
155
  city: string;
148
156
  } | null;
@@ -183,32 +191,38 @@ declare const FindByPhoneNumberResponseDto_base: import("@anatine/zod-nestjs").Z
183
191
  residenceLocation: import("zod").ZodNullable<import("zod").ZodObject<{
184
192
  latitude: import("zod").ZodNumber;
185
193
  longitude: import("zod").ZodNumber;
194
+ state: import("zod").ZodString;
186
195
  country: import("zod").ZodString;
187
196
  city: import("zod").ZodString;
188
197
  }, import("zod").UnknownKeysParam, import("zod").ZodTypeAny, {
189
198
  latitude: number;
190
199
  longitude: number;
200
+ state: string;
191
201
  country: string;
192
202
  city: string;
193
203
  }, {
194
204
  latitude: number;
195
205
  longitude: number;
206
+ state: string;
196
207
  country: string;
197
208
  city: string;
198
209
  }>>;
199
210
  birthLocation: import("zod").ZodNullable<import("zod").ZodObject<{
200
211
  latitude: import("zod").ZodNumber;
201
212
  longitude: import("zod").ZodNumber;
213
+ state: import("zod").ZodString;
202
214
  country: import("zod").ZodString;
203
215
  city: import("zod").ZodString;
204
216
  }, import("zod").UnknownKeysParam, import("zod").ZodTypeAny, {
205
217
  latitude: number;
206
218
  longitude: number;
219
+ state: string;
207
220
  country: string;
208
221
  city: string;
209
222
  }, {
210
223
  latitude: number;
211
224
  longitude: number;
225
+ state: string;
212
226
  country: string;
213
227
  city: string;
214
228
  }>>;
@@ -241,12 +255,14 @@ declare const FindByPhoneNumberResponseDto_base: import("@anatine/zod-nestjs").Z
241
255
  birthLocation: {
242
256
  latitude: number;
243
257
  longitude: number;
258
+ state: string;
244
259
  country: string;
245
260
  city: string;
246
261
  } | null;
247
262
  residenceLocation: {
248
263
  latitude: number;
249
264
  longitude: number;
265
+ state: string;
250
266
  country: string;
251
267
  city: string;
252
268
  } | null;
@@ -278,12 +294,14 @@ declare const FindByPhoneNumberResponseDto_base: import("@anatine/zod-nestjs").Z
278
294
  birthLocation: {
279
295
  latitude: number;
280
296
  longitude: number;
297
+ state: string;
281
298
  country: string;
282
299
  city: string;
283
300
  } | null;
284
301
  residenceLocation: {
285
302
  latitude: number;
286
303
  longitude: number;
304
+ state: string;
287
305
  country: string;
288
306
  city: string;
289
307
  } | null;
@@ -8,6 +8,7 @@ exports.findByPhoneNumberResponseSchema = profile_schema_1.profileSchema.extend(
8
8
  residenceLocation: location_schema_1.locationSchema
9
9
  .pick({
10
10
  city: true,
11
+ state: true,
11
12
  country: true,
12
13
  latitude: true,
13
14
  longitude: true,
@@ -16,6 +17,7 @@ exports.findByPhoneNumberResponseSchema = profile_schema_1.profileSchema.extend(
16
17
  birthLocation: location_schema_1.locationSchema
17
18
  .pick({
18
19
  city: true,
20
+ state: true,
19
21
  country: true,
20
22
  latitude: true,
21
23
  longitude: true,
@@ -2991,12 +2991,14 @@ export interface components {
2991
2991
  referralCode: string;
2992
2992
  residenceLocation: {
2993
2993
  city: string;
2994
+ state: string;
2994
2995
  country: string;
2995
2996
  latitude: number;
2996
2997
  longitude: number;
2997
2998
  } | null;
2998
2999
  birthLocation: {
2999
3000
  city: string;
3001
+ state: string;
3000
3002
  country: string;
3001
3003
  latitude: number;
3002
3004
  longitude: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "expo-backend-types",
3
- "version": "0.56.0-EXPO-379-EB-Rutas-necesarias.2",
3
+ "version": "0.56.0-EXPO-379-EB-Rutas-necesarias.3",
4
4
  "description": "",
5
5
  "author": "Expo",
6
6
  "private": false,