@aws-sdk/client-geo-places 3.928.0 → 3.930.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 +1527 -1426
- package/dist-cjs/runtimeConfig.shared.js +2 -0
- package/dist-es/GeoPlacesClient.js +2 -0
- package/dist-es/commands/AutocompleteCommand.js +3 -10
- package/dist-es/commands/GeocodeCommand.js +3 -10
- package/dist-es/commands/GetPlaceCommand.js +3 -10
- package/dist-es/commands/ReverseGeocodeCommand.js +3 -10
- package/dist-es/commands/SearchNearbyCommand.js +3 -10
- package/dist-es/commands/SearchTextCommand.js +3 -10
- package/dist-es/commands/SuggestCommand.js +3 -10
- package/dist-es/models/models_0.js +0 -567
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +1508 -0
- package/dist-types/GeoPlacesClient.d.ts +10 -1
- package/dist-types/models/models_0.d.ts +0 -264
- package/dist-types/runtimeConfig.browser.d.ts +1 -0
- package/dist-types/runtimeConfig.d.ts +1 -0
- package/dist-types/runtimeConfig.native.d.ts +1 -0
- package/dist-types/runtimeConfig.shared.d.ts +2 -5
- package/dist-types/schemas/schemas_0.d.ts +146 -0
- package/dist-types/ts3.4/GeoPlacesClient.d.ts +4 -0
- package/dist-types/ts3.4/models/models_0.d.ts +0 -166
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +4 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +152 -0
- package/package.json +33 -33
- package/dist-es/protocols/Aws_restJson1.js +0 -732
- package/dist-types/protocols/Aws_restJson1.d.ts +0 -65
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +0 -89
|
@@ -5,7 +5,7 @@ import { EndpointInputConfig, EndpointResolvedConfig } from "@smithy/middleware-
|
|
|
5
5
|
import { RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry";
|
|
6
6
|
import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http";
|
|
7
7
|
import { Client as __Client, DefaultsMode as __DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@smithy/smithy-client";
|
|
8
|
-
import { AwsCredentialIdentityProvider, BodyLengthCalculator as __BodyLengthCalculator, CheckOptionalClientConfig as __CheckOptionalClientConfig, ChecksumConstructor as __ChecksumConstructor, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@smithy/types";
|
|
8
|
+
import { AwsCredentialIdentityProvider, BodyLengthCalculator as __BodyLengthCalculator, CheckOptionalClientConfig as __CheckOptionalClientConfig, ChecksumConstructor as __ChecksumConstructor, ClientProtocol, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, HttpRequest, HttpResponse, Logger as __Logger, Provider as __Provider, Provider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@smithy/types";
|
|
9
9
|
import { HttpAuthSchemeInputConfig, HttpAuthSchemeResolvedConfig } from "./auth/httpAuthSchemeProvider";
|
|
10
10
|
import { AutocompleteCommandInput, AutocompleteCommandOutput } from "./commands/AutocompleteCommand";
|
|
11
11
|
import { GeocodeCommandInput, GeocodeCommandOutput } from "./commands/GeocodeCommand";
|
|
@@ -148,6 +148,15 @@ export interface ClientDefaults extends Partial<__SmithyConfiguration<__HttpHand
|
|
|
148
148
|
* Optional extensions
|
|
149
149
|
*/
|
|
150
150
|
extensions?: RuntimeExtension[];
|
|
151
|
+
/**
|
|
152
|
+
* The protocol controlling the message type (e.g. HTTP) and format (e.g. JSON)
|
|
153
|
+
* may be overridden. A default will always be set by the client.
|
|
154
|
+
* Available options depend on the service's supported protocols and will not be validated by
|
|
155
|
+
* the client.
|
|
156
|
+
* @alpha
|
|
157
|
+
*
|
|
158
|
+
*/
|
|
159
|
+
protocol?: ClientProtocol<HttpRequest, HttpResponse>;
|
|
151
160
|
/**
|
|
152
161
|
* The {@link @smithy/smithy-client#DefaultsMode} that will be used to determine how certain default configuration options are resolved in the SDK.
|
|
153
162
|
*/
|
|
@@ -2921,267 +2921,3 @@ export interface SuggestResponse {
|
|
|
2921
2921
|
*/
|
|
2922
2922
|
QueryRefinements?: QueryRefinement[] | undefined;
|
|
2923
2923
|
}
|
|
2924
|
-
/**
|
|
2925
|
-
* @internal
|
|
2926
|
-
*/
|
|
2927
|
-
export declare const AccessPointFilterSensitiveLog: (obj: AccessPoint) => any;
|
|
2928
|
-
/**
|
|
2929
|
-
* @internal
|
|
2930
|
-
*/
|
|
2931
|
-
export declare const CategoryFilterSensitiveLog: (obj: Category) => any;
|
|
2932
|
-
/**
|
|
2933
|
-
* @internal
|
|
2934
|
-
*/
|
|
2935
|
-
export declare const AccessRestrictionFilterSensitiveLog: (obj: AccessRestriction) => any;
|
|
2936
|
-
/**
|
|
2937
|
-
* @internal
|
|
2938
|
-
*/
|
|
2939
|
-
export declare const CountryFilterSensitiveLog: (obj: Country) => any;
|
|
2940
|
-
/**
|
|
2941
|
-
* @internal
|
|
2942
|
-
*/
|
|
2943
|
-
export declare const RegionFilterSensitiveLog: (obj: Region) => any;
|
|
2944
|
-
/**
|
|
2945
|
-
* @internal
|
|
2946
|
-
*/
|
|
2947
|
-
export declare const SecondaryAddressComponentFilterSensitiveLog: (obj: SecondaryAddressComponent) => any;
|
|
2948
|
-
/**
|
|
2949
|
-
* @internal
|
|
2950
|
-
*/
|
|
2951
|
-
export declare const StreetComponentsFilterSensitiveLog: (obj: StreetComponents) => any;
|
|
2952
|
-
/**
|
|
2953
|
-
* @internal
|
|
2954
|
-
*/
|
|
2955
|
-
export declare const SubRegionFilterSensitiveLog: (obj: SubRegion) => any;
|
|
2956
|
-
/**
|
|
2957
|
-
* @internal
|
|
2958
|
-
*/
|
|
2959
|
-
export declare const AddressFilterSensitiveLog: (obj: Address) => any;
|
|
2960
|
-
/**
|
|
2961
|
-
* @internal
|
|
2962
|
-
*/
|
|
2963
|
-
export declare const PhonemeTranscriptionFilterSensitiveLog: (obj: PhonemeTranscription) => any;
|
|
2964
|
-
/**
|
|
2965
|
-
* @internal
|
|
2966
|
-
*/
|
|
2967
|
-
export declare const AddressComponentPhonemesFilterSensitiveLog: (obj: AddressComponentPhonemes) => any;
|
|
2968
|
-
/**
|
|
2969
|
-
* @internal
|
|
2970
|
-
*/
|
|
2971
|
-
export declare const FilterCircleFilterSensitiveLog: (obj: FilterCircle) => any;
|
|
2972
|
-
/**
|
|
2973
|
-
* @internal
|
|
2974
|
-
*/
|
|
2975
|
-
export declare const AutocompleteFilterFilterSensitiveLog: (obj: AutocompleteFilter) => any;
|
|
2976
|
-
/**
|
|
2977
|
-
* @internal
|
|
2978
|
-
*/
|
|
2979
|
-
export declare const AutocompleteRequestFilterSensitiveLog: (obj: AutocompleteRequest) => any;
|
|
2980
|
-
/**
|
|
2981
|
-
* @internal
|
|
2982
|
-
*/
|
|
2983
|
-
export declare const HighlightFilterSensitiveLog: (obj: Highlight) => any;
|
|
2984
|
-
/**
|
|
2985
|
-
* @internal
|
|
2986
|
-
*/
|
|
2987
|
-
export declare const CountryHighlightsFilterSensitiveLog: (obj: CountryHighlights) => any;
|
|
2988
|
-
/**
|
|
2989
|
-
* @internal
|
|
2990
|
-
*/
|
|
2991
|
-
export declare const RegionHighlightsFilterSensitiveLog: (obj: RegionHighlights) => any;
|
|
2992
|
-
/**
|
|
2993
|
-
* @internal
|
|
2994
|
-
*/
|
|
2995
|
-
export declare const SubRegionHighlightsFilterSensitiveLog: (obj: SubRegionHighlights) => any;
|
|
2996
|
-
/**
|
|
2997
|
-
* @internal
|
|
2998
|
-
*/
|
|
2999
|
-
export declare const AutocompleteAddressHighlightsFilterSensitiveLog: (obj: AutocompleteAddressHighlights) => any;
|
|
3000
|
-
/**
|
|
3001
|
-
* @internal
|
|
3002
|
-
*/
|
|
3003
|
-
export declare const AutocompleteHighlightsFilterSensitiveLog: (obj: AutocompleteHighlights) => any;
|
|
3004
|
-
/**
|
|
3005
|
-
* @internal
|
|
3006
|
-
*/
|
|
3007
|
-
export declare const AutocompleteResultItemFilterSensitiveLog: (obj: AutocompleteResultItem) => any;
|
|
3008
|
-
/**
|
|
3009
|
-
* @internal
|
|
3010
|
-
*/
|
|
3011
|
-
export declare const AutocompleteResponseFilterSensitiveLog: (obj: AutocompleteResponse) => any;
|
|
3012
|
-
/**
|
|
3013
|
-
* @internal
|
|
3014
|
-
*/
|
|
3015
|
-
export declare const BusinessChainFilterSensitiveLog: (obj: BusinessChain) => any;
|
|
3016
|
-
/**
|
|
3017
|
-
* @internal
|
|
3018
|
-
*/
|
|
3019
|
-
export declare const ContactDetailsFilterSensitiveLog: (obj: ContactDetails) => any;
|
|
3020
|
-
/**
|
|
3021
|
-
* @internal
|
|
3022
|
-
*/
|
|
3023
|
-
export declare const ContactsFilterSensitiveLog: (obj: Contacts) => any;
|
|
3024
|
-
/**
|
|
3025
|
-
* @internal
|
|
3026
|
-
*/
|
|
3027
|
-
export declare const FoodTypeFilterSensitiveLog: (obj: FoodType) => any;
|
|
3028
|
-
/**
|
|
3029
|
-
* @internal
|
|
3030
|
-
*/
|
|
3031
|
-
export declare const GeocodeFilterFilterSensitiveLog: (obj: GeocodeFilter) => any;
|
|
3032
|
-
/**
|
|
3033
|
-
* @internal
|
|
3034
|
-
*/
|
|
3035
|
-
export declare const GeocodeQueryComponentsFilterSensitiveLog: (obj: GeocodeQueryComponents) => any;
|
|
3036
|
-
/**
|
|
3037
|
-
* @internal
|
|
3038
|
-
*/
|
|
3039
|
-
export declare const GeocodeRequestFilterSensitiveLog: (obj: GeocodeRequest) => any;
|
|
3040
|
-
/**
|
|
3041
|
-
* @internal
|
|
3042
|
-
*/
|
|
3043
|
-
export declare const IntersectionFilterSensitiveLog: (obj: Intersection) => any;
|
|
3044
|
-
/**
|
|
3045
|
-
* @internal
|
|
3046
|
-
*/
|
|
3047
|
-
export declare const RelatedPlaceFilterSensitiveLog: (obj: RelatedPlace) => any;
|
|
3048
|
-
/**
|
|
3049
|
-
* @internal
|
|
3050
|
-
*/
|
|
3051
|
-
export declare const ParsedQueryComponentFilterSensitiveLog: (obj: ParsedQueryComponent) => any;
|
|
3052
|
-
/**
|
|
3053
|
-
* @internal
|
|
3054
|
-
*/
|
|
3055
|
-
export declare const ParsedQuerySecondaryAddressComponentFilterSensitiveLog: (obj: ParsedQuerySecondaryAddressComponent) => any;
|
|
3056
|
-
/**
|
|
3057
|
-
* @internal
|
|
3058
|
-
*/
|
|
3059
|
-
export declare const GeocodeParsedQueryAddressComponentsFilterSensitiveLog: (obj: GeocodeParsedQueryAddressComponents) => any;
|
|
3060
|
-
/**
|
|
3061
|
-
* @internal
|
|
3062
|
-
*/
|
|
3063
|
-
export declare const GeocodeParsedQueryFilterSensitiveLog: (obj: GeocodeParsedQuery) => any;
|
|
3064
|
-
/**
|
|
3065
|
-
* @internal
|
|
3066
|
-
*/
|
|
3067
|
-
export declare const UspsZipFilterSensitiveLog: (obj: UspsZip) => any;
|
|
3068
|
-
/**
|
|
3069
|
-
* @internal
|
|
3070
|
-
*/
|
|
3071
|
-
export declare const UspsZipPlus4FilterSensitiveLog: (obj: UspsZipPlus4) => any;
|
|
3072
|
-
/**
|
|
3073
|
-
* @internal
|
|
3074
|
-
*/
|
|
3075
|
-
export declare const PostalCodeDetailsFilterSensitiveLog: (obj: PostalCodeDetails) => any;
|
|
3076
|
-
/**
|
|
3077
|
-
* @internal
|
|
3078
|
-
*/
|
|
3079
|
-
export declare const TimeZoneFilterSensitiveLog: (obj: TimeZone) => any;
|
|
3080
|
-
/**
|
|
3081
|
-
* @internal
|
|
3082
|
-
*/
|
|
3083
|
-
export declare const GeocodeResultItemFilterSensitiveLog: (obj: GeocodeResultItem) => any;
|
|
3084
|
-
/**
|
|
3085
|
-
* @internal
|
|
3086
|
-
*/
|
|
3087
|
-
export declare const GeocodeResponseFilterSensitiveLog: (obj: GeocodeResponse) => any;
|
|
3088
|
-
/**
|
|
3089
|
-
* @internal
|
|
3090
|
-
*/
|
|
3091
|
-
export declare const GetPlaceRequestFilterSensitiveLog: (obj: GetPlaceRequest) => any;
|
|
3092
|
-
/**
|
|
3093
|
-
* @internal
|
|
3094
|
-
*/
|
|
3095
|
-
export declare const OpeningHoursComponentsFilterSensitiveLog: (obj: OpeningHoursComponents) => any;
|
|
3096
|
-
/**
|
|
3097
|
-
* @internal
|
|
3098
|
-
*/
|
|
3099
|
-
export declare const OpeningHoursFilterSensitiveLog: (obj: OpeningHours) => any;
|
|
3100
|
-
/**
|
|
3101
|
-
* @internal
|
|
3102
|
-
*/
|
|
3103
|
-
export declare const PhonemeDetailsFilterSensitiveLog: (obj: PhonemeDetails) => any;
|
|
3104
|
-
/**
|
|
3105
|
-
* @internal
|
|
3106
|
-
*/
|
|
3107
|
-
export declare const GetPlaceResponseFilterSensitiveLog: (obj: GetPlaceResponse) => any;
|
|
3108
|
-
/**
|
|
3109
|
-
* @internal
|
|
3110
|
-
*/
|
|
3111
|
-
export declare const ReverseGeocodeRequestFilterSensitiveLog: (obj: ReverseGeocodeRequest) => any;
|
|
3112
|
-
/**
|
|
3113
|
-
* @internal
|
|
3114
|
-
*/
|
|
3115
|
-
export declare const ReverseGeocodeResultItemFilterSensitiveLog: (obj: ReverseGeocodeResultItem) => any;
|
|
3116
|
-
/**
|
|
3117
|
-
* @internal
|
|
3118
|
-
*/
|
|
3119
|
-
export declare const ReverseGeocodeResponseFilterSensitiveLog: (obj: ReverseGeocodeResponse) => any;
|
|
3120
|
-
/**
|
|
3121
|
-
* @internal
|
|
3122
|
-
*/
|
|
3123
|
-
export declare const SearchNearbyFilterFilterSensitiveLog: (obj: SearchNearbyFilter) => any;
|
|
3124
|
-
/**
|
|
3125
|
-
* @internal
|
|
3126
|
-
*/
|
|
3127
|
-
export declare const SearchNearbyRequestFilterSensitiveLog: (obj: SearchNearbyRequest) => any;
|
|
3128
|
-
/**
|
|
3129
|
-
* @internal
|
|
3130
|
-
*/
|
|
3131
|
-
export declare const SearchNearbyResultItemFilterSensitiveLog: (obj: SearchNearbyResultItem) => any;
|
|
3132
|
-
/**
|
|
3133
|
-
* @internal
|
|
3134
|
-
*/
|
|
3135
|
-
export declare const SearchNearbyResponseFilterSensitiveLog: (obj: SearchNearbyResponse) => any;
|
|
3136
|
-
/**
|
|
3137
|
-
* @internal
|
|
3138
|
-
*/
|
|
3139
|
-
export declare const SearchTextFilterFilterSensitiveLog: (obj: SearchTextFilter) => any;
|
|
3140
|
-
/**
|
|
3141
|
-
* @internal
|
|
3142
|
-
*/
|
|
3143
|
-
export declare const SearchTextRequestFilterSensitiveLog: (obj: SearchTextRequest) => any;
|
|
3144
|
-
/**
|
|
3145
|
-
* @internal
|
|
3146
|
-
*/
|
|
3147
|
-
export declare const SearchTextResultItemFilterSensitiveLog: (obj: SearchTextResultItem) => any;
|
|
3148
|
-
/**
|
|
3149
|
-
* @internal
|
|
3150
|
-
*/
|
|
3151
|
-
export declare const SearchTextResponseFilterSensitiveLog: (obj: SearchTextResponse) => any;
|
|
3152
|
-
/**
|
|
3153
|
-
* @internal
|
|
3154
|
-
*/
|
|
3155
|
-
export declare const SuggestFilterFilterSensitiveLog: (obj: SuggestFilter) => any;
|
|
3156
|
-
/**
|
|
3157
|
-
* @internal
|
|
3158
|
-
*/
|
|
3159
|
-
export declare const SuggestRequestFilterSensitiveLog: (obj: SuggestRequest) => any;
|
|
3160
|
-
/**
|
|
3161
|
-
* @internal
|
|
3162
|
-
*/
|
|
3163
|
-
export declare const QueryRefinementFilterSensitiveLog: (obj: QueryRefinement) => any;
|
|
3164
|
-
/**
|
|
3165
|
-
* @internal
|
|
3166
|
-
*/
|
|
3167
|
-
export declare const SuggestAddressHighlightsFilterSensitiveLog: (obj: SuggestAddressHighlights) => any;
|
|
3168
|
-
/**
|
|
3169
|
-
* @internal
|
|
3170
|
-
*/
|
|
3171
|
-
export declare const SuggestHighlightsFilterSensitiveLog: (obj: SuggestHighlights) => any;
|
|
3172
|
-
/**
|
|
3173
|
-
* @internal
|
|
3174
|
-
*/
|
|
3175
|
-
export declare const SuggestPlaceResultFilterSensitiveLog: (obj: SuggestPlaceResult) => any;
|
|
3176
|
-
/**
|
|
3177
|
-
* @internal
|
|
3178
|
-
*/
|
|
3179
|
-
export declare const SuggestQueryResultFilterSensitiveLog: (obj: SuggestQueryResult) => any;
|
|
3180
|
-
/**
|
|
3181
|
-
* @internal
|
|
3182
|
-
*/
|
|
3183
|
-
export declare const SuggestResultItemFilterSensitiveLog: (obj: SuggestResultItem) => any;
|
|
3184
|
-
/**
|
|
3185
|
-
* @internal
|
|
3186
|
-
*/
|
|
3187
|
-
export declare const SuggestResponseFilterSensitiveLog: (obj: SuggestResponse) => any;
|
|
@@ -29,6 +29,7 @@ export declare const getRuntimeConfig: (config: GeoPlacesClientConfig) => {
|
|
|
29
29
|
profile?: string;
|
|
30
30
|
logger: import("@smithy/types").Logger;
|
|
31
31
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
32
|
+
protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
|
|
32
33
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
33
34
|
userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
|
|
34
35
|
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
@@ -31,6 +31,7 @@ export declare const getRuntimeConfig: (config: GeoPlacesClientConfig) => {
|
|
|
31
31
|
profile?: string;
|
|
32
32
|
logger: import("@smithy/types").Logger;
|
|
33
33
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
34
|
+
protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
|
|
34
35
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
35
36
|
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
36
37
|
endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
|
|
@@ -27,6 +27,7 @@ export declare const getRuntimeConfig: (config: GeoPlacesClientConfig) => {
|
|
|
27
27
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
28
28
|
logger: import("@smithy/types").Logger;
|
|
29
29
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
30
|
+
protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
|
|
30
31
|
defaultsMode: import("@smithy/smithy-client").DefaultsMode | import("@smithy/types").Provider<import("@smithy/smithy-client").DefaultsMode>;
|
|
31
32
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
32
33
|
userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
|
|
@@ -8,16 +8,13 @@ export declare const getRuntimeConfig: (config: GeoPlacesClientConfig) => {
|
|
|
8
8
|
base64Encoder: (_input: Uint8Array | string) => string;
|
|
9
9
|
disableHostPrefix: boolean;
|
|
10
10
|
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
11
|
-
logger
|
|
12
|
-
/**
|
|
13
|
-
* @internal
|
|
14
|
-
*/
|
|
15
|
-
?: import("@smithy/types").Logger;
|
|
11
|
+
logger?: import("@smithy/types").Logger;
|
|
16
12
|
}) => import("@smithy/types").EndpointV2;
|
|
17
13
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
18
14
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").GeoPlacesHttpAuthSchemeProvider;
|
|
19
15
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
20
16
|
logger: import("@smithy/types").Logger;
|
|
17
|
+
protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
|
|
21
18
|
serviceId: string;
|
|
22
19
|
urlParser: import("@smithy/types").UrlParser;
|
|
23
20
|
utf8Decoder: import("@smithy/types").Decoder;
|
|
@@ -0,0 +1,146 @@
|
|
|
1
|
+
import { StaticErrorSchema, StaticListSchema, StaticOperationSchema, StaticSimpleSchema, StaticStructureSchema } from "@smithy/types";
|
|
2
|
+
export declare var ApiKey: StaticSimpleSchema;
|
|
3
|
+
export declare var CountryCode: StaticSimpleSchema;
|
|
4
|
+
export declare var CountryCode2: StaticSimpleSchema;
|
|
5
|
+
export declare var CountryCode3: StaticSimpleSchema;
|
|
6
|
+
export declare var DistanceMeters: StaticSimpleSchema;
|
|
7
|
+
export declare var DurationSeconds: StaticSimpleSchema;
|
|
8
|
+
export declare var GeocodeFilterPlaceType: StaticSimpleSchema;
|
|
9
|
+
export declare var OpeningHoursDisplay: StaticSimpleSchema;
|
|
10
|
+
export declare var PlaceType: StaticSimpleSchema;
|
|
11
|
+
export declare var PostalAuthority: StaticSimpleSchema;
|
|
12
|
+
export declare var PostalCodeType: StaticSimpleSchema;
|
|
13
|
+
export declare var RecordTypeCode: StaticSimpleSchema;
|
|
14
|
+
export declare var SensitiveBoolean: StaticSimpleSchema;
|
|
15
|
+
export declare var SensitiveString: StaticSimpleSchema;
|
|
16
|
+
export declare var ZipClassificationCode: StaticSimpleSchema;
|
|
17
|
+
export declare var AccessDeniedException: StaticErrorSchema;
|
|
18
|
+
export declare var AccessPoint: StaticStructureSchema;
|
|
19
|
+
export declare var AccessRestriction: StaticStructureSchema;
|
|
20
|
+
export declare var Address: StaticStructureSchema;
|
|
21
|
+
export declare var AddressComponentMatchScores: StaticStructureSchema;
|
|
22
|
+
export declare var AddressComponentPhonemes: StaticStructureSchema;
|
|
23
|
+
export declare var AutocompleteAddressHighlights: StaticStructureSchema;
|
|
24
|
+
export declare var AutocompleteFilter: StaticStructureSchema;
|
|
25
|
+
export declare var AutocompleteHighlights: StaticStructureSchema;
|
|
26
|
+
export declare var AutocompleteRequest: StaticStructureSchema;
|
|
27
|
+
export declare var AutocompleteResponse: StaticStructureSchema;
|
|
28
|
+
export declare var AutocompleteResultItem: StaticStructureSchema;
|
|
29
|
+
export declare var BusinessChain: StaticStructureSchema;
|
|
30
|
+
export declare var Category: StaticStructureSchema;
|
|
31
|
+
export declare var ComponentMatchScores: StaticStructureSchema;
|
|
32
|
+
export declare var ContactDetails: StaticStructureSchema;
|
|
33
|
+
export declare var Contacts: StaticStructureSchema;
|
|
34
|
+
export declare var Country: StaticStructureSchema;
|
|
35
|
+
export declare var CountryHighlights: StaticStructureSchema;
|
|
36
|
+
export declare var FilterCircle: StaticStructureSchema;
|
|
37
|
+
export declare var FoodType: StaticStructureSchema;
|
|
38
|
+
export declare var GeocodeFilter: StaticStructureSchema;
|
|
39
|
+
export declare var GeocodeParsedQuery: StaticStructureSchema;
|
|
40
|
+
export declare var GeocodeParsedQueryAddressComponents: StaticStructureSchema;
|
|
41
|
+
export declare var GeocodeQueryComponents: StaticStructureSchema;
|
|
42
|
+
export declare var GeocodeRequest: StaticStructureSchema;
|
|
43
|
+
export declare var GeocodeResponse: StaticStructureSchema;
|
|
44
|
+
export declare var GeocodeResultItem: StaticStructureSchema;
|
|
45
|
+
export declare var GetPlaceRequest: StaticStructureSchema;
|
|
46
|
+
export declare var GetPlaceResponse: StaticStructureSchema;
|
|
47
|
+
export declare var Highlight: StaticStructureSchema;
|
|
48
|
+
export declare var InternalServerException: StaticErrorSchema;
|
|
49
|
+
export declare var Intersection: StaticStructureSchema;
|
|
50
|
+
export declare var MatchScoreDetails: StaticStructureSchema;
|
|
51
|
+
export declare var OpeningHours: StaticStructureSchema;
|
|
52
|
+
export declare var OpeningHoursComponents: StaticStructureSchema;
|
|
53
|
+
export declare var ParsedQueryComponent: StaticStructureSchema;
|
|
54
|
+
export declare var ParsedQuerySecondaryAddressComponent: StaticStructureSchema;
|
|
55
|
+
export declare var PhonemeDetails: StaticStructureSchema;
|
|
56
|
+
export declare var PhonemeTranscription: StaticStructureSchema;
|
|
57
|
+
export declare var PostalCodeDetails: StaticStructureSchema;
|
|
58
|
+
export declare var QueryRefinement: StaticStructureSchema;
|
|
59
|
+
export declare var Region: StaticStructureSchema;
|
|
60
|
+
export declare var RegionHighlights: StaticStructureSchema;
|
|
61
|
+
export declare var RelatedPlace: StaticStructureSchema;
|
|
62
|
+
export declare var ReverseGeocodeFilter: StaticStructureSchema;
|
|
63
|
+
export declare var ReverseGeocodeRequest: StaticStructureSchema;
|
|
64
|
+
export declare var ReverseGeocodeResponse: StaticStructureSchema;
|
|
65
|
+
export declare var ReverseGeocodeResultItem: StaticStructureSchema;
|
|
66
|
+
export declare var SearchNearbyFilter: StaticStructureSchema;
|
|
67
|
+
export declare var SearchNearbyRequest: StaticStructureSchema;
|
|
68
|
+
export declare var SearchNearbyResponse: StaticStructureSchema;
|
|
69
|
+
export declare var SearchNearbyResultItem: StaticStructureSchema;
|
|
70
|
+
export declare var SearchTextFilter: StaticStructureSchema;
|
|
71
|
+
export declare var SearchTextRequest: StaticStructureSchema;
|
|
72
|
+
export declare var SearchTextResponse: StaticStructureSchema;
|
|
73
|
+
export declare var SearchTextResultItem: StaticStructureSchema;
|
|
74
|
+
export declare var SecondaryAddressComponent: StaticStructureSchema;
|
|
75
|
+
export declare var SecondaryAddressComponentMatchScore: StaticStructureSchema;
|
|
76
|
+
export declare var StreetComponents: StaticStructureSchema;
|
|
77
|
+
export declare var SubRegion: StaticStructureSchema;
|
|
78
|
+
export declare var SubRegionHighlights: StaticStructureSchema;
|
|
79
|
+
export declare var SuggestAddressHighlights: StaticStructureSchema;
|
|
80
|
+
export declare var SuggestFilter: StaticStructureSchema;
|
|
81
|
+
export declare var SuggestHighlights: StaticStructureSchema;
|
|
82
|
+
export declare var SuggestPlaceResult: StaticStructureSchema;
|
|
83
|
+
export declare var SuggestQueryResult: StaticStructureSchema;
|
|
84
|
+
export declare var SuggestRequest: StaticStructureSchema;
|
|
85
|
+
export declare var SuggestResponse: StaticStructureSchema;
|
|
86
|
+
export declare var SuggestResultItem: StaticStructureSchema;
|
|
87
|
+
export declare var ThrottlingException: StaticErrorSchema;
|
|
88
|
+
export declare var TimeZone: StaticStructureSchema;
|
|
89
|
+
export declare var UspsZip: StaticStructureSchema;
|
|
90
|
+
export declare var UspsZipPlus4: StaticStructureSchema;
|
|
91
|
+
export declare var ValidationException: StaticErrorSchema;
|
|
92
|
+
export declare var ValidationExceptionField: StaticStructureSchema;
|
|
93
|
+
export declare var GeoPlacesServiceException: StaticErrorSchema;
|
|
94
|
+
export declare var AccessPointList: StaticListSchema;
|
|
95
|
+
export declare var AccessRestrictionList: StaticListSchema;
|
|
96
|
+
export declare var AutocompleteAdditionalFeatureList: number;
|
|
97
|
+
export declare var AutocompleteFilterPlaceTypeList: number;
|
|
98
|
+
export declare var AutocompleteResultItemList: StaticListSchema;
|
|
99
|
+
export declare var BoundingBox: StaticListSchema;
|
|
100
|
+
export declare var BusinessChainList: StaticListSchema;
|
|
101
|
+
export declare var CategoryList: StaticListSchema;
|
|
102
|
+
export declare var ContactDetailsList: StaticListSchema;
|
|
103
|
+
export declare var CountryCodeList: StaticListSchema;
|
|
104
|
+
export declare var FilterBusinessChainList: StaticListSchema;
|
|
105
|
+
export declare var FilterCategoryList: StaticListSchema;
|
|
106
|
+
export declare var FilterFoodTypeList: StaticListSchema;
|
|
107
|
+
export declare var FoodTypeList: StaticListSchema;
|
|
108
|
+
export declare var GeocodeAdditionalFeatureList: number;
|
|
109
|
+
export declare var GeocodeFilterPlaceTypeList: StaticListSchema;
|
|
110
|
+
export declare var GeocodeResultItemList: StaticListSchema;
|
|
111
|
+
export declare var GetPlaceAdditionalFeatureList: number;
|
|
112
|
+
export declare var HighlightList: StaticListSchema;
|
|
113
|
+
export declare var IntersectionHighlightsList: StaticListSchema;
|
|
114
|
+
export declare var IntersectionList: StaticListSchema;
|
|
115
|
+
export declare var IntersectionStreetList: number;
|
|
116
|
+
export declare var MatchScoreList: number;
|
|
117
|
+
export declare var OpeningHoursComponentsList: StaticListSchema;
|
|
118
|
+
export declare var OpeningHoursDisplayList: StaticListSchema;
|
|
119
|
+
export declare var OpeningHoursList: StaticListSchema;
|
|
120
|
+
export declare var ParsedQueryComponentList: StaticListSchema;
|
|
121
|
+
export declare var ParsedQuerySecondaryAddressComponentList: StaticListSchema;
|
|
122
|
+
export declare var PhonemeTranscriptionList: StaticListSchema;
|
|
123
|
+
export declare var Position: StaticListSchema;
|
|
124
|
+
export declare var PostalCodeDetailsList: StaticListSchema;
|
|
125
|
+
export declare var QueryRefinementList: StaticListSchema;
|
|
126
|
+
export declare var RelatedPlaceList: StaticListSchema;
|
|
127
|
+
export declare var ReverseGeocodeAdditionalFeatureList: number;
|
|
128
|
+
export declare var ReverseGeocodeFilterPlaceTypeList: number;
|
|
129
|
+
export declare var ReverseGeocodeResultItemList: StaticListSchema;
|
|
130
|
+
export declare var SearchNearbyAdditionalFeatureList: number;
|
|
131
|
+
export declare var SearchNearbyResultItemList: StaticListSchema;
|
|
132
|
+
export declare var SearchTextAdditionalFeatureList: number;
|
|
133
|
+
export declare var SearchTextResultItemList: StaticListSchema;
|
|
134
|
+
export declare var SecondaryAddressComponentList: StaticListSchema;
|
|
135
|
+
export declare var SecondaryAddressComponentMatchScoreList: StaticListSchema;
|
|
136
|
+
export declare var StreetComponentsList: StaticListSchema;
|
|
137
|
+
export declare var SuggestAdditionalFeatureList: number;
|
|
138
|
+
export declare var SuggestResultItemList: StaticListSchema;
|
|
139
|
+
export declare var ValidationExceptionFieldList: StaticListSchema;
|
|
140
|
+
export declare var Autocomplete: StaticOperationSchema;
|
|
141
|
+
export declare var Geocode: StaticOperationSchema;
|
|
142
|
+
export declare var GetPlace: StaticOperationSchema;
|
|
143
|
+
export declare var ReverseGeocode: StaticOperationSchema;
|
|
144
|
+
export declare var SearchNearby: StaticOperationSchema;
|
|
145
|
+
export declare var SearchText: StaticOperationSchema;
|
|
146
|
+
export declare var Suggest: StaticOperationSchema;
|
|
@@ -30,10 +30,13 @@ import {
|
|
|
30
30
|
BodyLengthCalculator as __BodyLengthCalculator,
|
|
31
31
|
CheckOptionalClientConfig as __CheckOptionalClientConfig,
|
|
32
32
|
ChecksumConstructor as __ChecksumConstructor,
|
|
33
|
+
ClientProtocol,
|
|
33
34
|
Decoder as __Decoder,
|
|
34
35
|
Encoder as __Encoder,
|
|
35
36
|
HashConstructor as __HashConstructor,
|
|
36
37
|
HttpHandlerOptions as __HttpHandlerOptions,
|
|
38
|
+
HttpRequest,
|
|
39
|
+
HttpResponse,
|
|
37
40
|
Logger as __Logger,
|
|
38
41
|
Provider as __Provider,
|
|
39
42
|
Provider,
|
|
@@ -120,6 +123,7 @@ export interface ClientDefaults
|
|
|
120
123
|
retryMode?: string | __Provider<string>;
|
|
121
124
|
logger?: __Logger;
|
|
122
125
|
extensions?: RuntimeExtension[];
|
|
126
|
+
protocol?: ClientProtocol<HttpRequest, HttpResponse>;
|
|
123
127
|
defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
|
|
124
128
|
}
|
|
125
129
|
export type GeoPlacesClientConfigType = Partial<
|
|
@@ -784,169 +784,3 @@ export interface SuggestResponse {
|
|
|
784
784
|
ResultItems?: SuggestResultItem[] | undefined;
|
|
785
785
|
QueryRefinements?: QueryRefinement[] | undefined;
|
|
786
786
|
}
|
|
787
|
-
export declare const AccessPointFilterSensitiveLog: (obj: AccessPoint) => any;
|
|
788
|
-
export declare const CategoryFilterSensitiveLog: (obj: Category) => any;
|
|
789
|
-
export declare const AccessRestrictionFilterSensitiveLog: (
|
|
790
|
-
obj: AccessRestriction
|
|
791
|
-
) => any;
|
|
792
|
-
export declare const CountryFilterSensitiveLog: (obj: Country) => any;
|
|
793
|
-
export declare const RegionFilterSensitiveLog: (obj: Region) => any;
|
|
794
|
-
export declare const SecondaryAddressComponentFilterSensitiveLog: (
|
|
795
|
-
obj: SecondaryAddressComponent
|
|
796
|
-
) => any;
|
|
797
|
-
export declare const StreetComponentsFilterSensitiveLog: (
|
|
798
|
-
obj: StreetComponents
|
|
799
|
-
) => any;
|
|
800
|
-
export declare const SubRegionFilterSensitiveLog: (obj: SubRegion) => any;
|
|
801
|
-
export declare const AddressFilterSensitiveLog: (obj: Address) => any;
|
|
802
|
-
export declare const PhonemeTranscriptionFilterSensitiveLog: (
|
|
803
|
-
obj: PhonemeTranscription
|
|
804
|
-
) => any;
|
|
805
|
-
export declare const AddressComponentPhonemesFilterSensitiveLog: (
|
|
806
|
-
obj: AddressComponentPhonemes
|
|
807
|
-
) => any;
|
|
808
|
-
export declare const FilterCircleFilterSensitiveLog: (obj: FilterCircle) => any;
|
|
809
|
-
export declare const AutocompleteFilterFilterSensitiveLog: (
|
|
810
|
-
obj: AutocompleteFilter
|
|
811
|
-
) => any;
|
|
812
|
-
export declare const AutocompleteRequestFilterSensitiveLog: (
|
|
813
|
-
obj: AutocompleteRequest
|
|
814
|
-
) => any;
|
|
815
|
-
export declare const HighlightFilterSensitiveLog: (obj: Highlight) => any;
|
|
816
|
-
export declare const CountryHighlightsFilterSensitiveLog: (
|
|
817
|
-
obj: CountryHighlights
|
|
818
|
-
) => any;
|
|
819
|
-
export declare const RegionHighlightsFilterSensitiveLog: (
|
|
820
|
-
obj: RegionHighlights
|
|
821
|
-
) => any;
|
|
822
|
-
export declare const SubRegionHighlightsFilterSensitiveLog: (
|
|
823
|
-
obj: SubRegionHighlights
|
|
824
|
-
) => any;
|
|
825
|
-
export declare const AutocompleteAddressHighlightsFilterSensitiveLog: (
|
|
826
|
-
obj: AutocompleteAddressHighlights
|
|
827
|
-
) => any;
|
|
828
|
-
export declare const AutocompleteHighlightsFilterSensitiveLog: (
|
|
829
|
-
obj: AutocompleteHighlights
|
|
830
|
-
) => any;
|
|
831
|
-
export declare const AutocompleteResultItemFilterSensitiveLog: (
|
|
832
|
-
obj: AutocompleteResultItem
|
|
833
|
-
) => any;
|
|
834
|
-
export declare const AutocompleteResponseFilterSensitiveLog: (
|
|
835
|
-
obj: AutocompleteResponse
|
|
836
|
-
) => any;
|
|
837
|
-
export declare const BusinessChainFilterSensitiveLog: (
|
|
838
|
-
obj: BusinessChain
|
|
839
|
-
) => any;
|
|
840
|
-
export declare const ContactDetailsFilterSensitiveLog: (
|
|
841
|
-
obj: ContactDetails
|
|
842
|
-
) => any;
|
|
843
|
-
export declare const ContactsFilterSensitiveLog: (obj: Contacts) => any;
|
|
844
|
-
export declare const FoodTypeFilterSensitiveLog: (obj: FoodType) => any;
|
|
845
|
-
export declare const GeocodeFilterFilterSensitiveLog: (
|
|
846
|
-
obj: GeocodeFilter
|
|
847
|
-
) => any;
|
|
848
|
-
export declare const GeocodeQueryComponentsFilterSensitiveLog: (
|
|
849
|
-
obj: GeocodeQueryComponents
|
|
850
|
-
) => any;
|
|
851
|
-
export declare const GeocodeRequestFilterSensitiveLog: (
|
|
852
|
-
obj: GeocodeRequest
|
|
853
|
-
) => any;
|
|
854
|
-
export declare const IntersectionFilterSensitiveLog: (obj: Intersection) => any;
|
|
855
|
-
export declare const RelatedPlaceFilterSensitiveLog: (obj: RelatedPlace) => any;
|
|
856
|
-
export declare const ParsedQueryComponentFilterSensitiveLog: (
|
|
857
|
-
obj: ParsedQueryComponent
|
|
858
|
-
) => any;
|
|
859
|
-
export declare const ParsedQuerySecondaryAddressComponentFilterSensitiveLog: (
|
|
860
|
-
obj: ParsedQuerySecondaryAddressComponent
|
|
861
|
-
) => any;
|
|
862
|
-
export declare const GeocodeParsedQueryAddressComponentsFilterSensitiveLog: (
|
|
863
|
-
obj: GeocodeParsedQueryAddressComponents
|
|
864
|
-
) => any;
|
|
865
|
-
export declare const GeocodeParsedQueryFilterSensitiveLog: (
|
|
866
|
-
obj: GeocodeParsedQuery
|
|
867
|
-
) => any;
|
|
868
|
-
export declare const UspsZipFilterSensitiveLog: (obj: UspsZip) => any;
|
|
869
|
-
export declare const UspsZipPlus4FilterSensitiveLog: (obj: UspsZipPlus4) => any;
|
|
870
|
-
export declare const PostalCodeDetailsFilterSensitiveLog: (
|
|
871
|
-
obj: PostalCodeDetails
|
|
872
|
-
) => any;
|
|
873
|
-
export declare const TimeZoneFilterSensitiveLog: (obj: TimeZone) => any;
|
|
874
|
-
export declare const GeocodeResultItemFilterSensitiveLog: (
|
|
875
|
-
obj: GeocodeResultItem
|
|
876
|
-
) => any;
|
|
877
|
-
export declare const GeocodeResponseFilterSensitiveLog: (
|
|
878
|
-
obj: GeocodeResponse
|
|
879
|
-
) => any;
|
|
880
|
-
export declare const GetPlaceRequestFilterSensitiveLog: (
|
|
881
|
-
obj: GetPlaceRequest
|
|
882
|
-
) => any;
|
|
883
|
-
export declare const OpeningHoursComponentsFilterSensitiveLog: (
|
|
884
|
-
obj: OpeningHoursComponents
|
|
885
|
-
) => any;
|
|
886
|
-
export declare const OpeningHoursFilterSensitiveLog: (obj: OpeningHours) => any;
|
|
887
|
-
export declare const PhonemeDetailsFilterSensitiveLog: (
|
|
888
|
-
obj: PhonemeDetails
|
|
889
|
-
) => any;
|
|
890
|
-
export declare const GetPlaceResponseFilterSensitiveLog: (
|
|
891
|
-
obj: GetPlaceResponse
|
|
892
|
-
) => any;
|
|
893
|
-
export declare const ReverseGeocodeRequestFilterSensitiveLog: (
|
|
894
|
-
obj: ReverseGeocodeRequest
|
|
895
|
-
) => any;
|
|
896
|
-
export declare const ReverseGeocodeResultItemFilterSensitiveLog: (
|
|
897
|
-
obj: ReverseGeocodeResultItem
|
|
898
|
-
) => any;
|
|
899
|
-
export declare const ReverseGeocodeResponseFilterSensitiveLog: (
|
|
900
|
-
obj: ReverseGeocodeResponse
|
|
901
|
-
) => any;
|
|
902
|
-
export declare const SearchNearbyFilterFilterSensitiveLog: (
|
|
903
|
-
obj: SearchNearbyFilter
|
|
904
|
-
) => any;
|
|
905
|
-
export declare const SearchNearbyRequestFilterSensitiveLog: (
|
|
906
|
-
obj: SearchNearbyRequest
|
|
907
|
-
) => any;
|
|
908
|
-
export declare const SearchNearbyResultItemFilterSensitiveLog: (
|
|
909
|
-
obj: SearchNearbyResultItem
|
|
910
|
-
) => any;
|
|
911
|
-
export declare const SearchNearbyResponseFilterSensitiveLog: (
|
|
912
|
-
obj: SearchNearbyResponse
|
|
913
|
-
) => any;
|
|
914
|
-
export declare const SearchTextFilterFilterSensitiveLog: (
|
|
915
|
-
obj: SearchTextFilter
|
|
916
|
-
) => any;
|
|
917
|
-
export declare const SearchTextRequestFilterSensitiveLog: (
|
|
918
|
-
obj: SearchTextRequest
|
|
919
|
-
) => any;
|
|
920
|
-
export declare const SearchTextResultItemFilterSensitiveLog: (
|
|
921
|
-
obj: SearchTextResultItem
|
|
922
|
-
) => any;
|
|
923
|
-
export declare const SearchTextResponseFilterSensitiveLog: (
|
|
924
|
-
obj: SearchTextResponse
|
|
925
|
-
) => any;
|
|
926
|
-
export declare const SuggestFilterFilterSensitiveLog: (
|
|
927
|
-
obj: SuggestFilter
|
|
928
|
-
) => any;
|
|
929
|
-
export declare const SuggestRequestFilterSensitiveLog: (
|
|
930
|
-
obj: SuggestRequest
|
|
931
|
-
) => any;
|
|
932
|
-
export declare const QueryRefinementFilterSensitiveLog: (
|
|
933
|
-
obj: QueryRefinement
|
|
934
|
-
) => any;
|
|
935
|
-
export declare const SuggestAddressHighlightsFilterSensitiveLog: (
|
|
936
|
-
obj: SuggestAddressHighlights
|
|
937
|
-
) => any;
|
|
938
|
-
export declare const SuggestHighlightsFilterSensitiveLog: (
|
|
939
|
-
obj: SuggestHighlights
|
|
940
|
-
) => any;
|
|
941
|
-
export declare const SuggestPlaceResultFilterSensitiveLog: (
|
|
942
|
-
obj: SuggestPlaceResult
|
|
943
|
-
) => any;
|
|
944
|
-
export declare const SuggestQueryResultFilterSensitiveLog: (
|
|
945
|
-
obj: SuggestQueryResult
|
|
946
|
-
) => any;
|
|
947
|
-
export declare const SuggestResultItemFilterSensitiveLog: (
|
|
948
|
-
obj: SuggestResultItem
|
|
949
|
-
) => any;
|
|
950
|
-
export declare const SuggestResponseFilterSensitiveLog: (
|
|
951
|
-
obj: SuggestResponse
|
|
952
|
-
) => any;
|