@aws-sdk/client-geo-places 3.1075.0 → 3.1077.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-cjs/index.js +1175 -15
- package/dist-es/runtimeConfig.browser.js +0 -2
- package/dist-es/runtimeConfig.js +1 -2
- package/dist-es/runtimeConfig.native.js +0 -2
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-types/runtimeConfig.browser.d.ts +2 -2
- package/dist-types/runtimeConfig.d.ts +2 -2
- package/dist-types/runtimeConfig.native.d.ts +2 -2
- package/dist-types/runtimeConfig.shared.d.ts +1 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +8 -2
- package/dist-types/ts3.4/runtimeConfig.d.ts +8 -2
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +8 -2
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +1 -0
- package/package.json +8 -10
- package/dist-cjs/auth/httpAuthSchemeProvider.js +0 -40
- package/dist-cjs/endpoint/bdd.js +0 -57
- package/dist-cjs/endpoint/endpointResolver.js +0 -14
- package/dist-cjs/models/GeoPlacesServiceException.js +0 -8
- package/dist-cjs/models/errors.js +0 -63
- package/dist-cjs/runtimeConfig.browser.js +0 -32
- package/dist-cjs/runtimeConfig.js +0 -45
- package/dist-cjs/runtimeConfig.native.js +0 -12
- package/dist-cjs/runtimeConfig.shared.js +0 -38
- package/dist-cjs/schemas/schemas_0.js +0 -914
package/dist-cjs/index.js
CHANGED
|
@@ -1,21 +1,58 @@
|
|
|
1
|
-
|
|
2
|
-
const { getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
|
|
1
|
+
const { awsEndpointFunctions, emitWarningIfUnsupportedVersion: emitWarningIfUnsupportedVersion$1, createDefaultUserAgentProvider, NODE_APP_ID_CONFIG_OPTIONS, getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
|
|
3
2
|
const { getHttpAuthSchemeEndpointRuleSetPlugin, DefaultIdentityProviderConfig, getHttpSigningPlugin } = require("@smithy/core");
|
|
4
|
-
const { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createAggregatedClient } = require("@smithy/core/client");
|
|
3
|
+
const { normalizeProvider, getSmithyContext, ServiceException, NoOpLogger, emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode, getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createAggregatedClient } = require("@smithy/core/client");
|
|
5
4
|
exports.$Command = Command;
|
|
6
5
|
exports.__Client = Client;
|
|
7
|
-
const { resolveRegionConfig } = require("@smithy/core/config");
|
|
8
|
-
const { resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
|
|
9
|
-
const { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, getContentLengthPlugin } = require("@smithy/core/protocols");
|
|
10
|
-
const { resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
|
|
11
|
-
const { getSchemaSerdePlugin } = require("@smithy/core/schema");
|
|
12
|
-
const {
|
|
13
|
-
const {
|
|
14
|
-
const {
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
const {
|
|
18
|
-
|
|
6
|
+
const { resolveDefaultsModeConfig, loadConfig, NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, NODE_REGION_CONFIG_OPTIONS, NODE_REGION_CONFIG_FILE_OPTIONS, resolveRegionConfig } = require("@smithy/core/config");
|
|
7
|
+
const { BinaryDecisionDiagram, EndpointCache, decideEndpoint, customEndpointFunctions, resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
|
|
8
|
+
const { parseUrl, getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, getContentLengthPlugin } = require("@smithy/core/protocols");
|
|
9
|
+
const { DEFAULT_RETRY_MODE, NODE_RETRY_MODE_CONFIG_OPTIONS, NODE_MAX_ATTEMPT_CONFIG_OPTIONS, resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
|
|
10
|
+
const { TypeRegistry, getSchemaSerdePlugin } = require("@smithy/core/schema");
|
|
11
|
+
const { resolveAwsSdkSigV4Config, AwsSdkSigV4Signer, NODE_AUTH_SCHEME_PREFERENCE_OPTIONS } = require("@aws-sdk/core/httpAuthSchemes");
|
|
12
|
+
const { defaultProvider } = require("@aws-sdk/credential-provider-node");
|
|
13
|
+
const { toUtf8, fromUtf8, toBase64, fromBase64, calculateBodyLength } = require("@smithy/core/serde");
|
|
14
|
+
const { streamCollector, NodeHttpHandler } = require("@smithy/node-http-handler");
|
|
15
|
+
const { AwsRestJsonProtocol } = require("@aws-sdk/core/protocols");
|
|
16
|
+
const { Sha256 } = require("@smithy/core/checksum");
|
|
17
|
+
|
|
18
|
+
const defaultGeoPlacesHttpAuthSchemeParametersProvider = async (config, context, input) => {
|
|
19
|
+
return {
|
|
20
|
+
operation: getSmithyContext(context).operation,
|
|
21
|
+
region: await normalizeProvider(config.region)() || (() => {
|
|
22
|
+
throw new Error("expected `region` to be configured for `aws.auth#sigv4`");
|
|
23
|
+
})(),
|
|
24
|
+
};
|
|
25
|
+
};
|
|
26
|
+
function createAwsAuthSigv4HttpAuthOption(authParameters) {
|
|
27
|
+
return {
|
|
28
|
+
schemeId: "aws.auth#sigv4",
|
|
29
|
+
signingProperties: {
|
|
30
|
+
name: "geo-places",
|
|
31
|
+
region: authParameters.region,
|
|
32
|
+
},
|
|
33
|
+
propertiesExtractor: (config, context) => ({
|
|
34
|
+
signingProperties: {
|
|
35
|
+
config,
|
|
36
|
+
context,
|
|
37
|
+
},
|
|
38
|
+
}),
|
|
39
|
+
};
|
|
40
|
+
}
|
|
41
|
+
const defaultGeoPlacesHttpAuthSchemeProvider = (authParameters) => {
|
|
42
|
+
const options = [];
|
|
43
|
+
switch (authParameters.operation) {
|
|
44
|
+
default: {
|
|
45
|
+
options.push(createAwsAuthSigv4HttpAuthOption(authParameters));
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
return options;
|
|
49
|
+
};
|
|
50
|
+
const resolveHttpAuthSchemeConfig = (config) => {
|
|
51
|
+
const config_0 = resolveAwsSdkSigV4Config(config);
|
|
52
|
+
return Object.assign(config_0, {
|
|
53
|
+
authSchemePreference: normalizeProvider(config.authSchemePreference ?? []),
|
|
54
|
+
});
|
|
55
|
+
};
|
|
19
56
|
|
|
20
57
|
const resolveClientEndpointParameters = (options) => {
|
|
21
58
|
return Object.assign(options, {
|
|
@@ -31,6 +68,1039 @@ const commonParams = {
|
|
|
31
68
|
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
32
69
|
};
|
|
33
70
|
|
|
71
|
+
var version = "3.1076.0";
|
|
72
|
+
var packageInfo = {
|
|
73
|
+
version: version};
|
|
74
|
+
|
|
75
|
+
const m = "ref";
|
|
76
|
+
const a = -1, b = true, c = "isSet", d = "PartitionResult", e = "stringEquals", f = "booleanEquals", g = "getAttr", h = { [m]: "Endpoint" }, i = { "fn": g, "argv": [{ [m]: d }, "name"] }, j = { [m]: d }, k = {}, l = [{ [m]: "Region" }];
|
|
77
|
+
const _data = {
|
|
78
|
+
conditions: [
|
|
79
|
+
[c, [h]],
|
|
80
|
+
[c, l],
|
|
81
|
+
["aws.partition", l, d],
|
|
82
|
+
[e, [i, "aws-us-gov"]],
|
|
83
|
+
[e, [i, "aws"]],
|
|
84
|
+
[f, [{ [m]: "UseFIPS" }, b]],
|
|
85
|
+
[f, [{ fn: g, argv: [j, "supportsFIPS"] }, b]],
|
|
86
|
+
[f, [{ [m]: "UseDualStack" }, b]],
|
|
87
|
+
[f, [{ fn: g, argv: [j, "supportsDualStack"] }, b]]
|
|
88
|
+
],
|
|
89
|
+
results: [
|
|
90
|
+
[a],
|
|
91
|
+
[a, "Invalid Configuration: FIPS and custom endpoint are not supported"],
|
|
92
|
+
[a, "Invalid Configuration: Dualstack and custom endpoint are not supported"],
|
|
93
|
+
[h, k],
|
|
94
|
+
["https://places.geo.{Region}.{PartitionResult#dnsSuffix}", k],
|
|
95
|
+
["https://places.geo-fips.{Region}.{PartitionResult#dualStackDnsSuffix}", k],
|
|
96
|
+
["https://places.geo-fips.{Region}.{PartitionResult#dnsSuffix}", k],
|
|
97
|
+
["https://places.geo.{Region}.{PartitionResult#dualStackDnsSuffix}", k],
|
|
98
|
+
["https://geo-places-fips.{Region}.{PartitionResult#dualStackDnsSuffix}", k],
|
|
99
|
+
[a, "FIPS and DualStack are enabled, but this partition does not support one or both"],
|
|
100
|
+
["https://geo-places-fips.{Region}.{PartitionResult#dnsSuffix}", k],
|
|
101
|
+
[a, "FIPS is enabled but this partition does not support FIPS"],
|
|
102
|
+
["https://geo-places.{Region}.{PartitionResult#dualStackDnsSuffix}", k],
|
|
103
|
+
[a, "DualStack is enabled but this partition does not support DualStack"],
|
|
104
|
+
["https://geo-places.{Region}.{PartitionResult#dnsSuffix}", k],
|
|
105
|
+
[a, "Invalid Configuration: Missing Region"]
|
|
106
|
+
]
|
|
107
|
+
};
|
|
108
|
+
const root = 2;
|
|
109
|
+
const r = 100_000_000;
|
|
110
|
+
const nodes = new Int32Array([
|
|
111
|
+
-1, 1, -1,
|
|
112
|
+
0, 17, 3,
|
|
113
|
+
1, 4, r + 15,
|
|
114
|
+
2, 5, r + 15,
|
|
115
|
+
3, 14, 6,
|
|
116
|
+
4, 14, 7,
|
|
117
|
+
5, 10, 8,
|
|
118
|
+
7, 9, r + 14,
|
|
119
|
+
8, r + 12, r + 13,
|
|
120
|
+
6, 12, 11,
|
|
121
|
+
7, r + 9, r + 11,
|
|
122
|
+
7, 13, r + 10,
|
|
123
|
+
8, r + 8, r + 9,
|
|
124
|
+
5, 16, 15,
|
|
125
|
+
7, r + 7, r + 4,
|
|
126
|
+
7, r + 5, r + 6,
|
|
127
|
+
5, r + 1, 18,
|
|
128
|
+
7, r + 2, r + 3,
|
|
129
|
+
]);
|
|
130
|
+
const bdd = BinaryDecisionDiagram.from(nodes, root, _data.conditions, _data.results);
|
|
131
|
+
|
|
132
|
+
const cache = new EndpointCache({
|
|
133
|
+
size: 50,
|
|
134
|
+
params: ["Endpoint", "Region", "UseDualStack", "UseFIPS"],
|
|
135
|
+
});
|
|
136
|
+
const defaultEndpointResolver = (endpointParams, context = {}) => {
|
|
137
|
+
return cache.get(endpointParams, () => decideEndpoint(bdd, {
|
|
138
|
+
endpointParams: endpointParams,
|
|
139
|
+
logger: context.logger,
|
|
140
|
+
}));
|
|
141
|
+
};
|
|
142
|
+
customEndpointFunctions.aws = awsEndpointFunctions;
|
|
143
|
+
|
|
144
|
+
class GeoPlacesServiceException extends ServiceException {
|
|
145
|
+
constructor(options) {
|
|
146
|
+
super(options);
|
|
147
|
+
Object.setPrototypeOf(this, GeoPlacesServiceException.prototype);
|
|
148
|
+
}
|
|
149
|
+
}
|
|
150
|
+
|
|
151
|
+
class AccessDeniedException extends GeoPlacesServiceException {
|
|
152
|
+
name = "AccessDeniedException";
|
|
153
|
+
$fault = "client";
|
|
154
|
+
Message;
|
|
155
|
+
constructor(opts) {
|
|
156
|
+
super({
|
|
157
|
+
name: "AccessDeniedException",
|
|
158
|
+
$fault: "client",
|
|
159
|
+
...opts,
|
|
160
|
+
});
|
|
161
|
+
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
162
|
+
this.Message = opts.Message;
|
|
163
|
+
}
|
|
164
|
+
}
|
|
165
|
+
class InternalServerException extends GeoPlacesServiceException {
|
|
166
|
+
name = "InternalServerException";
|
|
167
|
+
$fault = "server";
|
|
168
|
+
$retryable = {};
|
|
169
|
+
Message;
|
|
170
|
+
constructor(opts) {
|
|
171
|
+
super({
|
|
172
|
+
name: "InternalServerException",
|
|
173
|
+
$fault: "server",
|
|
174
|
+
...opts,
|
|
175
|
+
});
|
|
176
|
+
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
177
|
+
this.Message = opts.Message;
|
|
178
|
+
}
|
|
179
|
+
}
|
|
180
|
+
class ThrottlingException extends GeoPlacesServiceException {
|
|
181
|
+
name = "ThrottlingException";
|
|
182
|
+
$fault = "client";
|
|
183
|
+
$retryable = {};
|
|
184
|
+
Message;
|
|
185
|
+
constructor(opts) {
|
|
186
|
+
super({
|
|
187
|
+
name: "ThrottlingException",
|
|
188
|
+
$fault: "client",
|
|
189
|
+
...opts,
|
|
190
|
+
});
|
|
191
|
+
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
192
|
+
this.Message = opts.Message;
|
|
193
|
+
}
|
|
194
|
+
}
|
|
195
|
+
class ValidationException extends GeoPlacesServiceException {
|
|
196
|
+
name = "ValidationException";
|
|
197
|
+
$fault = "client";
|
|
198
|
+
Message;
|
|
199
|
+
Reason;
|
|
200
|
+
FieldList;
|
|
201
|
+
constructor(opts) {
|
|
202
|
+
super({
|
|
203
|
+
name: "ValidationException",
|
|
204
|
+
$fault: "client",
|
|
205
|
+
...opts,
|
|
206
|
+
});
|
|
207
|
+
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
208
|
+
this.Message = opts.Message;
|
|
209
|
+
this.Reason = opts.Reason;
|
|
210
|
+
this.FieldList = opts.FieldList;
|
|
211
|
+
}
|
|
212
|
+
}
|
|
213
|
+
|
|
214
|
+
const _A = "Address";
|
|
215
|
+
const _AAH = "AutocompleteAddressHighlights";
|
|
216
|
+
const _ACMS = "AddressComponentMatchScores";
|
|
217
|
+
const _ACP = "AddressComponentPhonemes";
|
|
218
|
+
const _ADE = "AccessDeniedException";
|
|
219
|
+
const _AF = "AutocompleteFilter";
|
|
220
|
+
const _AFd = "AdditionalFeatures";
|
|
221
|
+
const _AH = "AutocompleteHighlights";
|
|
222
|
+
const _AK = "ApiKey";
|
|
223
|
+
const _AN = "AddressNumber";
|
|
224
|
+
const _ANC = "AddressNumberCorrected";
|
|
225
|
+
const _AP = "AccessPoint";
|
|
226
|
+
const _APL = "AccessPointList";
|
|
227
|
+
const _APc = "AccessPoints";
|
|
228
|
+
const _AR = "AccessRestriction";
|
|
229
|
+
const _ARI = "AutocompleteResultItem";
|
|
230
|
+
const _ARIL = "AutocompleteResultItemList";
|
|
231
|
+
const _ARL = "AccessRestrictionList";
|
|
232
|
+
const _ARc = "AccessRestrictions";
|
|
233
|
+
const _ARu = "AutocompleteRequest";
|
|
234
|
+
const _ARut = "AutocompleteResponse";
|
|
235
|
+
const _Au = "Autocomplete";
|
|
236
|
+
const _B = "Block";
|
|
237
|
+
const _BB = "BoundingBox";
|
|
238
|
+
const _BC = "BusinessChain";
|
|
239
|
+
const _BCL = "BusinessChainList";
|
|
240
|
+
const _BCu = "BusinessChains";
|
|
241
|
+
const _BN = "BaseName";
|
|
242
|
+
const _BP = "BiasPosition";
|
|
243
|
+
const _Bu = "Building";
|
|
244
|
+
const _C = "Categories";
|
|
245
|
+
const _CC = "CountryCode";
|
|
246
|
+
const _CCL = "CountryCodeList";
|
|
247
|
+
const _CCo = "CountryCode2";
|
|
248
|
+
const _CCou = "CountryCode3";
|
|
249
|
+
const _CD = "ContactDetails";
|
|
250
|
+
const _CDL = "ContactDetailsList";
|
|
251
|
+
const _CH = "CountryHighlights";
|
|
252
|
+
const _CL = "CategoryList";
|
|
253
|
+
const _CMS = "ComponentMatchScores";
|
|
254
|
+
const _Ca = "Category";
|
|
255
|
+
const _Ce = "Center";
|
|
256
|
+
const _Ci = "Circle";
|
|
257
|
+
const _Co = "Country";
|
|
258
|
+
const _Cod = "Code2";
|
|
259
|
+
const _Code = "Code3";
|
|
260
|
+
const _Code_ = "Code";
|
|
261
|
+
const _Com = "Components";
|
|
262
|
+
const _Con = "Contacts";
|
|
263
|
+
const _D = "District";
|
|
264
|
+
const _DM = "DistanceMeters";
|
|
265
|
+
const _DS = "DurationSeconds";
|
|
266
|
+
const _De = "Designator";
|
|
267
|
+
const _Di = "Distance";
|
|
268
|
+
const _Dir = "Direction";
|
|
269
|
+
const _Dis = "Display";
|
|
270
|
+
const _E = "Emails";
|
|
271
|
+
const _EBC = "ExcludeBusinessChains";
|
|
272
|
+
const _EC = "ExcludeCategories";
|
|
273
|
+
const _EFT = "ExcludeFoodTypes";
|
|
274
|
+
const _EI = "EndIndex";
|
|
275
|
+
const _F = "Filter";
|
|
276
|
+
const _FBCL = "FilterBusinessChainList";
|
|
277
|
+
const _FC = "FilterCircle";
|
|
278
|
+
const _FCL = "FilterCategoryList";
|
|
279
|
+
const _FFTL = "FilterFoodTypeList";
|
|
280
|
+
const _FL = "FieldList";
|
|
281
|
+
const _FT = "FoodType";
|
|
282
|
+
const _FTL = "FoodTypeList";
|
|
283
|
+
const _FTo = "FoodTypes";
|
|
284
|
+
const _Fa = "Faxes";
|
|
285
|
+
const _G = "Geocode";
|
|
286
|
+
const _GF = "GeocodeFilter";
|
|
287
|
+
const _GFPT = "GeocodeFilterPlaceType";
|
|
288
|
+
const _GFPTL = "GeocodeFilterPlaceTypeList";
|
|
289
|
+
const _GP = "GetPlace";
|
|
290
|
+
const _GPQ = "GeocodeParsedQuery";
|
|
291
|
+
const _GPQAC = "GeocodeParsedQueryAddressComponents";
|
|
292
|
+
const _GPR = "GetPlaceRequest";
|
|
293
|
+
const _GPRe = "GetPlaceResponse";
|
|
294
|
+
const _GQC = "GeocodeQueryComponents";
|
|
295
|
+
const _GR = "GeocodeRequest";
|
|
296
|
+
const _GRI = "GeocodeResultItem";
|
|
297
|
+
const _GRIL = "GeocodeResultItemList";
|
|
298
|
+
const _GRe = "GeocodeResponse";
|
|
299
|
+
const _H = "Heading";
|
|
300
|
+
const _HL = "HighlightList";
|
|
301
|
+
const _Hi = "Highlights";
|
|
302
|
+
const _Hig = "Highlight";
|
|
303
|
+
const _I = "Intersection";
|
|
304
|
+
const _IBC = "IncludeBusinessChains";
|
|
305
|
+
const _IC = "IncludeCountries";
|
|
306
|
+
const _ICn = "IncludeCategories";
|
|
307
|
+
const _IFT = "IncludeFoodTypes";
|
|
308
|
+
const _IHL = "IntersectionHighlightsList";
|
|
309
|
+
const _IL = "IntersectionList";
|
|
310
|
+
const _IPT = "IncludePlaceTypes";
|
|
311
|
+
const _ISE = "InternalServerException";
|
|
312
|
+
const _IU = "IntendedUse";
|
|
313
|
+
const _Id = "Id";
|
|
314
|
+
const _In = "Intersections";
|
|
315
|
+
const _K = "Key";
|
|
316
|
+
const _L = "Label";
|
|
317
|
+
const _LN = "LocalizedName";
|
|
318
|
+
const _La = "Language";
|
|
319
|
+
const _Lo = "Locality";
|
|
320
|
+
const _M = "Message";
|
|
321
|
+
const _MA = "MainAddress";
|
|
322
|
+
const _MQR = "MaxQueryRefinements";
|
|
323
|
+
const _MR = "MaxResults";
|
|
324
|
+
const _MS = "MatchScores";
|
|
325
|
+
const _MSD = "MatchScoreDetails";
|
|
326
|
+
const _MV = "MapView";
|
|
327
|
+
const _N = "Name";
|
|
328
|
+
const _NT = "NextToken";
|
|
329
|
+
const _Nu = "Number";
|
|
330
|
+
const _O = "Overall";
|
|
331
|
+
const _OD = "OpenDuration";
|
|
332
|
+
const _OH = "OpeningHours";
|
|
333
|
+
const _OHC = "OpeningHoursComponents";
|
|
334
|
+
const _OHCL = "OpeningHoursComponentsList";
|
|
335
|
+
const _OHD = "OpeningHoursDisplay";
|
|
336
|
+
const _OHDL = "OpeningHoursDisplayList";
|
|
337
|
+
const _OHL = "OpeningHoursList";
|
|
338
|
+
const _ON = "OpenNow";
|
|
339
|
+
const _OS = "OffsetSeconds";
|
|
340
|
+
const _OT = "OpenTime";
|
|
341
|
+
const _OTr = "OriginalTerm";
|
|
342
|
+
const _Of = "Offset";
|
|
343
|
+
const _P = "Position";
|
|
344
|
+
const _PA = "PostalAuthority";
|
|
345
|
+
const _PB = "PricingBucket";
|
|
346
|
+
const _PC = "PostalCode";
|
|
347
|
+
const _PCD = "PostalCodeDetails";
|
|
348
|
+
const _PCDL = "PostalCodeDetailsList";
|
|
349
|
+
const _PCM = "PostalCodeMode";
|
|
350
|
+
const _PCT = "PostalCodeType";
|
|
351
|
+
const _PD = "PhonemeDetails";
|
|
352
|
+
const _PI = "PlaceId";
|
|
353
|
+
const _PQ = "ParsedQuery";
|
|
354
|
+
const _PQC = "ParsedQueryComponent";
|
|
355
|
+
const _PQCL = "ParsedQueryComponentList";
|
|
356
|
+
const _PQSAC = "ParsedQuerySecondaryAddressComponent";
|
|
357
|
+
const _PQSACL = "ParsedQuerySecondaryAddressComponentList";
|
|
358
|
+
const _PT = "PlaceType";
|
|
359
|
+
const _PTL = "PhonemeTranscriptionList";
|
|
360
|
+
const _PTh = "PhonemeTranscription";
|
|
361
|
+
const _PV = "PoliticalView";
|
|
362
|
+
const _Ph = "Phones";
|
|
363
|
+
const _Pho = "Phonemes";
|
|
364
|
+
const _Pl = "Place";
|
|
365
|
+
const _Pr = "Primary";
|
|
366
|
+
const _Pre = "Preferred";
|
|
367
|
+
const _Pref = "Prefix";
|
|
368
|
+
const _Q = "Query";
|
|
369
|
+
const _QC = "QueryComponents";
|
|
370
|
+
const _QCu = "QueryComponent";
|
|
371
|
+
const _QI = "QueryId";
|
|
372
|
+
const _QP = "QueryPosition";
|
|
373
|
+
const _QR = "QueryRefinement";
|
|
374
|
+
const _QRL = "QueryRefinementList";
|
|
375
|
+
const _QRu = "QueryRadius";
|
|
376
|
+
const _QRue = "QueryRefinements";
|
|
377
|
+
const _QT = "QueryText";
|
|
378
|
+
const _QTu = "QueryType";
|
|
379
|
+
const _R = "Reason";
|
|
380
|
+
const _RD = "RouteDistance";
|
|
381
|
+
const _RG = "ReverseGeocode";
|
|
382
|
+
const _RGF = "ReverseGeocodeFilter";
|
|
383
|
+
const _RGR = "ReverseGeocodeRequest";
|
|
384
|
+
const _RGRI = "ReverseGeocodeResultItem";
|
|
385
|
+
const _RGRIL = "ReverseGeocodeResultItemList";
|
|
386
|
+
const _RGRe = "ReverseGeocodeResponse";
|
|
387
|
+
const _RH = "RegionHighlights";
|
|
388
|
+
const _RI = "ResultItems";
|
|
389
|
+
const _RP = "RelatedPlace";
|
|
390
|
+
const _RPL = "RelatedPlaceList";
|
|
391
|
+
const _RT = "RefinedTerm";
|
|
392
|
+
const _RTC = "RecordTypeCode";
|
|
393
|
+
const _Ra = "Radius";
|
|
394
|
+
const _Re = "Restricted";
|
|
395
|
+
const _Rec = "Recurrence";
|
|
396
|
+
const _Reg = "Region";
|
|
397
|
+
const _S = "Street";
|
|
398
|
+
const _SA = "SecondaryAddresses";
|
|
399
|
+
const _SAC = "SecondaryAddressComponents";
|
|
400
|
+
const _SACL = "SecondaryAddressComponentList";
|
|
401
|
+
const _SACMS = "SecondaryAddressComponentMatchScore";
|
|
402
|
+
const _SACMSL = "SecondaryAddressComponentMatchScoreList";
|
|
403
|
+
const _SACe = "SecondaryAddressComponent";
|
|
404
|
+
const _SAH = "SuggestAddressHighlights";
|
|
405
|
+
const _SB = "SensitiveBoolean";
|
|
406
|
+
const _SBu = "SubBlock";
|
|
407
|
+
const _SC = "StreetComponents";
|
|
408
|
+
const _SCL = "StreetComponentsList";
|
|
409
|
+
const _SD = "SubDistrict";
|
|
410
|
+
const _SF = "SuggestFilter";
|
|
411
|
+
const _SH = "SuggestHighlights";
|
|
412
|
+
const _SI = "StartIndex";
|
|
413
|
+
const _SN = "SearchNearby";
|
|
414
|
+
const _SNF = "SearchNearbyFilter";
|
|
415
|
+
const _SNR = "SearchNearbyRequest";
|
|
416
|
+
const _SNRI = "SearchNearbyResultItem";
|
|
417
|
+
const _SNRIL = "SearchNearbyResultItemList";
|
|
418
|
+
const _SNRe = "SearchNearbyResponse";
|
|
419
|
+
const _SPR = "SuggestPlaceResult";
|
|
420
|
+
const _SQR = "SuggestQueryResult";
|
|
421
|
+
const _SR = "SubRegion";
|
|
422
|
+
const _SRH = "SubRegionHighlights";
|
|
423
|
+
const _SRI = "SuggestResultItem";
|
|
424
|
+
const _SRIL = "SuggestResultItemList";
|
|
425
|
+
const _SRIT = "SuggestResultItemType";
|
|
426
|
+
const _SRu = "SuggestRequest";
|
|
427
|
+
const _SRug = "SuggestResponse";
|
|
428
|
+
const _SS = "SensitiveString";
|
|
429
|
+
const _ST = "SearchText";
|
|
430
|
+
const _STF = "SearchTextFilter";
|
|
431
|
+
const _STR = "SearchTextRequest";
|
|
432
|
+
const _STRI = "SearchTextResultItem";
|
|
433
|
+
const _STRIL = "SearchTextResultItemList";
|
|
434
|
+
const _STRe = "SearchTextResponse";
|
|
435
|
+
const _Su = "Suffix";
|
|
436
|
+
const _Sug = "Suggest";
|
|
437
|
+
const _T = "Title";
|
|
438
|
+
const _TE = "ThrottlingException";
|
|
439
|
+
const _TP = "TypePlacement";
|
|
440
|
+
const _TS = "TypeSeparator";
|
|
441
|
+
const _TZ = "TimeZone";
|
|
442
|
+
const _Ty = "Type";
|
|
443
|
+
const _UZ = "UspsZip";
|
|
444
|
+
const _UZP = "UspsZipPlus4";
|
|
445
|
+
const _V = "Value";
|
|
446
|
+
const _VE = "ValidationException";
|
|
447
|
+
const _VEF = "ValidationExceptionField";
|
|
448
|
+
const _VEFL = "ValidationExceptionFieldList";
|
|
449
|
+
const _W = "Websites";
|
|
450
|
+
const _ZCC = "ZipClassificationCode";
|
|
451
|
+
const _af = "additional-features";
|
|
452
|
+
const _c = "client";
|
|
453
|
+
const _e = "error";
|
|
454
|
+
const _fL = "fieldList";
|
|
455
|
+
const _h = "http";
|
|
456
|
+
const _hE = "httpError";
|
|
457
|
+
const _hH = "httpHeader";
|
|
458
|
+
const _hQ = "httpQuery";
|
|
459
|
+
const _iu = "intended-use";
|
|
460
|
+
const _jN = "jsonName";
|
|
461
|
+
const _k = "key";
|
|
462
|
+
const _l = "language";
|
|
463
|
+
const _m = "message";
|
|
464
|
+
const _n = "name";
|
|
465
|
+
const _pv = "political-view";
|
|
466
|
+
const _r = "reason";
|
|
467
|
+
const _s = "smithy.ts.sdk.synthetic.com.amazonaws.geoplaces";
|
|
468
|
+
const _se = "server";
|
|
469
|
+
const _xagpb = "x-amz-geo-pricing-bucket";
|
|
470
|
+
const n0 = "com.amazonaws.geoplaces";
|
|
471
|
+
const _s_registry = TypeRegistry.for(_s);
|
|
472
|
+
var GeoPlacesServiceException$ = [-3, _s, "GeoPlacesServiceException", 0, [], []];
|
|
473
|
+
_s_registry.registerError(GeoPlacesServiceException$, GeoPlacesServiceException);
|
|
474
|
+
const n0_registry = TypeRegistry.for(n0);
|
|
475
|
+
var AccessDeniedException$ = [-3, n0, _ADE,
|
|
476
|
+
{ [_e]: _c, [_hE]: 403 },
|
|
477
|
+
[_M],
|
|
478
|
+
[[0, { [_jN]: _m }]], 1
|
|
479
|
+
];
|
|
480
|
+
n0_registry.registerError(AccessDeniedException$, AccessDeniedException);
|
|
481
|
+
var InternalServerException$ = [-3, n0, _ISE,
|
|
482
|
+
{ [_e]: _se, [_hE]: 500 },
|
|
483
|
+
[_M],
|
|
484
|
+
[[0, { [_jN]: _m }]], 1
|
|
485
|
+
];
|
|
486
|
+
n0_registry.registerError(InternalServerException$, InternalServerException);
|
|
487
|
+
var ThrottlingException$ = [-3, n0, _TE,
|
|
488
|
+
{ [_e]: _c, [_hE]: 429 },
|
|
489
|
+
[_M],
|
|
490
|
+
[[0, { [_jN]: _m }]], 1
|
|
491
|
+
];
|
|
492
|
+
n0_registry.registerError(ThrottlingException$, ThrottlingException);
|
|
493
|
+
var ValidationException$ = [-3, n0, _VE,
|
|
494
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
495
|
+
[_M, _R, _FL],
|
|
496
|
+
[[0, { [_jN]: _m }], [0, { [_jN]: _r }], [() => ValidationExceptionFieldList, { [_jN]: _fL }]], 3
|
|
497
|
+
];
|
|
498
|
+
n0_registry.registerError(ValidationException$, ValidationException);
|
|
499
|
+
const errorTypeRegistries = [
|
|
500
|
+
_s_registry,
|
|
501
|
+
n0_registry,
|
|
502
|
+
];
|
|
503
|
+
var ApiKey = [0, n0, _AK, 8, 0];
|
|
504
|
+
var CountryCode = [0, n0, _CC, 8, 0];
|
|
505
|
+
var CountryCode2 = [0, n0, _CCo, 8, 0];
|
|
506
|
+
var CountryCode3 = [0, n0, _CCou, 8, 0];
|
|
507
|
+
var DistanceMeters = [0, n0, _DM, 8, 1];
|
|
508
|
+
var DurationSeconds = [0, n0, _DS, 8, 1];
|
|
509
|
+
var GeocodeFilterPlaceType$1 = [0, n0, _GFPT, 8, 0];
|
|
510
|
+
var Heading = [0, n0, _H, 8, 1];
|
|
511
|
+
var OpeningHoursDisplay = [0, n0, _OHD, 8, 0];
|
|
512
|
+
var PlaceType$1 = [0, n0, _PT, 8, 0];
|
|
513
|
+
var PostalAuthority$1 = [0, n0, _PA, 8, 0];
|
|
514
|
+
var PostalCodeType$1 = [0, n0, _PCT, 8, 0];
|
|
515
|
+
var RecordTypeCode$1 = [0, n0, _RTC, 8, 0];
|
|
516
|
+
var SensitiveBoolean = [0, n0, _SB, 8, 2];
|
|
517
|
+
var SensitiveString = [0, n0, _SS, 8, 0];
|
|
518
|
+
var ZipClassificationCode$1 = [0, n0, _ZCC, 8, 0];
|
|
519
|
+
var AccessPoint$ = [3, n0, _AP,
|
|
520
|
+
0,
|
|
521
|
+
[_P],
|
|
522
|
+
[[() => Position, 0]]
|
|
523
|
+
];
|
|
524
|
+
var AccessRestriction$ = [3, n0, _AR,
|
|
525
|
+
0,
|
|
526
|
+
[_Re, _C],
|
|
527
|
+
[[() => SensitiveBoolean, 0], [() => CategoryList, 0]]
|
|
528
|
+
];
|
|
529
|
+
var Address$ = [3, n0, _A,
|
|
530
|
+
0,
|
|
531
|
+
[_L, _Co, _Reg, _SR, _Lo, _D, _SD, _PC, _B, _SBu, _I, _S, _SC, _AN, _Bu, _SAC],
|
|
532
|
+
[[() => SensitiveString, 0], [() => Country$, 0], [() => Region$, 0], [() => SubRegion$, 0], [() => SensitiveString, 0], [() => SensitiveString, 0], [() => SensitiveString, 0], [() => SensitiveString, 0], [() => SensitiveString, 0], [() => SensitiveString, 0], 64 | 0, [() => SensitiveString, 0], [() => StreetComponentsList, 0], [() => SensitiveString, 0], [() => SensitiveString, 0], [() => SecondaryAddressComponentList, 0]]
|
|
533
|
+
];
|
|
534
|
+
var AddressComponentMatchScores$ = [3, n0, _ACMS,
|
|
535
|
+
0,
|
|
536
|
+
[_Co, _Reg, _SR, _Lo, _D, _SD, _PC, _B, _SBu, _I, _AN, _Bu, _SAC],
|
|
537
|
+
[1, 1, 1, 1, 1, 1, 1, 1, 1, 64 | 1, 1, 1, () => SecondaryAddressComponentMatchScoreList]
|
|
538
|
+
];
|
|
539
|
+
var AddressComponentPhonemes$ = [3, n0, _ACP,
|
|
540
|
+
0,
|
|
541
|
+
[_Co, _Reg, _SR, _Lo, _D, _SD, _B, _SBu, _S],
|
|
542
|
+
[[() => PhonemeTranscriptionList, 0], [() => PhonemeTranscriptionList, 0], [() => PhonemeTranscriptionList, 0], [() => PhonemeTranscriptionList, 0], [() => PhonemeTranscriptionList, 0], [() => PhonemeTranscriptionList, 0], [() => PhonemeTranscriptionList, 0], [() => PhonemeTranscriptionList, 0], [() => PhonemeTranscriptionList, 0]]
|
|
543
|
+
];
|
|
544
|
+
var AutocompleteAddressHighlights$ = [3, n0, _AAH,
|
|
545
|
+
0,
|
|
546
|
+
[_L, _Co, _Reg, _SR, _Lo, _D, _SD, _S, _B, _SBu, _I, _PC, _AN, _Bu],
|
|
547
|
+
[[() => HighlightList, 0], [() => CountryHighlights$, 0], [() => RegionHighlights$, 0], [() => SubRegionHighlights$, 0], [() => HighlightList, 0], [() => HighlightList, 0], [() => HighlightList, 0], [() => HighlightList, 0], [() => HighlightList, 0], [() => HighlightList, 0], [() => IntersectionHighlightsList, 0], [() => HighlightList, 0], [() => HighlightList, 0], [() => HighlightList, 0]]
|
|
548
|
+
];
|
|
549
|
+
var AutocompleteFilter$ = [3, n0, _AF,
|
|
550
|
+
0,
|
|
551
|
+
[_BB, _Ci, _IC, _IPT],
|
|
552
|
+
[[() => BoundingBox, 0], [() => FilterCircle$, 0], [() => CountryCodeList, 0], 64 | 0]
|
|
553
|
+
];
|
|
554
|
+
var AutocompleteHighlights$ = [3, n0, _AH,
|
|
555
|
+
0,
|
|
556
|
+
[_T, _A],
|
|
557
|
+
[[() => HighlightList, 0], [() => AutocompleteAddressHighlights$, 0]]
|
|
558
|
+
];
|
|
559
|
+
var AutocompleteRequest$ = [3, n0, _ARu,
|
|
560
|
+
0,
|
|
561
|
+
[_QT, _MR, _BP, _F, _PCM, _AFd, _La, _PV, _IU, _K],
|
|
562
|
+
[[() => SensitiveString, 0], 1, [() => Position, 0], [() => AutocompleteFilter$, 0], 0, 64 | 0, 0, [() => CountryCode, 0], 0, [() => ApiKey, { [_hQ]: _k }]], 1
|
|
563
|
+
];
|
|
564
|
+
var AutocompleteResponse$ = [3, n0, _ARut,
|
|
565
|
+
0,
|
|
566
|
+
[_PB, _RI],
|
|
567
|
+
[[0, { [_hH]: _xagpb }], [() => AutocompleteResultItemList, 0]], 1
|
|
568
|
+
];
|
|
569
|
+
var AutocompleteResultItem$ = [3, n0, _ARI,
|
|
570
|
+
0,
|
|
571
|
+
[_PI, _PT, _T, _A, _Di, _La, _PV, _Hi],
|
|
572
|
+
[[() => SensitiveString, 0], [() => PlaceType$1, 0], [() => SensitiveString, 0], [() => Address$, 0], [() => DistanceMeters, 0], 0, [() => CountryCode3, 0], [() => AutocompleteHighlights$, 0]], 3
|
|
573
|
+
];
|
|
574
|
+
var BusinessChain$ = [3, n0, _BC,
|
|
575
|
+
0,
|
|
576
|
+
[_N, _Id],
|
|
577
|
+
[[() => SensitiveString, 0], [() => SensitiveString, 0]]
|
|
578
|
+
];
|
|
579
|
+
var Category$ = [3, n0, _Ca,
|
|
580
|
+
0,
|
|
581
|
+
[_Id, _N, _LN, _Pr],
|
|
582
|
+
[[() => SensitiveString, 0], [() => SensitiveString, 0], [() => SensitiveString, 0], [() => SensitiveBoolean, 0]], 2
|
|
583
|
+
];
|
|
584
|
+
var ComponentMatchScores$ = [3, n0, _CMS,
|
|
585
|
+
0,
|
|
586
|
+
[_T, _A],
|
|
587
|
+
[1, () => AddressComponentMatchScores$]
|
|
588
|
+
];
|
|
589
|
+
var ContactDetails$ = [3, n0, _CD,
|
|
590
|
+
0,
|
|
591
|
+
[_L, _V, _C],
|
|
592
|
+
[[() => SensitiveString, 0], [() => SensitiveString, 0], [() => CategoryList, 0]]
|
|
593
|
+
];
|
|
594
|
+
var Contacts$ = [3, n0, _Con,
|
|
595
|
+
0,
|
|
596
|
+
[_Ph, _Fa, _W, _E],
|
|
597
|
+
[[() => ContactDetailsList, 0], [() => ContactDetailsList, 0], [() => ContactDetailsList, 0], [() => ContactDetailsList, 0]]
|
|
598
|
+
];
|
|
599
|
+
var Country$ = [3, n0, _Co,
|
|
600
|
+
0,
|
|
601
|
+
[_Cod, _Code, _N],
|
|
602
|
+
[[() => CountryCode2, 0], [() => CountryCode3, 0], [() => SensitiveString, 0]]
|
|
603
|
+
];
|
|
604
|
+
var CountryHighlights$ = [3, n0, _CH,
|
|
605
|
+
0,
|
|
606
|
+
[_Code_, _N],
|
|
607
|
+
[[() => HighlightList, 0], [() => HighlightList, 0]]
|
|
608
|
+
];
|
|
609
|
+
var FilterCircle$ = [3, n0, _FC,
|
|
610
|
+
8,
|
|
611
|
+
[_Ce, _Ra],
|
|
612
|
+
[[() => Position, 0], [() => DistanceMeters, 0]], 2
|
|
613
|
+
];
|
|
614
|
+
var FoodType$ = [3, n0, _FT,
|
|
615
|
+
0,
|
|
616
|
+
[_LN, _Id, _Pr],
|
|
617
|
+
[[() => SensitiveString, 0], [() => SensitiveString, 0], [() => SensitiveBoolean, 0]], 1
|
|
618
|
+
];
|
|
619
|
+
var GeocodeFilter$ = [3, n0, _GF,
|
|
620
|
+
0,
|
|
621
|
+
[_IC, _IPT],
|
|
622
|
+
[[() => CountryCodeList, 0], [() => GeocodeFilterPlaceTypeList, 0]]
|
|
623
|
+
];
|
|
624
|
+
var GeocodeParsedQuery$ = [3, n0, _GPQ,
|
|
625
|
+
0,
|
|
626
|
+
[_T, _A],
|
|
627
|
+
[[() => ParsedQueryComponentList, 0], [() => GeocodeParsedQueryAddressComponents$, 0]]
|
|
628
|
+
];
|
|
629
|
+
var GeocodeParsedQueryAddressComponents$ = [3, n0, _GPQAC,
|
|
630
|
+
0,
|
|
631
|
+
[_Co, _Reg, _SR, _Lo, _D, _SD, _PC, _B, _SBu, _S, _AN, _Bu, _SAC],
|
|
632
|
+
[[() => 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]]
|
|
633
|
+
];
|
|
634
|
+
var GeocodeQueryComponents$ = [3, n0, _GQC,
|
|
635
|
+
0,
|
|
636
|
+
[_Co, _Reg, _SR, _Lo, _D, _S, _AN, _PC],
|
|
637
|
+
[[() => SensitiveString, 0], [() => SensitiveString, 0], [() => SensitiveString, 0], [() => SensitiveString, 0], [() => SensitiveString, 0], [() => SensitiveString, 0], [() => SensitiveString, 0], [() => SensitiveString, 0]]
|
|
638
|
+
];
|
|
639
|
+
var GeocodeRequest$ = [3, n0, _GR,
|
|
640
|
+
0,
|
|
641
|
+
[_QT, _QC, _MR, _BP, _F, _AFd, _La, _PV, _IU, _K],
|
|
642
|
+
[[() => SensitiveString, 0], [() => GeocodeQueryComponents$, 0], 1, [() => Position, 0], [() => GeocodeFilter$, 0], 64 | 0, 0, [() => CountryCode, 0], 0, [() => ApiKey, { [_hQ]: _k }]]
|
|
643
|
+
];
|
|
644
|
+
var GeocodeResponse$ = [3, n0, _GRe,
|
|
645
|
+
0,
|
|
646
|
+
[_PB, _RI],
|
|
647
|
+
[[0, { [_hH]: _xagpb }], [() => GeocodeResultItemList, 0]], 1
|
|
648
|
+
];
|
|
649
|
+
var GeocodeResultItem$ = [3, n0, _GRI,
|
|
650
|
+
0,
|
|
651
|
+
[_PI, _PT, _T, _A, _ANC, _PCD, _P, _Di, _MV, _C, _FTo, _APc, _TZ, _PV, _MS, _PQ, _In, _MA, _SA],
|
|
652
|
+
[[() => SensitiveString, 0], [() => PlaceType$1, 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
|
|
653
|
+
];
|
|
654
|
+
var GetPlaceRequest$ = [3, n0, _GPR,
|
|
655
|
+
0,
|
|
656
|
+
[_PI, _AFd, _La, _PV, _IU, _K],
|
|
657
|
+
[[() => SensitiveString, 1], [64 | 0, { [_hQ]: _af }], [0, { [_hQ]: _l }], [() => CountryCode, { [_hQ]: _pv }], [0, { [_hQ]: _iu }], [() => ApiKey, { [_hQ]: _k }]], 1
|
|
658
|
+
];
|
|
659
|
+
var GetPlaceResponse$ = [3, n0, _GPRe,
|
|
660
|
+
0,
|
|
661
|
+
[_PI, _PT, _T, _PB, _A, _ANC, _PCD, _P, _MV, _C, _FTo, _BCu, _Con, _OH, _APc, _ARc, _TZ, _PV, _Pho, _MA, _SA],
|
|
662
|
+
[[() => SensitiveString, 0], [() => PlaceType$1, 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
|
|
663
|
+
];
|
|
664
|
+
var Highlight$ = [3, n0, _Hig,
|
|
665
|
+
0,
|
|
666
|
+
[_SI, _EI, _V],
|
|
667
|
+
[1, 1, [() => SensitiveString, 0]]
|
|
668
|
+
];
|
|
669
|
+
var Intersection$ = [3, n0, _I,
|
|
670
|
+
0,
|
|
671
|
+
[_PI, _T, _A, _P, _Di, _RD, _MV, _APc],
|
|
672
|
+
[[() => SensitiveString, 0], [() => SensitiveString, 0], [() => Address$, 0], [() => Position, 0], [() => DistanceMeters, 0], [() => DistanceMeters, 0], [() => BoundingBox, 0], [() => AccessPointList, 0]], 2
|
|
673
|
+
];
|
|
674
|
+
var MatchScoreDetails$ = [3, n0, _MSD,
|
|
675
|
+
0,
|
|
676
|
+
[_O, _Com],
|
|
677
|
+
[1, () => ComponentMatchScores$]
|
|
678
|
+
];
|
|
679
|
+
var OpeningHours$ = [3, n0, _OH,
|
|
680
|
+
0,
|
|
681
|
+
[_Dis, _ON, _Com, _C],
|
|
682
|
+
[[() => OpeningHoursDisplayList, 0], [() => SensitiveBoolean, 0], [() => OpeningHoursComponentsList, 0], [() => CategoryList, 0]]
|
|
683
|
+
];
|
|
684
|
+
var OpeningHoursComponents$ = [3, n0, _OHC,
|
|
685
|
+
0,
|
|
686
|
+
[_OT, _OD, _Rec],
|
|
687
|
+
[[() => SensitiveString, 0], [() => SensitiveString, 0], [() => SensitiveString, 0]]
|
|
688
|
+
];
|
|
689
|
+
var ParsedQueryComponent$ = [3, n0, _PQC,
|
|
690
|
+
0,
|
|
691
|
+
[_SI, _EI, _V, _QCu],
|
|
692
|
+
[1, 1, [() => SensitiveString, 0], [() => SensitiveString, 0]]
|
|
693
|
+
];
|
|
694
|
+
var ParsedQuerySecondaryAddressComponent$ = [3, n0, _PQSAC,
|
|
695
|
+
0,
|
|
696
|
+
[_SI, _EI, _V, _Nu, _De],
|
|
697
|
+
[1, 1, [() => SensitiveString, 0], [() => SensitiveString, 0], [() => SensitiveString, 0]], 5
|
|
698
|
+
];
|
|
699
|
+
var PhonemeDetails$ = [3, n0, _PD,
|
|
700
|
+
0,
|
|
701
|
+
[_T, _A],
|
|
702
|
+
[[() => PhonemeTranscriptionList, 0], [() => AddressComponentPhonemes$, 0]]
|
|
703
|
+
];
|
|
704
|
+
var PhonemeTranscription$ = [3, n0, _PTh,
|
|
705
|
+
0,
|
|
706
|
+
[_V, _La, _Pre],
|
|
707
|
+
[[() => SensitiveString, 0], 0, [() => SensitiveBoolean, 0]]
|
|
708
|
+
];
|
|
709
|
+
var PostalCodeDetails$ = [3, n0, _PCD,
|
|
710
|
+
0,
|
|
711
|
+
[_PC, _PA, _PCT, _UZ, _UZP],
|
|
712
|
+
[[() => SensitiveString, 0], [() => PostalAuthority$1, 0], [() => PostalCodeType$1, 0], [() => UspsZip$, 0], [() => UspsZipPlus4$, 0]]
|
|
713
|
+
];
|
|
714
|
+
var QueryRefinement$ = [3, n0, _QR,
|
|
715
|
+
0,
|
|
716
|
+
[_RT, _OTr, _SI, _EI],
|
|
717
|
+
[[() => SensitiveString, 0], [() => SensitiveString, 0], 1, 1], 4
|
|
718
|
+
];
|
|
719
|
+
var Region$ = [3, n0, _Reg,
|
|
720
|
+
0,
|
|
721
|
+
[_Code_, _N],
|
|
722
|
+
[[() => SensitiveString, 0], [() => SensitiveString, 0]]
|
|
723
|
+
];
|
|
724
|
+
var RegionHighlights$ = [3, n0, _RH,
|
|
725
|
+
0,
|
|
726
|
+
[_Code_, _N],
|
|
727
|
+
[[() => HighlightList, 0], [() => HighlightList, 0]]
|
|
728
|
+
];
|
|
729
|
+
var RelatedPlace$ = [3, n0, _RP,
|
|
730
|
+
0,
|
|
731
|
+
[_PI, _PT, _T, _A, _P, _APc],
|
|
732
|
+
[[() => SensitiveString, 0], [() => PlaceType$1, 0], [() => SensitiveString, 0], [() => Address$, 0], [() => Position, 0], [() => AccessPointList, 0]], 3
|
|
733
|
+
];
|
|
734
|
+
var ReverseGeocodeFilter$ = [3, n0, _RGF,
|
|
735
|
+
0,
|
|
736
|
+
[_IPT],
|
|
737
|
+
[64 | 0]
|
|
738
|
+
];
|
|
739
|
+
var ReverseGeocodeRequest$ = [3, n0, _RGR,
|
|
740
|
+
0,
|
|
741
|
+
[_QP, _QRu, _MR, _F, _AFd, _La, _PV, _IU, _K, _H],
|
|
742
|
+
[[() => Position, 0], [() => DistanceMeters, 0], 1, () => ReverseGeocodeFilter$, 64 | 0, 0, [() => CountryCode, 0], 0, [() => ApiKey, { [_hQ]: _k }], [() => Heading, 0]], 1
|
|
743
|
+
];
|
|
744
|
+
var ReverseGeocodeResponse$ = [3, n0, _RGRe,
|
|
745
|
+
0,
|
|
746
|
+
[_PB, _RI],
|
|
747
|
+
[[0, { [_hH]: _xagpb }], [() => ReverseGeocodeResultItemList, 0]], 1
|
|
748
|
+
];
|
|
749
|
+
var ReverseGeocodeResultItem$ = [3, n0, _RGRI,
|
|
750
|
+
0,
|
|
751
|
+
[_PI, _PT, _T, _A, _ANC, _PCD, _P, _Di, _MV, _C, _FTo, _APc, _TZ, _PV, _In],
|
|
752
|
+
[[() => SensitiveString, 0], [() => PlaceType$1, 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
|
|
753
|
+
];
|
|
754
|
+
var SearchNearbyFilter$ = [3, n0, _SNF,
|
|
755
|
+
0,
|
|
756
|
+
[_BB, _IC, _ICn, _EC, _IBC, _EBC, _IFT, _EFT],
|
|
757
|
+
[[() => BoundingBox, 0], [() => CountryCodeList, 0], [() => FilterCategoryList, 0], [() => FilterCategoryList, 0], [() => FilterBusinessChainList, 0], [() => FilterBusinessChainList, 0], [() => FilterFoodTypeList, 0], [() => FilterFoodTypeList, 0]]
|
|
758
|
+
];
|
|
759
|
+
var SearchNearbyRequest$ = [3, n0, _SNR,
|
|
760
|
+
0,
|
|
761
|
+
[_QP, _QRu, _MR, _F, _AFd, _La, _PV, _IU, _NT, _K],
|
|
762
|
+
[[() => Position, 0], [() => DistanceMeters, 0], 1, [() => SearchNearbyFilter$, 0], 64 | 0, 0, [() => CountryCode, 0], 0, 0, [() => ApiKey, { [_hQ]: _k }]], 1
|
|
763
|
+
];
|
|
764
|
+
var SearchNearbyResponse$ = [3, n0, _SNRe,
|
|
765
|
+
0,
|
|
766
|
+
[_PB, _RI, _NT],
|
|
767
|
+
[[0, { [_hH]: _xagpb }], [() => SearchNearbyResultItemList, 0], 0], 1
|
|
768
|
+
];
|
|
769
|
+
var SearchNearbyResultItem$ = [3, n0, _SNRI,
|
|
770
|
+
0,
|
|
771
|
+
[_PI, _PT, _T, _A, _ANC, _P, _Di, _MV, _C, _FTo, _BCu, _Con, _OH, _APc, _ARc, _TZ, _PV, _Pho],
|
|
772
|
+
[[() => SensitiveString, 0], [() => PlaceType$1, 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
|
|
773
|
+
];
|
|
774
|
+
var SearchTextFilter$ = [3, n0, _STF,
|
|
775
|
+
0,
|
|
776
|
+
[_BB, _Ci, _IC],
|
|
777
|
+
[[() => BoundingBox, 0], [() => FilterCircle$, 0], [() => CountryCodeList, 0]]
|
|
778
|
+
];
|
|
779
|
+
var SearchTextRequest$ = [3, n0, _STR,
|
|
780
|
+
0,
|
|
781
|
+
[_QT, _QI, _MR, _BP, _F, _AFd, _La, _PV, _IU, _NT, _K],
|
|
782
|
+
[[() => SensitiveString, 0], [() => SensitiveString, 0], 1, [() => Position, 0], [() => SearchTextFilter$, 0], 64 | 0, 0, [() => CountryCode, 0], 0, 0, [() => ApiKey, { [_hQ]: _k }]]
|
|
783
|
+
];
|
|
784
|
+
var SearchTextResponse$ = [3, n0, _STRe,
|
|
785
|
+
0,
|
|
786
|
+
[_PB, _RI, _NT],
|
|
787
|
+
[[0, { [_hH]: _xagpb }], [() => SearchTextResultItemList, 0], 0], 1
|
|
788
|
+
];
|
|
789
|
+
var SearchTextResultItem$ = [3, n0, _STRI,
|
|
790
|
+
0,
|
|
791
|
+
[_PI, _PT, _T, _A, _ANC, _P, _Di, _MV, _C, _FTo, _BCu, _Con, _OH, _APc, _ARc, _TZ, _PV, _Pho],
|
|
792
|
+
[[() => SensitiveString, 0], [() => PlaceType$1, 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
|
|
793
|
+
];
|
|
794
|
+
var SecondaryAddressComponent$ = [3, n0, _SACe,
|
|
795
|
+
0,
|
|
796
|
+
[_Nu, _De],
|
|
797
|
+
[[() => SensitiveString, 0], [() => SensitiveString, 0]], 1
|
|
798
|
+
];
|
|
799
|
+
var SecondaryAddressComponentMatchScore$ = [3, n0, _SACMS,
|
|
800
|
+
0,
|
|
801
|
+
[_Nu],
|
|
802
|
+
[1]
|
|
803
|
+
];
|
|
804
|
+
var StreetComponents$ = [3, n0, _SC,
|
|
805
|
+
0,
|
|
806
|
+
[_BN, _Ty, _TP, _TS, _Pref, _Su, _Dir, _La],
|
|
807
|
+
[[() => SensitiveString, 0], [() => SensitiveString, 0], 0, 0, [() => SensitiveString, 0], [() => SensitiveString, 0], [() => SensitiveString, 0], 0]
|
|
808
|
+
];
|
|
809
|
+
var SubRegion$ = [3, n0, _SR,
|
|
810
|
+
0,
|
|
811
|
+
[_Code_, _N],
|
|
812
|
+
[[() => SensitiveString, 0], [() => SensitiveString, 0]]
|
|
813
|
+
];
|
|
814
|
+
var SubRegionHighlights$ = [3, n0, _SRH,
|
|
815
|
+
0,
|
|
816
|
+
[_Code_, _N],
|
|
817
|
+
[[() => HighlightList, 0], [() => HighlightList, 0]]
|
|
818
|
+
];
|
|
819
|
+
var SuggestAddressHighlights$ = [3, n0, _SAH,
|
|
820
|
+
0,
|
|
821
|
+
[_L],
|
|
822
|
+
[[() => HighlightList, 0]]
|
|
823
|
+
];
|
|
824
|
+
var SuggestFilter$ = [3, n0, _SF,
|
|
825
|
+
0,
|
|
826
|
+
[_BB, _Ci, _IC],
|
|
827
|
+
[[() => BoundingBox, 0], [() => FilterCircle$, 0], [() => CountryCodeList, 0]]
|
|
828
|
+
];
|
|
829
|
+
var SuggestHighlights$ = [3, n0, _SH,
|
|
830
|
+
0,
|
|
831
|
+
[_T, _A],
|
|
832
|
+
[[() => HighlightList, 0], [() => SuggestAddressHighlights$, 0]]
|
|
833
|
+
];
|
|
834
|
+
var SuggestPlaceResult$ = [3, n0, _SPR,
|
|
835
|
+
0,
|
|
836
|
+
[_PI, _PT, _A, _P, _Di, _MV, _C, _FTo, _BCu, _APc, _ARc, _TZ, _PV, _Pho],
|
|
837
|
+
[[() => SensitiveString, 0], [() => PlaceType$1, 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]]
|
|
838
|
+
];
|
|
839
|
+
var SuggestQueryResult$ = [3, n0, _SQR,
|
|
840
|
+
0,
|
|
841
|
+
[_QI, _QTu],
|
|
842
|
+
[[() => SensitiveString, 0], 0]
|
|
843
|
+
];
|
|
844
|
+
var SuggestRequest$ = [3, n0, _SRu,
|
|
845
|
+
0,
|
|
846
|
+
[_QT, _MR, _MQR, _BP, _F, _AFd, _La, _PV, _IU, _K],
|
|
847
|
+
[[() => SensitiveString, 0], 1, 1, [() => Position, 0], [() => SuggestFilter$, 0], 64 | 0, 0, [() => CountryCode, 0], 0, [() => ApiKey, { [_hQ]: _k }]], 1
|
|
848
|
+
];
|
|
849
|
+
var SuggestResponse$ = [3, n0, _SRug,
|
|
850
|
+
0,
|
|
851
|
+
[_PB, _RI, _QRue],
|
|
852
|
+
[[0, { [_hH]: _xagpb }], [() => SuggestResultItemList, 0], [() => QueryRefinementList, 0]], 1
|
|
853
|
+
];
|
|
854
|
+
var SuggestResultItem$ = [3, n0, _SRI,
|
|
855
|
+
0,
|
|
856
|
+
[_T, _SRIT, _Pl, _Q, _Hi],
|
|
857
|
+
[[() => SensitiveString, 0], 0, [() => SuggestPlaceResult$, 0], [() => SuggestQueryResult$, 0], [() => SuggestHighlights$, 0]], 2
|
|
858
|
+
];
|
|
859
|
+
var TimeZone$ = [3, n0, _TZ,
|
|
860
|
+
0,
|
|
861
|
+
[_N, _Of, _OS],
|
|
862
|
+
[[() => SensitiveString, 0], [() => SensitiveString, 0], [() => DurationSeconds, 0]], 1
|
|
863
|
+
];
|
|
864
|
+
var UspsZip$ = [3, n0, _UZ,
|
|
865
|
+
0,
|
|
866
|
+
[_ZCC],
|
|
867
|
+
[[() => ZipClassificationCode$1, 0]]
|
|
868
|
+
];
|
|
869
|
+
var UspsZipPlus4$ = [3, n0, _UZP,
|
|
870
|
+
0,
|
|
871
|
+
[_RTC],
|
|
872
|
+
[[() => RecordTypeCode$1, 0]]
|
|
873
|
+
];
|
|
874
|
+
var ValidationExceptionField$ = [3, n0, _VEF,
|
|
875
|
+
0,
|
|
876
|
+
[_N, _M],
|
|
877
|
+
[[0, { [_jN]: _n }], [0, { [_jN]: _m }]], 2
|
|
878
|
+
];
|
|
879
|
+
var AccessPointList = [1, n0, _APL,
|
|
880
|
+
0, [() => AccessPoint$,
|
|
881
|
+
0]
|
|
882
|
+
];
|
|
883
|
+
var AccessRestrictionList = [1, n0, _ARL,
|
|
884
|
+
0, [() => AccessRestriction$,
|
|
885
|
+
0]
|
|
886
|
+
];
|
|
887
|
+
var AutocompleteResultItemList = [1, n0, _ARIL,
|
|
888
|
+
0, [() => AutocompleteResultItem$,
|
|
889
|
+
0]
|
|
890
|
+
];
|
|
891
|
+
var BoundingBox = [1, n0, _BB,
|
|
892
|
+
8, 1
|
|
893
|
+
];
|
|
894
|
+
var BusinessChainList = [1, n0, _BCL,
|
|
895
|
+
0, [() => BusinessChain$,
|
|
896
|
+
0]
|
|
897
|
+
];
|
|
898
|
+
var CategoryList = [1, n0, _CL,
|
|
899
|
+
0, [() => Category$,
|
|
900
|
+
0]
|
|
901
|
+
];
|
|
902
|
+
var ContactDetailsList = [1, n0, _CDL,
|
|
903
|
+
0, [() => ContactDetails$,
|
|
904
|
+
0]
|
|
905
|
+
];
|
|
906
|
+
var CountryCodeList = [1, n0, _CCL,
|
|
907
|
+
0, [() => CountryCode,
|
|
908
|
+
0]
|
|
909
|
+
];
|
|
910
|
+
var FilterBusinessChainList = [1, n0, _FBCL,
|
|
911
|
+
0, [() => SensitiveString,
|
|
912
|
+
0]
|
|
913
|
+
];
|
|
914
|
+
var FilterCategoryList = [1, n0, _FCL,
|
|
915
|
+
0, [() => SensitiveString,
|
|
916
|
+
0]
|
|
917
|
+
];
|
|
918
|
+
var FilterFoodTypeList = [1, n0, _FFTL,
|
|
919
|
+
0, [() => SensitiveString,
|
|
920
|
+
0]
|
|
921
|
+
];
|
|
922
|
+
var FoodTypeList = [1, n0, _FTL,
|
|
923
|
+
0, [() => FoodType$,
|
|
924
|
+
0]
|
|
925
|
+
];
|
|
926
|
+
var GeocodeFilterPlaceTypeList = [1, n0, _GFPTL,
|
|
927
|
+
0, [() => GeocodeFilterPlaceType$1,
|
|
928
|
+
0]
|
|
929
|
+
];
|
|
930
|
+
var GeocodeResultItemList = [1, n0, _GRIL,
|
|
931
|
+
0, [() => GeocodeResultItem$,
|
|
932
|
+
0]
|
|
933
|
+
];
|
|
934
|
+
var HighlightList = [1, n0, _HL,
|
|
935
|
+
0, [() => Highlight$,
|
|
936
|
+
0]
|
|
937
|
+
];
|
|
938
|
+
var IntersectionHighlightsList = [1, n0, _IHL,
|
|
939
|
+
0, [() => HighlightList,
|
|
940
|
+
0]
|
|
941
|
+
];
|
|
942
|
+
var IntersectionList = [1, n0, _IL,
|
|
943
|
+
0, [() => Intersection$,
|
|
944
|
+
0]
|
|
945
|
+
];
|
|
946
|
+
var OpeningHoursComponentsList = [1, n0, _OHCL,
|
|
947
|
+
0, [() => OpeningHoursComponents$,
|
|
948
|
+
0]
|
|
949
|
+
];
|
|
950
|
+
var OpeningHoursDisplayList = [1, n0, _OHDL,
|
|
951
|
+
0, [() => OpeningHoursDisplay,
|
|
952
|
+
0]
|
|
953
|
+
];
|
|
954
|
+
var OpeningHoursList = [1, n0, _OHL,
|
|
955
|
+
0, [() => OpeningHours$,
|
|
956
|
+
0]
|
|
957
|
+
];
|
|
958
|
+
var ParsedQueryComponentList = [1, n0, _PQCL,
|
|
959
|
+
0, [() => ParsedQueryComponent$,
|
|
960
|
+
0]
|
|
961
|
+
];
|
|
962
|
+
var ParsedQuerySecondaryAddressComponentList = [1, n0, _PQSACL,
|
|
963
|
+
0, [() => ParsedQuerySecondaryAddressComponent$,
|
|
964
|
+
0]
|
|
965
|
+
];
|
|
966
|
+
var PhonemeTranscriptionList = [1, n0, _PTL,
|
|
967
|
+
0, [() => PhonemeTranscription$,
|
|
968
|
+
0]
|
|
969
|
+
];
|
|
970
|
+
var Position = [1, n0, _P,
|
|
971
|
+
8, 1
|
|
972
|
+
];
|
|
973
|
+
var PostalCodeDetailsList = [1, n0, _PCDL,
|
|
974
|
+
0, [() => PostalCodeDetails$,
|
|
975
|
+
0]
|
|
976
|
+
];
|
|
977
|
+
var QueryRefinementList = [1, n0, _QRL,
|
|
978
|
+
0, [() => QueryRefinement$,
|
|
979
|
+
0]
|
|
980
|
+
];
|
|
981
|
+
var RelatedPlaceList = [1, n0, _RPL,
|
|
982
|
+
0, [() => RelatedPlace$,
|
|
983
|
+
0]
|
|
984
|
+
];
|
|
985
|
+
var ReverseGeocodeResultItemList = [1, n0, _RGRIL,
|
|
986
|
+
0, [() => ReverseGeocodeResultItem$,
|
|
987
|
+
0]
|
|
988
|
+
];
|
|
989
|
+
var SearchNearbyResultItemList = [1, n0, _SNRIL,
|
|
990
|
+
0, [() => SearchNearbyResultItem$,
|
|
991
|
+
0]
|
|
992
|
+
];
|
|
993
|
+
var SearchTextResultItemList = [1, n0, _STRIL,
|
|
994
|
+
0, [() => SearchTextResultItem$,
|
|
995
|
+
0]
|
|
996
|
+
];
|
|
997
|
+
var SecondaryAddressComponentList = [1, n0, _SACL,
|
|
998
|
+
0, [() => SecondaryAddressComponent$,
|
|
999
|
+
0]
|
|
1000
|
+
];
|
|
1001
|
+
var SecondaryAddressComponentMatchScoreList = [1, n0, _SACMSL,
|
|
1002
|
+
0, () => SecondaryAddressComponentMatchScore$
|
|
1003
|
+
];
|
|
1004
|
+
var StreetComponentsList = [1, n0, _SCL,
|
|
1005
|
+
0, [() => StreetComponents$,
|
|
1006
|
+
0]
|
|
1007
|
+
];
|
|
1008
|
+
var SuggestResultItemList = [1, n0, _SRIL,
|
|
1009
|
+
0, [() => SuggestResultItem$,
|
|
1010
|
+
0]
|
|
1011
|
+
];
|
|
1012
|
+
var ValidationExceptionFieldList = [1, n0, _VEFL,
|
|
1013
|
+
0, [() => ValidationExceptionField$,
|
|
1014
|
+
0]
|
|
1015
|
+
];
|
|
1016
|
+
var Autocomplete$ = [9, n0, _Au,
|
|
1017
|
+
{ [_h]: ["POST", "/v2/autocomplete", 200] }, () => AutocompleteRequest$, () => AutocompleteResponse$
|
|
1018
|
+
];
|
|
1019
|
+
var Geocode$ = [9, n0, _G,
|
|
1020
|
+
{ [_h]: ["POST", "/v2/geocode", 200] }, () => GeocodeRequest$, () => GeocodeResponse$
|
|
1021
|
+
];
|
|
1022
|
+
var GetPlace$ = [9, n0, _GP,
|
|
1023
|
+
{ [_h]: ["GET", "/v2/place/{PlaceId}", 200] }, () => GetPlaceRequest$, () => GetPlaceResponse$
|
|
1024
|
+
];
|
|
1025
|
+
var ReverseGeocode$ = [9, n0, _RG,
|
|
1026
|
+
{ [_h]: ["POST", "/v2/reverse-geocode", 200] }, () => ReverseGeocodeRequest$, () => ReverseGeocodeResponse$
|
|
1027
|
+
];
|
|
1028
|
+
var SearchNearby$ = [9, n0, _SN,
|
|
1029
|
+
{ [_h]: ["POST", "/v2/search-nearby", 200] }, () => SearchNearbyRequest$, () => SearchNearbyResponse$
|
|
1030
|
+
];
|
|
1031
|
+
var SearchText$ = [9, n0, _ST,
|
|
1032
|
+
{ [_h]: ["POST", "/v2/search-text", 200] }, () => SearchTextRequest$, () => SearchTextResponse$
|
|
1033
|
+
];
|
|
1034
|
+
var Suggest$ = [9, n0, _Sug,
|
|
1035
|
+
{ [_h]: ["POST", "/v2/suggest", 200] }, () => SuggestRequest$, () => SuggestResponse$
|
|
1036
|
+
];
|
|
1037
|
+
|
|
1038
|
+
const getRuntimeConfig$1 = (config) => {
|
|
1039
|
+
return {
|
|
1040
|
+
apiVersion: "2020-11-19",
|
|
1041
|
+
base64Decoder: config?.base64Decoder ?? fromBase64,
|
|
1042
|
+
base64Encoder: config?.base64Encoder ?? toBase64,
|
|
1043
|
+
disableHostPrefix: config?.disableHostPrefix ?? false,
|
|
1044
|
+
endpointProvider: config?.endpointProvider ?? defaultEndpointResolver,
|
|
1045
|
+
extensions: config?.extensions ?? [],
|
|
1046
|
+
httpAuthSchemeProvider: config?.httpAuthSchemeProvider ?? defaultGeoPlacesHttpAuthSchemeProvider,
|
|
1047
|
+
httpAuthSchemes: config?.httpAuthSchemes ?? [
|
|
1048
|
+
{
|
|
1049
|
+
schemeId: "aws.auth#sigv4",
|
|
1050
|
+
identityProvider: (ipc) => ipc.getIdentityProvider("aws.auth#sigv4"),
|
|
1051
|
+
signer: new AwsSdkSigV4Signer(),
|
|
1052
|
+
},
|
|
1053
|
+
],
|
|
1054
|
+
logger: config?.logger ?? new NoOpLogger(),
|
|
1055
|
+
protocol: config?.protocol ?? AwsRestJsonProtocol,
|
|
1056
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
1057
|
+
defaultNamespace: "com.amazonaws.geoplaces",
|
|
1058
|
+
errorTypeRegistries,
|
|
1059
|
+
version: "2020-11-19",
|
|
1060
|
+
serviceTarget: "PlacesService",
|
|
1061
|
+
},
|
|
1062
|
+
serviceId: config?.serviceId ?? "Geo Places",
|
|
1063
|
+
sha256: config?.sha256 ?? Sha256,
|
|
1064
|
+
urlParser: config?.urlParser ?? parseUrl,
|
|
1065
|
+
utf8Decoder: config?.utf8Decoder ?? fromUtf8,
|
|
1066
|
+
utf8Encoder: config?.utf8Encoder ?? toUtf8,
|
|
1067
|
+
};
|
|
1068
|
+
};
|
|
1069
|
+
|
|
1070
|
+
const getRuntimeConfig = (config) => {
|
|
1071
|
+
emitWarningIfUnsupportedVersion(process.version);
|
|
1072
|
+
const defaultsMode = resolveDefaultsModeConfig(config);
|
|
1073
|
+
const defaultConfigProvider = () => defaultsMode().then(loadConfigsForDefaultMode);
|
|
1074
|
+
const clientSharedValues = getRuntimeConfig$1(config);
|
|
1075
|
+
emitWarningIfUnsupportedVersion$1(process.version);
|
|
1076
|
+
const loaderConfig = {
|
|
1077
|
+
profile: config?.profile,
|
|
1078
|
+
logger: clientSharedValues.logger,
|
|
1079
|
+
};
|
|
1080
|
+
return {
|
|
1081
|
+
...clientSharedValues,
|
|
1082
|
+
...config,
|
|
1083
|
+
runtime: "node",
|
|
1084
|
+
defaultsMode,
|
|
1085
|
+
authSchemePreference: config?.authSchemePreference ?? loadConfig(NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, loaderConfig),
|
|
1086
|
+
bodyLengthChecker: config?.bodyLengthChecker ?? calculateBodyLength,
|
|
1087
|
+
credentialDefaultProvider: config?.credentialDefaultProvider ?? defaultProvider,
|
|
1088
|
+
defaultUserAgentProvider: config?.defaultUserAgentProvider ?? createDefaultUserAgentProvider({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }),
|
|
1089
|
+
maxAttempts: config?.maxAttempts ?? loadConfig(NODE_MAX_ATTEMPT_CONFIG_OPTIONS, config),
|
|
1090
|
+
region: config?.region ?? loadConfig(NODE_REGION_CONFIG_OPTIONS, { ...NODE_REGION_CONFIG_FILE_OPTIONS, ...loaderConfig }),
|
|
1091
|
+
requestHandler: NodeHttpHandler.create(config?.requestHandler ?? defaultConfigProvider),
|
|
1092
|
+
retryMode: config?.retryMode ??
|
|
1093
|
+
loadConfig({
|
|
1094
|
+
...NODE_RETRY_MODE_CONFIG_OPTIONS,
|
|
1095
|
+
default: async () => (await defaultConfigProvider()).retryMode || DEFAULT_RETRY_MODE,
|
|
1096
|
+
}, config),
|
|
1097
|
+
streamCollector: config?.streamCollector ?? streamCollector,
|
|
1098
|
+
useDualstackEndpoint: config?.useDualstackEndpoint ?? loadConfig(NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
|
|
1099
|
+
useFipsEndpoint: config?.useFipsEndpoint ?? loadConfig(NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
|
|
1100
|
+
userAgentAppId: config?.userAgentAppId ?? loadConfig(NODE_APP_ID_CONFIG_OPTIONS, loaderConfig),
|
|
1101
|
+
};
|
|
1102
|
+
};
|
|
1103
|
+
|
|
34
1104
|
const getHttpAuthExtensionConfiguration = (runtimeConfig) => {
|
|
35
1105
|
const _httpAuthSchemes = runtimeConfig.httpAuthSchemes;
|
|
36
1106
|
let _httpAuthSchemeProvider = runtimeConfig.httpAuthSchemeProvider;
|
|
@@ -355,39 +1425,129 @@ const SuggestResultItemType = {
|
|
|
355
1425
|
QUERY: "Query",
|
|
356
1426
|
};
|
|
357
1427
|
|
|
1428
|
+
exports.AccessDeniedException = AccessDeniedException;
|
|
1429
|
+
exports.AccessDeniedException$ = AccessDeniedException$;
|
|
1430
|
+
exports.AccessPoint$ = AccessPoint$;
|
|
1431
|
+
exports.AccessRestriction$ = AccessRestriction$;
|
|
1432
|
+
exports.Address$ = Address$;
|
|
1433
|
+
exports.AddressComponentMatchScores$ = AddressComponentMatchScores$;
|
|
1434
|
+
exports.AddressComponentPhonemes$ = AddressComponentPhonemes$;
|
|
1435
|
+
exports.Autocomplete$ = Autocomplete$;
|
|
358
1436
|
exports.AutocompleteAdditionalFeature = AutocompleteAdditionalFeature;
|
|
1437
|
+
exports.AutocompleteAddressHighlights$ = AutocompleteAddressHighlights$;
|
|
359
1438
|
exports.AutocompleteCommand = AutocompleteCommand;
|
|
1439
|
+
exports.AutocompleteFilter$ = AutocompleteFilter$;
|
|
360
1440
|
exports.AutocompleteFilterPlaceType = AutocompleteFilterPlaceType;
|
|
1441
|
+
exports.AutocompleteHighlights$ = AutocompleteHighlights$;
|
|
361
1442
|
exports.AutocompleteIntendedUse = AutocompleteIntendedUse;
|
|
1443
|
+
exports.AutocompleteRequest$ = AutocompleteRequest$;
|
|
1444
|
+
exports.AutocompleteResponse$ = AutocompleteResponse$;
|
|
1445
|
+
exports.AutocompleteResultItem$ = AutocompleteResultItem$;
|
|
1446
|
+
exports.BusinessChain$ = BusinessChain$;
|
|
1447
|
+
exports.Category$ = Category$;
|
|
1448
|
+
exports.ComponentMatchScores$ = ComponentMatchScores$;
|
|
1449
|
+
exports.ContactDetails$ = ContactDetails$;
|
|
1450
|
+
exports.Contacts$ = Contacts$;
|
|
1451
|
+
exports.Country$ = Country$;
|
|
1452
|
+
exports.CountryHighlights$ = CountryHighlights$;
|
|
1453
|
+
exports.FilterCircle$ = FilterCircle$;
|
|
1454
|
+
exports.FoodType$ = FoodType$;
|
|
362
1455
|
exports.GeoPlaces = GeoPlaces;
|
|
363
1456
|
exports.GeoPlacesClient = GeoPlacesClient;
|
|
1457
|
+
exports.GeoPlacesServiceException = GeoPlacesServiceException;
|
|
1458
|
+
exports.GeoPlacesServiceException$ = GeoPlacesServiceException$;
|
|
1459
|
+
exports.Geocode$ = Geocode$;
|
|
364
1460
|
exports.GeocodeAdditionalFeature = GeocodeAdditionalFeature;
|
|
365
1461
|
exports.GeocodeCommand = GeocodeCommand;
|
|
1462
|
+
exports.GeocodeFilter$ = GeocodeFilter$;
|
|
366
1463
|
exports.GeocodeFilterPlaceType = GeocodeFilterPlaceType;
|
|
367
1464
|
exports.GeocodeIntendedUse = GeocodeIntendedUse;
|
|
1465
|
+
exports.GeocodeParsedQuery$ = GeocodeParsedQuery$;
|
|
1466
|
+
exports.GeocodeParsedQueryAddressComponents$ = GeocodeParsedQueryAddressComponents$;
|
|
1467
|
+
exports.GeocodeQueryComponents$ = GeocodeQueryComponents$;
|
|
1468
|
+
exports.GeocodeRequest$ = GeocodeRequest$;
|
|
1469
|
+
exports.GeocodeResponse$ = GeocodeResponse$;
|
|
1470
|
+
exports.GeocodeResultItem$ = GeocodeResultItem$;
|
|
1471
|
+
exports.GetPlace$ = GetPlace$;
|
|
368
1472
|
exports.GetPlaceAdditionalFeature = GetPlaceAdditionalFeature;
|
|
369
1473
|
exports.GetPlaceCommand = GetPlaceCommand;
|
|
370
1474
|
exports.GetPlaceIntendedUse = GetPlaceIntendedUse;
|
|
1475
|
+
exports.GetPlaceRequest$ = GetPlaceRequest$;
|
|
1476
|
+
exports.GetPlaceResponse$ = GetPlaceResponse$;
|
|
1477
|
+
exports.Highlight$ = Highlight$;
|
|
1478
|
+
exports.InternalServerException = InternalServerException;
|
|
1479
|
+
exports.InternalServerException$ = InternalServerException$;
|
|
1480
|
+
exports.Intersection$ = Intersection$;
|
|
1481
|
+
exports.MatchScoreDetails$ = MatchScoreDetails$;
|
|
1482
|
+
exports.OpeningHours$ = OpeningHours$;
|
|
1483
|
+
exports.OpeningHoursComponents$ = OpeningHoursComponents$;
|
|
1484
|
+
exports.ParsedQueryComponent$ = ParsedQueryComponent$;
|
|
1485
|
+
exports.ParsedQuerySecondaryAddressComponent$ = ParsedQuerySecondaryAddressComponent$;
|
|
1486
|
+
exports.PhonemeDetails$ = PhonemeDetails$;
|
|
1487
|
+
exports.PhonemeTranscription$ = PhonemeTranscription$;
|
|
371
1488
|
exports.PlaceType = PlaceType;
|
|
372
1489
|
exports.PostalAuthority = PostalAuthority;
|
|
1490
|
+
exports.PostalCodeDetails$ = PostalCodeDetails$;
|
|
373
1491
|
exports.PostalCodeMode = PostalCodeMode;
|
|
374
1492
|
exports.PostalCodeType = PostalCodeType;
|
|
1493
|
+
exports.QueryRefinement$ = QueryRefinement$;
|
|
375
1494
|
exports.QueryType = QueryType;
|
|
376
1495
|
exports.RecordTypeCode = RecordTypeCode;
|
|
1496
|
+
exports.Region$ = Region$;
|
|
1497
|
+
exports.RegionHighlights$ = RegionHighlights$;
|
|
1498
|
+
exports.RelatedPlace$ = RelatedPlace$;
|
|
1499
|
+
exports.ReverseGeocode$ = ReverseGeocode$;
|
|
377
1500
|
exports.ReverseGeocodeAdditionalFeature = ReverseGeocodeAdditionalFeature;
|
|
378
1501
|
exports.ReverseGeocodeCommand = ReverseGeocodeCommand;
|
|
1502
|
+
exports.ReverseGeocodeFilter$ = ReverseGeocodeFilter$;
|
|
379
1503
|
exports.ReverseGeocodeFilterPlaceType = ReverseGeocodeFilterPlaceType;
|
|
380
1504
|
exports.ReverseGeocodeIntendedUse = ReverseGeocodeIntendedUse;
|
|
1505
|
+
exports.ReverseGeocodeRequest$ = ReverseGeocodeRequest$;
|
|
1506
|
+
exports.ReverseGeocodeResponse$ = ReverseGeocodeResponse$;
|
|
1507
|
+
exports.ReverseGeocodeResultItem$ = ReverseGeocodeResultItem$;
|
|
1508
|
+
exports.SearchNearby$ = SearchNearby$;
|
|
381
1509
|
exports.SearchNearbyAdditionalFeature = SearchNearbyAdditionalFeature;
|
|
382
1510
|
exports.SearchNearbyCommand = SearchNearbyCommand;
|
|
1511
|
+
exports.SearchNearbyFilter$ = SearchNearbyFilter$;
|
|
383
1512
|
exports.SearchNearbyIntendedUse = SearchNearbyIntendedUse;
|
|
1513
|
+
exports.SearchNearbyRequest$ = SearchNearbyRequest$;
|
|
1514
|
+
exports.SearchNearbyResponse$ = SearchNearbyResponse$;
|
|
1515
|
+
exports.SearchNearbyResultItem$ = SearchNearbyResultItem$;
|
|
1516
|
+
exports.SearchText$ = SearchText$;
|
|
384
1517
|
exports.SearchTextAdditionalFeature = SearchTextAdditionalFeature;
|
|
385
1518
|
exports.SearchTextCommand = SearchTextCommand;
|
|
1519
|
+
exports.SearchTextFilter$ = SearchTextFilter$;
|
|
386
1520
|
exports.SearchTextIntendedUse = SearchTextIntendedUse;
|
|
1521
|
+
exports.SearchTextRequest$ = SearchTextRequest$;
|
|
1522
|
+
exports.SearchTextResponse$ = SearchTextResponse$;
|
|
1523
|
+
exports.SearchTextResultItem$ = SearchTextResultItem$;
|
|
1524
|
+
exports.SecondaryAddressComponent$ = SecondaryAddressComponent$;
|
|
1525
|
+
exports.SecondaryAddressComponentMatchScore$ = SecondaryAddressComponentMatchScore$;
|
|
1526
|
+
exports.StreetComponents$ = StreetComponents$;
|
|
1527
|
+
exports.SubRegion$ = SubRegion$;
|
|
1528
|
+
exports.SubRegionHighlights$ = SubRegionHighlights$;
|
|
1529
|
+
exports.Suggest$ = Suggest$;
|
|
387
1530
|
exports.SuggestAdditionalFeature = SuggestAdditionalFeature;
|
|
1531
|
+
exports.SuggestAddressHighlights$ = SuggestAddressHighlights$;
|
|
388
1532
|
exports.SuggestCommand = SuggestCommand;
|
|
1533
|
+
exports.SuggestFilter$ = SuggestFilter$;
|
|
1534
|
+
exports.SuggestHighlights$ = SuggestHighlights$;
|
|
389
1535
|
exports.SuggestIntendedUse = SuggestIntendedUse;
|
|
1536
|
+
exports.SuggestPlaceResult$ = SuggestPlaceResult$;
|
|
1537
|
+
exports.SuggestQueryResult$ = SuggestQueryResult$;
|
|
1538
|
+
exports.SuggestRequest$ = SuggestRequest$;
|
|
1539
|
+
exports.SuggestResponse$ = SuggestResponse$;
|
|
1540
|
+
exports.SuggestResultItem$ = SuggestResultItem$;
|
|
390
1541
|
exports.SuggestResultItemType = SuggestResultItemType;
|
|
1542
|
+
exports.ThrottlingException = ThrottlingException;
|
|
1543
|
+
exports.ThrottlingException$ = ThrottlingException$;
|
|
1544
|
+
exports.TimeZone$ = TimeZone$;
|
|
391
1545
|
exports.TypePlacement = TypePlacement;
|
|
1546
|
+
exports.UspsZip$ = UspsZip$;
|
|
1547
|
+
exports.UspsZipPlus4$ = UspsZipPlus4$;
|
|
1548
|
+
exports.ValidationException = ValidationException;
|
|
1549
|
+
exports.ValidationException$ = ValidationException$;
|
|
1550
|
+
exports.ValidationExceptionField$ = ValidationExceptionField$;
|
|
392
1551
|
exports.ValidationExceptionReason = ValidationExceptionReason;
|
|
393
1552
|
exports.ZipClassificationCode = ZipClassificationCode;
|
|
1553
|
+
exports.errorTypeRegistries = errorTypeRegistries;
|