@vepler/sdk 2.30.0 → 2.30.2
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/commonjs/lib/config.d.ts +2 -2
- package/dist/commonjs/lib/config.js +2 -2
- package/dist/commonjs/sdk/models/operations/getareasbyfieldandids.d.ts +19 -7
- package/dist/commonjs/sdk/models/operations/getareasbyfieldandids.d.ts.map +1 -1
- package/dist/commonjs/sdk/models/operations/getareasbyfieldandids.js +5 -2
- package/dist/commonjs/sdk/models/operations/getareasbyfieldandids.js.map +1 -1
- package/dist/commonjs/sdk/models/operations/getareaswithinradius.d.ts +19 -7
- package/dist/commonjs/sdk/models/operations/getareaswithinradius.d.ts.map +1 -1
- package/dist/commonjs/sdk/models/operations/getareaswithinradius.js +5 -2
- package/dist/commonjs/sdk/models/operations/getareaswithinradius.js.map +1 -1
- package/dist/commonjs/sdk/models/operations/getborderingareas.d.ts +38 -14
- package/dist/commonjs/sdk/models/operations/getborderingareas.d.ts.map +1 -1
- package/dist/commonjs/sdk/models/operations/getborderingareas.js +10 -4
- package/dist/commonjs/sdk/models/operations/getborderingareas.js.map +1 -1
- package/dist/commonjs/sdk/models/operations/getchildareas.d.ts +38 -14
- package/dist/commonjs/sdk/models/operations/getchildareas.d.ts.map +1 -1
- package/dist/commonjs/sdk/models/operations/getchildareas.js +10 -4
- package/dist/commonjs/sdk/models/operations/getchildareas.js.map +1 -1
- package/dist/esm/lib/config.d.ts +2 -2
- package/dist/esm/lib/config.js +2 -2
- package/dist/esm/sdk/models/operations/getareasbyfieldandids.d.ts +19 -7
- package/dist/esm/sdk/models/operations/getareasbyfieldandids.d.ts.map +1 -1
- package/dist/esm/sdk/models/operations/getareasbyfieldandids.js +5 -2
- package/dist/esm/sdk/models/operations/getareasbyfieldandids.js.map +1 -1
- package/dist/esm/sdk/models/operations/getareaswithinradius.d.ts +19 -7
- package/dist/esm/sdk/models/operations/getareaswithinradius.d.ts.map +1 -1
- package/dist/esm/sdk/models/operations/getareaswithinradius.js +5 -2
- package/dist/esm/sdk/models/operations/getareaswithinradius.js.map +1 -1
- package/dist/esm/sdk/models/operations/getborderingareas.d.ts +38 -14
- package/dist/esm/sdk/models/operations/getborderingareas.d.ts.map +1 -1
- package/dist/esm/sdk/models/operations/getborderingareas.js +10 -4
- package/dist/esm/sdk/models/operations/getborderingareas.js.map +1 -1
- package/dist/esm/sdk/models/operations/getchildareas.d.ts +38 -14
- package/dist/esm/sdk/models/operations/getchildareas.d.ts.map +1 -1
- package/dist/esm/sdk/models/operations/getchildareas.js +10 -4
- package/dist/esm/sdk/models/operations/getchildareas.js.map +1 -1
- package/package.json +1 -1
- package/src/lib/config.ts +2 -2
- package/src/sdk/models/operations/getareasbyfieldandids.ts +24 -9
- package/src/sdk/models/operations/getareaswithinradius.ts +24 -9
- package/src/sdk/models/operations/getborderingareas.ts +48 -18
- package/src/sdk/models/operations/getchildareas.ts +48 -18
|
@@ -46,21 +46,33 @@ export type GetAreasByFieldAndIdsRequest = {
|
|
|
46
46
|
|
|
47
47
|
export type Hierarchy = {
|
|
48
48
|
/**
|
|
49
|
-
*
|
|
49
|
+
* Human-readable category name
|
|
50
50
|
*/
|
|
51
|
-
|
|
51
|
+
categoryName?: string | undefined;
|
|
52
52
|
/**
|
|
53
|
-
*
|
|
53
|
+
* Display name for the area
|
|
54
54
|
*/
|
|
55
|
-
|
|
55
|
+
displayName?: string | undefined;
|
|
56
56
|
/**
|
|
57
|
-
*
|
|
57
|
+
* Unique identifier/code of the area at this hierarchy level
|
|
58
58
|
*/
|
|
59
|
-
|
|
59
|
+
entityId: string;
|
|
60
|
+
/**
|
|
61
|
+
* Full name of the entity
|
|
62
|
+
*/
|
|
63
|
+
entityName?: string | undefined;
|
|
60
64
|
/**
|
|
61
65
|
* Geographic type at this level
|
|
62
66
|
*/
|
|
63
|
-
|
|
67
|
+
entityType: string;
|
|
68
|
+
/**
|
|
69
|
+
* Hierarchy level (0 = finest granularity like output_area, higher numbers = broader areas like country)
|
|
70
|
+
*/
|
|
71
|
+
level: number;
|
|
72
|
+
/**
|
|
73
|
+
* Category name at this hierarchy level
|
|
74
|
+
*/
|
|
75
|
+
name: string;
|
|
64
76
|
};
|
|
65
77
|
|
|
66
78
|
export type Relationships = {
|
|
@@ -258,10 +270,13 @@ export const Hierarchy$inboundSchema: z.ZodType<
|
|
|
258
270
|
z.ZodTypeDef,
|
|
259
271
|
unknown
|
|
260
272
|
> = z.object({
|
|
261
|
-
|
|
273
|
+
categoryName: z.string().optional(),
|
|
274
|
+
displayName: z.string().optional(),
|
|
275
|
+
entityId: z.string(),
|
|
276
|
+
entityName: z.string().optional(),
|
|
277
|
+
entityType: z.string(),
|
|
262
278
|
level: z.number(),
|
|
263
279
|
name: z.string(),
|
|
264
|
-
type: z.string(),
|
|
265
280
|
});
|
|
266
281
|
|
|
267
282
|
export function hierarchyFromJSON(
|
|
@@ -100,21 +100,33 @@ export type GetAreasWithinRadiusRequest = {
|
|
|
100
100
|
|
|
101
101
|
export type GetAreasWithinRadiusHierarchy = {
|
|
102
102
|
/**
|
|
103
|
-
*
|
|
103
|
+
* Human-readable category name
|
|
104
104
|
*/
|
|
105
|
-
|
|
105
|
+
categoryName?: string | undefined;
|
|
106
106
|
/**
|
|
107
|
-
*
|
|
107
|
+
* Display name for the area
|
|
108
108
|
*/
|
|
109
|
-
|
|
109
|
+
displayName?: string | undefined;
|
|
110
110
|
/**
|
|
111
|
-
*
|
|
111
|
+
* Unique identifier/code of the area at this hierarchy level
|
|
112
112
|
*/
|
|
113
|
-
|
|
113
|
+
entityId: string;
|
|
114
|
+
/**
|
|
115
|
+
* Full name of the entity
|
|
116
|
+
*/
|
|
117
|
+
entityName?: string | undefined;
|
|
114
118
|
/**
|
|
115
119
|
* Geographic type at this level
|
|
116
120
|
*/
|
|
117
|
-
|
|
121
|
+
entityType: string;
|
|
122
|
+
/**
|
|
123
|
+
* Hierarchy level (0 = finest granularity like output_area, higher numbers = broader areas like country)
|
|
124
|
+
*/
|
|
125
|
+
level: number;
|
|
126
|
+
/**
|
|
127
|
+
* Category name at this hierarchy level
|
|
128
|
+
*/
|
|
129
|
+
name: string;
|
|
118
130
|
};
|
|
119
131
|
|
|
120
132
|
export type GetAreasWithinRadiusRelationships = {
|
|
@@ -317,10 +329,13 @@ export const GetAreasWithinRadiusHierarchy$inboundSchema: z.ZodType<
|
|
|
317
329
|
z.ZodTypeDef,
|
|
318
330
|
unknown
|
|
319
331
|
> = z.object({
|
|
320
|
-
|
|
332
|
+
categoryName: z.string().optional(),
|
|
333
|
+
displayName: z.string().optional(),
|
|
334
|
+
entityId: z.string(),
|
|
335
|
+
entityName: z.string().optional(),
|
|
336
|
+
entityType: z.string(),
|
|
321
337
|
level: z.number(),
|
|
322
338
|
name: z.string(),
|
|
323
|
-
type: z.string(),
|
|
324
339
|
});
|
|
325
340
|
|
|
326
341
|
export function getAreasWithinRadiusHierarchyFromJSON(
|
|
@@ -30,21 +30,33 @@ export type GetBorderingAreasRequest = {
|
|
|
30
30
|
|
|
31
31
|
export type GetBorderingAreasHierarchy = {
|
|
32
32
|
/**
|
|
33
|
-
*
|
|
33
|
+
* Human-readable category name
|
|
34
34
|
*/
|
|
35
|
-
|
|
35
|
+
categoryName?: string | undefined;
|
|
36
36
|
/**
|
|
37
|
-
*
|
|
37
|
+
* Display name for the area
|
|
38
38
|
*/
|
|
39
|
-
|
|
39
|
+
displayName?: string | undefined;
|
|
40
40
|
/**
|
|
41
|
-
*
|
|
41
|
+
* Unique identifier/code of the area at this hierarchy level
|
|
42
42
|
*/
|
|
43
|
-
|
|
43
|
+
entityId: string;
|
|
44
|
+
/**
|
|
45
|
+
* Full name of the entity
|
|
46
|
+
*/
|
|
47
|
+
entityName?: string | undefined;
|
|
44
48
|
/**
|
|
45
49
|
* Geographic type at this level
|
|
46
50
|
*/
|
|
47
|
-
|
|
51
|
+
entityType: string;
|
|
52
|
+
/**
|
|
53
|
+
* Hierarchy level (0 = finest granularity like output_area, higher numbers = broader areas like country)
|
|
54
|
+
*/
|
|
55
|
+
level: number;
|
|
56
|
+
/**
|
|
57
|
+
* Category name at this hierarchy level
|
|
58
|
+
*/
|
|
59
|
+
name: string;
|
|
48
60
|
};
|
|
49
61
|
|
|
50
62
|
export type GetBorderingAreasRelationships = {
|
|
@@ -180,21 +192,33 @@ export type BorderingAreas = {
|
|
|
180
192
|
|
|
181
193
|
export type GetBorderingAreasAreasHierarchy = {
|
|
182
194
|
/**
|
|
183
|
-
*
|
|
195
|
+
* Human-readable category name
|
|
184
196
|
*/
|
|
185
|
-
|
|
197
|
+
categoryName?: string | undefined;
|
|
186
198
|
/**
|
|
187
|
-
*
|
|
199
|
+
* Display name for the area
|
|
188
200
|
*/
|
|
189
|
-
|
|
201
|
+
displayName?: string | undefined;
|
|
190
202
|
/**
|
|
191
|
-
*
|
|
203
|
+
* Unique identifier/code of the area at this hierarchy level
|
|
192
204
|
*/
|
|
193
|
-
|
|
205
|
+
entityId: string;
|
|
206
|
+
/**
|
|
207
|
+
* Full name of the entity
|
|
208
|
+
*/
|
|
209
|
+
entityName?: string | undefined;
|
|
194
210
|
/**
|
|
195
211
|
* Geographic type at this level
|
|
196
212
|
*/
|
|
197
|
-
|
|
213
|
+
entityType: string;
|
|
214
|
+
/**
|
|
215
|
+
* Hierarchy level (0 = finest granularity like output_area, higher numbers = broader areas like country)
|
|
216
|
+
*/
|
|
217
|
+
level: number;
|
|
218
|
+
/**
|
|
219
|
+
* Category name at this hierarchy level
|
|
220
|
+
*/
|
|
221
|
+
name: string;
|
|
198
222
|
};
|
|
199
223
|
|
|
200
224
|
export type GetBorderingAreasAreasRelationships = {
|
|
@@ -390,10 +414,13 @@ export const GetBorderingAreasHierarchy$inboundSchema: z.ZodType<
|
|
|
390
414
|
z.ZodTypeDef,
|
|
391
415
|
unknown
|
|
392
416
|
> = z.object({
|
|
393
|
-
|
|
417
|
+
categoryName: z.string().optional(),
|
|
418
|
+
displayName: z.string().optional(),
|
|
419
|
+
entityId: z.string(),
|
|
420
|
+
entityName: z.string().optional(),
|
|
421
|
+
entityType: z.string(),
|
|
394
422
|
level: z.number(),
|
|
395
423
|
name: z.string(),
|
|
396
|
-
type: z.string(),
|
|
397
424
|
});
|
|
398
425
|
|
|
399
426
|
export function getBorderingAreasHierarchyFromJSON(
|
|
@@ -474,10 +501,13 @@ export const GetBorderingAreasAreasHierarchy$inboundSchema: z.ZodType<
|
|
|
474
501
|
z.ZodTypeDef,
|
|
475
502
|
unknown
|
|
476
503
|
> = z.object({
|
|
477
|
-
|
|
504
|
+
categoryName: z.string().optional(),
|
|
505
|
+
displayName: z.string().optional(),
|
|
506
|
+
entityId: z.string(),
|
|
507
|
+
entityName: z.string().optional(),
|
|
508
|
+
entityType: z.string(),
|
|
478
509
|
level: z.number(),
|
|
479
510
|
name: z.string(),
|
|
480
|
-
type: z.string(),
|
|
481
511
|
});
|
|
482
512
|
|
|
483
513
|
export function getBorderingAreasAreasHierarchyFromJSON(
|
|
@@ -26,21 +26,33 @@ export type GetChildAreasRequest = {
|
|
|
26
26
|
|
|
27
27
|
export type GetChildAreasHierarchy = {
|
|
28
28
|
/**
|
|
29
|
-
*
|
|
29
|
+
* Human-readable category name
|
|
30
30
|
*/
|
|
31
|
-
|
|
31
|
+
categoryName?: string | undefined;
|
|
32
32
|
/**
|
|
33
|
-
*
|
|
33
|
+
* Display name for the area
|
|
34
34
|
*/
|
|
35
|
-
|
|
35
|
+
displayName?: string | undefined;
|
|
36
36
|
/**
|
|
37
|
-
*
|
|
37
|
+
* Unique identifier/code of the area at this hierarchy level
|
|
38
38
|
*/
|
|
39
|
-
|
|
39
|
+
entityId: string;
|
|
40
|
+
/**
|
|
41
|
+
* Full name of the entity
|
|
42
|
+
*/
|
|
43
|
+
entityName?: string | undefined;
|
|
40
44
|
/**
|
|
41
45
|
* Geographic type at this level
|
|
42
46
|
*/
|
|
43
|
-
|
|
47
|
+
entityType: string;
|
|
48
|
+
/**
|
|
49
|
+
* Hierarchy level (0 = finest granularity like output_area, higher numbers = broader areas like country)
|
|
50
|
+
*/
|
|
51
|
+
level: number;
|
|
52
|
+
/**
|
|
53
|
+
* Category name at this hierarchy level
|
|
54
|
+
*/
|
|
55
|
+
name: string;
|
|
44
56
|
};
|
|
45
57
|
|
|
46
58
|
export type GetChildAreasRelationships = {
|
|
@@ -176,21 +188,33 @@ export type Children = {
|
|
|
176
188
|
|
|
177
189
|
export type GetChildAreasAreasHierarchy = {
|
|
178
190
|
/**
|
|
179
|
-
*
|
|
191
|
+
* Human-readable category name
|
|
180
192
|
*/
|
|
181
|
-
|
|
193
|
+
categoryName?: string | undefined;
|
|
182
194
|
/**
|
|
183
|
-
*
|
|
195
|
+
* Display name for the area
|
|
184
196
|
*/
|
|
185
|
-
|
|
197
|
+
displayName?: string | undefined;
|
|
186
198
|
/**
|
|
187
|
-
*
|
|
199
|
+
* Unique identifier/code of the area at this hierarchy level
|
|
188
200
|
*/
|
|
189
|
-
|
|
201
|
+
entityId: string;
|
|
202
|
+
/**
|
|
203
|
+
* Full name of the entity
|
|
204
|
+
*/
|
|
205
|
+
entityName?: string | undefined;
|
|
190
206
|
/**
|
|
191
207
|
* Geographic type at this level
|
|
192
208
|
*/
|
|
193
|
-
|
|
209
|
+
entityType: string;
|
|
210
|
+
/**
|
|
211
|
+
* Hierarchy level (0 = finest granularity like output_area, higher numbers = broader areas like country)
|
|
212
|
+
*/
|
|
213
|
+
level: number;
|
|
214
|
+
/**
|
|
215
|
+
* Category name at this hierarchy level
|
|
216
|
+
*/
|
|
217
|
+
name: string;
|
|
194
218
|
};
|
|
195
219
|
|
|
196
220
|
export type GetChildAreasAreasRelationships = {
|
|
@@ -382,10 +406,13 @@ export const GetChildAreasHierarchy$inboundSchema: z.ZodType<
|
|
|
382
406
|
z.ZodTypeDef,
|
|
383
407
|
unknown
|
|
384
408
|
> = z.object({
|
|
385
|
-
|
|
409
|
+
categoryName: z.string().optional(),
|
|
410
|
+
displayName: z.string().optional(),
|
|
411
|
+
entityId: z.string(),
|
|
412
|
+
entityName: z.string().optional(),
|
|
413
|
+
entityType: z.string(),
|
|
386
414
|
level: z.number(),
|
|
387
415
|
name: z.string(),
|
|
388
|
-
type: z.string(),
|
|
389
416
|
});
|
|
390
417
|
|
|
391
418
|
export function getChildAreasHierarchyFromJSON(
|
|
@@ -466,10 +493,13 @@ export const GetChildAreasAreasHierarchy$inboundSchema: z.ZodType<
|
|
|
466
493
|
z.ZodTypeDef,
|
|
467
494
|
unknown
|
|
468
495
|
> = z.object({
|
|
469
|
-
|
|
496
|
+
categoryName: z.string().optional(),
|
|
497
|
+
displayName: z.string().optional(),
|
|
498
|
+
entityId: z.string(),
|
|
499
|
+
entityName: z.string().optional(),
|
|
500
|
+
entityType: z.string(),
|
|
470
501
|
level: z.number(),
|
|
471
502
|
name: z.string(),
|
|
472
|
-
type: z.string(),
|
|
473
503
|
});
|
|
474
504
|
|
|
475
505
|
export function getChildAreasAreasHierarchyFromJSON(
|