@aws-sdk/client-geo-places 3.1081.0 → 3.1083.0
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/README.md +1 -1
- package/dist-cjs/index.js +199 -57
- package/dist-es/models/enums.js +67 -0
- package/dist-es/schemas/schemas_0.js +118 -56
- package/dist-types/GeoPlaces.d.ts +1 -1
- package/dist-types/GeoPlacesClient.d.ts +1 -1
- package/dist-types/commands/AutocompleteCommand.d.ts +8 -7
- package/dist-types/commands/GeocodeCommand.d.ts +84 -13
- package/dist-types/commands/GetPlaceCommand.d.ts +29 -11
- package/dist-types/commands/ReverseGeocodeCommand.d.ts +26 -10
- package/dist-types/commands/SearchNearbyCommand.d.ts +18 -5
- package/dist-types/commands/SearchTextCommand.d.ts +18 -4
- package/dist-types/commands/SuggestCommand.d.ts +27 -6
- package/dist-types/index.d.ts +1 -1
- package/dist-types/models/enums.d.ts +147 -10
- package/dist-types/models/models_0.d.ts +232 -13
- package/dist-types/schemas/schemas_0.d.ts +4 -0
- package/dist-types/ts3.4/models/enums.d.ts +87 -0
- package/dist-types/ts3.4/models/models_0.d.ts +57 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +4 -0
- package/package.json +8 -8
package/dist-es/models/enums.js
CHANGED
|
@@ -1,18 +1,52 @@
|
|
|
1
|
+
export const AccessPointType = {
|
|
2
|
+
DELIVERY: "Delivery",
|
|
3
|
+
EMERGENCY: "Emergency",
|
|
4
|
+
ENTRANCE: "Entrance",
|
|
5
|
+
LOADING: "Loading",
|
|
6
|
+
OTHER: "Other",
|
|
7
|
+
PARKING: "Parking",
|
|
8
|
+
TAXI: "Taxi",
|
|
9
|
+
};
|
|
1
10
|
export const TypePlacement = {
|
|
2
11
|
AFTER_BASE_NAME: "AfterBaseName",
|
|
3
12
|
BEFORE_BASE_NAME: "BeforeBaseName",
|
|
4
13
|
};
|
|
14
|
+
export const AddressTranslationComponent = {
|
|
15
|
+
DISTRICT: "District",
|
|
16
|
+
LOCALITY: "Locality",
|
|
17
|
+
REGION: "Region",
|
|
18
|
+
SUB_REGION: "SubRegion",
|
|
19
|
+
};
|
|
20
|
+
export const TranslationNameType = {
|
|
21
|
+
ABBREVIATION: "Abbreviation",
|
|
22
|
+
AREA_CODE: "AreaCode",
|
|
23
|
+
BASE_NAME: "BaseName",
|
|
24
|
+
EXONYM: "Exonym",
|
|
25
|
+
SHORTENED: "Shortened",
|
|
26
|
+
SYNONYM: "Synonym",
|
|
27
|
+
};
|
|
28
|
+
export const AdminNamesPreference = {
|
|
29
|
+
ALTERNATIVE: "Alternative",
|
|
30
|
+
PRIMARY: "Primary",
|
|
31
|
+
};
|
|
5
32
|
export const AutocompleteAdditionalFeature = {
|
|
6
33
|
CORE: "Core",
|
|
7
34
|
};
|
|
8
35
|
export const AutocompleteFilterPlaceType = {
|
|
36
|
+
COUNTRY: "Country",
|
|
37
|
+
INTERPOLATED_ADDRESS: "InterpolatedAddress",
|
|
38
|
+
INTERSECTION: "Intersection",
|
|
9
39
|
LOCALITY: "Locality",
|
|
40
|
+
POINT_ADDRESS: "PointAddress",
|
|
10
41
|
POSTAL_CODE: "PostalCode",
|
|
42
|
+
REGION: "Region",
|
|
43
|
+
STREET: "Street",
|
|
11
44
|
};
|
|
12
45
|
export const AutocompleteIntendedUse = {
|
|
13
46
|
SINGLE_USE: "SingleUse",
|
|
14
47
|
};
|
|
15
48
|
export const PostalCodeMode = {
|
|
49
|
+
ENUMERATE_SPANNED_DISTRICTS: "EnumerateSpannedDistricts",
|
|
16
50
|
ENUMERATE_SPANNED_LOCALITIES: "EnumerateSpannedLocalities",
|
|
17
51
|
MERGE_ALL_SPANNED_LOCALITIES: "MergeAllSpannedLocalities",
|
|
18
52
|
};
|
|
@@ -48,12 +82,20 @@ export const GeocodeAdditionalFeature = {
|
|
|
48
82
|
SECONDARY_ADDRESSES: "SecondaryAddresses",
|
|
49
83
|
TIME_ZONE: "TimeZone",
|
|
50
84
|
};
|
|
85
|
+
export const GeocodeAddressNamesMode = {
|
|
86
|
+
ADMINISTRATIVE: "Administrative",
|
|
87
|
+
MATCHED: "Matched",
|
|
88
|
+
};
|
|
51
89
|
export const GeocodeFilterPlaceType = {
|
|
90
|
+
COUNTRY: "Country",
|
|
52
91
|
INTERPOLATED_ADDRESS: "InterpolatedAddress",
|
|
53
92
|
INTERSECTION: "Intersection",
|
|
54
93
|
LOCALITY: "Locality",
|
|
55
94
|
POINT_ADDRESS: "PointAddress",
|
|
95
|
+
POINT_OF_INTEREST: "PointOfInterest",
|
|
56
96
|
POSTAL_CODE: "PostalCode",
|
|
97
|
+
REGION: "Region",
|
|
98
|
+
SECONDARY_ADDRESS: "SecondaryAddress",
|
|
57
99
|
STREET: "Street",
|
|
58
100
|
};
|
|
59
101
|
export const GeocodeIntendedUse = {
|
|
@@ -83,24 +125,36 @@ export const RecordTypeCode = {
|
|
|
83
125
|
export const GetPlaceAdditionalFeature = {
|
|
84
126
|
ACCESS: "Access",
|
|
85
127
|
CONTACT: "Contact",
|
|
128
|
+
CROSS_REFERENCES: "CrossReferences",
|
|
86
129
|
PHONEMES: "Phonemes",
|
|
87
130
|
SECONDARY_ADDRESSES: "SecondaryAddresses",
|
|
88
131
|
TIME_ZONE: "TimeZone",
|
|
89
132
|
};
|
|
133
|
+
export const GetPlaceAddressNamesMode = {
|
|
134
|
+
ADMINISTRATIVE: "Administrative",
|
|
135
|
+
};
|
|
90
136
|
export const GetPlaceIntendedUse = {
|
|
91
137
|
SINGLE_USE: "SingleUse",
|
|
92
138
|
STORAGE: "Storage",
|
|
93
139
|
};
|
|
140
|
+
export const PlaceAttribute = {
|
|
141
|
+
DRIVE_THROUGH: "DriveThrough",
|
|
142
|
+
};
|
|
94
143
|
export const ReverseGeocodeAdditionalFeature = {
|
|
95
144
|
ACCESS: "Access",
|
|
96
145
|
INTERSECTIONS: "Intersections",
|
|
97
146
|
TIME_ZONE: "TimeZone",
|
|
98
147
|
};
|
|
148
|
+
export const ReverseGeocodeAddressNamesMode = {
|
|
149
|
+
ADMINISTRATIVE: "Administrative",
|
|
150
|
+
};
|
|
99
151
|
export const ReverseGeocodeFilterPlaceType = {
|
|
100
152
|
INTERPOLATED_ADDRESS: "InterpolatedAddress",
|
|
101
153
|
INTERSECTION: "Intersection",
|
|
102
154
|
LOCALITY: "Locality",
|
|
103
155
|
POINT_ADDRESS: "PointAddress",
|
|
156
|
+
POINT_OF_INTEREST: "PointOfInterest",
|
|
157
|
+
SECONDARY_ADDRESS: "SecondaryAddress",
|
|
104
158
|
STREET: "Street",
|
|
105
159
|
};
|
|
106
160
|
export const ReverseGeocodeIntendedUse = {
|
|
@@ -110,6 +164,7 @@ export const ReverseGeocodeIntendedUse = {
|
|
|
110
164
|
export const SearchNearbyAdditionalFeature = {
|
|
111
165
|
ACCESS: "Access",
|
|
112
166
|
CONTACT: "Contact",
|
|
167
|
+
CROSS_REFERENCES: "CrossReferences",
|
|
113
168
|
PHONEMES: "Phonemes",
|
|
114
169
|
TIME_ZONE: "TimeZone",
|
|
115
170
|
};
|
|
@@ -120,6 +175,7 @@ export const SearchNearbyIntendedUse = {
|
|
|
120
175
|
export const SearchTextAdditionalFeature = {
|
|
121
176
|
ACCESS: "Access",
|
|
122
177
|
CONTACT: "Contact",
|
|
178
|
+
CROSS_REFERENCES: "CrossReferences",
|
|
123
179
|
PHONEMES: "Phonemes",
|
|
124
180
|
TIME_ZONE: "TimeZone",
|
|
125
181
|
};
|
|
@@ -127,15 +183,26 @@ export const SearchTextIntendedUse = {
|
|
|
127
183
|
SINGLE_USE: "SingleUse",
|
|
128
184
|
STORAGE: "Storage",
|
|
129
185
|
};
|
|
186
|
+
export const SearchTextTravelMode = {
|
|
187
|
+
CAR: "Car",
|
|
188
|
+
SCOOTER: "Scooter",
|
|
189
|
+
TRUCK: "Truck",
|
|
190
|
+
};
|
|
130
191
|
export const SuggestAdditionalFeature = {
|
|
131
192
|
ACCESS: "Access",
|
|
132
193
|
CORE: "Core",
|
|
194
|
+
CROSS_REFERENCES: "CrossReferences",
|
|
133
195
|
PHONEMES: "Phonemes",
|
|
134
196
|
TIME_ZONE: "TimeZone",
|
|
135
197
|
};
|
|
136
198
|
export const SuggestIntendedUse = {
|
|
137
199
|
SINGLE_USE: "SingleUse",
|
|
138
200
|
};
|
|
201
|
+
export const SuggestTravelMode = {
|
|
202
|
+
CAR: "Car",
|
|
203
|
+
SCOOTER: "Scooter",
|
|
204
|
+
TRUCK: "Truck",
|
|
205
|
+
};
|
|
139
206
|
export const QueryType = {
|
|
140
207
|
BUSINESS_CHAIN: "BusinessChain",
|
|
141
208
|
CATEGORY: "Category",
|
|
@@ -9,6 +9,9 @@ const _AH = "AutocompleteHighlights";
|
|
|
9
9
|
const _AK = "ApiKey";
|
|
10
10
|
const _AN = "AddressNumber";
|
|
11
11
|
const _ANC = "AddressNumberCorrected";
|
|
12
|
+
const _ANL = "AdminNamesList";
|
|
13
|
+
const _ANM = "AddressNamesMode";
|
|
14
|
+
const _ANd = "AdminNames";
|
|
12
15
|
const _AP = "AccessPoint";
|
|
13
16
|
const _APL = "AccessPointList";
|
|
14
17
|
const _APc = "AccessPoints";
|
|
@@ -19,6 +22,7 @@ const _ARL = "AccessRestrictionList";
|
|
|
19
22
|
const _ARc = "AccessRestrictions";
|
|
20
23
|
const _ARu = "AutocompleteRequest";
|
|
21
24
|
const _ARut = "AutocompleteResponse";
|
|
25
|
+
const _AT = "AddressTranslations";
|
|
22
26
|
const _Au = "Autocomplete";
|
|
23
27
|
const _B = "Block";
|
|
24
28
|
const _BB = "BoundingBox";
|
|
@@ -38,6 +42,9 @@ const _CDL = "ContactDetailsList";
|
|
|
38
42
|
const _CH = "CountryHighlights";
|
|
39
43
|
const _CL = "CategoryList";
|
|
40
44
|
const _CMS = "ComponentMatchScores";
|
|
45
|
+
const _CR = "CrossReference";
|
|
46
|
+
const _CRL = "CrossReferenceList";
|
|
47
|
+
const _CRr = "CrossReferences";
|
|
41
48
|
const _Ca = "Category";
|
|
42
49
|
const _Ce = "Center";
|
|
43
50
|
const _Ci = "Circle";
|
|
@@ -59,6 +66,7 @@ const _EBC = "ExcludeBusinessChains";
|
|
|
59
66
|
const _EC = "ExcludeCategories";
|
|
60
67
|
const _EFT = "ExcludeFoodTypes";
|
|
61
68
|
const _EI = "EndIndex";
|
|
69
|
+
const _EPA = "EstimatedPointAddress";
|
|
62
70
|
const _F = "Filter";
|
|
63
71
|
const _FBCL = "FilterBusinessChainList";
|
|
64
72
|
const _FC = "FilterCircle";
|
|
@@ -111,10 +119,12 @@ const _MR = "MaxResults";
|
|
|
111
119
|
const _MS = "MatchScores";
|
|
112
120
|
const _MSD = "MatchScoreDetails";
|
|
113
121
|
const _MV = "MapView";
|
|
114
|
-
const _N = "
|
|
122
|
+
const _N = "Names";
|
|
115
123
|
const _NT = "NextToken";
|
|
124
|
+
const _Na = "Name";
|
|
116
125
|
const _Nu = "Number";
|
|
117
126
|
const _O = "Overall";
|
|
127
|
+
const _OC = "OtherComponents";
|
|
118
128
|
const _OD = "OpenDuration";
|
|
119
129
|
const _OH = "OpeningHours";
|
|
120
130
|
const _OHC = "OpeningHoursComponents";
|
|
@@ -128,7 +138,10 @@ const _OT = "OpenTime";
|
|
|
128
138
|
const _OTr = "OriginalTerm";
|
|
129
139
|
const _Of = "Offset";
|
|
130
140
|
const _P = "Position";
|
|
131
|
-
const _PA = "
|
|
141
|
+
const _PA = "PlaceAttribute";
|
|
142
|
+
const _PAL = "PlaceAttributeList";
|
|
143
|
+
const _PAl = "PlaceAttributes";
|
|
144
|
+
const _PAo = "PostalAuthority";
|
|
132
145
|
const _PB = "PricingBucket";
|
|
133
146
|
const _PC = "PostalCode";
|
|
134
147
|
const _PCD = "PostalCodeDetails";
|
|
@@ -150,8 +163,9 @@ const _Ph = "Phones";
|
|
|
150
163
|
const _Pho = "Phonemes";
|
|
151
164
|
const _Pl = "Place";
|
|
152
165
|
const _Pr = "Primary";
|
|
153
|
-
const _Pre = "
|
|
154
|
-
const _Pref = "
|
|
166
|
+
const _Pre = "Preference";
|
|
167
|
+
const _Pref = "Preferred";
|
|
168
|
+
const _Prefi = "Prefix";
|
|
155
169
|
const _Q = "Query";
|
|
156
170
|
const _QC = "QueryComponents";
|
|
157
171
|
const _QCu = "QueryComponent";
|
|
@@ -193,6 +207,7 @@ const _SB = "SensitiveBoolean";
|
|
|
193
207
|
const _SBu = "SubBlock";
|
|
194
208
|
const _SC = "StreetComponents";
|
|
195
209
|
const _SCL = "StreetComponentsList";
|
|
210
|
+
const _SCo = "SourceCategories";
|
|
196
211
|
const _SD = "SubDistrict";
|
|
197
212
|
const _SF = "SuggestFilter";
|
|
198
213
|
const _SH = "SuggestHighlights";
|
|
@@ -203,6 +218,7 @@ const _SNR = "SearchNearbyRequest";
|
|
|
203
218
|
const _SNRI = "SearchNearbyResultItem";
|
|
204
219
|
const _SNRIL = "SearchNearbyResultItemList";
|
|
205
220
|
const _SNRe = "SearchNearbyResponse";
|
|
221
|
+
const _SPI = "SourcePlaceId";
|
|
206
222
|
const _SPR = "SuggestPlaceResult";
|
|
207
223
|
const _SQR = "SuggestQueryResult";
|
|
208
224
|
const _SR = "SubRegion";
|
|
@@ -219,14 +235,21 @@ const _STR = "SearchTextRequest";
|
|
|
219
235
|
const _STRI = "SearchTextResultItem";
|
|
220
236
|
const _STRIL = "SearchTextResultItemList";
|
|
221
237
|
const _STRe = "SearchTextResponse";
|
|
238
|
+
const _So = "Source";
|
|
222
239
|
const _Su = "Suffix";
|
|
223
240
|
const _Sug = "Suggest";
|
|
224
|
-
const _T = "
|
|
241
|
+
const _T = "Type";
|
|
242
|
+
const _TD = "TranslationDetails";
|
|
225
243
|
const _TE = "ThrottlingException";
|
|
244
|
+
const _TM = "TravelMode";
|
|
245
|
+
const _TN = "TranslationName";
|
|
246
|
+
const _TNL = "TranslationNameList";
|
|
226
247
|
const _TP = "TypePlacement";
|
|
227
248
|
const _TS = "TypeSeparator";
|
|
228
249
|
const _TZ = "TimeZone";
|
|
229
|
-
const
|
|
250
|
+
const _Ti = "Title";
|
|
251
|
+
const _Tr = "Translations";
|
|
252
|
+
const _Tra = "Transliterated";
|
|
230
253
|
const _UZ = "UspsZip";
|
|
231
254
|
const _UZP = "UspsZipPlus4";
|
|
232
255
|
const _V = "Value";
|
|
@@ -236,6 +259,7 @@ const _VEFL = "ValidationExceptionFieldList";
|
|
|
236
259
|
const _W = "Websites";
|
|
237
260
|
const _ZCC = "ZipClassificationCode";
|
|
238
261
|
const _af = "additional-features";
|
|
262
|
+
const _anm = "address-names-mode";
|
|
239
263
|
const _c = "client";
|
|
240
264
|
const _e = "error";
|
|
241
265
|
const _fL = "fieldList";
|
|
@@ -299,8 +323,9 @@ var DurationSeconds = [0, n0, _DS, 8, 1];
|
|
|
299
323
|
var GeocodeFilterPlaceType = [0, n0, _GFPT, 8, 0];
|
|
300
324
|
var Heading = [0, n0, _H, 8, 1];
|
|
301
325
|
var OpeningHoursDisplay = [0, n0, _OHD, 8, 0];
|
|
326
|
+
var PlaceAttribute = [0, n0, _PA, 8, 0];
|
|
302
327
|
var PlaceType = [0, n0, _PT, 8, 0];
|
|
303
|
-
var PostalAuthority = [0, n0,
|
|
328
|
+
var PostalAuthority = [0, n0, _PAo, 8, 0];
|
|
304
329
|
var PostalCodeType = [0, n0, _PCT, 8, 0];
|
|
305
330
|
var RecordTypeCode = [0, n0, _RTC, 8, 0];
|
|
306
331
|
var SensitiveBoolean = [0, n0, _SB, 8, 2];
|
|
@@ -308,8 +333,8 @@ var SensitiveString = [0, n0, _SS, 8, 0];
|
|
|
308
333
|
var ZipClassificationCode = [0, n0, _ZCC, 8, 0];
|
|
309
334
|
export var AccessPoint$ = [3, n0, _AP,
|
|
310
335
|
0,
|
|
311
|
-
[_P],
|
|
312
|
-
[[() => Position, 0]]
|
|
336
|
+
[_P, _T, _Pr, _L],
|
|
337
|
+
[[() => Position, 0], 0, [() => SensitiveBoolean, 0], [() => SensitiveString, 0]]
|
|
313
338
|
];
|
|
314
339
|
export var AccessRestriction$ = [3, n0, _AR,
|
|
315
340
|
0,
|
|
@@ -331,6 +356,11 @@ export var AddressComponentPhonemes$ = [3, n0, _ACP,
|
|
|
331
356
|
[_Co, _Reg, _SR, _Lo, _D, _SD, _B, _SBu, _S],
|
|
332
357
|
[[() => PhonemeTranscriptionList, 0], [() => PhonemeTranscriptionList, 0], [() => PhonemeTranscriptionList, 0], [() => PhonemeTranscriptionList, 0], [() => PhonemeTranscriptionList, 0], [() => PhonemeTranscriptionList, 0], [() => PhonemeTranscriptionList, 0], [() => PhonemeTranscriptionList, 0], [() => PhonemeTranscriptionList, 0]]
|
|
333
358
|
];
|
|
359
|
+
export var AdminNames$ = [3, n0, _ANd,
|
|
360
|
+
0,
|
|
361
|
+
[_N, _Pre],
|
|
362
|
+
[[() => TranslationNameList, 0], 0], 1
|
|
363
|
+
];
|
|
334
364
|
export var AutocompleteAddressHighlights$ = [3, n0, _AAH,
|
|
335
365
|
0,
|
|
336
366
|
[_L, _Co, _Reg, _SR, _Lo, _D, _SD, _S, _B, _SBu, _I, _PC, _AN, _Bu],
|
|
@@ -343,7 +373,7 @@ export var AutocompleteFilter$ = [3, n0, _AF,
|
|
|
343
373
|
];
|
|
344
374
|
export var AutocompleteHighlights$ = [3, n0, _AH,
|
|
345
375
|
0,
|
|
346
|
-
[
|
|
376
|
+
[_Ti, _A],
|
|
347
377
|
[[() => HighlightList, 0], [() => AutocompleteAddressHighlights$, 0]]
|
|
348
378
|
];
|
|
349
379
|
export var AutocompleteRequest$ = [3, n0, _ARu,
|
|
@@ -358,22 +388,22 @@ export var AutocompleteResponse$ = [3, n0, _ARut,
|
|
|
358
388
|
];
|
|
359
389
|
export var AutocompleteResultItem$ = [3, n0, _ARI,
|
|
360
390
|
0,
|
|
361
|
-
[_PI, _PT,
|
|
362
|
-
[[() => SensitiveString, 0], [() => PlaceType, 0], [() => SensitiveString, 0], [() => Address$, 0], [() => DistanceMeters, 0], 0, [() => CountryCode3, 0], [() => AutocompleteHighlights$, 0]], 3
|
|
391
|
+
[_PI, _PT, _Ti, _A, _Di, _La, _PV, _Hi, _EPA],
|
|
392
|
+
[[() => SensitiveString, 0], [() => PlaceType, 0], [() => SensitiveString, 0], [() => Address$, 0], [() => DistanceMeters, 0], 0, [() => CountryCode3, 0], [() => AutocompleteHighlights$, 0], [() => SensitiveBoolean, 0]], 3
|
|
363
393
|
];
|
|
364
394
|
export var BusinessChain$ = [3, n0, _BC,
|
|
365
395
|
0,
|
|
366
|
-
[
|
|
396
|
+
[_Na, _Id],
|
|
367
397
|
[[() => SensitiveString, 0], [() => SensitiveString, 0]]
|
|
368
398
|
];
|
|
369
399
|
export var Category$ = [3, n0, _Ca,
|
|
370
400
|
0,
|
|
371
|
-
[_Id,
|
|
401
|
+
[_Id, _Na, _LN, _Pr],
|
|
372
402
|
[[() => SensitiveString, 0], [() => SensitiveString, 0], [() => SensitiveString, 0], [() => SensitiveBoolean, 0]], 2
|
|
373
403
|
];
|
|
374
404
|
export var ComponentMatchScores$ = [3, n0, _CMS,
|
|
375
405
|
0,
|
|
376
|
-
[
|
|
406
|
+
[_Ti, _A],
|
|
377
407
|
[1, () => AddressComponentMatchScores$]
|
|
378
408
|
];
|
|
379
409
|
export var ContactDetails$ = [3, n0, _CD,
|
|
@@ -388,14 +418,19 @@ export var Contacts$ = [3, n0, _Con,
|
|
|
388
418
|
];
|
|
389
419
|
export var Country$ = [3, n0, _Co,
|
|
390
420
|
0,
|
|
391
|
-
[_Cod, _Code,
|
|
421
|
+
[_Cod, _Code, _Na],
|
|
392
422
|
[[() => CountryCode2, 0], [() => CountryCode3, 0], [() => SensitiveString, 0]]
|
|
393
423
|
];
|
|
394
424
|
export var CountryHighlights$ = [3, n0, _CH,
|
|
395
425
|
0,
|
|
396
|
-
[_Code_,
|
|
426
|
+
[_Code_, _Na],
|
|
397
427
|
[[() => HighlightList, 0], [() => HighlightList, 0]]
|
|
398
428
|
];
|
|
429
|
+
export var CrossReference$ = [3, n0, _CR,
|
|
430
|
+
0,
|
|
431
|
+
[_So, _SPI, _SCo],
|
|
432
|
+
[[() => SensitiveString, 0], [() => SensitiveString, 0], [() => CategoryList, 0]], 2
|
|
433
|
+
];
|
|
399
434
|
export var FilterCircle$ = [3, n0, _FC,
|
|
400
435
|
8,
|
|
401
436
|
[_Ce, _Ra],
|
|
@@ -413,13 +448,13 @@ export var GeocodeFilter$ = [3, n0, _GF,
|
|
|
413
448
|
];
|
|
414
449
|
export var GeocodeParsedQuery$ = [3, n0, _GPQ,
|
|
415
450
|
0,
|
|
416
|
-
[
|
|
451
|
+
[_Ti, _A],
|
|
417
452
|
[[() => ParsedQueryComponentList, 0], [() => GeocodeParsedQueryAddressComponents$, 0]]
|
|
418
453
|
];
|
|
419
454
|
export var GeocodeParsedQueryAddressComponents$ = [3, n0, _GPQAC,
|
|
420
455
|
0,
|
|
421
|
-
[_Co, _Reg, _SR, _Lo, _D, _SD, _PC, _B, _SBu, _S, _AN, _Bu, _SAC],
|
|
422
|
-
[[() => ParsedQueryComponentList, 0], [() => ParsedQueryComponentList, 0], [() => ParsedQueryComponentList, 0], [() => ParsedQueryComponentList, 0], [() => ParsedQueryComponentList, 0], [() => ParsedQueryComponentList, 0], [() => ParsedQueryComponentList, 0], [() => ParsedQueryComponentList, 0], [() => ParsedQueryComponentList, 0], [() => ParsedQueryComponentList, 0], [() => ParsedQueryComponentList, 0], [() => ParsedQueryComponentList, 0], [() => ParsedQuerySecondaryAddressComponentList, 0]]
|
|
456
|
+
[_Co, _Reg, _SR, _Lo, _D, _SD, _PC, _B, _SBu, _S, _AN, _Bu, _SAC, _OC],
|
|
457
|
+
[[() => ParsedQueryComponentList, 0], [() => ParsedQueryComponentList, 0], [() => ParsedQueryComponentList, 0], [() => ParsedQueryComponentList, 0], [() => ParsedQueryComponentList, 0], [() => ParsedQueryComponentList, 0], [() => ParsedQueryComponentList, 0], [() => ParsedQueryComponentList, 0], [() => ParsedQueryComponentList, 0], [() => ParsedQueryComponentList, 0], [() => ParsedQueryComponentList, 0], [() => ParsedQueryComponentList, 0], [() => ParsedQuerySecondaryAddressComponentList, 0], [() => ParsedQueryComponentList, 0]]
|
|
423
458
|
];
|
|
424
459
|
export var GeocodeQueryComponents$ = [3, n0, _GQC,
|
|
425
460
|
0,
|
|
@@ -428,8 +463,8 @@ export var GeocodeQueryComponents$ = [3, n0, _GQC,
|
|
|
428
463
|
];
|
|
429
464
|
export var GeocodeRequest$ = [3, n0, _GR,
|
|
430
465
|
0,
|
|
431
|
-
[_QT, _QC, _MR, _BP, _F, _AFd, _La, _PV, _IU, _K],
|
|
432
|
-
[[() => SensitiveString, 0], [() => GeocodeQueryComponents$, 0], 1, [() => Position, 0], [() => GeocodeFilter$, 0], 64 | 0, 0, [() => CountryCode, 0], 0, [() => ApiKey, { [_hQ]: _k }]]
|
|
466
|
+
[_QT, _QC, _MR, _BP, _F, _AFd, _La, _PV, _IU, _K, _PCM, _AT, _ANM],
|
|
467
|
+
[[() => SensitiveString, 0], [() => GeocodeQueryComponents$, 0], 1, [() => Position, 0], [() => GeocodeFilter$, 0], 64 | 0, 0, [() => CountryCode, 0], 0, [() => ApiKey, { [_hQ]: _k }], 0, 64 | 0, 0]
|
|
433
468
|
];
|
|
434
469
|
export var GeocodeResponse$ = [3, n0, _GRe,
|
|
435
470
|
0,
|
|
@@ -438,18 +473,18 @@ export var GeocodeResponse$ = [3, n0, _GRe,
|
|
|
438
473
|
];
|
|
439
474
|
export var GeocodeResultItem$ = [3, n0, _GRI,
|
|
440
475
|
0,
|
|
441
|
-
[_PI, _PT,
|
|
442
|
-
[[() => SensitiveString, 0], [() => PlaceType, 0], [() => SensitiveString, 0], [() => Address$, 0], [() => SensitiveBoolean, 0], [() => PostalCodeDetailsList, 0], [() => Position, 0], [() => DistanceMeters, 0], [() => BoundingBox, 0], [() => CategoryList, 0], [() => FoodTypeList, 0], [() => AccessPointList, 0], [() => TimeZone$, 0], [() => CountryCode3, 0], () => MatchScoreDetails$, [() => GeocodeParsedQuery$, 0], [() => IntersectionList, 0], [() => RelatedPlace$, 0], [() => RelatedPlaceList, 0]], 3
|
|
476
|
+
[_PI, _PT, _Ti, _A, _ANC, _PCD, _P, _Di, _MV, _C, _FTo, _APc, _TZ, _PV, _MS, _PQ, _In, _MA, _SA, _Tr, _EPA],
|
|
477
|
+
[[() => SensitiveString, 0], [() => PlaceType, 0], [() => SensitiveString, 0], [() => Address$, 0], [() => SensitiveBoolean, 0], [() => PostalCodeDetailsList, 0], [() => Position, 0], [() => DistanceMeters, 0], [() => BoundingBox, 0], [() => CategoryList, 0], [() => FoodTypeList, 0], [() => AccessPointList, 0], [() => TimeZone$, 0], [() => CountryCode3, 0], () => MatchScoreDetails$, [() => GeocodeParsedQuery$, 0], [() => IntersectionList, 0], [() => RelatedPlace$, 0], [() => RelatedPlaceList, 0], [() => TranslationDetails$, 0], [() => SensitiveBoolean, 0]], 3
|
|
443
478
|
];
|
|
444
479
|
export var GetPlaceRequest$ = [3, n0, _GPR,
|
|
445
480
|
0,
|
|
446
|
-
[_PI, _AFd, _La, _PV, _IU, _K],
|
|
447
|
-
[[() => SensitiveString, 1], [64 | 0, { [_hQ]: _af }], [0, { [_hQ]: _l }], [() => CountryCode, { [_hQ]: _pv }], [0, { [_hQ]: _iu }], [() => ApiKey, { [_hQ]: _k }]], 1
|
|
481
|
+
[_PI, _AFd, _La, _PV, _IU, _K, _ANM],
|
|
482
|
+
[[() => SensitiveString, 1], [64 | 0, { [_hQ]: _af }], [0, { [_hQ]: _l }], [() => CountryCode, { [_hQ]: _pv }], [0, { [_hQ]: _iu }], [() => ApiKey, { [_hQ]: _k }], [0, { [_hQ]: _anm }]], 1
|
|
448
483
|
];
|
|
449
484
|
export var GetPlaceResponse$ = [3, n0, _GPRe,
|
|
450
485
|
0,
|
|
451
|
-
[_PI, _PT,
|
|
452
|
-
[[() => SensitiveString, 0], [() => PlaceType, 0], [() => SensitiveString, 0], [0, { [_hH]: _xagpb }], [() => Address$, 0], [() => SensitiveBoolean, 0], [() => PostalCodeDetailsList, 0], [() => Position, 0], [() => BoundingBox, 0], [() => CategoryList, 0], [() => FoodTypeList, 0], [() => BusinessChainList, 0], [() => Contacts$, 0], [() => OpeningHoursList, 0], [() => AccessPointList, 0], [() => AccessRestrictionList, 0], [() => TimeZone$, 0], [() => CountryCode3, 0], [() => PhonemeDetails$, 0], [() => RelatedPlace$, 0], [() => RelatedPlaceList, 0]], 4
|
|
486
|
+
[_PI, _PT, _Ti, _PB, _A, _ANC, _PCD, _P, _MV, _C, _FTo, _BCu, _Con, _OH, _APc, _ARc, _TZ, _PV, _Pho, _MA, _SA, _PAl, _EPA, _CRr],
|
|
487
|
+
[[() => SensitiveString, 0], [() => PlaceType, 0], [() => SensitiveString, 0], [0, { [_hH]: _xagpb }], [() => Address$, 0], [() => SensitiveBoolean, 0], [() => PostalCodeDetailsList, 0], [() => Position, 0], [() => BoundingBox, 0], [() => CategoryList, 0], [() => FoodTypeList, 0], [() => BusinessChainList, 0], [() => Contacts$, 0], [() => OpeningHoursList, 0], [() => AccessPointList, 0], [() => AccessRestrictionList, 0], [() => TimeZone$, 0], [() => CountryCode3, 0], [() => PhonemeDetails$, 0], [() => RelatedPlace$, 0], [() => RelatedPlaceList, 0], [() => PlaceAttributeList, 0], [() => SensitiveBoolean, 0], [() => CrossReferenceList, 0]], 4
|
|
453
488
|
];
|
|
454
489
|
export var Highlight$ = [3, n0, _Hig,
|
|
455
490
|
0,
|
|
@@ -458,7 +493,7 @@ export var Highlight$ = [3, n0, _Hig,
|
|
|
458
493
|
];
|
|
459
494
|
export var Intersection$ = [3, n0, _I,
|
|
460
495
|
0,
|
|
461
|
-
[_PI,
|
|
496
|
+
[_PI, _Ti, _A, _P, _Di, _RD, _MV, _APc],
|
|
462
497
|
[[() => SensitiveString, 0], [() => SensitiveString, 0], [() => Address$, 0], [() => Position, 0], [() => DistanceMeters, 0], [() => DistanceMeters, 0], [() => BoundingBox, 0], [() => AccessPointList, 0]], 2
|
|
463
498
|
];
|
|
464
499
|
export var MatchScoreDetails$ = [3, n0, _MSD,
|
|
@@ -488,17 +523,17 @@ export var ParsedQuerySecondaryAddressComponent$ = [3, n0, _PQSAC,
|
|
|
488
523
|
];
|
|
489
524
|
export var PhonemeDetails$ = [3, n0, _PD,
|
|
490
525
|
0,
|
|
491
|
-
[
|
|
526
|
+
[_Ti, _A],
|
|
492
527
|
[[() => PhonemeTranscriptionList, 0], [() => AddressComponentPhonemes$, 0]]
|
|
493
528
|
];
|
|
494
529
|
export var PhonemeTranscription$ = [3, n0, _PTh,
|
|
495
530
|
0,
|
|
496
|
-
[_V, _La,
|
|
531
|
+
[_V, _La, _Pref],
|
|
497
532
|
[[() => SensitiveString, 0], 0, [() => SensitiveBoolean, 0]]
|
|
498
533
|
];
|
|
499
534
|
export var PostalCodeDetails$ = [3, n0, _PCD,
|
|
500
535
|
0,
|
|
501
|
-
[_PC,
|
|
536
|
+
[_PC, _PAo, _PCT, _UZ, _UZP],
|
|
502
537
|
[[() => SensitiveString, 0], [() => PostalAuthority, 0], [() => PostalCodeType, 0], [() => UspsZip$, 0], [() => UspsZipPlus4$, 0]]
|
|
503
538
|
];
|
|
504
539
|
export var QueryRefinement$ = [3, n0, _QR,
|
|
@@ -508,17 +543,17 @@ export var QueryRefinement$ = [3, n0, _QR,
|
|
|
508
543
|
];
|
|
509
544
|
export var Region$ = [3, n0, _Reg,
|
|
510
545
|
0,
|
|
511
|
-
[_Code_,
|
|
546
|
+
[_Code_, _Na],
|
|
512
547
|
[[() => SensitiveString, 0], [() => SensitiveString, 0]]
|
|
513
548
|
];
|
|
514
549
|
export var RegionHighlights$ = [3, n0, _RH,
|
|
515
550
|
0,
|
|
516
|
-
[_Code_,
|
|
551
|
+
[_Code_, _Na],
|
|
517
552
|
[[() => HighlightList, 0], [() => HighlightList, 0]]
|
|
518
553
|
];
|
|
519
554
|
export var RelatedPlace$ = [3, n0, _RP,
|
|
520
555
|
0,
|
|
521
|
-
[_PI, _PT,
|
|
556
|
+
[_PI, _PT, _Ti, _A, _P, _APc],
|
|
522
557
|
[[() => SensitiveString, 0], [() => PlaceType, 0], [() => SensitiveString, 0], [() => Address$, 0], [() => Position, 0], [() => AccessPointList, 0]], 3
|
|
523
558
|
];
|
|
524
559
|
export var ReverseGeocodeFilter$ = [3, n0, _RGF,
|
|
@@ -528,8 +563,8 @@ export var ReverseGeocodeFilter$ = [3, n0, _RGF,
|
|
|
528
563
|
];
|
|
529
564
|
export var ReverseGeocodeRequest$ = [3, n0, _RGR,
|
|
530
565
|
0,
|
|
531
|
-
[_QP, _QRu, _MR, _F, _AFd, _La, _PV, _IU, _K, _H],
|
|
532
|
-
[[() => Position, 0], [() => DistanceMeters, 0], 1, () => ReverseGeocodeFilter$, 64 | 0, 0, [() => CountryCode, 0], 0, [() => ApiKey, { [_hQ]: _k }], [() => Heading, 0]], 1
|
|
566
|
+
[_QP, _QRu, _MR, _F, _AFd, _La, _PV, _IU, _K, _H, _ANM],
|
|
567
|
+
[[() => Position, 0], [() => DistanceMeters, 0], 1, () => ReverseGeocodeFilter$, 64 | 0, 0, [() => CountryCode, 0], 0, [() => ApiKey, { [_hQ]: _k }], [() => Heading, 0], 0], 1
|
|
533
568
|
];
|
|
534
569
|
export var ReverseGeocodeResponse$ = [3, n0, _RGRe,
|
|
535
570
|
0,
|
|
@@ -538,8 +573,8 @@ export var ReverseGeocodeResponse$ = [3, n0, _RGRe,
|
|
|
538
573
|
];
|
|
539
574
|
export var ReverseGeocodeResultItem$ = [3, n0, _RGRI,
|
|
540
575
|
0,
|
|
541
|
-
[_PI, _PT,
|
|
542
|
-
[[() => SensitiveString, 0], [() => PlaceType, 0], [() => SensitiveString, 0], [() => Address$, 0], [() => SensitiveBoolean, 0], [() => PostalCodeDetailsList, 0], [() => Position, 0], [() => DistanceMeters, 0], [() => BoundingBox, 0], [() => CategoryList, 0], [() => FoodTypeList, 0], [() => AccessPointList, 0], [() => TimeZone$, 0], [() => CountryCode3, 0], [() => IntersectionList, 0]], 3
|
|
576
|
+
[_PI, _PT, _Ti, _A, _ANC, _PCD, _P, _Di, _MV, _C, _FTo, _APc, _TZ, _PV, _In, _MA, _EPA],
|
|
577
|
+
[[() => SensitiveString, 0], [() => PlaceType, 0], [() => SensitiveString, 0], [() => Address$, 0], [() => SensitiveBoolean, 0], [() => PostalCodeDetailsList, 0], [() => Position, 0], [() => DistanceMeters, 0], [() => BoundingBox, 0], [() => CategoryList, 0], [() => FoodTypeList, 0], [() => AccessPointList, 0], [() => TimeZone$, 0], [() => CountryCode3, 0], [() => IntersectionList, 0], [() => RelatedPlace$, 0], [() => SensitiveBoolean, 0]], 3
|
|
543
578
|
];
|
|
544
579
|
export var SearchNearbyFilter$ = [3, n0, _SNF,
|
|
545
580
|
0,
|
|
@@ -558,8 +593,8 @@ export var SearchNearbyResponse$ = [3, n0, _SNRe,
|
|
|
558
593
|
];
|
|
559
594
|
export var SearchNearbyResultItem$ = [3, n0, _SNRI,
|
|
560
595
|
0,
|
|
561
|
-
[_PI, _PT,
|
|
562
|
-
[[() => SensitiveString, 0], [() => PlaceType, 0], [() => SensitiveString, 0], [() => Address$, 0], [() => SensitiveBoolean, 0], [() => Position, 0], [() => DistanceMeters, 0], [() => BoundingBox, 0], [() => CategoryList, 0], [() => FoodTypeList, 0], [() => BusinessChainList, 0], [() => Contacts$, 0], [() => OpeningHoursList, 0], [() => AccessPointList, 0], [() => AccessRestrictionList, 0], [() => TimeZone$, 0], [() => CountryCode3, 0], [() => PhonemeDetails$, 0]], 3
|
|
596
|
+
[_PI, _PT, _Ti, _A, _ANC, _P, _Di, _MV, _C, _FTo, _BCu, _Con, _OH, _APc, _ARc, _TZ, _PV, _Pho, _PAl, _CRr],
|
|
597
|
+
[[() => SensitiveString, 0], [() => PlaceType, 0], [() => SensitiveString, 0], [() => Address$, 0], [() => SensitiveBoolean, 0], [() => Position, 0], [() => DistanceMeters, 0], [() => BoundingBox, 0], [() => CategoryList, 0], [() => FoodTypeList, 0], [() => BusinessChainList, 0], [() => Contacts$, 0], [() => OpeningHoursList, 0], [() => AccessPointList, 0], [() => AccessRestrictionList, 0], [() => TimeZone$, 0], [() => CountryCode3, 0], [() => PhonemeDetails$, 0], [() => PlaceAttributeList, 0], [() => CrossReferenceList, 0]], 3
|
|
563
598
|
];
|
|
564
599
|
export var SearchTextFilter$ = [3, n0, _STF,
|
|
565
600
|
0,
|
|
@@ -568,8 +603,8 @@ export var SearchTextFilter$ = [3, n0, _STF,
|
|
|
568
603
|
];
|
|
569
604
|
export var SearchTextRequest$ = [3, n0, _STR,
|
|
570
605
|
0,
|
|
571
|
-
[_QT, _QI, _MR, _BP, _F, _AFd, _La, _PV, _IU, _NT, _K],
|
|
572
|
-
[[() => SensitiveString, 0], [() => SensitiveString, 0], 1, [() => Position, 0], [() => SearchTextFilter$, 0], 64 | 0, 0, [() => CountryCode, 0], 0, 0, [() => ApiKey, { [_hQ]: _k }]]
|
|
606
|
+
[_QT, _QI, _MR, _BP, _F, _AFd, _La, _PV, _IU, _NT, _TM, _K],
|
|
607
|
+
[[() => SensitiveString, 0], [() => SensitiveString, 0], 1, [() => Position, 0], [() => SearchTextFilter$, 0], 64 | 0, 0, [() => CountryCode, 0], 0, 0, 0, [() => ApiKey, { [_hQ]: _k }]]
|
|
573
608
|
];
|
|
574
609
|
export var SearchTextResponse$ = [3, n0, _STRe,
|
|
575
610
|
0,
|
|
@@ -578,8 +613,8 @@ export var SearchTextResponse$ = [3, n0, _STRe,
|
|
|
578
613
|
];
|
|
579
614
|
export var SearchTextResultItem$ = [3, n0, _STRI,
|
|
580
615
|
0,
|
|
581
|
-
[_PI, _PT,
|
|
582
|
-
[[() => SensitiveString, 0], [() => PlaceType, 0], [() => SensitiveString, 0], [() => Address$, 0], [() => SensitiveBoolean, 0], [() => Position, 0], [() => DistanceMeters, 0], [() => BoundingBox, 0], [() => CategoryList, 0], [() => FoodTypeList, 0], [() => BusinessChainList, 0], [() => Contacts$, 0], [() => OpeningHoursList, 0], [() => AccessPointList, 0], [() => AccessRestrictionList, 0], [() => TimeZone$, 0], [() => CountryCode3, 0], [() => PhonemeDetails$, 0]], 3
|
|
616
|
+
[_PI, _PT, _Ti, _A, _ANC, _P, _Di, _MV, _C, _FTo, _BCu, _Con, _OH, _APc, _ARc, _TZ, _PV, _Pho, _PAl, _CRr],
|
|
617
|
+
[[() => SensitiveString, 0], [() => PlaceType, 0], [() => SensitiveString, 0], [() => Address$, 0], [() => SensitiveBoolean, 0], [() => Position, 0], [() => DistanceMeters, 0], [() => BoundingBox, 0], [() => CategoryList, 0], [() => FoodTypeList, 0], [() => BusinessChainList, 0], [() => Contacts$, 0], [() => OpeningHoursList, 0], [() => AccessPointList, 0], [() => AccessRestrictionList, 0], [() => TimeZone$, 0], [() => CountryCode3, 0], [() => PhonemeDetails$, 0], [() => PlaceAttributeList, 0], [() => CrossReferenceList, 0]], 3
|
|
583
618
|
];
|
|
584
619
|
export var SecondaryAddressComponent$ = [3, n0, _SACe,
|
|
585
620
|
0,
|
|
@@ -593,17 +628,17 @@ export var SecondaryAddressComponentMatchScore$ = [3, n0, _SACMS,
|
|
|
593
628
|
];
|
|
594
629
|
export var StreetComponents$ = [3, n0, _SC,
|
|
595
630
|
0,
|
|
596
|
-
[_BN,
|
|
631
|
+
[_BN, _T, _TP, _TS, _Prefi, _Su, _Dir, _La],
|
|
597
632
|
[[() => SensitiveString, 0], [() => SensitiveString, 0], 0, 0, [() => SensitiveString, 0], [() => SensitiveString, 0], [() => SensitiveString, 0], 0]
|
|
598
633
|
];
|
|
599
634
|
export var SubRegion$ = [3, n0, _SR,
|
|
600
635
|
0,
|
|
601
|
-
[_Code_,
|
|
636
|
+
[_Code_, _Na],
|
|
602
637
|
[[() => SensitiveString, 0], [() => SensitiveString, 0]]
|
|
603
638
|
];
|
|
604
639
|
export var SubRegionHighlights$ = [3, n0, _SRH,
|
|
605
640
|
0,
|
|
606
|
-
[_Code_,
|
|
641
|
+
[_Code_, _Na],
|
|
607
642
|
[[() => HighlightList, 0], [() => HighlightList, 0]]
|
|
608
643
|
];
|
|
609
644
|
export var SuggestAddressHighlights$ = [3, n0, _SAH,
|
|
@@ -618,13 +653,13 @@ export var SuggestFilter$ = [3, n0, _SF,
|
|
|
618
653
|
];
|
|
619
654
|
export var SuggestHighlights$ = [3, n0, _SH,
|
|
620
655
|
0,
|
|
621
|
-
[
|
|
656
|
+
[_Ti, _A],
|
|
622
657
|
[[() => HighlightList, 0], [() => SuggestAddressHighlights$, 0]]
|
|
623
658
|
];
|
|
624
659
|
export var SuggestPlaceResult$ = [3, n0, _SPR,
|
|
625
660
|
0,
|
|
626
|
-
[_PI, _PT, _A, _P, _Di, _MV, _C, _FTo, _BCu, _APc, _ARc, _TZ, _PV, _Pho],
|
|
627
|
-
[[() => SensitiveString, 0], [() => PlaceType, 0], [() => Address$, 0], [() => Position, 0], [() => DistanceMeters, 0], [() => BoundingBox, 0], [() => CategoryList, 0], [() => FoodTypeList, 0], [() => BusinessChainList, 0], [() => AccessPointList, 0], [() => AccessRestrictionList, 0], [() => TimeZone$, 0], [() => CountryCode3, 0], [() => PhonemeDetails$, 0]]
|
|
661
|
+
[_PI, _PT, _A, _P, _Di, _MV, _C, _FTo, _BCu, _APc, _ARc, _TZ, _PV, _Pho, _PAl, _CRr],
|
|
662
|
+
[[() => SensitiveString, 0], [() => PlaceType, 0], [() => Address$, 0], [() => Position, 0], [() => DistanceMeters, 0], [() => BoundingBox, 0], [() => CategoryList, 0], [() => FoodTypeList, 0], [() => BusinessChainList, 0], [() => AccessPointList, 0], [() => AccessRestrictionList, 0], [() => TimeZone$, 0], [() => CountryCode3, 0], [() => PhonemeDetails$, 0], [() => PlaceAttributeList, 0], [() => CrossReferenceList, 0]]
|
|
628
663
|
];
|
|
629
664
|
export var SuggestQueryResult$ = [3, n0, _SQR,
|
|
630
665
|
0,
|
|
@@ -633,8 +668,8 @@ export var SuggestQueryResult$ = [3, n0, _SQR,
|
|
|
633
668
|
];
|
|
634
669
|
export var SuggestRequest$ = [3, n0, _SRu,
|
|
635
670
|
0,
|
|
636
|
-
[_QT, _MR, _MQR, _BP, _F, _AFd, _La, _PV, _IU, _K],
|
|
637
|
-
[[() => SensitiveString, 0], 1, 1, [() => Position, 0], [() => SuggestFilter$, 0], 64 | 0, 0, [() => CountryCode, 0], 0, [() => ApiKey, { [_hQ]: _k }]], 1
|
|
671
|
+
[_QT, _MR, _MQR, _BP, _F, _AFd, _La, _PV, _IU, _TM, _K],
|
|
672
|
+
[[() => SensitiveString, 0], 1, 1, [() => Position, 0], [() => SuggestFilter$, 0], 64 | 0, 0, [() => CountryCode, 0], 0, 0, [() => ApiKey, { [_hQ]: _k }]], 1
|
|
638
673
|
];
|
|
639
674
|
export var SuggestResponse$ = [3, n0, _SRug,
|
|
640
675
|
0,
|
|
@@ -643,14 +678,24 @@ export var SuggestResponse$ = [3, n0, _SRug,
|
|
|
643
678
|
];
|
|
644
679
|
export var SuggestResultItem$ = [3, n0, _SRI,
|
|
645
680
|
0,
|
|
646
|
-
[
|
|
681
|
+
[_Ti, _SRIT, _Pl, _Q, _Hi],
|
|
647
682
|
[[() => SensitiveString, 0], 0, [() => SuggestPlaceResult$, 0], [() => SuggestQueryResult$, 0], [() => SuggestHighlights$, 0]], 2
|
|
648
683
|
];
|
|
649
684
|
export var TimeZone$ = [3, n0, _TZ,
|
|
650
685
|
0,
|
|
651
|
-
[
|
|
686
|
+
[_Na, _Of, _OS],
|
|
652
687
|
[[() => SensitiveString, 0], [() => SensitiveString, 0], [() => DurationSeconds, 0]], 1
|
|
653
688
|
];
|
|
689
|
+
export var TranslationDetails$ = [3, n0, _TD,
|
|
690
|
+
0,
|
|
691
|
+
[_Lo, _Reg, _D, _SR],
|
|
692
|
+
[[() => AdminNamesList, 0], [() => AdminNamesList, 0], [() => AdminNamesList, 0], [() => AdminNamesList, 0]]
|
|
693
|
+
];
|
|
694
|
+
export var TranslationName$ = [3, n0, _TN,
|
|
695
|
+
0,
|
|
696
|
+
[_V, _T, _La, _Pr, _Tra],
|
|
697
|
+
[[() => SensitiveString, 0], 0, 0, [() => SensitiveBoolean, 0], [() => SensitiveBoolean, 0]], 2
|
|
698
|
+
];
|
|
654
699
|
export var UspsZip$ = [3, n0, _UZ,
|
|
655
700
|
0,
|
|
656
701
|
[_ZCC],
|
|
@@ -663,7 +708,7 @@ export var UspsZipPlus4$ = [3, n0, _UZP,
|
|
|
663
708
|
];
|
|
664
709
|
export var ValidationExceptionField$ = [3, n0, _VEF,
|
|
665
710
|
0,
|
|
666
|
-
[
|
|
711
|
+
[_Na, _M],
|
|
667
712
|
[[0, { [_jN]: _n }], [0, { [_jN]: _m }]], 2
|
|
668
713
|
];
|
|
669
714
|
var AccessPointList = [1, n0, _APL,
|
|
@@ -674,6 +719,11 @@ var AccessRestrictionList = [1, n0, _ARL,
|
|
|
674
719
|
0, [() => AccessRestriction$,
|
|
675
720
|
0]
|
|
676
721
|
];
|
|
722
|
+
var AddressTranslationComponentList = 64 | 0;
|
|
723
|
+
var AdminNamesList = [1, n0, _ANL,
|
|
724
|
+
0, [() => AdminNames$,
|
|
725
|
+
0]
|
|
726
|
+
];
|
|
677
727
|
var AutocompleteAdditionalFeatureList = 64 | 0;
|
|
678
728
|
var AutocompleteFilterPlaceTypeList = 64 | 0;
|
|
679
729
|
var AutocompleteResultItemList = [1, n0, _ARIL,
|
|
@@ -699,6 +749,10 @@ var CountryCodeList = [1, n0, _CCL,
|
|
|
699
749
|
0, [() => CountryCode,
|
|
700
750
|
0]
|
|
701
751
|
];
|
|
752
|
+
var CrossReferenceList = [1, n0, _CRL,
|
|
753
|
+
0, [() => CrossReference$,
|
|
754
|
+
0]
|
|
755
|
+
];
|
|
702
756
|
var FilterBusinessChainList = [1, n0, _FBCL,
|
|
703
757
|
0, [() => SensitiveString,
|
|
704
758
|
0]
|
|
@@ -763,6 +817,10 @@ var PhonemeTranscriptionList = [1, n0, _PTL,
|
|
|
763
817
|
0, [() => PhonemeTranscription$,
|
|
764
818
|
0]
|
|
765
819
|
];
|
|
820
|
+
var PlaceAttributeList = [1, n0, _PAL,
|
|
821
|
+
0, [() => PlaceAttribute,
|
|
822
|
+
0]
|
|
823
|
+
];
|
|
766
824
|
var Position = [1, n0, _P,
|
|
767
825
|
8, 1
|
|
768
826
|
];
|
|
@@ -810,6 +868,10 @@ var SuggestResultItemList = [1, n0, _SRIL,
|
|
|
810
868
|
0, [() => SuggestResultItem$,
|
|
811
869
|
0]
|
|
812
870
|
];
|
|
871
|
+
var TranslationNameList = [1, n0, _TNL,
|
|
872
|
+
0, [() => TranslationName$,
|
|
873
|
+
0]
|
|
874
|
+
];
|
|
813
875
|
var ValidationExceptionFieldList = [1, n0, _VEFL,
|
|
814
876
|
0, [() => ValidationExceptionField$,
|
|
815
877
|
0]
|
|
@@ -54,7 +54,7 @@ export interface GeoPlaces {
|
|
|
54
54
|
suggest(args: SuggestCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: SuggestCommandOutput) => void): void;
|
|
55
55
|
}
|
|
56
56
|
/**
|
|
57
|
-
* <p> The Places API enables powerful location search and geocoding capabilities for your applications, offering global coverage with rich, detailed information. Key features include: </p> <ul> <li> <p>Forward and reverse geocoding for addresses and coordinates</p> </li> <li> <p>Comprehensive place searches with detailed information
|
|
57
|
+
* <p> The Places API enables powerful location search and geocoding capabilities for your applications, offering global coverage with rich, detailed information. Key features include: </p> <ul> <li> <p>Forward and reverse geocoding for addresses and coordinates. See <a href="https://docs.aws.amazon.com/location/latest/APIReference/API_geoplaces_Geocode.html">Geocode</a> and <a href="https://docs.aws.amazon.com/location/latest/APIReference/API_geoplaces_ReverseGeocode.html">ReverseGeocode</a>.</p> </li> <li> <p>Comprehensive place searches with detailed information. See <a href="https://docs.aws.amazon.com/location/latest/APIReference/API_geoplaces_SearchText.html">SearchText</a>, <a href="https://docs.aws.amazon.com/location/latest/APIReference/API_geoplaces_SearchNearby.html">SearchNearby</a>, and <a href="https://docs.aws.amazon.com/location/latest/APIReference/API_geoplaces_GetPlace.html">GetPlace</a>. Place information you can find include:</p> <ul> <li> <p>Business names and addresses</p> </li> <li> <p>Contact information</p> </li> <li> <p>Hours of operation</p> </li> <li> <p>Points of Interest (POI) categories</p> </li> <li> <p>Food types for restaurants</p> </li> <li> <p>Chain affiliation for relevant businesses</p> </li> </ul> </li> <li> <p>Address and place completion as users type, enhancing input efficiency by completing partial queries with valid addresses. See <a href="https://docs.aws.amazon.com/location/latest/APIReference/API_geoplaces_Autocomplete.html">Autocomplete</a>.</p> </li> <li> <p>Intelligent place and query recommendation based on user's input or context, returning relevant places, points of interest, query terms, or search categories. See <a href="https://docs.aws.amazon.com/location/latest/APIReference/API_geoplaces_Suggest.html">Suggest</a>.</p> </li> <li> <p>Global data coverage with a wide range of POI categories.</p> </li> <li> <p>Regular data updates to ensure accuracy and relevance.</p> </li> <li> <p>Bulk address validation for verifying and standardizing large volumes of addresses in a single operation using <a href="https://docs.aws.amazon.com/location/latest/APIReference/Welcome.html#Welcome_Amazon_Location_Service_Jobs">Amazon Location Service Jobs</a>.</p> </li> </ul>
|
|
58
58
|
* @public
|
|
59
59
|
*/
|
|
60
60
|
export declare class GeoPlaces extends GeoPlacesClient implements GeoPlaces {
|