@communecter/cocolight-api-client 1.0.150 → 1.0.151
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/cocolight-api-client.browser.js +1 -1
- package/dist/cocolight-api-client.cjs +1 -1
- package/dist/cocolight-api-client.mjs.js +1 -1
- package/dist/cocolight-api-client.vite.mjs.js +1 -1
- package/dist/cocolight-api-client.vite.mjs.js.map +1 -1
- package/package.json +3 -2
- package/src/api/BaseEntity.ts +5 -1
- package/src/api/EndpointApi.types.ts +198 -200
- package/src/endpoints.module.ts +317 -207
- package/types/api/EndpointApi.types.d.ts +18 -42
- package/types/endpoints.module.d.ts +411 -287
|
@@ -3593,6 +3593,9 @@ declare const endpoints: {
|
|
|
3593
3593
|
oneOf: ({
|
|
3594
3594
|
const: string;
|
|
3595
3595
|
type: string;
|
|
3596
|
+
additionalProperties?: undefined;
|
|
3597
|
+
properties?: undefined;
|
|
3598
|
+
required?: undefined;
|
|
3596
3599
|
} | {
|
|
3597
3600
|
additionalProperties: boolean;
|
|
3598
3601
|
properties: {
|
|
@@ -3609,6 +3612,7 @@ declare const endpoints: {
|
|
|
3609
3612
|
};
|
|
3610
3613
|
required: string[];
|
|
3611
3614
|
type: string;
|
|
3615
|
+
const?: undefined;
|
|
3612
3616
|
})[];
|
|
3613
3617
|
};
|
|
3614
3618
|
geoPosition: {
|
|
@@ -18179,55 +18183,64 @@ declare const endpoints: {
|
|
|
18179
18183
|
additionalProperties: boolean;
|
|
18180
18184
|
properties: {
|
|
18181
18185
|
address: {
|
|
18182
|
-
|
|
18183
|
-
|
|
18184
|
-
|
|
18185
|
-
|
|
18186
|
-
|
|
18187
|
-
|
|
18188
|
-
|
|
18189
|
-
|
|
18190
|
-
|
|
18191
|
-
|
|
18192
|
-
|
|
18193
|
-
|
|
18194
|
-
|
|
18195
|
-
|
|
18196
|
-
|
|
18197
|
-
|
|
18198
|
-
|
|
18199
|
-
|
|
18200
|
-
|
|
18201
|
-
|
|
18202
|
-
|
|
18203
|
-
|
|
18204
|
-
|
|
18205
|
-
|
|
18206
|
-
|
|
18207
|
-
|
|
18208
|
-
|
|
18209
|
-
|
|
18210
|
-
|
|
18211
|
-
|
|
18212
|
-
|
|
18213
|
-
|
|
18214
|
-
|
|
18215
|
-
|
|
18216
|
-
|
|
18217
|
-
|
|
18218
|
-
|
|
18219
|
-
|
|
18220
|
-
|
|
18221
|
-
|
|
18222
|
-
|
|
18223
|
-
|
|
18224
|
-
|
|
18225
|
-
|
|
18226
|
-
|
|
18186
|
+
oneOf: ({
|
|
18187
|
+
const: string;
|
|
18188
|
+
type: string;
|
|
18189
|
+
additionalProperties?: undefined;
|
|
18190
|
+
properties?: undefined;
|
|
18191
|
+
required?: undefined;
|
|
18192
|
+
} | {
|
|
18193
|
+
additionalProperties: boolean;
|
|
18194
|
+
properties: {
|
|
18195
|
+
"@type": {
|
|
18196
|
+
const: string;
|
|
18197
|
+
type: string;
|
|
18198
|
+
};
|
|
18199
|
+
addressCountry: {
|
|
18200
|
+
type: string;
|
|
18201
|
+
};
|
|
18202
|
+
addressLocality: {
|
|
18203
|
+
type: string;
|
|
18204
|
+
};
|
|
18205
|
+
codeInsee: {
|
|
18206
|
+
type: string;
|
|
18207
|
+
};
|
|
18208
|
+
level1: {
|
|
18209
|
+
type: string;
|
|
18210
|
+
};
|
|
18211
|
+
level1Name: {
|
|
18212
|
+
type: string;
|
|
18213
|
+
};
|
|
18214
|
+
level3: {
|
|
18215
|
+
minLength: number;
|
|
18216
|
+
type: string;
|
|
18217
|
+
};
|
|
18218
|
+
level3Name: {
|
|
18219
|
+
minLength: number;
|
|
18220
|
+
type: string;
|
|
18221
|
+
};
|
|
18222
|
+
level4: {
|
|
18223
|
+
minLength: number;
|
|
18224
|
+
type: string;
|
|
18225
|
+
};
|
|
18226
|
+
level4Name: {
|
|
18227
|
+
minLength: number;
|
|
18228
|
+
type: string;
|
|
18229
|
+
};
|
|
18230
|
+
localityId: {
|
|
18231
|
+
type: string;
|
|
18232
|
+
};
|
|
18233
|
+
postalCode: {
|
|
18234
|
+
type: string;
|
|
18235
|
+
};
|
|
18236
|
+
streetAddress: {
|
|
18237
|
+
type: string;
|
|
18238
|
+
};
|
|
18227
18239
|
};
|
|
18228
|
-
|
|
18229
|
-
|
|
18230
|
-
|
|
18240
|
+
required: string[];
|
|
18241
|
+
type: string;
|
|
18242
|
+
const?: undefined;
|
|
18243
|
+
})[];
|
|
18231
18244
|
};
|
|
18232
18245
|
collection: {
|
|
18233
18246
|
const: string;
|
|
@@ -18265,45 +18278,63 @@ declare const endpoints: {
|
|
|
18265
18278
|
type: string;
|
|
18266
18279
|
};
|
|
18267
18280
|
geo: {
|
|
18268
|
-
|
|
18269
|
-
|
|
18270
|
-
|
|
18271
|
-
|
|
18272
|
-
|
|
18273
|
-
|
|
18274
|
-
|
|
18275
|
-
|
|
18276
|
-
|
|
18277
|
-
|
|
18278
|
-
|
|
18281
|
+
oneOf: ({
|
|
18282
|
+
const: string;
|
|
18283
|
+
type: string;
|
|
18284
|
+
additionalProperties?: undefined;
|
|
18285
|
+
properties?: undefined;
|
|
18286
|
+
required?: undefined;
|
|
18287
|
+
} | {
|
|
18288
|
+
additionalProperties: boolean;
|
|
18289
|
+
properties: {
|
|
18290
|
+
"@type": {
|
|
18291
|
+
const: string;
|
|
18292
|
+
type: string;
|
|
18293
|
+
};
|
|
18294
|
+
latitude: {
|
|
18295
|
+
type: string[];
|
|
18296
|
+
};
|
|
18297
|
+
longitude: {
|
|
18298
|
+
type: string[];
|
|
18299
|
+
};
|
|
18279
18300
|
};
|
|
18280
|
-
|
|
18281
|
-
|
|
18282
|
-
|
|
18301
|
+
required: string[];
|
|
18302
|
+
type: string;
|
|
18303
|
+
const?: undefined;
|
|
18304
|
+
})[];
|
|
18283
18305
|
};
|
|
18284
18306
|
geoPosition: {
|
|
18285
|
-
|
|
18286
|
-
|
|
18287
|
-
|
|
18288
|
-
|
|
18307
|
+
oneOf: ({
|
|
18308
|
+
const: string;
|
|
18309
|
+
type: string;
|
|
18310
|
+
additionalProperties?: undefined;
|
|
18311
|
+
properties?: undefined;
|
|
18312
|
+
required?: undefined;
|
|
18313
|
+
} | {
|
|
18314
|
+
additionalProperties: boolean;
|
|
18315
|
+
properties: {
|
|
18316
|
+
coordinates: {
|
|
18317
|
+
items: {
|
|
18318
|
+
type: string;
|
|
18319
|
+
};
|
|
18320
|
+
maxItems: number;
|
|
18321
|
+
minItems: number;
|
|
18322
|
+
type: string;
|
|
18323
|
+
};
|
|
18324
|
+
float: {
|
|
18325
|
+
const: boolean;
|
|
18326
|
+
default: boolean;
|
|
18327
|
+
type: string;
|
|
18328
|
+
};
|
|
18329
|
+
type: {
|
|
18330
|
+
const: string;
|
|
18289
18331
|
type: string;
|
|
18290
18332
|
};
|
|
18291
|
-
maxItems: number;
|
|
18292
|
-
minItems: number;
|
|
18293
|
-
type: string;
|
|
18294
|
-
};
|
|
18295
|
-
float: {
|
|
18296
|
-
const: boolean;
|
|
18297
|
-
default: boolean;
|
|
18298
|
-
type: string;
|
|
18299
|
-
};
|
|
18300
|
-
type: {
|
|
18301
|
-
const: string;
|
|
18302
|
-
type: string;
|
|
18303
18333
|
};
|
|
18304
|
-
|
|
18305
|
-
|
|
18306
|
-
|
|
18334
|
+
required: string[];
|
|
18335
|
+
type: string;
|
|
18336
|
+
const?: undefined;
|
|
18337
|
+
})[];
|
|
18307
18338
|
};
|
|
18308
18339
|
id: {
|
|
18309
18340
|
pattern: string;
|
|
@@ -18399,10 +18430,17 @@ declare const endpoints: {
|
|
|
18399
18430
|
type: string;
|
|
18400
18431
|
};
|
|
18401
18432
|
tags: {
|
|
18402
|
-
|
|
18433
|
+
oneOf: ({
|
|
18434
|
+
const: string;
|
|
18403
18435
|
type: string;
|
|
18404
|
-
|
|
18405
|
-
|
|
18436
|
+
items?: undefined;
|
|
18437
|
+
} | {
|
|
18438
|
+
items: {
|
|
18439
|
+
type: string;
|
|
18440
|
+
};
|
|
18441
|
+
type: string;
|
|
18442
|
+
const?: undefined;
|
|
18443
|
+
})[];
|
|
18406
18444
|
};
|
|
18407
18445
|
telephone: {
|
|
18408
18446
|
type: string;
|
|
@@ -18641,101 +18679,128 @@ declare const endpoints: {
|
|
|
18641
18679
|
additionalProperties: boolean;
|
|
18642
18680
|
properties: {
|
|
18643
18681
|
address: {
|
|
18644
|
-
|
|
18645
|
-
|
|
18646
|
-
|
|
18647
|
-
|
|
18648
|
-
|
|
18649
|
-
|
|
18650
|
-
|
|
18651
|
-
|
|
18652
|
-
|
|
18653
|
-
|
|
18654
|
-
|
|
18655
|
-
|
|
18656
|
-
|
|
18657
|
-
|
|
18658
|
-
|
|
18659
|
-
|
|
18660
|
-
|
|
18661
|
-
|
|
18662
|
-
|
|
18663
|
-
|
|
18664
|
-
|
|
18665
|
-
|
|
18666
|
-
|
|
18667
|
-
|
|
18668
|
-
|
|
18669
|
-
|
|
18670
|
-
|
|
18671
|
-
|
|
18672
|
-
|
|
18673
|
-
|
|
18674
|
-
|
|
18675
|
-
|
|
18676
|
-
|
|
18677
|
-
|
|
18678
|
-
|
|
18679
|
-
|
|
18680
|
-
|
|
18681
|
-
|
|
18682
|
-
|
|
18683
|
-
|
|
18684
|
-
|
|
18685
|
-
|
|
18686
|
-
|
|
18687
|
-
|
|
18688
|
-
|
|
18689
|
-
|
|
18690
|
-
|
|
18691
|
-
|
|
18692
|
-
|
|
18693
|
-
|
|
18682
|
+
oneOf: ({
|
|
18683
|
+
const: string;
|
|
18684
|
+
type: string;
|
|
18685
|
+
additionalProperties?: undefined;
|
|
18686
|
+
properties?: undefined;
|
|
18687
|
+
required?: undefined;
|
|
18688
|
+
} | {
|
|
18689
|
+
additionalProperties: boolean;
|
|
18690
|
+
properties: {
|
|
18691
|
+
"@type": {
|
|
18692
|
+
const: string;
|
|
18693
|
+
type: string;
|
|
18694
|
+
};
|
|
18695
|
+
addressCountry: {
|
|
18696
|
+
type: string;
|
|
18697
|
+
};
|
|
18698
|
+
addressLocality: {
|
|
18699
|
+
type: string;
|
|
18700
|
+
};
|
|
18701
|
+
codeInsee: {
|
|
18702
|
+
type: string;
|
|
18703
|
+
};
|
|
18704
|
+
level1: {
|
|
18705
|
+
type: string;
|
|
18706
|
+
};
|
|
18707
|
+
level1Name: {
|
|
18708
|
+
type: string;
|
|
18709
|
+
};
|
|
18710
|
+
level3: {
|
|
18711
|
+
minLength: number;
|
|
18712
|
+
type: string;
|
|
18713
|
+
};
|
|
18714
|
+
level3Name: {
|
|
18715
|
+
minLength: number;
|
|
18716
|
+
type: string;
|
|
18717
|
+
};
|
|
18718
|
+
level4: {
|
|
18719
|
+
minLength: number;
|
|
18720
|
+
type: string;
|
|
18721
|
+
};
|
|
18722
|
+
level4Name: {
|
|
18723
|
+
minLength: number;
|
|
18724
|
+
type: string;
|
|
18725
|
+
};
|
|
18726
|
+
localityId: {
|
|
18727
|
+
type: string;
|
|
18728
|
+
};
|
|
18729
|
+
postalCode: {
|
|
18730
|
+
type: string;
|
|
18731
|
+
};
|
|
18732
|
+
streetAddress: {
|
|
18733
|
+
type: string;
|
|
18734
|
+
};
|
|
18735
|
+
};
|
|
18736
|
+
required: string[];
|
|
18737
|
+
type: string;
|
|
18738
|
+
const?: undefined;
|
|
18739
|
+
})[];
|
|
18740
|
+
};
|
|
18694
18741
|
collection: {
|
|
18695
18742
|
const: string;
|
|
18696
18743
|
default: string;
|
|
18697
18744
|
type: string;
|
|
18698
18745
|
};
|
|
18699
18746
|
geo: {
|
|
18700
|
-
|
|
18701
|
-
|
|
18702
|
-
|
|
18703
|
-
|
|
18704
|
-
|
|
18705
|
-
|
|
18706
|
-
|
|
18707
|
-
|
|
18708
|
-
|
|
18709
|
-
|
|
18710
|
-
|
|
18747
|
+
oneOf: ({
|
|
18748
|
+
const: string;
|
|
18749
|
+
type: string;
|
|
18750
|
+
additionalProperties?: undefined;
|
|
18751
|
+
properties?: undefined;
|
|
18752
|
+
required?: undefined;
|
|
18753
|
+
} | {
|
|
18754
|
+
additionalProperties: boolean;
|
|
18755
|
+
properties: {
|
|
18756
|
+
"@type": {
|
|
18757
|
+
const: string;
|
|
18758
|
+
type: string;
|
|
18759
|
+
};
|
|
18760
|
+
latitude: {
|
|
18761
|
+
type: string[];
|
|
18762
|
+
};
|
|
18763
|
+
longitude: {
|
|
18764
|
+
type: string[];
|
|
18765
|
+
};
|
|
18711
18766
|
};
|
|
18712
|
-
|
|
18713
|
-
|
|
18714
|
-
|
|
18767
|
+
required: string[];
|
|
18768
|
+
type: string;
|
|
18769
|
+
const?: undefined;
|
|
18770
|
+
})[];
|
|
18715
18771
|
};
|
|
18716
18772
|
geoPosition: {
|
|
18717
|
-
|
|
18718
|
-
|
|
18719
|
-
|
|
18720
|
-
|
|
18773
|
+
oneOf: ({
|
|
18774
|
+
const: string;
|
|
18775
|
+
type: string;
|
|
18776
|
+
additionalProperties?: undefined;
|
|
18777
|
+
properties?: undefined;
|
|
18778
|
+
required?: undefined;
|
|
18779
|
+
} | {
|
|
18780
|
+
additionalProperties: boolean;
|
|
18781
|
+
properties: {
|
|
18782
|
+
coordinates: {
|
|
18783
|
+
items: {
|
|
18784
|
+
type: string;
|
|
18785
|
+
};
|
|
18786
|
+
maxItems: number;
|
|
18787
|
+
minItems: number;
|
|
18788
|
+
type: string;
|
|
18789
|
+
};
|
|
18790
|
+
float: {
|
|
18791
|
+
const: boolean;
|
|
18792
|
+
default: boolean;
|
|
18793
|
+
type: string;
|
|
18794
|
+
};
|
|
18795
|
+
type: {
|
|
18796
|
+
const: string;
|
|
18721
18797
|
type: string;
|
|
18722
18798
|
};
|
|
18723
|
-
maxItems: number;
|
|
18724
|
-
minItems: number;
|
|
18725
|
-
type: string;
|
|
18726
|
-
};
|
|
18727
|
-
float: {
|
|
18728
|
-
const: boolean;
|
|
18729
|
-
default: boolean;
|
|
18730
|
-
type: string;
|
|
18731
|
-
};
|
|
18732
|
-
type: {
|
|
18733
|
-
const: string;
|
|
18734
|
-
type: string;
|
|
18735
18799
|
};
|
|
18736
|
-
|
|
18737
|
-
|
|
18738
|
-
|
|
18800
|
+
required: string[];
|
|
18801
|
+
type: string;
|
|
18802
|
+
const?: undefined;
|
|
18803
|
+
})[];
|
|
18739
18804
|
};
|
|
18740
18805
|
id: {
|
|
18741
18806
|
pattern: string;
|
|
@@ -18809,10 +18874,17 @@ declare const endpoints: {
|
|
|
18809
18874
|
type: string;
|
|
18810
18875
|
};
|
|
18811
18876
|
tags: {
|
|
18812
|
-
|
|
18877
|
+
oneOf: ({
|
|
18878
|
+
const: string;
|
|
18813
18879
|
type: string;
|
|
18814
|
-
|
|
18815
|
-
|
|
18880
|
+
items?: undefined;
|
|
18881
|
+
} | {
|
|
18882
|
+
items: {
|
|
18883
|
+
type: string;
|
|
18884
|
+
};
|
|
18885
|
+
type: string;
|
|
18886
|
+
const?: undefined;
|
|
18887
|
+
})[];
|
|
18816
18888
|
};
|
|
18817
18889
|
url: {
|
|
18818
18890
|
anyOf: ({
|
|
@@ -19041,55 +19113,64 @@ declare const endpoints: {
|
|
|
19041
19113
|
additionalProperties: boolean;
|
|
19042
19114
|
properties: {
|
|
19043
19115
|
address: {
|
|
19044
|
-
|
|
19045
|
-
|
|
19046
|
-
|
|
19047
|
-
|
|
19048
|
-
|
|
19049
|
-
|
|
19050
|
-
|
|
19051
|
-
|
|
19052
|
-
|
|
19053
|
-
|
|
19054
|
-
|
|
19055
|
-
|
|
19056
|
-
|
|
19057
|
-
|
|
19058
|
-
|
|
19059
|
-
|
|
19060
|
-
|
|
19061
|
-
|
|
19062
|
-
|
|
19063
|
-
|
|
19064
|
-
|
|
19065
|
-
|
|
19066
|
-
|
|
19067
|
-
|
|
19068
|
-
|
|
19069
|
-
|
|
19070
|
-
|
|
19071
|
-
|
|
19072
|
-
|
|
19073
|
-
|
|
19074
|
-
|
|
19075
|
-
|
|
19076
|
-
|
|
19077
|
-
|
|
19078
|
-
|
|
19079
|
-
|
|
19080
|
-
|
|
19081
|
-
|
|
19082
|
-
|
|
19083
|
-
|
|
19084
|
-
|
|
19085
|
-
|
|
19086
|
-
|
|
19087
|
-
|
|
19088
|
-
|
|
19116
|
+
oneOf: ({
|
|
19117
|
+
const: string;
|
|
19118
|
+
type: string;
|
|
19119
|
+
additionalProperties?: undefined;
|
|
19120
|
+
properties?: undefined;
|
|
19121
|
+
required?: undefined;
|
|
19122
|
+
} | {
|
|
19123
|
+
additionalProperties: boolean;
|
|
19124
|
+
properties: {
|
|
19125
|
+
"@type": {
|
|
19126
|
+
const: string;
|
|
19127
|
+
type: string;
|
|
19128
|
+
};
|
|
19129
|
+
addressCountry: {
|
|
19130
|
+
type: string;
|
|
19131
|
+
};
|
|
19132
|
+
addressLocality: {
|
|
19133
|
+
type: string;
|
|
19134
|
+
};
|
|
19135
|
+
codeInsee: {
|
|
19136
|
+
type: string;
|
|
19137
|
+
};
|
|
19138
|
+
level1: {
|
|
19139
|
+
type: string;
|
|
19140
|
+
};
|
|
19141
|
+
level1Name: {
|
|
19142
|
+
type: string;
|
|
19143
|
+
};
|
|
19144
|
+
level3: {
|
|
19145
|
+
minLength: number;
|
|
19146
|
+
type: string;
|
|
19147
|
+
};
|
|
19148
|
+
level3Name: {
|
|
19149
|
+
minLength: number;
|
|
19150
|
+
type: string;
|
|
19151
|
+
};
|
|
19152
|
+
level4: {
|
|
19153
|
+
minLength: number;
|
|
19154
|
+
type: string;
|
|
19155
|
+
};
|
|
19156
|
+
level4Name: {
|
|
19157
|
+
minLength: number;
|
|
19158
|
+
type: string;
|
|
19159
|
+
};
|
|
19160
|
+
localityId: {
|
|
19161
|
+
type: string;
|
|
19162
|
+
};
|
|
19163
|
+
postalCode: {
|
|
19164
|
+
type: string;
|
|
19165
|
+
};
|
|
19166
|
+
streetAddress: {
|
|
19167
|
+
type: string;
|
|
19168
|
+
};
|
|
19089
19169
|
};
|
|
19090
|
-
|
|
19091
|
-
|
|
19092
|
-
|
|
19170
|
+
required: string[];
|
|
19171
|
+
type: string;
|
|
19172
|
+
const?: undefined;
|
|
19173
|
+
})[];
|
|
19093
19174
|
};
|
|
19094
19175
|
collection: {
|
|
19095
19176
|
const: string;
|
|
@@ -19100,45 +19181,63 @@ declare const endpoints: {
|
|
|
19100
19181
|
type: string;
|
|
19101
19182
|
};
|
|
19102
19183
|
geo: {
|
|
19103
|
-
|
|
19104
|
-
|
|
19105
|
-
|
|
19106
|
-
|
|
19107
|
-
|
|
19108
|
-
|
|
19109
|
-
|
|
19110
|
-
|
|
19111
|
-
|
|
19112
|
-
|
|
19113
|
-
|
|
19184
|
+
oneOf: ({
|
|
19185
|
+
const: string;
|
|
19186
|
+
type: string;
|
|
19187
|
+
additionalProperties?: undefined;
|
|
19188
|
+
properties?: undefined;
|
|
19189
|
+
required?: undefined;
|
|
19190
|
+
} | {
|
|
19191
|
+
additionalProperties: boolean;
|
|
19192
|
+
properties: {
|
|
19193
|
+
"@type": {
|
|
19194
|
+
const: string;
|
|
19195
|
+
type: string;
|
|
19196
|
+
};
|
|
19197
|
+
latitude: {
|
|
19198
|
+
type: string[];
|
|
19199
|
+
};
|
|
19200
|
+
longitude: {
|
|
19201
|
+
type: string[];
|
|
19202
|
+
};
|
|
19114
19203
|
};
|
|
19115
|
-
|
|
19116
|
-
|
|
19117
|
-
|
|
19204
|
+
required: string[];
|
|
19205
|
+
type: string;
|
|
19206
|
+
const?: undefined;
|
|
19207
|
+
})[];
|
|
19118
19208
|
};
|
|
19119
19209
|
geoPosition: {
|
|
19120
|
-
|
|
19121
|
-
|
|
19122
|
-
|
|
19123
|
-
|
|
19210
|
+
oneOf: ({
|
|
19211
|
+
const: string;
|
|
19212
|
+
type: string;
|
|
19213
|
+
additionalProperties?: undefined;
|
|
19214
|
+
properties?: undefined;
|
|
19215
|
+
required?: undefined;
|
|
19216
|
+
} | {
|
|
19217
|
+
additionalProperties: boolean;
|
|
19218
|
+
properties: {
|
|
19219
|
+
coordinates: {
|
|
19220
|
+
items: {
|
|
19221
|
+
type: string;
|
|
19222
|
+
};
|
|
19223
|
+
maxItems: number;
|
|
19224
|
+
minItems: number;
|
|
19225
|
+
type: string;
|
|
19226
|
+
};
|
|
19227
|
+
float: {
|
|
19228
|
+
const: boolean;
|
|
19229
|
+
default: boolean;
|
|
19230
|
+
type: string;
|
|
19231
|
+
};
|
|
19232
|
+
type: {
|
|
19233
|
+
const: string;
|
|
19124
19234
|
type: string;
|
|
19125
19235
|
};
|
|
19126
|
-
maxItems: number;
|
|
19127
|
-
minItems: number;
|
|
19128
|
-
type: string;
|
|
19129
|
-
};
|
|
19130
|
-
float: {
|
|
19131
|
-
const: boolean;
|
|
19132
|
-
default: boolean;
|
|
19133
|
-
type: string;
|
|
19134
|
-
};
|
|
19135
|
-
type: {
|
|
19136
|
-
const: string;
|
|
19137
|
-
type: string;
|
|
19138
19236
|
};
|
|
19139
|
-
|
|
19140
|
-
|
|
19141
|
-
|
|
19237
|
+
required: string[];
|
|
19238
|
+
type: string;
|
|
19239
|
+
const?: undefined;
|
|
19240
|
+
})[];
|
|
19142
19241
|
};
|
|
19143
19242
|
id: {
|
|
19144
19243
|
pattern: string;
|
|
@@ -19200,10 +19299,17 @@ declare const endpoints: {
|
|
|
19200
19299
|
type: string;
|
|
19201
19300
|
};
|
|
19202
19301
|
tags: {
|
|
19203
|
-
|
|
19302
|
+
oneOf: ({
|
|
19303
|
+
const: string;
|
|
19204
19304
|
type: string;
|
|
19205
|
-
|
|
19206
|
-
|
|
19305
|
+
items?: undefined;
|
|
19306
|
+
} | {
|
|
19307
|
+
items: {
|
|
19308
|
+
type: string;
|
|
19309
|
+
};
|
|
19310
|
+
type: string;
|
|
19311
|
+
const?: undefined;
|
|
19312
|
+
})[];
|
|
19207
19313
|
};
|
|
19208
19314
|
type: {
|
|
19209
19315
|
enum: string[];
|
|
@@ -19521,45 +19627,63 @@ declare const endpoints: {
|
|
|
19521
19627
|
type: string;
|
|
19522
19628
|
};
|
|
19523
19629
|
geo: {
|
|
19524
|
-
|
|
19525
|
-
|
|
19526
|
-
|
|
19527
|
-
|
|
19528
|
-
|
|
19529
|
-
|
|
19530
|
-
|
|
19531
|
-
|
|
19532
|
-
|
|
19533
|
-
|
|
19534
|
-
|
|
19630
|
+
oneOf: ({
|
|
19631
|
+
const: string;
|
|
19632
|
+
type: string;
|
|
19633
|
+
additionalProperties?: undefined;
|
|
19634
|
+
properties?: undefined;
|
|
19635
|
+
required?: undefined;
|
|
19636
|
+
} | {
|
|
19637
|
+
additionalProperties: boolean;
|
|
19638
|
+
properties: {
|
|
19639
|
+
"@type": {
|
|
19640
|
+
const: string;
|
|
19641
|
+
type: string;
|
|
19642
|
+
};
|
|
19643
|
+
latitude: {
|
|
19644
|
+
type: string[];
|
|
19645
|
+
};
|
|
19646
|
+
longitude: {
|
|
19647
|
+
type: string[];
|
|
19648
|
+
};
|
|
19535
19649
|
};
|
|
19536
|
-
|
|
19537
|
-
|
|
19538
|
-
|
|
19650
|
+
required: string[];
|
|
19651
|
+
type: string;
|
|
19652
|
+
const?: undefined;
|
|
19653
|
+
})[];
|
|
19539
19654
|
};
|
|
19540
19655
|
geoPosition: {
|
|
19541
|
-
|
|
19542
|
-
|
|
19543
|
-
|
|
19544
|
-
|
|
19656
|
+
oneOf: ({
|
|
19657
|
+
const: string;
|
|
19658
|
+
type: string;
|
|
19659
|
+
additionalProperties?: undefined;
|
|
19660
|
+
properties?: undefined;
|
|
19661
|
+
required?: undefined;
|
|
19662
|
+
} | {
|
|
19663
|
+
additionalProperties: boolean;
|
|
19664
|
+
properties: {
|
|
19665
|
+
coordinates: {
|
|
19666
|
+
items: {
|
|
19667
|
+
type: string;
|
|
19668
|
+
};
|
|
19669
|
+
maxItems: number;
|
|
19670
|
+
minItems: number;
|
|
19671
|
+
type: string;
|
|
19672
|
+
};
|
|
19673
|
+
float: {
|
|
19674
|
+
const: boolean;
|
|
19675
|
+
default: boolean;
|
|
19676
|
+
type: string;
|
|
19677
|
+
};
|
|
19678
|
+
type: {
|
|
19679
|
+
const: string;
|
|
19545
19680
|
type: string;
|
|
19546
19681
|
};
|
|
19547
|
-
maxItems: number;
|
|
19548
|
-
minItems: number;
|
|
19549
|
-
type: string;
|
|
19550
|
-
};
|
|
19551
|
-
float: {
|
|
19552
|
-
const: boolean;
|
|
19553
|
-
default: boolean;
|
|
19554
|
-
type: string;
|
|
19555
|
-
};
|
|
19556
|
-
type: {
|
|
19557
|
-
const: string;
|
|
19558
|
-
type: string;
|
|
19559
19682
|
};
|
|
19560
|
-
|
|
19561
|
-
|
|
19562
|
-
|
|
19683
|
+
required: string[];
|
|
19684
|
+
type: string;
|
|
19685
|
+
const?: undefined;
|
|
19686
|
+
})[];
|
|
19563
19687
|
};
|
|
19564
19688
|
id: {
|
|
19565
19689
|
pattern: string;
|