@aws-sdk/client-geo-places 3.686.0 → 3.691.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/dist-types/models/models_0.d.ts +311 -311
- package/dist-types/ts3.4/models/models_0.d.ts +311 -311
- package/package.json +7 -7
|
@@ -9,26 +9,26 @@ export declare class AccessDeniedException extends __BaseException {
|
|
|
9
9
|
);
|
|
10
10
|
}
|
|
11
11
|
export interface AccessPoint {
|
|
12
|
-
Position?: number[];
|
|
12
|
+
Position?: number[] | undefined;
|
|
13
13
|
}
|
|
14
14
|
export interface Category {
|
|
15
15
|
Id: string | undefined;
|
|
16
16
|
Name: string | undefined;
|
|
17
|
-
LocalizedName?: string;
|
|
18
|
-
Primary?: boolean;
|
|
17
|
+
LocalizedName?: string | undefined;
|
|
18
|
+
Primary?: boolean | undefined;
|
|
19
19
|
}
|
|
20
20
|
export interface AccessRestriction {
|
|
21
|
-
Restricted?: boolean;
|
|
22
|
-
Categories?: Category[];
|
|
21
|
+
Restricted?: boolean | undefined;
|
|
22
|
+
Categories?: Category[] | undefined;
|
|
23
23
|
}
|
|
24
24
|
export interface Country {
|
|
25
|
-
Code2?: string;
|
|
26
|
-
Code3?: string;
|
|
27
|
-
Name?: string;
|
|
25
|
+
Code2?: string | undefined;
|
|
26
|
+
Code3?: string | undefined;
|
|
27
|
+
Name?: string | undefined;
|
|
28
28
|
}
|
|
29
29
|
export interface Region {
|
|
30
|
-
Code?: string;
|
|
31
|
-
Name?: string;
|
|
30
|
+
Code?: string | undefined;
|
|
31
|
+
Name?: string | undefined;
|
|
32
32
|
}
|
|
33
33
|
export declare const TypePlacement: {
|
|
34
34
|
readonly AFTER_BASE_NAME: "AfterBaseName";
|
|
@@ -36,65 +36,65 @@ export declare const TypePlacement: {
|
|
|
36
36
|
};
|
|
37
37
|
export type TypePlacement = (typeof TypePlacement)[keyof typeof TypePlacement];
|
|
38
38
|
export interface StreetComponents {
|
|
39
|
-
BaseName?: string;
|
|
40
|
-
Type?: string;
|
|
41
|
-
TypePlacement?: TypePlacement;
|
|
42
|
-
TypeSeparator?: string;
|
|
43
|
-
Prefix?: string;
|
|
44
|
-
Suffix?: string;
|
|
45
|
-
Direction?: string;
|
|
46
|
-
Language?: string;
|
|
39
|
+
BaseName?: string | undefined;
|
|
40
|
+
Type?: string | undefined;
|
|
41
|
+
TypePlacement?: TypePlacement | undefined;
|
|
42
|
+
TypeSeparator?: string | undefined;
|
|
43
|
+
Prefix?: string | undefined;
|
|
44
|
+
Suffix?: string | undefined;
|
|
45
|
+
Direction?: string | undefined;
|
|
46
|
+
Language?: string | undefined;
|
|
47
47
|
}
|
|
48
48
|
export interface SubRegion {
|
|
49
|
-
Code?: string;
|
|
50
|
-
Name?: string;
|
|
49
|
+
Code?: string | undefined;
|
|
50
|
+
Name?: string | undefined;
|
|
51
51
|
}
|
|
52
52
|
export interface Address {
|
|
53
|
-
Label?: string;
|
|
54
|
-
Country?: Country;
|
|
55
|
-
Region?: Region;
|
|
56
|
-
SubRegion?: SubRegion;
|
|
57
|
-
Locality?: string;
|
|
58
|
-
District?: string;
|
|
59
|
-
SubDistrict?: string;
|
|
60
|
-
PostalCode?: string;
|
|
61
|
-
Block?: string;
|
|
62
|
-
SubBlock?: string;
|
|
63
|
-
Intersection?: string[];
|
|
64
|
-
Street?: string;
|
|
65
|
-
StreetComponents?: StreetComponents[];
|
|
66
|
-
AddressNumber?: string;
|
|
67
|
-
Building?: string;
|
|
53
|
+
Label?: string | undefined;
|
|
54
|
+
Country?: Country | undefined;
|
|
55
|
+
Region?: Region | undefined;
|
|
56
|
+
SubRegion?: SubRegion | undefined;
|
|
57
|
+
Locality?: string | undefined;
|
|
58
|
+
District?: string | undefined;
|
|
59
|
+
SubDistrict?: string | undefined;
|
|
60
|
+
PostalCode?: string | undefined;
|
|
61
|
+
Block?: string | undefined;
|
|
62
|
+
SubBlock?: string | undefined;
|
|
63
|
+
Intersection?: string[] | undefined;
|
|
64
|
+
Street?: string | undefined;
|
|
65
|
+
StreetComponents?: StreetComponents[] | undefined;
|
|
66
|
+
AddressNumber?: string | undefined;
|
|
67
|
+
Building?: string | undefined;
|
|
68
68
|
}
|
|
69
69
|
export interface AddressComponentMatchScores {
|
|
70
|
-
Country?: number;
|
|
71
|
-
Region?: number;
|
|
72
|
-
SubRegion?: number;
|
|
73
|
-
Locality?: number;
|
|
74
|
-
District?: number;
|
|
75
|
-
SubDistrict?: number;
|
|
76
|
-
PostalCode?: number;
|
|
77
|
-
Block?: number;
|
|
78
|
-
SubBlock?: number;
|
|
79
|
-
Intersection?: number[];
|
|
80
|
-
AddressNumber?: number;
|
|
81
|
-
Building?: number;
|
|
70
|
+
Country?: number | undefined;
|
|
71
|
+
Region?: number | undefined;
|
|
72
|
+
SubRegion?: number | undefined;
|
|
73
|
+
Locality?: number | undefined;
|
|
74
|
+
District?: number | undefined;
|
|
75
|
+
SubDistrict?: number | undefined;
|
|
76
|
+
PostalCode?: number | undefined;
|
|
77
|
+
Block?: number | undefined;
|
|
78
|
+
SubBlock?: number | undefined;
|
|
79
|
+
Intersection?: number[] | undefined;
|
|
80
|
+
AddressNumber?: number | undefined;
|
|
81
|
+
Building?: number | undefined;
|
|
82
82
|
}
|
|
83
83
|
export interface PhonemeTranscription {
|
|
84
|
-
Value?: string;
|
|
85
|
-
Language?: string;
|
|
86
|
-
Preferred?: boolean;
|
|
84
|
+
Value?: string | undefined;
|
|
85
|
+
Language?: string | undefined;
|
|
86
|
+
Preferred?: boolean | undefined;
|
|
87
87
|
}
|
|
88
88
|
export interface AddressComponentPhonemes {
|
|
89
|
-
Country?: PhonemeTranscription[];
|
|
90
|
-
Region?: PhonemeTranscription[];
|
|
91
|
-
SubRegion?: PhonemeTranscription[];
|
|
92
|
-
Locality?: PhonemeTranscription[];
|
|
93
|
-
District?: PhonemeTranscription[];
|
|
94
|
-
SubDistrict?: PhonemeTranscription[];
|
|
95
|
-
Block?: PhonemeTranscription[];
|
|
96
|
-
SubBlock?: PhonemeTranscription[];
|
|
97
|
-
Street?: PhonemeTranscription[];
|
|
89
|
+
Country?: PhonemeTranscription[] | undefined;
|
|
90
|
+
Region?: PhonemeTranscription[] | undefined;
|
|
91
|
+
SubRegion?: PhonemeTranscription[] | undefined;
|
|
92
|
+
Locality?: PhonemeTranscription[] | undefined;
|
|
93
|
+
District?: PhonemeTranscription[] | undefined;
|
|
94
|
+
SubDistrict?: PhonemeTranscription[] | undefined;
|
|
95
|
+
Block?: PhonemeTranscription[] | undefined;
|
|
96
|
+
SubBlock?: PhonemeTranscription[] | undefined;
|
|
97
|
+
Street?: PhonemeTranscription[] | undefined;
|
|
98
98
|
}
|
|
99
99
|
export declare const AutocompleteAdditionalFeature: {
|
|
100
100
|
readonly CORE: "Core";
|
|
@@ -112,10 +112,10 @@ export declare const AutocompleteFilterPlaceType: {
|
|
|
112
112
|
export type AutocompleteFilterPlaceType =
|
|
113
113
|
(typeof AutocompleteFilterPlaceType)[keyof typeof AutocompleteFilterPlaceType];
|
|
114
114
|
export interface AutocompleteFilter {
|
|
115
|
-
BoundingBox?: number[];
|
|
116
|
-
Circle?: FilterCircle;
|
|
117
|
-
IncludeCountries?: string[];
|
|
118
|
-
IncludePlaceTypes?: AutocompleteFilterPlaceType[];
|
|
115
|
+
BoundingBox?: number[] | undefined;
|
|
116
|
+
Circle?: FilterCircle | undefined;
|
|
117
|
+
IncludeCountries?: string[] | undefined;
|
|
118
|
+
IncludePlaceTypes?: AutocompleteFilterPlaceType[] | undefined;
|
|
119
119
|
}
|
|
120
120
|
export declare const AutocompleteIntendedUse: {
|
|
121
121
|
readonly SINGLE_USE: "SingleUse";
|
|
@@ -130,52 +130,52 @@ export type PostalCodeMode =
|
|
|
130
130
|
(typeof PostalCodeMode)[keyof typeof PostalCodeMode];
|
|
131
131
|
export interface AutocompleteRequest {
|
|
132
132
|
QueryText: string | undefined;
|
|
133
|
-
MaxResults?: number;
|
|
134
|
-
BiasPosition?: number[];
|
|
135
|
-
Filter?: AutocompleteFilter;
|
|
136
|
-
PostalCodeMode?: PostalCodeMode;
|
|
137
|
-
AdditionalFeatures?: AutocompleteAdditionalFeature[];
|
|
138
|
-
Language?: string;
|
|
139
|
-
PoliticalView?: string;
|
|
140
|
-
IntendedUse?: AutocompleteIntendedUse;
|
|
141
|
-
Key?: string;
|
|
133
|
+
MaxResults?: number | undefined;
|
|
134
|
+
BiasPosition?: number[] | undefined;
|
|
135
|
+
Filter?: AutocompleteFilter | undefined;
|
|
136
|
+
PostalCodeMode?: PostalCodeMode | undefined;
|
|
137
|
+
AdditionalFeatures?: AutocompleteAdditionalFeature[] | undefined;
|
|
138
|
+
Language?: string | undefined;
|
|
139
|
+
PoliticalView?: string | undefined;
|
|
140
|
+
IntendedUse?: AutocompleteIntendedUse | undefined;
|
|
141
|
+
Key?: string | undefined;
|
|
142
142
|
}
|
|
143
143
|
export interface Highlight {
|
|
144
|
-
StartIndex?: number;
|
|
145
|
-
EndIndex?: number;
|
|
146
|
-
Value?: string;
|
|
144
|
+
StartIndex?: number | undefined;
|
|
145
|
+
EndIndex?: number | undefined;
|
|
146
|
+
Value?: string | undefined;
|
|
147
147
|
}
|
|
148
148
|
export interface CountryHighlights {
|
|
149
|
-
Code?: Highlight[];
|
|
150
|
-
Name?: Highlight[];
|
|
149
|
+
Code?: Highlight[] | undefined;
|
|
150
|
+
Name?: Highlight[] | undefined;
|
|
151
151
|
}
|
|
152
152
|
export interface RegionHighlights {
|
|
153
|
-
Code?: Highlight[];
|
|
154
|
-
Name?: Highlight[];
|
|
153
|
+
Code?: Highlight[] | undefined;
|
|
154
|
+
Name?: Highlight[] | undefined;
|
|
155
155
|
}
|
|
156
156
|
export interface SubRegionHighlights {
|
|
157
|
-
Code?: Highlight[];
|
|
158
|
-
Name?: Highlight[];
|
|
157
|
+
Code?: Highlight[] | undefined;
|
|
158
|
+
Name?: Highlight[] | undefined;
|
|
159
159
|
}
|
|
160
160
|
export interface AutocompleteAddressHighlights {
|
|
161
|
-
Label?: Highlight[];
|
|
162
|
-
Country?: CountryHighlights;
|
|
163
|
-
Region?: RegionHighlights;
|
|
164
|
-
SubRegion?: SubRegionHighlights;
|
|
165
|
-
Locality?: Highlight[];
|
|
166
|
-
District?: Highlight[];
|
|
167
|
-
SubDistrict?: Highlight[];
|
|
168
|
-
Street?: Highlight[];
|
|
169
|
-
Block?: Highlight[];
|
|
170
|
-
SubBlock?: Highlight[];
|
|
171
|
-
Intersection?: Highlight[][];
|
|
172
|
-
PostalCode?: Highlight[];
|
|
173
|
-
AddressNumber?: Highlight[];
|
|
174
|
-
Building?: Highlight[];
|
|
161
|
+
Label?: Highlight[] | undefined;
|
|
162
|
+
Country?: CountryHighlights | undefined;
|
|
163
|
+
Region?: RegionHighlights | undefined;
|
|
164
|
+
SubRegion?: SubRegionHighlights | undefined;
|
|
165
|
+
Locality?: Highlight[] | undefined;
|
|
166
|
+
District?: Highlight[] | undefined;
|
|
167
|
+
SubDistrict?: Highlight[] | undefined;
|
|
168
|
+
Street?: Highlight[] | undefined;
|
|
169
|
+
Block?: Highlight[] | undefined;
|
|
170
|
+
SubBlock?: Highlight[] | undefined;
|
|
171
|
+
Intersection?: Highlight[][] | undefined;
|
|
172
|
+
PostalCode?: Highlight[] | undefined;
|
|
173
|
+
AddressNumber?: Highlight[] | undefined;
|
|
174
|
+
Building?: Highlight[] | undefined;
|
|
175
175
|
}
|
|
176
176
|
export interface AutocompleteHighlights {
|
|
177
|
-
Title?: Highlight[];
|
|
178
|
-
Address?: AutocompleteAddressHighlights;
|
|
177
|
+
Title?: Highlight[] | undefined;
|
|
178
|
+
Address?: AutocompleteAddressHighlights | undefined;
|
|
179
179
|
}
|
|
180
180
|
export declare const PlaceType: {
|
|
181
181
|
readonly BLOCK: "Block";
|
|
@@ -198,15 +198,15 @@ export interface AutocompleteResultItem {
|
|
|
198
198
|
PlaceId: string | undefined;
|
|
199
199
|
PlaceType: PlaceType | undefined;
|
|
200
200
|
Title: string | undefined;
|
|
201
|
-
Address?: Address;
|
|
202
|
-
Distance?: number;
|
|
203
|
-
Language?: string;
|
|
204
|
-
PoliticalView?: string;
|
|
205
|
-
Highlights?: AutocompleteHighlights;
|
|
201
|
+
Address?: Address | undefined;
|
|
202
|
+
Distance?: number | undefined;
|
|
203
|
+
Language?: string | undefined;
|
|
204
|
+
PoliticalView?: string | undefined;
|
|
205
|
+
Highlights?: AutocompleteHighlights | undefined;
|
|
206
206
|
}
|
|
207
207
|
export interface AutocompleteResponse {
|
|
208
208
|
PricingBucket: string | undefined;
|
|
209
|
-
ResultItems?: AutocompleteResultItem[];
|
|
209
|
+
ResultItems?: AutocompleteResultItem[] | undefined;
|
|
210
210
|
}
|
|
211
211
|
export declare class InternalServerException extends __BaseException {
|
|
212
212
|
readonly name: "InternalServerException";
|
|
@@ -251,28 +251,28 @@ export declare class ValidationException extends __BaseException {
|
|
|
251
251
|
);
|
|
252
252
|
}
|
|
253
253
|
export interface BusinessChain {
|
|
254
|
-
Name?: string;
|
|
255
|
-
Id?: string;
|
|
254
|
+
Name?: string | undefined;
|
|
255
|
+
Id?: string | undefined;
|
|
256
256
|
}
|
|
257
257
|
export interface ComponentMatchScores {
|
|
258
|
-
Title?: number;
|
|
259
|
-
Address?: AddressComponentMatchScores;
|
|
258
|
+
Title?: number | undefined;
|
|
259
|
+
Address?: AddressComponentMatchScores | undefined;
|
|
260
260
|
}
|
|
261
261
|
export interface ContactDetails {
|
|
262
|
-
Label?: string;
|
|
263
|
-
Value?: string;
|
|
264
|
-
Categories?: Category[];
|
|
262
|
+
Label?: string | undefined;
|
|
263
|
+
Value?: string | undefined;
|
|
264
|
+
Categories?: Category[] | undefined;
|
|
265
265
|
}
|
|
266
266
|
export interface Contacts {
|
|
267
|
-
Phones?: ContactDetails[];
|
|
268
|
-
Faxes?: ContactDetails[];
|
|
269
|
-
Websites?: ContactDetails[];
|
|
270
|
-
Emails?: ContactDetails[];
|
|
267
|
+
Phones?: ContactDetails[] | undefined;
|
|
268
|
+
Faxes?: ContactDetails[] | undefined;
|
|
269
|
+
Websites?: ContactDetails[] | undefined;
|
|
270
|
+
Emails?: ContactDetails[] | undefined;
|
|
271
271
|
}
|
|
272
272
|
export interface FoodType {
|
|
273
273
|
LocalizedName: string | undefined;
|
|
274
|
-
Id?: string;
|
|
275
|
-
Primary?: boolean;
|
|
274
|
+
Id?: string | undefined;
|
|
275
|
+
Primary?: boolean | undefined;
|
|
276
276
|
}
|
|
277
277
|
export declare const GeocodeAdditionalFeature: {
|
|
278
278
|
readonly ACCESS: "Access";
|
|
@@ -291,8 +291,8 @@ export declare const GeocodeFilterPlaceType: {
|
|
|
291
291
|
export type GeocodeFilterPlaceType =
|
|
292
292
|
(typeof GeocodeFilterPlaceType)[keyof typeof GeocodeFilterPlaceType];
|
|
293
293
|
export interface GeocodeFilter {
|
|
294
|
-
IncludeCountries?: string[];
|
|
295
|
-
IncludePlaceTypes?: GeocodeFilterPlaceType[];
|
|
294
|
+
IncludeCountries?: string[] | undefined;
|
|
295
|
+
IncludePlaceTypes?: GeocodeFilterPlaceType[] | undefined;
|
|
296
296
|
}
|
|
297
297
|
export declare const GeocodeIntendedUse: {
|
|
298
298
|
readonly SINGLE_USE: "SingleUse";
|
|
@@ -301,30 +301,30 @@ export declare const GeocodeIntendedUse: {
|
|
|
301
301
|
export type GeocodeIntendedUse =
|
|
302
302
|
(typeof GeocodeIntendedUse)[keyof typeof GeocodeIntendedUse];
|
|
303
303
|
export interface GeocodeQueryComponents {
|
|
304
|
-
Country?: string;
|
|
305
|
-
Region?: string;
|
|
306
|
-
SubRegion?: string;
|
|
307
|
-
Locality?: string;
|
|
308
|
-
District?: string;
|
|
309
|
-
Street?: string;
|
|
310
|
-
AddressNumber?: string;
|
|
311
|
-
PostalCode?: string;
|
|
304
|
+
Country?: string | undefined;
|
|
305
|
+
Region?: string | undefined;
|
|
306
|
+
SubRegion?: string | undefined;
|
|
307
|
+
Locality?: string | undefined;
|
|
308
|
+
District?: string | undefined;
|
|
309
|
+
Street?: string | undefined;
|
|
310
|
+
AddressNumber?: string | undefined;
|
|
311
|
+
PostalCode?: string | undefined;
|
|
312
312
|
}
|
|
313
313
|
export interface GeocodeRequest {
|
|
314
|
-
QueryText?: string;
|
|
315
|
-
QueryComponents?: GeocodeQueryComponents;
|
|
316
|
-
MaxResults?: number;
|
|
317
|
-
BiasPosition?: number[];
|
|
318
|
-
Filter?: GeocodeFilter;
|
|
319
|
-
AdditionalFeatures?: GeocodeAdditionalFeature[];
|
|
320
|
-
Language?: string;
|
|
321
|
-
PoliticalView?: string;
|
|
322
|
-
IntendedUse?: GeocodeIntendedUse;
|
|
323
|
-
Key?: string;
|
|
314
|
+
QueryText?: string | undefined;
|
|
315
|
+
QueryComponents?: GeocodeQueryComponents | undefined;
|
|
316
|
+
MaxResults?: number | undefined;
|
|
317
|
+
BiasPosition?: number[] | undefined;
|
|
318
|
+
Filter?: GeocodeFilter | undefined;
|
|
319
|
+
AdditionalFeatures?: GeocodeAdditionalFeature[] | undefined;
|
|
320
|
+
Language?: string | undefined;
|
|
321
|
+
PoliticalView?: string | undefined;
|
|
322
|
+
IntendedUse?: GeocodeIntendedUse | undefined;
|
|
323
|
+
Key?: string | undefined;
|
|
324
324
|
}
|
|
325
325
|
export interface MatchScoreDetails {
|
|
326
|
-
Overall?: number;
|
|
327
|
-
Components?: ComponentMatchScores;
|
|
326
|
+
Overall?: number | undefined;
|
|
327
|
+
Components?: ComponentMatchScores | undefined;
|
|
328
328
|
}
|
|
329
329
|
export declare const PostalAuthority: {
|
|
330
330
|
readonly USPS: "Usps";
|
|
@@ -345,7 +345,7 @@ export declare const ZipClassificationCode: {
|
|
|
345
345
|
export type ZipClassificationCode =
|
|
346
346
|
(typeof ZipClassificationCode)[keyof typeof ZipClassificationCode];
|
|
347
347
|
export interface UspsZip {
|
|
348
|
-
ZipClassificationCode?: ZipClassificationCode;
|
|
348
|
+
ZipClassificationCode?: ZipClassificationCode | undefined;
|
|
349
349
|
}
|
|
350
350
|
export declare const RecordTypeCode: {
|
|
351
351
|
readonly FIRM: "Firm";
|
|
@@ -358,40 +358,40 @@ export declare const RecordTypeCode: {
|
|
|
358
358
|
export type RecordTypeCode =
|
|
359
359
|
(typeof RecordTypeCode)[keyof typeof RecordTypeCode];
|
|
360
360
|
export interface UspsZipPlus4 {
|
|
361
|
-
RecordTypeCode?: RecordTypeCode;
|
|
361
|
+
RecordTypeCode?: RecordTypeCode | undefined;
|
|
362
362
|
}
|
|
363
363
|
export interface PostalCodeDetails {
|
|
364
|
-
PostalCode?: string;
|
|
365
|
-
PostalAuthority?: PostalAuthority;
|
|
366
|
-
PostalCodeType?: PostalCodeType;
|
|
367
|
-
UspsZip?: UspsZip;
|
|
368
|
-
UspsZipPlus4?: UspsZipPlus4;
|
|
364
|
+
PostalCode?: string | undefined;
|
|
365
|
+
PostalAuthority?: PostalAuthority | undefined;
|
|
366
|
+
PostalCodeType?: PostalCodeType | undefined;
|
|
367
|
+
UspsZip?: UspsZip | undefined;
|
|
368
|
+
UspsZipPlus4?: UspsZipPlus4 | undefined;
|
|
369
369
|
}
|
|
370
370
|
export interface TimeZone {
|
|
371
371
|
Name: string | undefined;
|
|
372
|
-
Offset?: string;
|
|
373
|
-
OffsetSeconds?: number;
|
|
372
|
+
Offset?: string | undefined;
|
|
373
|
+
OffsetSeconds?: number | undefined;
|
|
374
374
|
}
|
|
375
375
|
export interface GeocodeResultItem {
|
|
376
376
|
PlaceId: string | undefined;
|
|
377
377
|
PlaceType: PlaceType | undefined;
|
|
378
378
|
Title: string | undefined;
|
|
379
|
-
Address?: Address;
|
|
380
|
-
AddressNumberCorrected?: boolean;
|
|
381
|
-
PostalCodeDetails?: PostalCodeDetails[];
|
|
382
|
-
Position?: number[];
|
|
383
|
-
Distance?: number;
|
|
384
|
-
MapView?: number[];
|
|
385
|
-
Categories?: Category[];
|
|
386
|
-
FoodTypes?: FoodType[];
|
|
387
|
-
AccessPoints?: AccessPoint[];
|
|
388
|
-
TimeZone?: TimeZone;
|
|
389
|
-
PoliticalView?: string;
|
|
390
|
-
MatchScores?: MatchScoreDetails;
|
|
379
|
+
Address?: Address | undefined;
|
|
380
|
+
AddressNumberCorrected?: boolean | undefined;
|
|
381
|
+
PostalCodeDetails?: PostalCodeDetails[] | undefined;
|
|
382
|
+
Position?: number[] | undefined;
|
|
383
|
+
Distance?: number | undefined;
|
|
384
|
+
MapView?: number[] | undefined;
|
|
385
|
+
Categories?: Category[] | undefined;
|
|
386
|
+
FoodTypes?: FoodType[] | undefined;
|
|
387
|
+
AccessPoints?: AccessPoint[] | undefined;
|
|
388
|
+
TimeZone?: TimeZone | undefined;
|
|
389
|
+
PoliticalView?: string | undefined;
|
|
390
|
+
MatchScores?: MatchScoreDetails | undefined;
|
|
391
391
|
}
|
|
392
392
|
export interface GeocodeResponse {
|
|
393
393
|
PricingBucket: string | undefined;
|
|
394
|
-
ResultItems?: GeocodeResultItem[];
|
|
394
|
+
ResultItems?: GeocodeResultItem[] | undefined;
|
|
395
395
|
}
|
|
396
396
|
export declare const GetPlaceAdditionalFeature: {
|
|
397
397
|
readonly ACCESS: "Access";
|
|
@@ -409,47 +409,47 @@ export type GetPlaceIntendedUse =
|
|
|
409
409
|
(typeof GetPlaceIntendedUse)[keyof typeof GetPlaceIntendedUse];
|
|
410
410
|
export interface GetPlaceRequest {
|
|
411
411
|
PlaceId: string | undefined;
|
|
412
|
-
AdditionalFeatures?: GetPlaceAdditionalFeature[];
|
|
413
|
-
Language?: string;
|
|
414
|
-
PoliticalView?: string;
|
|
415
|
-
IntendedUse?: GetPlaceIntendedUse;
|
|
416
|
-
Key?: string;
|
|
412
|
+
AdditionalFeatures?: GetPlaceAdditionalFeature[] | undefined;
|
|
413
|
+
Language?: string | undefined;
|
|
414
|
+
PoliticalView?: string | undefined;
|
|
415
|
+
IntendedUse?: GetPlaceIntendedUse | undefined;
|
|
416
|
+
Key?: string | undefined;
|
|
417
417
|
}
|
|
418
418
|
export interface OpeningHoursComponents {
|
|
419
|
-
OpenTime?: string;
|
|
420
|
-
OpenDuration?: string;
|
|
421
|
-
Recurrence?: string;
|
|
419
|
+
OpenTime?: string | undefined;
|
|
420
|
+
OpenDuration?: string | undefined;
|
|
421
|
+
Recurrence?: string | undefined;
|
|
422
422
|
}
|
|
423
423
|
export interface OpeningHours {
|
|
424
|
-
Display?: string[];
|
|
425
|
-
OpenNow?: boolean;
|
|
426
|
-
Components?: OpeningHoursComponents[];
|
|
427
|
-
Categories?: Category[];
|
|
424
|
+
Display?: string[] | undefined;
|
|
425
|
+
OpenNow?: boolean | undefined;
|
|
426
|
+
Components?: OpeningHoursComponents[] | undefined;
|
|
427
|
+
Categories?: Category[] | undefined;
|
|
428
428
|
}
|
|
429
429
|
export interface PhonemeDetails {
|
|
430
|
-
Title?: PhonemeTranscription[];
|
|
431
|
-
Address?: AddressComponentPhonemes;
|
|
430
|
+
Title?: PhonemeTranscription[] | undefined;
|
|
431
|
+
Address?: AddressComponentPhonemes | undefined;
|
|
432
432
|
}
|
|
433
433
|
export interface GetPlaceResponse {
|
|
434
434
|
PlaceId: string | undefined;
|
|
435
435
|
PlaceType: PlaceType | undefined;
|
|
436
436
|
Title: string | undefined;
|
|
437
437
|
PricingBucket: string | undefined;
|
|
438
|
-
Address?: Address;
|
|
439
|
-
AddressNumberCorrected?: boolean;
|
|
440
|
-
PostalCodeDetails?: PostalCodeDetails[];
|
|
441
|
-
Position?: number[];
|
|
442
|
-
MapView?: number[];
|
|
443
|
-
Categories?: Category[];
|
|
444
|
-
FoodTypes?: FoodType[];
|
|
445
|
-
BusinessChains?: BusinessChain[];
|
|
446
|
-
Contacts?: Contacts;
|
|
447
|
-
OpeningHours?: OpeningHours[];
|
|
448
|
-
AccessPoints?: AccessPoint[];
|
|
449
|
-
AccessRestrictions?: AccessRestriction[];
|
|
450
|
-
TimeZone?: TimeZone;
|
|
451
|
-
PoliticalView?: string;
|
|
452
|
-
Phonemes?: PhonemeDetails;
|
|
438
|
+
Address?: Address | undefined;
|
|
439
|
+
AddressNumberCorrected?: boolean | undefined;
|
|
440
|
+
PostalCodeDetails?: PostalCodeDetails[] | undefined;
|
|
441
|
+
Position?: number[] | undefined;
|
|
442
|
+
MapView?: number[] | undefined;
|
|
443
|
+
Categories?: Category[] | undefined;
|
|
444
|
+
FoodTypes?: FoodType[] | undefined;
|
|
445
|
+
BusinessChains?: BusinessChain[] | undefined;
|
|
446
|
+
Contacts?: Contacts | undefined;
|
|
447
|
+
OpeningHours?: OpeningHours[] | undefined;
|
|
448
|
+
AccessPoints?: AccessPoint[] | undefined;
|
|
449
|
+
AccessRestrictions?: AccessRestriction[] | undefined;
|
|
450
|
+
TimeZone?: TimeZone | undefined;
|
|
451
|
+
PoliticalView?: string | undefined;
|
|
452
|
+
Phonemes?: PhonemeDetails | undefined;
|
|
453
453
|
}
|
|
454
454
|
export declare const ReverseGeocodeAdditionalFeature: {
|
|
455
455
|
readonly ACCESS: "Access";
|
|
@@ -467,7 +467,7 @@ export declare const ReverseGeocodeFilterPlaceType: {
|
|
|
467
467
|
export type ReverseGeocodeFilterPlaceType =
|
|
468
468
|
(typeof ReverseGeocodeFilterPlaceType)[keyof typeof ReverseGeocodeFilterPlaceType];
|
|
469
469
|
export interface ReverseGeocodeFilter {
|
|
470
|
-
IncludePlaceTypes?: ReverseGeocodeFilterPlaceType[];
|
|
470
|
+
IncludePlaceTypes?: ReverseGeocodeFilterPlaceType[] | undefined;
|
|
471
471
|
}
|
|
472
472
|
export declare const ReverseGeocodeIntendedUse: {
|
|
473
473
|
readonly SINGLE_USE: "SingleUse";
|
|
@@ -477,34 +477,34 @@ export type ReverseGeocodeIntendedUse =
|
|
|
477
477
|
(typeof ReverseGeocodeIntendedUse)[keyof typeof ReverseGeocodeIntendedUse];
|
|
478
478
|
export interface ReverseGeocodeRequest {
|
|
479
479
|
QueryPosition: number[] | undefined;
|
|
480
|
-
QueryRadius?: number;
|
|
481
|
-
MaxResults?: number;
|
|
482
|
-
Filter?: ReverseGeocodeFilter;
|
|
483
|
-
AdditionalFeatures?: ReverseGeocodeAdditionalFeature[];
|
|
484
|
-
Language?: string;
|
|
485
|
-
PoliticalView?: string;
|
|
486
|
-
IntendedUse?: ReverseGeocodeIntendedUse;
|
|
487
|
-
Key?: string;
|
|
480
|
+
QueryRadius?: number | undefined;
|
|
481
|
+
MaxResults?: number | undefined;
|
|
482
|
+
Filter?: ReverseGeocodeFilter | undefined;
|
|
483
|
+
AdditionalFeatures?: ReverseGeocodeAdditionalFeature[] | undefined;
|
|
484
|
+
Language?: string | undefined;
|
|
485
|
+
PoliticalView?: string | undefined;
|
|
486
|
+
IntendedUse?: ReverseGeocodeIntendedUse | undefined;
|
|
487
|
+
Key?: string | undefined;
|
|
488
488
|
}
|
|
489
489
|
export interface ReverseGeocodeResultItem {
|
|
490
490
|
PlaceId: string | undefined;
|
|
491
491
|
PlaceType: PlaceType | undefined;
|
|
492
492
|
Title: string | undefined;
|
|
493
|
-
Address?: Address;
|
|
494
|
-
AddressNumberCorrected?: boolean;
|
|
495
|
-
PostalCodeDetails?: PostalCodeDetails[];
|
|
496
|
-
Position?: number[];
|
|
497
|
-
Distance?: number;
|
|
498
|
-
MapView?: number[];
|
|
499
|
-
Categories?: Category[];
|
|
500
|
-
FoodTypes?: FoodType[];
|
|
501
|
-
AccessPoints?: AccessPoint[];
|
|
502
|
-
TimeZone?: TimeZone;
|
|
503
|
-
PoliticalView?: string;
|
|
493
|
+
Address?: Address | undefined;
|
|
494
|
+
AddressNumberCorrected?: boolean | undefined;
|
|
495
|
+
PostalCodeDetails?: PostalCodeDetails[] | undefined;
|
|
496
|
+
Position?: number[] | undefined;
|
|
497
|
+
Distance?: number | undefined;
|
|
498
|
+
MapView?: number[] | undefined;
|
|
499
|
+
Categories?: Category[] | undefined;
|
|
500
|
+
FoodTypes?: FoodType[] | undefined;
|
|
501
|
+
AccessPoints?: AccessPoint[] | undefined;
|
|
502
|
+
TimeZone?: TimeZone | undefined;
|
|
503
|
+
PoliticalView?: string | undefined;
|
|
504
504
|
}
|
|
505
505
|
export interface ReverseGeocodeResponse {
|
|
506
506
|
PricingBucket: string | undefined;
|
|
507
|
-
ResultItems?: ReverseGeocodeResultItem[];
|
|
507
|
+
ResultItems?: ReverseGeocodeResultItem[] | undefined;
|
|
508
508
|
}
|
|
509
509
|
export declare const SearchNearbyAdditionalFeature: {
|
|
510
510
|
readonly ACCESS: "Access";
|
|
@@ -515,14 +515,14 @@ export declare const SearchNearbyAdditionalFeature: {
|
|
|
515
515
|
export type SearchNearbyAdditionalFeature =
|
|
516
516
|
(typeof SearchNearbyAdditionalFeature)[keyof typeof SearchNearbyAdditionalFeature];
|
|
517
517
|
export interface SearchNearbyFilter {
|
|
518
|
-
BoundingBox?: number[];
|
|
519
|
-
IncludeCountries?: string[];
|
|
520
|
-
IncludeCategories?: string[];
|
|
521
|
-
ExcludeCategories?: string[];
|
|
522
|
-
IncludeBusinessChains?: string[];
|
|
523
|
-
ExcludeBusinessChains?: string[];
|
|
524
|
-
IncludeFoodTypes?: string[];
|
|
525
|
-
ExcludeFoodTypes?: string[];
|
|
518
|
+
BoundingBox?: number[] | undefined;
|
|
519
|
+
IncludeCountries?: string[] | undefined;
|
|
520
|
+
IncludeCategories?: string[] | undefined;
|
|
521
|
+
ExcludeCategories?: string[] | undefined;
|
|
522
|
+
IncludeBusinessChains?: string[] | undefined;
|
|
523
|
+
ExcludeBusinessChains?: string[] | undefined;
|
|
524
|
+
IncludeFoodTypes?: string[] | undefined;
|
|
525
|
+
ExcludeFoodTypes?: string[] | undefined;
|
|
526
526
|
}
|
|
527
527
|
export declare const SearchNearbyIntendedUse: {
|
|
528
528
|
readonly SINGLE_USE: "SingleUse";
|
|
@@ -532,40 +532,40 @@ export type SearchNearbyIntendedUse =
|
|
|
532
532
|
(typeof SearchNearbyIntendedUse)[keyof typeof SearchNearbyIntendedUse];
|
|
533
533
|
export interface SearchNearbyRequest {
|
|
534
534
|
QueryPosition: number[] | undefined;
|
|
535
|
-
QueryRadius?: number;
|
|
536
|
-
MaxResults?: number;
|
|
537
|
-
Filter?: SearchNearbyFilter;
|
|
538
|
-
AdditionalFeatures?: SearchNearbyAdditionalFeature[];
|
|
539
|
-
Language?: string;
|
|
540
|
-
PoliticalView?: string;
|
|
541
|
-
IntendedUse?: SearchNearbyIntendedUse;
|
|
542
|
-
NextToken?: string;
|
|
543
|
-
Key?: string;
|
|
535
|
+
QueryRadius?: number | undefined;
|
|
536
|
+
MaxResults?: number | undefined;
|
|
537
|
+
Filter?: SearchNearbyFilter | undefined;
|
|
538
|
+
AdditionalFeatures?: SearchNearbyAdditionalFeature[] | undefined;
|
|
539
|
+
Language?: string | undefined;
|
|
540
|
+
PoliticalView?: string | undefined;
|
|
541
|
+
IntendedUse?: SearchNearbyIntendedUse | undefined;
|
|
542
|
+
NextToken?: string | undefined;
|
|
543
|
+
Key?: string | undefined;
|
|
544
544
|
}
|
|
545
545
|
export interface SearchNearbyResultItem {
|
|
546
546
|
PlaceId: string | undefined;
|
|
547
547
|
PlaceType: PlaceType | undefined;
|
|
548
548
|
Title: string | undefined;
|
|
549
|
-
Address?: Address;
|
|
550
|
-
AddressNumberCorrected?: boolean;
|
|
551
|
-
Position?: number[];
|
|
552
|
-
Distance?: number;
|
|
553
|
-
MapView?: number[];
|
|
554
|
-
Categories?: Category[];
|
|
555
|
-
FoodTypes?: FoodType[];
|
|
556
|
-
BusinessChains?: BusinessChain[];
|
|
557
|
-
Contacts?: Contacts;
|
|
558
|
-
OpeningHours?: OpeningHours[];
|
|
559
|
-
AccessPoints?: AccessPoint[];
|
|
560
|
-
AccessRestrictions?: AccessRestriction[];
|
|
561
|
-
TimeZone?: TimeZone;
|
|
562
|
-
PoliticalView?: string;
|
|
563
|
-
Phonemes?: PhonemeDetails;
|
|
549
|
+
Address?: Address | undefined;
|
|
550
|
+
AddressNumberCorrected?: boolean | undefined;
|
|
551
|
+
Position?: number[] | undefined;
|
|
552
|
+
Distance?: number | undefined;
|
|
553
|
+
MapView?: number[] | undefined;
|
|
554
|
+
Categories?: Category[] | undefined;
|
|
555
|
+
FoodTypes?: FoodType[] | undefined;
|
|
556
|
+
BusinessChains?: BusinessChain[] | undefined;
|
|
557
|
+
Contacts?: Contacts | undefined;
|
|
558
|
+
OpeningHours?: OpeningHours[] | undefined;
|
|
559
|
+
AccessPoints?: AccessPoint[] | undefined;
|
|
560
|
+
AccessRestrictions?: AccessRestriction[] | undefined;
|
|
561
|
+
TimeZone?: TimeZone | undefined;
|
|
562
|
+
PoliticalView?: string | undefined;
|
|
563
|
+
Phonemes?: PhonemeDetails | undefined;
|
|
564
564
|
}
|
|
565
565
|
export interface SearchNearbyResponse {
|
|
566
566
|
PricingBucket: string | undefined;
|
|
567
|
-
ResultItems?: SearchNearbyResultItem[];
|
|
568
|
-
NextToken?: string;
|
|
567
|
+
ResultItems?: SearchNearbyResultItem[] | undefined;
|
|
568
|
+
NextToken?: string | undefined;
|
|
569
569
|
}
|
|
570
570
|
export declare const SearchTextAdditionalFeature: {
|
|
571
571
|
readonly ACCESS: "Access";
|
|
@@ -576,9 +576,9 @@ export declare const SearchTextAdditionalFeature: {
|
|
|
576
576
|
export type SearchTextAdditionalFeature =
|
|
577
577
|
(typeof SearchTextAdditionalFeature)[keyof typeof SearchTextAdditionalFeature];
|
|
578
578
|
export interface SearchTextFilter {
|
|
579
|
-
BoundingBox?: number[];
|
|
580
|
-
Circle?: FilterCircle;
|
|
581
|
-
IncludeCountries?: string[];
|
|
579
|
+
BoundingBox?: number[] | undefined;
|
|
580
|
+
Circle?: FilterCircle | undefined;
|
|
581
|
+
IncludeCountries?: string[] | undefined;
|
|
582
582
|
}
|
|
583
583
|
export declare const SearchTextIntendedUse: {
|
|
584
584
|
readonly SINGLE_USE: "SingleUse";
|
|
@@ -587,42 +587,42 @@ export declare const SearchTextIntendedUse: {
|
|
|
587
587
|
export type SearchTextIntendedUse =
|
|
588
588
|
(typeof SearchTextIntendedUse)[keyof typeof SearchTextIntendedUse];
|
|
589
589
|
export interface SearchTextRequest {
|
|
590
|
-
QueryText?: string;
|
|
591
|
-
QueryId?: string;
|
|
592
|
-
MaxResults?: number;
|
|
593
|
-
BiasPosition?: number[];
|
|
594
|
-
Filter?: SearchTextFilter;
|
|
595
|
-
AdditionalFeatures?: SearchTextAdditionalFeature[];
|
|
596
|
-
Language?: string;
|
|
597
|
-
PoliticalView?: string;
|
|
598
|
-
IntendedUse?: SearchTextIntendedUse;
|
|
599
|
-
NextToken?: string;
|
|
600
|
-
Key?: string;
|
|
590
|
+
QueryText?: string | undefined;
|
|
591
|
+
QueryId?: string | undefined;
|
|
592
|
+
MaxResults?: number | undefined;
|
|
593
|
+
BiasPosition?: number[] | undefined;
|
|
594
|
+
Filter?: SearchTextFilter | undefined;
|
|
595
|
+
AdditionalFeatures?: SearchTextAdditionalFeature[] | undefined;
|
|
596
|
+
Language?: string | undefined;
|
|
597
|
+
PoliticalView?: string | undefined;
|
|
598
|
+
IntendedUse?: SearchTextIntendedUse | undefined;
|
|
599
|
+
NextToken?: string | undefined;
|
|
600
|
+
Key?: string | undefined;
|
|
601
601
|
}
|
|
602
602
|
export interface SearchTextResultItem {
|
|
603
603
|
PlaceId: string | undefined;
|
|
604
604
|
PlaceType: PlaceType | undefined;
|
|
605
605
|
Title: string | undefined;
|
|
606
|
-
Address?: Address;
|
|
607
|
-
AddressNumberCorrected?: boolean;
|
|
608
|
-
Position?: number[];
|
|
609
|
-
Distance?: number;
|
|
610
|
-
MapView?: number[];
|
|
611
|
-
Categories?: Category[];
|
|
612
|
-
FoodTypes?: FoodType[];
|
|
613
|
-
BusinessChains?: BusinessChain[];
|
|
614
|
-
Contacts?: Contacts;
|
|
615
|
-
OpeningHours?: OpeningHours[];
|
|
616
|
-
AccessPoints?: AccessPoint[];
|
|
617
|
-
AccessRestrictions?: AccessRestriction[];
|
|
618
|
-
TimeZone?: TimeZone;
|
|
619
|
-
PoliticalView?: string;
|
|
620
|
-
Phonemes?: PhonemeDetails;
|
|
606
|
+
Address?: Address | undefined;
|
|
607
|
+
AddressNumberCorrected?: boolean | undefined;
|
|
608
|
+
Position?: number[] | undefined;
|
|
609
|
+
Distance?: number | undefined;
|
|
610
|
+
MapView?: number[] | undefined;
|
|
611
|
+
Categories?: Category[] | undefined;
|
|
612
|
+
FoodTypes?: FoodType[] | undefined;
|
|
613
|
+
BusinessChains?: BusinessChain[] | undefined;
|
|
614
|
+
Contacts?: Contacts | undefined;
|
|
615
|
+
OpeningHours?: OpeningHours[] | undefined;
|
|
616
|
+
AccessPoints?: AccessPoint[] | undefined;
|
|
617
|
+
AccessRestrictions?: AccessRestriction[] | undefined;
|
|
618
|
+
TimeZone?: TimeZone | undefined;
|
|
619
|
+
PoliticalView?: string | undefined;
|
|
620
|
+
Phonemes?: PhonemeDetails | undefined;
|
|
621
621
|
}
|
|
622
622
|
export interface SearchTextResponse {
|
|
623
623
|
PricingBucket: string | undefined;
|
|
624
|
-
ResultItems?: SearchTextResultItem[];
|
|
625
|
-
NextToken?: string;
|
|
624
|
+
ResultItems?: SearchTextResultItem[] | undefined;
|
|
625
|
+
NextToken?: string | undefined;
|
|
626
626
|
}
|
|
627
627
|
export declare const SuggestAdditionalFeature: {
|
|
628
628
|
readonly ACCESS: "Access";
|
|
@@ -633,9 +633,9 @@ export declare const SuggestAdditionalFeature: {
|
|
|
633
633
|
export type SuggestAdditionalFeature =
|
|
634
634
|
(typeof SuggestAdditionalFeature)[keyof typeof SuggestAdditionalFeature];
|
|
635
635
|
export interface SuggestFilter {
|
|
636
|
-
BoundingBox?: number[];
|
|
637
|
-
Circle?: FilterCircle;
|
|
638
|
-
IncludeCountries?: string[];
|
|
636
|
+
BoundingBox?: number[] | undefined;
|
|
637
|
+
Circle?: FilterCircle | undefined;
|
|
638
|
+
IncludeCountries?: string[] | undefined;
|
|
639
639
|
}
|
|
640
640
|
export declare const SuggestIntendedUse: {
|
|
641
641
|
readonly SINGLE_USE: "SingleUse";
|
|
@@ -644,15 +644,15 @@ export type SuggestIntendedUse =
|
|
|
644
644
|
(typeof SuggestIntendedUse)[keyof typeof SuggestIntendedUse];
|
|
645
645
|
export interface SuggestRequest {
|
|
646
646
|
QueryText: string | undefined;
|
|
647
|
-
MaxResults?: number;
|
|
648
|
-
MaxQueryRefinements?: number;
|
|
649
|
-
BiasPosition?: number[];
|
|
650
|
-
Filter?: SuggestFilter;
|
|
651
|
-
AdditionalFeatures?: SuggestAdditionalFeature[];
|
|
652
|
-
Language?: string;
|
|
653
|
-
PoliticalView?: string;
|
|
654
|
-
IntendedUse?: SuggestIntendedUse;
|
|
655
|
-
Key?: string;
|
|
647
|
+
MaxResults?: number | undefined;
|
|
648
|
+
MaxQueryRefinements?: number | undefined;
|
|
649
|
+
BiasPosition?: number[] | undefined;
|
|
650
|
+
Filter?: SuggestFilter | undefined;
|
|
651
|
+
AdditionalFeatures?: SuggestAdditionalFeature[] | undefined;
|
|
652
|
+
Language?: string | undefined;
|
|
653
|
+
PoliticalView?: string | undefined;
|
|
654
|
+
IntendedUse?: SuggestIntendedUse | undefined;
|
|
655
|
+
Key?: string | undefined;
|
|
656
656
|
}
|
|
657
657
|
export interface QueryRefinement {
|
|
658
658
|
RefinedTerm: string | undefined;
|
|
@@ -661,27 +661,27 @@ export interface QueryRefinement {
|
|
|
661
661
|
EndIndex: number | undefined;
|
|
662
662
|
}
|
|
663
663
|
export interface SuggestAddressHighlights {
|
|
664
|
-
Label?: Highlight[];
|
|
664
|
+
Label?: Highlight[] | undefined;
|
|
665
665
|
}
|
|
666
666
|
export interface SuggestHighlights {
|
|
667
|
-
Title?: Highlight[];
|
|
668
|
-
Address?: SuggestAddressHighlights;
|
|
667
|
+
Title?: Highlight[] | undefined;
|
|
668
|
+
Address?: SuggestAddressHighlights | undefined;
|
|
669
669
|
}
|
|
670
670
|
export interface SuggestPlaceResult {
|
|
671
|
-
PlaceId?: string;
|
|
672
|
-
PlaceType?: PlaceType;
|
|
673
|
-
Address?: Address;
|
|
674
|
-
Position?: number[];
|
|
675
|
-
Distance?: number;
|
|
676
|
-
MapView?: number[];
|
|
677
|
-
Categories?: Category[];
|
|
678
|
-
FoodTypes?: FoodType[];
|
|
679
|
-
BusinessChains?: BusinessChain[];
|
|
680
|
-
AccessPoints?: AccessPoint[];
|
|
681
|
-
AccessRestrictions?: AccessRestriction[];
|
|
682
|
-
TimeZone?: TimeZone;
|
|
683
|
-
PoliticalView?: string;
|
|
684
|
-
Phonemes?: PhonemeDetails;
|
|
671
|
+
PlaceId?: string | undefined;
|
|
672
|
+
PlaceType?: PlaceType | undefined;
|
|
673
|
+
Address?: Address | undefined;
|
|
674
|
+
Position?: number[] | undefined;
|
|
675
|
+
Distance?: number | undefined;
|
|
676
|
+
MapView?: number[] | undefined;
|
|
677
|
+
Categories?: Category[] | undefined;
|
|
678
|
+
FoodTypes?: FoodType[] | undefined;
|
|
679
|
+
BusinessChains?: BusinessChain[] | undefined;
|
|
680
|
+
AccessPoints?: AccessPoint[] | undefined;
|
|
681
|
+
AccessRestrictions?: AccessRestriction[] | undefined;
|
|
682
|
+
TimeZone?: TimeZone | undefined;
|
|
683
|
+
PoliticalView?: string | undefined;
|
|
684
|
+
Phonemes?: PhonemeDetails | undefined;
|
|
685
685
|
}
|
|
686
686
|
export declare const QueryType: {
|
|
687
687
|
readonly BUSINESS_CHAIN: "BusinessChain";
|
|
@@ -689,8 +689,8 @@ export declare const QueryType: {
|
|
|
689
689
|
};
|
|
690
690
|
export type QueryType = (typeof QueryType)[keyof typeof QueryType];
|
|
691
691
|
export interface SuggestQueryResult {
|
|
692
|
-
QueryId?: string;
|
|
693
|
-
QueryType?: QueryType;
|
|
692
|
+
QueryId?: string | undefined;
|
|
693
|
+
QueryType?: QueryType | undefined;
|
|
694
694
|
}
|
|
695
695
|
export declare const SuggestResultItemType: {
|
|
696
696
|
readonly PLACE: "Place";
|
|
@@ -701,14 +701,14 @@ export type SuggestResultItemType =
|
|
|
701
701
|
export interface SuggestResultItem {
|
|
702
702
|
Title: string | undefined;
|
|
703
703
|
SuggestResultItemType: SuggestResultItemType | undefined;
|
|
704
|
-
Place?: SuggestPlaceResult;
|
|
705
|
-
Query?: SuggestQueryResult;
|
|
706
|
-
Highlights?: SuggestHighlights;
|
|
704
|
+
Place?: SuggestPlaceResult | undefined;
|
|
705
|
+
Query?: SuggestQueryResult | undefined;
|
|
706
|
+
Highlights?: SuggestHighlights | undefined;
|
|
707
707
|
}
|
|
708
708
|
export interface SuggestResponse {
|
|
709
709
|
PricingBucket: string | undefined;
|
|
710
|
-
ResultItems?: SuggestResultItem[];
|
|
711
|
-
QueryRefinements?: QueryRefinement[];
|
|
710
|
+
ResultItems?: SuggestResultItem[] | undefined;
|
|
711
|
+
QueryRefinements?: QueryRefinement[] | undefined;
|
|
712
712
|
}
|
|
713
713
|
export declare const AccessPointFilterSensitiveLog: (obj: AccessPoint) => any;
|
|
714
714
|
export declare const FilterCircleFilterSensitiveLog: (obj: FilterCircle) => any;
|