@aws-sdk/client-geo-places 3.952.0 → 3.953.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 +295 -204
- package/dist-cjs/runtimeConfig.shared.js +6 -1
- package/dist-es/commands/AutocompleteCommand.js +2 -2
- package/dist-es/commands/GeocodeCommand.js +2 -2
- package/dist-es/commands/GetPlaceCommand.js +2 -2
- package/dist-es/commands/ReverseGeocodeCommand.js +2 -2
- package/dist-es/commands/SearchNearbyCommand.js +2 -2
- package/dist-es/commands/SearchTextCommand.js +2 -2
- package/dist-es/commands/SuggestCommand.js +2 -2
- package/dist-es/index.js +1 -0
- package/dist-es/runtimeConfig.shared.js +6 -1
- package/dist-es/schemas/schemas_0.js +229 -222
- package/dist-types/GeoPlacesClient.d.ts +1 -10
- package/dist-types/index.d.ts +1 -0
- package/dist-types/runtimeConfig.browser.d.ts +6 -2
- package/dist-types/runtimeConfig.d.ts +6 -2
- package/dist-types/runtimeConfig.native.d.ts +6 -2
- package/dist-types/runtimeConfig.shared.d.ts +6 -1
- package/dist-types/schemas/schemas_0.d.ts +85 -146
- package/dist-types/ts3.4/GeoPlacesClient.d.ts +0 -4
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +9 -4
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +84 -147
- package/package.json +34 -34
package/dist-cjs/index.js
CHANGED
|
@@ -110,14 +110,14 @@ class GeoPlacesClient extends smithyClient.Client {
|
|
|
110
110
|
}
|
|
111
111
|
}
|
|
112
112
|
|
|
113
|
-
|
|
113
|
+
class GeoPlacesServiceException extends smithyClient.ServiceException {
|
|
114
114
|
constructor(options) {
|
|
115
115
|
super(options);
|
|
116
116
|
Object.setPrototypeOf(this, GeoPlacesServiceException.prototype);
|
|
117
117
|
}
|
|
118
|
-
}
|
|
118
|
+
}
|
|
119
119
|
|
|
120
|
-
|
|
120
|
+
class AccessDeniedException extends GeoPlacesServiceException {
|
|
121
121
|
name = "AccessDeniedException";
|
|
122
122
|
$fault = "client";
|
|
123
123
|
Message;
|
|
@@ -130,8 +130,8 @@ let AccessDeniedException$1 = class AccessDeniedException extends GeoPlacesServi
|
|
|
130
130
|
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
131
131
|
this.Message = opts.Message;
|
|
132
132
|
}
|
|
133
|
-
}
|
|
134
|
-
|
|
133
|
+
}
|
|
134
|
+
class InternalServerException extends GeoPlacesServiceException {
|
|
135
135
|
name = "InternalServerException";
|
|
136
136
|
$fault = "server";
|
|
137
137
|
$retryable = {};
|
|
@@ -145,8 +145,8 @@ let InternalServerException$1 = class InternalServerException extends GeoPlacesS
|
|
|
145
145
|
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
146
146
|
this.Message = opts.Message;
|
|
147
147
|
}
|
|
148
|
-
}
|
|
149
|
-
|
|
148
|
+
}
|
|
149
|
+
class ThrottlingException extends GeoPlacesServiceException {
|
|
150
150
|
name = "ThrottlingException";
|
|
151
151
|
$fault = "client";
|
|
152
152
|
$retryable = {};
|
|
@@ -160,8 +160,8 @@ let ThrottlingException$1 = class ThrottlingException extends GeoPlacesServiceEx
|
|
|
160
160
|
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
161
161
|
this.Message = opts.Message;
|
|
162
162
|
}
|
|
163
|
-
}
|
|
164
|
-
|
|
163
|
+
}
|
|
164
|
+
class ValidationException extends GeoPlacesServiceException {
|
|
165
165
|
name = "ValidationException";
|
|
166
166
|
$fault = "client";
|
|
167
167
|
Message;
|
|
@@ -178,7 +178,7 @@ let ValidationException$1 = class ValidationException extends GeoPlacesServiceEx
|
|
|
178
178
|
this.Reason = opts.Reason;
|
|
179
179
|
this.FieldList = opts.FieldList;
|
|
180
180
|
}
|
|
181
|
-
}
|
|
181
|
+
}
|
|
182
182
|
|
|
183
183
|
const _A = "Address";
|
|
184
184
|
const _AAH = "AutocompleteAddressHighlights";
|
|
@@ -451,7 +451,7 @@ var RecordTypeCode$1 = [0, n0, _RTC, 8, 0];
|
|
|
451
451
|
var SensitiveBoolean = [0, n0, _SB, 8, 2];
|
|
452
452
|
var SensitiveString = [0, n0, _SS, 8, 0];
|
|
453
453
|
var ZipClassificationCode$1 = [0, n0, _ZCC, 8, 0];
|
|
454
|
-
var AccessDeniedException = [
|
|
454
|
+
var AccessDeniedException$ = [
|
|
455
455
|
-3,
|
|
456
456
|
n0,
|
|
457
457
|
_ADE,
|
|
@@ -459,9 +459,9 @@ var AccessDeniedException = [
|
|
|
459
459
|
[_M],
|
|
460
460
|
[[0, { [_jN]: _m }]],
|
|
461
461
|
];
|
|
462
|
-
schema.TypeRegistry.for(n0).registerError(AccessDeniedException
|
|
463
|
-
var AccessPoint = [3, n0, _AP, 0, [_P], [[() => Position, 0]]];
|
|
464
|
-
var AccessRestriction = [
|
|
462
|
+
schema.TypeRegistry.for(n0).registerError(AccessDeniedException$, AccessDeniedException);
|
|
463
|
+
var AccessPoint$ = [3, n0, _AP, 0, [_P], [[() => Position, 0]]];
|
|
464
|
+
var AccessRestriction$ = [
|
|
465
465
|
3,
|
|
466
466
|
n0,
|
|
467
467
|
_AR,
|
|
@@ -472,7 +472,7 @@ var AccessRestriction = [
|
|
|
472
472
|
[() => CategoryList, 0],
|
|
473
473
|
],
|
|
474
474
|
];
|
|
475
|
-
var Address = [
|
|
475
|
+
var Address$ = [
|
|
476
476
|
3,
|
|
477
477
|
n0,
|
|
478
478
|
_A,
|
|
@@ -480,9 +480,9 @@ var Address = [
|
|
|
480
480
|
[_L, _Co, _Re, _SR, _Lo, _D, _SD, _PC, _B, _SBu, _I, _S, _SC, _AN, _Bu, _SAC],
|
|
481
481
|
[
|
|
482
482
|
[() => SensitiveString, 0],
|
|
483
|
-
[() => Country
|
|
484
|
-
[() => Region
|
|
485
|
-
[() => SubRegion
|
|
483
|
+
[() => Country$, 0],
|
|
484
|
+
[() => Region$, 0],
|
|
485
|
+
[() => SubRegion$, 0],
|
|
486
486
|
[() => SensitiveString, 0],
|
|
487
487
|
[() => SensitiveString, 0],
|
|
488
488
|
[() => SensitiveString, 0],
|
|
@@ -497,7 +497,7 @@ var Address = [
|
|
|
497
497
|
[() => SecondaryAddressComponentList, 0],
|
|
498
498
|
],
|
|
499
499
|
];
|
|
500
|
-
var AddressComponentMatchScores = [
|
|
500
|
+
var AddressComponentMatchScores$ = [
|
|
501
501
|
3,
|
|
502
502
|
n0,
|
|
503
503
|
_ACMS,
|
|
@@ -505,7 +505,7 @@ var AddressComponentMatchScores = [
|
|
|
505
505
|
[_Co, _Re, _SR, _Lo, _D, _SD, _PC, _B, _SBu, _I, _AN, _Bu, _SAC],
|
|
506
506
|
[1, 1, 1, 1, 1, 1, 1, 1, 1, 64 | 1, 1, 1, () => SecondaryAddressComponentMatchScoreList],
|
|
507
507
|
];
|
|
508
|
-
var AddressComponentPhonemes = [
|
|
508
|
+
var AddressComponentPhonemes$ = [
|
|
509
509
|
3,
|
|
510
510
|
n0,
|
|
511
511
|
_ACP,
|
|
@@ -523,7 +523,7 @@ var AddressComponentPhonemes = [
|
|
|
523
523
|
[() => PhonemeTranscriptionList, 0],
|
|
524
524
|
],
|
|
525
525
|
];
|
|
526
|
-
var AutocompleteAddressHighlights = [
|
|
526
|
+
var AutocompleteAddressHighlights$ = [
|
|
527
527
|
3,
|
|
528
528
|
n0,
|
|
529
529
|
_AAH,
|
|
@@ -531,9 +531,9 @@ var AutocompleteAddressHighlights = [
|
|
|
531
531
|
[_L, _Co, _Re, _SR, _Lo, _D, _SD, _S, _B, _SBu, _I, _PC, _AN, _Bu],
|
|
532
532
|
[
|
|
533
533
|
[() => HighlightList, 0],
|
|
534
|
-
[() => CountryHighlights
|
|
535
|
-
[() => RegionHighlights
|
|
536
|
-
[() => SubRegionHighlights
|
|
534
|
+
[() => CountryHighlights$, 0],
|
|
535
|
+
[() => RegionHighlights$, 0],
|
|
536
|
+
[() => SubRegionHighlights$, 0],
|
|
537
537
|
[() => HighlightList, 0],
|
|
538
538
|
[() => HighlightList, 0],
|
|
539
539
|
[() => HighlightList, 0],
|
|
@@ -546,15 +546,15 @@ var AutocompleteAddressHighlights = [
|
|
|
546
546
|
[() => HighlightList, 0],
|
|
547
547
|
],
|
|
548
548
|
];
|
|
549
|
-
var AutocompleteFilter = [
|
|
549
|
+
var AutocompleteFilter$ = [
|
|
550
550
|
3,
|
|
551
551
|
n0,
|
|
552
552
|
_AF,
|
|
553
553
|
0,
|
|
554
554
|
[_BB, _Ci, _IC, _IPT],
|
|
555
|
-
[[() => BoundingBox, 0], [() => FilterCircle
|
|
555
|
+
[[() => BoundingBox, 0], [() => FilterCircle$, 0], [() => CountryCodeList, 0], 64 | 0],
|
|
556
556
|
];
|
|
557
|
-
var AutocompleteHighlights = [
|
|
557
|
+
var AutocompleteHighlights$ = [
|
|
558
558
|
3,
|
|
559
559
|
n0,
|
|
560
560
|
_AH,
|
|
@@ -562,10 +562,10 @@ var AutocompleteHighlights = [
|
|
|
562
562
|
[_T, _A],
|
|
563
563
|
[
|
|
564
564
|
[() => HighlightList, 0],
|
|
565
|
-
[() => AutocompleteAddressHighlights
|
|
565
|
+
[() => AutocompleteAddressHighlights$, 0],
|
|
566
566
|
],
|
|
567
567
|
];
|
|
568
|
-
var AutocompleteRequest = [
|
|
568
|
+
var AutocompleteRequest$ = [
|
|
569
569
|
3,
|
|
570
570
|
n0,
|
|
571
571
|
_ARu,
|
|
@@ -575,7 +575,7 @@ var AutocompleteRequest = [
|
|
|
575
575
|
[() => SensitiveString, 0],
|
|
576
576
|
1,
|
|
577
577
|
[() => Position, 0],
|
|
578
|
-
[() => AutocompleteFilter
|
|
578
|
+
[() => AutocompleteFilter$, 0],
|
|
579
579
|
0,
|
|
580
580
|
64 | 0,
|
|
581
581
|
0,
|
|
@@ -584,7 +584,7 @@ var AutocompleteRequest = [
|
|
|
584
584
|
[() => ApiKey, { [_hQ]: _k }],
|
|
585
585
|
],
|
|
586
586
|
];
|
|
587
|
-
var AutocompleteResponse = [
|
|
587
|
+
var AutocompleteResponse$ = [
|
|
588
588
|
3,
|
|
589
589
|
n0,
|
|
590
590
|
_ARut,
|
|
@@ -595,7 +595,7 @@ var AutocompleteResponse = [
|
|
|
595
595
|
[() => AutocompleteResultItemList, 0],
|
|
596
596
|
],
|
|
597
597
|
];
|
|
598
|
-
var AutocompleteResultItem = [
|
|
598
|
+
var AutocompleteResultItem$ = [
|
|
599
599
|
3,
|
|
600
600
|
n0,
|
|
601
601
|
_ARI,
|
|
@@ -605,14 +605,14 @@ var AutocompleteResultItem = [
|
|
|
605
605
|
[() => SensitiveString, 0],
|
|
606
606
|
[() => PlaceType$1, 0],
|
|
607
607
|
[() => SensitiveString, 0],
|
|
608
|
-
[() => Address
|
|
608
|
+
[() => Address$, 0],
|
|
609
609
|
[() => DistanceMeters, 0],
|
|
610
610
|
0,
|
|
611
611
|
[() => CountryCode3, 0],
|
|
612
|
-
[() => AutocompleteHighlights
|
|
612
|
+
[() => AutocompleteHighlights$, 0],
|
|
613
613
|
],
|
|
614
614
|
];
|
|
615
|
-
var BusinessChain = [
|
|
615
|
+
var BusinessChain$ = [
|
|
616
616
|
3,
|
|
617
617
|
n0,
|
|
618
618
|
_BC,
|
|
@@ -623,7 +623,7 @@ var BusinessChain = [
|
|
|
623
623
|
[() => SensitiveString, 0],
|
|
624
624
|
],
|
|
625
625
|
];
|
|
626
|
-
var Category = [
|
|
626
|
+
var Category$ = [
|
|
627
627
|
3,
|
|
628
628
|
n0,
|
|
629
629
|
_Ca,
|
|
@@ -636,15 +636,15 @@ var Category = [
|
|
|
636
636
|
[() => SensitiveBoolean, 0],
|
|
637
637
|
],
|
|
638
638
|
];
|
|
639
|
-
var ComponentMatchScores = [
|
|
639
|
+
var ComponentMatchScores$ = [
|
|
640
640
|
3,
|
|
641
641
|
n0,
|
|
642
642
|
_CMS,
|
|
643
643
|
0,
|
|
644
644
|
[_T, _A],
|
|
645
|
-
[1, () => AddressComponentMatchScores],
|
|
645
|
+
[1, () => AddressComponentMatchScores$],
|
|
646
646
|
];
|
|
647
|
-
var ContactDetails = [
|
|
647
|
+
var ContactDetails$ = [
|
|
648
648
|
3,
|
|
649
649
|
n0,
|
|
650
650
|
_CD,
|
|
@@ -656,7 +656,7 @@ var ContactDetails = [
|
|
|
656
656
|
[() => CategoryList, 0],
|
|
657
657
|
],
|
|
658
658
|
];
|
|
659
|
-
var Contacts = [
|
|
659
|
+
var Contacts$ = [
|
|
660
660
|
3,
|
|
661
661
|
n0,
|
|
662
662
|
_Con,
|
|
@@ -669,7 +669,7 @@ var Contacts = [
|
|
|
669
669
|
[() => ContactDetailsList, 0],
|
|
670
670
|
],
|
|
671
671
|
];
|
|
672
|
-
var Country = [
|
|
672
|
+
var Country$ = [
|
|
673
673
|
3,
|
|
674
674
|
n0,
|
|
675
675
|
_Co,
|
|
@@ -681,7 +681,7 @@ var Country = [
|
|
|
681
681
|
[() => SensitiveString, 0],
|
|
682
682
|
],
|
|
683
683
|
];
|
|
684
|
-
var CountryHighlights = [
|
|
684
|
+
var CountryHighlights$ = [
|
|
685
685
|
3,
|
|
686
686
|
n0,
|
|
687
687
|
_CH,
|
|
@@ -692,7 +692,7 @@ var CountryHighlights = [
|
|
|
692
692
|
[() => HighlightList, 0],
|
|
693
693
|
],
|
|
694
694
|
];
|
|
695
|
-
var FilterCircle = [
|
|
695
|
+
var FilterCircle$ = [
|
|
696
696
|
3,
|
|
697
697
|
n0,
|
|
698
698
|
_FC,
|
|
@@ -703,7 +703,7 @@ var FilterCircle = [
|
|
|
703
703
|
[() => DistanceMeters, 0],
|
|
704
704
|
],
|
|
705
705
|
];
|
|
706
|
-
var FoodType = [
|
|
706
|
+
var FoodType$ = [
|
|
707
707
|
3,
|
|
708
708
|
n0,
|
|
709
709
|
_FT,
|
|
@@ -715,7 +715,7 @@ var FoodType = [
|
|
|
715
715
|
[() => SensitiveBoolean, 0],
|
|
716
716
|
],
|
|
717
717
|
];
|
|
718
|
-
var GeocodeFilter = [
|
|
718
|
+
var GeocodeFilter$ = [
|
|
719
719
|
3,
|
|
720
720
|
n0,
|
|
721
721
|
_GF,
|
|
@@ -726,7 +726,7 @@ var GeocodeFilter = [
|
|
|
726
726
|
[() => GeocodeFilterPlaceTypeList, 0],
|
|
727
727
|
],
|
|
728
728
|
];
|
|
729
|
-
var GeocodeParsedQuery = [
|
|
729
|
+
var GeocodeParsedQuery$ = [
|
|
730
730
|
3,
|
|
731
731
|
n0,
|
|
732
732
|
_GPQ,
|
|
@@ -734,10 +734,10 @@ var GeocodeParsedQuery = [
|
|
|
734
734
|
[_T, _A],
|
|
735
735
|
[
|
|
736
736
|
[() => ParsedQueryComponentList, 0],
|
|
737
|
-
[() => GeocodeParsedQueryAddressComponents
|
|
737
|
+
[() => GeocodeParsedQueryAddressComponents$, 0],
|
|
738
738
|
],
|
|
739
739
|
];
|
|
740
|
-
var GeocodeParsedQueryAddressComponents = [
|
|
740
|
+
var GeocodeParsedQueryAddressComponents$ = [
|
|
741
741
|
3,
|
|
742
742
|
n0,
|
|
743
743
|
_GPQAC,
|
|
@@ -759,7 +759,7 @@ var GeocodeParsedQueryAddressComponents = [
|
|
|
759
759
|
[() => ParsedQuerySecondaryAddressComponentList, 0],
|
|
760
760
|
],
|
|
761
761
|
];
|
|
762
|
-
var GeocodeQueryComponents = [
|
|
762
|
+
var GeocodeQueryComponents$ = [
|
|
763
763
|
3,
|
|
764
764
|
n0,
|
|
765
765
|
_GQC,
|
|
@@ -776,7 +776,7 @@ var GeocodeQueryComponents = [
|
|
|
776
776
|
[() => SensitiveString, 0],
|
|
777
777
|
],
|
|
778
778
|
];
|
|
779
|
-
var GeocodeRequest = [
|
|
779
|
+
var GeocodeRequest$ = [
|
|
780
780
|
3,
|
|
781
781
|
n0,
|
|
782
782
|
_GR,
|
|
@@ -784,10 +784,10 @@ var GeocodeRequest = [
|
|
|
784
784
|
[_QT, _QC, _MR, _BP, _F, _AFd, _La, _PV, _IU, _K],
|
|
785
785
|
[
|
|
786
786
|
[() => SensitiveString, 0],
|
|
787
|
-
[() => GeocodeQueryComponents
|
|
787
|
+
[() => GeocodeQueryComponents$, 0],
|
|
788
788
|
1,
|
|
789
789
|
[() => Position, 0],
|
|
790
|
-
[() => GeocodeFilter
|
|
790
|
+
[() => GeocodeFilter$, 0],
|
|
791
791
|
64 | 0,
|
|
792
792
|
0,
|
|
793
793
|
[() => CountryCode, 0],
|
|
@@ -795,7 +795,7 @@ var GeocodeRequest = [
|
|
|
795
795
|
[() => ApiKey, { [_hQ]: _k }],
|
|
796
796
|
],
|
|
797
797
|
];
|
|
798
|
-
var GeocodeResponse = [
|
|
798
|
+
var GeocodeResponse$ = [
|
|
799
799
|
3,
|
|
800
800
|
n0,
|
|
801
801
|
_GRe,
|
|
@@ -806,7 +806,7 @@ var GeocodeResponse = [
|
|
|
806
806
|
[() => GeocodeResultItemList, 0],
|
|
807
807
|
],
|
|
808
808
|
];
|
|
809
|
-
var GeocodeResultItem = [
|
|
809
|
+
var GeocodeResultItem$ = [
|
|
810
810
|
3,
|
|
811
811
|
n0,
|
|
812
812
|
_GRI,
|
|
@@ -816,7 +816,7 @@ var GeocodeResultItem = [
|
|
|
816
816
|
[() => SensitiveString, 0],
|
|
817
817
|
[() => PlaceType$1, 0],
|
|
818
818
|
[() => SensitiveString, 0],
|
|
819
|
-
[() => Address
|
|
819
|
+
[() => Address$, 0],
|
|
820
820
|
[() => SensitiveBoolean, 0],
|
|
821
821
|
[() => PostalCodeDetailsList, 0],
|
|
822
822
|
[() => Position, 0],
|
|
@@ -825,16 +825,16 @@ var GeocodeResultItem = [
|
|
|
825
825
|
[() => CategoryList, 0],
|
|
826
826
|
[() => FoodTypeList, 0],
|
|
827
827
|
[() => AccessPointList, 0],
|
|
828
|
-
[() => TimeZone
|
|
828
|
+
[() => TimeZone$, 0],
|
|
829
829
|
[() => CountryCode3, 0],
|
|
830
|
-
() => MatchScoreDetails
|
|
831
|
-
[() => GeocodeParsedQuery
|
|
830
|
+
() => MatchScoreDetails$,
|
|
831
|
+
[() => GeocodeParsedQuery$, 0],
|
|
832
832
|
[() => IntersectionList, 0],
|
|
833
|
-
[() => RelatedPlace
|
|
833
|
+
[() => RelatedPlace$, 0],
|
|
834
834
|
[() => RelatedPlaceList, 0],
|
|
835
835
|
],
|
|
836
836
|
];
|
|
837
|
-
var GetPlaceRequest = [
|
|
837
|
+
var GetPlaceRequest$ = [
|
|
838
838
|
3,
|
|
839
839
|
n0,
|
|
840
840
|
_GPR,
|
|
@@ -849,7 +849,7 @@ var GetPlaceRequest = [
|
|
|
849
849
|
[() => ApiKey, { [_hQ]: _k }],
|
|
850
850
|
],
|
|
851
851
|
];
|
|
852
|
-
var GetPlaceResponse = [
|
|
852
|
+
var GetPlaceResponse$ = [
|
|
853
853
|
3,
|
|
854
854
|
n0,
|
|
855
855
|
_GPRe,
|
|
@@ -860,7 +860,7 @@ var GetPlaceResponse = [
|
|
|
860
860
|
[() => PlaceType$1, 0],
|
|
861
861
|
[() => SensitiveString, 0],
|
|
862
862
|
[0, { [_hH]: _xagpb }],
|
|
863
|
-
[() => Address
|
|
863
|
+
[() => Address$, 0],
|
|
864
864
|
[() => SensitiveBoolean, 0],
|
|
865
865
|
[() => PostalCodeDetailsList, 0],
|
|
866
866
|
[() => Position, 0],
|
|
@@ -868,19 +868,19 @@ var GetPlaceResponse = [
|
|
|
868
868
|
[() => CategoryList, 0],
|
|
869
869
|
[() => FoodTypeList, 0],
|
|
870
870
|
[() => BusinessChainList, 0],
|
|
871
|
-
[() => Contacts
|
|
871
|
+
[() => Contacts$, 0],
|
|
872
872
|
[() => OpeningHoursList, 0],
|
|
873
873
|
[() => AccessPointList, 0],
|
|
874
874
|
[() => AccessRestrictionList, 0],
|
|
875
|
-
[() => TimeZone
|
|
875
|
+
[() => TimeZone$, 0],
|
|
876
876
|
[() => CountryCode3, 0],
|
|
877
|
-
[() => PhonemeDetails
|
|
878
|
-
[() => RelatedPlace
|
|
877
|
+
[() => PhonemeDetails$, 0],
|
|
878
|
+
[() => RelatedPlace$, 0],
|
|
879
879
|
[() => RelatedPlaceList, 0],
|
|
880
880
|
],
|
|
881
881
|
];
|
|
882
|
-
var Highlight = [3, n0, _Hi, 0, [_SI, _EI, _V], [1, 1, [() => SensitiveString, 0]]];
|
|
883
|
-
var InternalServerException = [
|
|
882
|
+
var Highlight$ = [3, n0, _Hi, 0, [_SI, _EI, _V], [1, 1, [() => SensitiveString, 0]]];
|
|
883
|
+
var InternalServerException$ = [
|
|
884
884
|
-3,
|
|
885
885
|
n0,
|
|
886
886
|
_ISE,
|
|
@@ -888,8 +888,8 @@ var InternalServerException = [
|
|
|
888
888
|
[_M],
|
|
889
889
|
[[0, { [_jN]: _m }]],
|
|
890
890
|
];
|
|
891
|
-
schema.TypeRegistry.for(n0).registerError(InternalServerException
|
|
892
|
-
var Intersection = [
|
|
891
|
+
schema.TypeRegistry.for(n0).registerError(InternalServerException$, InternalServerException);
|
|
892
|
+
var Intersection$ = [
|
|
893
893
|
3,
|
|
894
894
|
n0,
|
|
895
895
|
_I,
|
|
@@ -898,7 +898,7 @@ var Intersection = [
|
|
|
898
898
|
[
|
|
899
899
|
[() => SensitiveString, 0],
|
|
900
900
|
[() => SensitiveString, 0],
|
|
901
|
-
[() => Address
|
|
901
|
+
[() => Address$, 0],
|
|
902
902
|
[() => Position, 0],
|
|
903
903
|
[() => DistanceMeters, 0],
|
|
904
904
|
[() => DistanceMeters, 0],
|
|
@@ -906,8 +906,8 @@ var Intersection = [
|
|
|
906
906
|
[() => AccessPointList, 0],
|
|
907
907
|
],
|
|
908
908
|
];
|
|
909
|
-
var MatchScoreDetails = [3, n0, _MSD, 0, [_O, _Com], [1, () => ComponentMatchScores]];
|
|
910
|
-
var OpeningHours = [
|
|
909
|
+
var MatchScoreDetails$ = [3, n0, _MSD, 0, [_O, _Com], [1, () => ComponentMatchScores$]];
|
|
910
|
+
var OpeningHours$ = [
|
|
911
911
|
3,
|
|
912
912
|
n0,
|
|
913
913
|
_OH,
|
|
@@ -920,7 +920,7 @@ var OpeningHours = [
|
|
|
920
920
|
[() => CategoryList, 0],
|
|
921
921
|
],
|
|
922
922
|
];
|
|
923
|
-
var OpeningHoursComponents = [
|
|
923
|
+
var OpeningHoursComponents$ = [
|
|
924
924
|
3,
|
|
925
925
|
n0,
|
|
926
926
|
_OHC,
|
|
@@ -932,7 +932,7 @@ var OpeningHoursComponents = [
|
|
|
932
932
|
[() => SensitiveString, 0],
|
|
933
933
|
],
|
|
934
934
|
];
|
|
935
|
-
var ParsedQueryComponent = [
|
|
935
|
+
var ParsedQueryComponent$ = [
|
|
936
936
|
3,
|
|
937
937
|
n0,
|
|
938
938
|
_PQC,
|
|
@@ -940,7 +940,7 @@ var ParsedQueryComponent = [
|
|
|
940
940
|
[_SI, _EI, _V, _QCu],
|
|
941
941
|
[1, 1, [() => SensitiveString, 0], [() => SensitiveString, 0]],
|
|
942
942
|
];
|
|
943
|
-
var ParsedQuerySecondaryAddressComponent = [
|
|
943
|
+
var ParsedQuerySecondaryAddressComponent$ = [
|
|
944
944
|
3,
|
|
945
945
|
n0,
|
|
946
946
|
_PQSAC,
|
|
@@ -948,7 +948,7 @@ var ParsedQuerySecondaryAddressComponent = [
|
|
|
948
948
|
[_SI, _EI, _V, _Nu, _De],
|
|
949
949
|
[1, 1, [() => SensitiveString, 0], [() => SensitiveString, 0], [() => SensitiveString, 0]],
|
|
950
950
|
];
|
|
951
|
-
var PhonemeDetails = [
|
|
951
|
+
var PhonemeDetails$ = [
|
|
952
952
|
3,
|
|
953
953
|
n0,
|
|
954
954
|
_PD,
|
|
@@ -956,10 +956,10 @@ var PhonemeDetails = [
|
|
|
956
956
|
[_T, _A],
|
|
957
957
|
[
|
|
958
958
|
[() => PhonemeTranscriptionList, 0],
|
|
959
|
-
[() => AddressComponentPhonemes
|
|
959
|
+
[() => AddressComponentPhonemes$, 0],
|
|
960
960
|
],
|
|
961
961
|
];
|
|
962
|
-
var PhonemeTranscription = [
|
|
962
|
+
var PhonemeTranscription$ = [
|
|
963
963
|
3,
|
|
964
964
|
n0,
|
|
965
965
|
_PTh,
|
|
@@ -967,7 +967,7 @@ var PhonemeTranscription = [
|
|
|
967
967
|
[_V, _La, _Pre],
|
|
968
968
|
[[() => SensitiveString, 0], 0, [() => SensitiveBoolean, 0]],
|
|
969
969
|
];
|
|
970
|
-
var PostalCodeDetails = [
|
|
970
|
+
var PostalCodeDetails$ = [
|
|
971
971
|
3,
|
|
972
972
|
n0,
|
|
973
973
|
_PCD,
|
|
@@ -977,11 +977,11 @@ var PostalCodeDetails = [
|
|
|
977
977
|
[() => SensitiveString, 0],
|
|
978
978
|
[() => PostalAuthority$1, 0],
|
|
979
979
|
[() => PostalCodeType$1, 0],
|
|
980
|
-
[() => UspsZip
|
|
981
|
-
[() => UspsZipPlus4
|
|
980
|
+
[() => UspsZip$, 0],
|
|
981
|
+
[() => UspsZipPlus4$, 0],
|
|
982
982
|
],
|
|
983
983
|
];
|
|
984
|
-
var QueryRefinement = [
|
|
984
|
+
var QueryRefinement$ = [
|
|
985
985
|
3,
|
|
986
986
|
n0,
|
|
987
987
|
_QR,
|
|
@@ -989,7 +989,7 @@ var QueryRefinement = [
|
|
|
989
989
|
[_RT, _OTr, _SI, _EI],
|
|
990
990
|
[[() => SensitiveString, 0], [() => SensitiveString, 0], 1, 1],
|
|
991
991
|
];
|
|
992
|
-
var Region = [
|
|
992
|
+
var Region$ = [
|
|
993
993
|
3,
|
|
994
994
|
n0,
|
|
995
995
|
_Re,
|
|
@@ -1000,7 +1000,7 @@ var Region = [
|
|
|
1000
1000
|
[() => SensitiveString, 0],
|
|
1001
1001
|
],
|
|
1002
1002
|
];
|
|
1003
|
-
var RegionHighlights = [
|
|
1003
|
+
var RegionHighlights$ = [
|
|
1004
1004
|
3,
|
|
1005
1005
|
n0,
|
|
1006
1006
|
_RH,
|
|
@@ -1011,7 +1011,7 @@ var RegionHighlights = [
|
|
|
1011
1011
|
[() => HighlightList, 0],
|
|
1012
1012
|
],
|
|
1013
1013
|
];
|
|
1014
|
-
var RelatedPlace = [
|
|
1014
|
+
var RelatedPlace$ = [
|
|
1015
1015
|
3,
|
|
1016
1016
|
n0,
|
|
1017
1017
|
_RP,
|
|
@@ -1021,13 +1021,13 @@ var RelatedPlace = [
|
|
|
1021
1021
|
[() => SensitiveString, 0],
|
|
1022
1022
|
[() => PlaceType$1, 0],
|
|
1023
1023
|
[() => SensitiveString, 0],
|
|
1024
|
-
[() => Address
|
|
1024
|
+
[() => Address$, 0],
|
|
1025
1025
|
[() => Position, 0],
|
|
1026
1026
|
[() => AccessPointList, 0],
|
|
1027
1027
|
],
|
|
1028
1028
|
];
|
|
1029
|
-
var ReverseGeocodeFilter = [3, n0, _RGF, 0, [_IPT], [64 | 0]];
|
|
1030
|
-
var ReverseGeocodeRequest = [
|
|
1029
|
+
var ReverseGeocodeFilter$ = [3, n0, _RGF, 0, [_IPT], [64 | 0]];
|
|
1030
|
+
var ReverseGeocodeRequest$ = [
|
|
1031
1031
|
3,
|
|
1032
1032
|
n0,
|
|
1033
1033
|
_RGR,
|
|
@@ -1037,7 +1037,7 @@ var ReverseGeocodeRequest = [
|
|
|
1037
1037
|
[() => Position, 0],
|
|
1038
1038
|
[() => DistanceMeters, 0],
|
|
1039
1039
|
1,
|
|
1040
|
-
() => ReverseGeocodeFilter
|
|
1040
|
+
() => ReverseGeocodeFilter$,
|
|
1041
1041
|
64 | 0,
|
|
1042
1042
|
0,
|
|
1043
1043
|
[() => CountryCode, 0],
|
|
@@ -1045,7 +1045,7 @@ var ReverseGeocodeRequest = [
|
|
|
1045
1045
|
[() => ApiKey, { [_hQ]: _k }],
|
|
1046
1046
|
],
|
|
1047
1047
|
];
|
|
1048
|
-
var ReverseGeocodeResponse = [
|
|
1048
|
+
var ReverseGeocodeResponse$ = [
|
|
1049
1049
|
3,
|
|
1050
1050
|
n0,
|
|
1051
1051
|
_RGRe,
|
|
@@ -1056,7 +1056,7 @@ var ReverseGeocodeResponse = [
|
|
|
1056
1056
|
[() => ReverseGeocodeResultItemList, 0],
|
|
1057
1057
|
],
|
|
1058
1058
|
];
|
|
1059
|
-
var ReverseGeocodeResultItem = [
|
|
1059
|
+
var ReverseGeocodeResultItem$ = [
|
|
1060
1060
|
3,
|
|
1061
1061
|
n0,
|
|
1062
1062
|
_RGRI,
|
|
@@ -1066,7 +1066,7 @@ var ReverseGeocodeResultItem = [
|
|
|
1066
1066
|
[() => SensitiveString, 0],
|
|
1067
1067
|
[() => PlaceType$1, 0],
|
|
1068
1068
|
[() => SensitiveString, 0],
|
|
1069
|
-
[() => Address
|
|
1069
|
+
[() => Address$, 0],
|
|
1070
1070
|
[() => SensitiveBoolean, 0],
|
|
1071
1071
|
[() => PostalCodeDetailsList, 0],
|
|
1072
1072
|
[() => Position, 0],
|
|
@@ -1075,12 +1075,12 @@ var ReverseGeocodeResultItem = [
|
|
|
1075
1075
|
[() => CategoryList, 0],
|
|
1076
1076
|
[() => FoodTypeList, 0],
|
|
1077
1077
|
[() => AccessPointList, 0],
|
|
1078
|
-
[() => TimeZone
|
|
1078
|
+
[() => TimeZone$, 0],
|
|
1079
1079
|
[() => CountryCode3, 0],
|
|
1080
1080
|
[() => IntersectionList, 0],
|
|
1081
1081
|
],
|
|
1082
1082
|
];
|
|
1083
|
-
var SearchNearbyFilter = [
|
|
1083
|
+
var SearchNearbyFilter$ = [
|
|
1084
1084
|
3,
|
|
1085
1085
|
n0,
|
|
1086
1086
|
_SNF,
|
|
@@ -1097,7 +1097,7 @@ var SearchNearbyFilter = [
|
|
|
1097
1097
|
[() => FilterFoodTypeList, 0],
|
|
1098
1098
|
],
|
|
1099
1099
|
];
|
|
1100
|
-
var SearchNearbyRequest = [
|
|
1100
|
+
var SearchNearbyRequest$ = [
|
|
1101
1101
|
3,
|
|
1102
1102
|
n0,
|
|
1103
1103
|
_SNR,
|
|
@@ -1107,7 +1107,7 @@ var SearchNearbyRequest = [
|
|
|
1107
1107
|
[() => Position, 0],
|
|
1108
1108
|
[() => DistanceMeters, 0],
|
|
1109
1109
|
1,
|
|
1110
|
-
[() => SearchNearbyFilter
|
|
1110
|
+
[() => SearchNearbyFilter$, 0],
|
|
1111
1111
|
64 | 0,
|
|
1112
1112
|
0,
|
|
1113
1113
|
[() => CountryCode, 0],
|
|
@@ -1116,7 +1116,7 @@ var SearchNearbyRequest = [
|
|
|
1116
1116
|
[() => ApiKey, { [_hQ]: _k }],
|
|
1117
1117
|
],
|
|
1118
1118
|
];
|
|
1119
|
-
var SearchNearbyResponse = [
|
|
1119
|
+
var SearchNearbyResponse$ = [
|
|
1120
1120
|
3,
|
|
1121
1121
|
n0,
|
|
1122
1122
|
_SNRe,
|
|
@@ -1124,7 +1124,7 @@ var SearchNearbyResponse = [
|
|
|
1124
1124
|
[_PB, _RI, _NT],
|
|
1125
1125
|
[[0, { [_hH]: _xagpb }], [() => SearchNearbyResultItemList, 0], 0],
|
|
1126
1126
|
];
|
|
1127
|
-
var SearchNearbyResultItem = [
|
|
1127
|
+
var SearchNearbyResultItem$ = [
|
|
1128
1128
|
3,
|
|
1129
1129
|
n0,
|
|
1130
1130
|
_SNRI,
|
|
@@ -1134,7 +1134,7 @@ var SearchNearbyResultItem = [
|
|
|
1134
1134
|
[() => SensitiveString, 0],
|
|
1135
1135
|
[() => PlaceType$1, 0],
|
|
1136
1136
|
[() => SensitiveString, 0],
|
|
1137
|
-
[() => Address
|
|
1137
|
+
[() => Address$, 0],
|
|
1138
1138
|
[() => SensitiveBoolean, 0],
|
|
1139
1139
|
[() => Position, 0],
|
|
1140
1140
|
[() => DistanceMeters, 0],
|
|
@@ -1142,16 +1142,16 @@ var SearchNearbyResultItem = [
|
|
|
1142
1142
|
[() => CategoryList, 0],
|
|
1143
1143
|
[() => FoodTypeList, 0],
|
|
1144
1144
|
[() => BusinessChainList, 0],
|
|
1145
|
-
[() => Contacts
|
|
1145
|
+
[() => Contacts$, 0],
|
|
1146
1146
|
[() => OpeningHoursList, 0],
|
|
1147
1147
|
[() => AccessPointList, 0],
|
|
1148
1148
|
[() => AccessRestrictionList, 0],
|
|
1149
|
-
[() => TimeZone
|
|
1149
|
+
[() => TimeZone$, 0],
|
|
1150
1150
|
[() => CountryCode3, 0],
|
|
1151
|
-
[() => PhonemeDetails
|
|
1151
|
+
[() => PhonemeDetails$, 0],
|
|
1152
1152
|
],
|
|
1153
1153
|
];
|
|
1154
|
-
var SearchTextFilter = [
|
|
1154
|
+
var SearchTextFilter$ = [
|
|
1155
1155
|
3,
|
|
1156
1156
|
n0,
|
|
1157
1157
|
_STF,
|
|
@@ -1159,11 +1159,11 @@ var SearchTextFilter = [
|
|
|
1159
1159
|
[_BB, _Ci, _IC],
|
|
1160
1160
|
[
|
|
1161
1161
|
[() => BoundingBox, 0],
|
|
1162
|
-
[() => FilterCircle
|
|
1162
|
+
[() => FilterCircle$, 0],
|
|
1163
1163
|
[() => CountryCodeList, 0],
|
|
1164
1164
|
],
|
|
1165
1165
|
];
|
|
1166
|
-
var SearchTextRequest = [
|
|
1166
|
+
var SearchTextRequest$ = [
|
|
1167
1167
|
3,
|
|
1168
1168
|
n0,
|
|
1169
1169
|
_STR,
|
|
@@ -1174,7 +1174,7 @@ var SearchTextRequest = [
|
|
|
1174
1174
|
[() => SensitiveString, 0],
|
|
1175
1175
|
1,
|
|
1176
1176
|
[() => Position, 0],
|
|
1177
|
-
[() => SearchTextFilter
|
|
1177
|
+
[() => SearchTextFilter$, 0],
|
|
1178
1178
|
64 | 0,
|
|
1179
1179
|
0,
|
|
1180
1180
|
[() => CountryCode, 0],
|
|
@@ -1183,7 +1183,7 @@ var SearchTextRequest = [
|
|
|
1183
1183
|
[() => ApiKey, { [_hQ]: _k }],
|
|
1184
1184
|
],
|
|
1185
1185
|
];
|
|
1186
|
-
var SearchTextResponse = [
|
|
1186
|
+
var SearchTextResponse$ = [
|
|
1187
1187
|
3,
|
|
1188
1188
|
n0,
|
|
1189
1189
|
_STRe,
|
|
@@ -1191,7 +1191,7 @@ var SearchTextResponse = [
|
|
|
1191
1191
|
[_PB, _RI, _NT],
|
|
1192
1192
|
[[0, { [_hH]: _xagpb }], [() => SearchTextResultItemList, 0], 0],
|
|
1193
1193
|
];
|
|
1194
|
-
var SearchTextResultItem = [
|
|
1194
|
+
var SearchTextResultItem$ = [
|
|
1195
1195
|
3,
|
|
1196
1196
|
n0,
|
|
1197
1197
|
_STRI,
|
|
@@ -1201,7 +1201,7 @@ var SearchTextResultItem = [
|
|
|
1201
1201
|
[() => SensitiveString, 0],
|
|
1202
1202
|
[() => PlaceType$1, 0],
|
|
1203
1203
|
[() => SensitiveString, 0],
|
|
1204
|
-
[() => Address
|
|
1204
|
+
[() => Address$, 0],
|
|
1205
1205
|
[() => SensitiveBoolean, 0],
|
|
1206
1206
|
[() => Position, 0],
|
|
1207
1207
|
[() => DistanceMeters, 0],
|
|
@@ -1209,18 +1209,18 @@ var SearchTextResultItem = [
|
|
|
1209
1209
|
[() => CategoryList, 0],
|
|
1210
1210
|
[() => FoodTypeList, 0],
|
|
1211
1211
|
[() => BusinessChainList, 0],
|
|
1212
|
-
[() => Contacts
|
|
1212
|
+
[() => Contacts$, 0],
|
|
1213
1213
|
[() => OpeningHoursList, 0],
|
|
1214
1214
|
[() => AccessPointList, 0],
|
|
1215
1215
|
[() => AccessRestrictionList, 0],
|
|
1216
|
-
[() => TimeZone
|
|
1216
|
+
[() => TimeZone$, 0],
|
|
1217
1217
|
[() => CountryCode3, 0],
|
|
1218
|
-
[() => PhonemeDetails
|
|
1218
|
+
[() => PhonemeDetails$, 0],
|
|
1219
1219
|
],
|
|
1220
1220
|
];
|
|
1221
|
-
var SecondaryAddressComponent = [3, n0, _SACe, 0, [_Nu], [[() => SensitiveString, 0]]];
|
|
1222
|
-
var SecondaryAddressComponentMatchScore = [3, n0, _SACMS, 0, [_Nu], [1]];
|
|
1223
|
-
var StreetComponents = [
|
|
1221
|
+
var SecondaryAddressComponent$ = [3, n0, _SACe, 0, [_Nu], [[() => SensitiveString, 0]]];
|
|
1222
|
+
var SecondaryAddressComponentMatchScore$ = [3, n0, _SACMS, 0, [_Nu], [1]];
|
|
1223
|
+
var StreetComponents$ = [
|
|
1224
1224
|
3,
|
|
1225
1225
|
n0,
|
|
1226
1226
|
_SC,
|
|
@@ -1237,7 +1237,7 @@ var StreetComponents = [
|
|
|
1237
1237
|
0,
|
|
1238
1238
|
],
|
|
1239
1239
|
];
|
|
1240
|
-
var SubRegion = [
|
|
1240
|
+
var SubRegion$ = [
|
|
1241
1241
|
3,
|
|
1242
1242
|
n0,
|
|
1243
1243
|
_SR,
|
|
@@ -1248,7 +1248,7 @@ var SubRegion = [
|
|
|
1248
1248
|
[() => SensitiveString, 0],
|
|
1249
1249
|
],
|
|
1250
1250
|
];
|
|
1251
|
-
var SubRegionHighlights = [
|
|
1251
|
+
var SubRegionHighlights$ = [
|
|
1252
1252
|
3,
|
|
1253
1253
|
n0,
|
|
1254
1254
|
_SRH,
|
|
@@ -1259,8 +1259,8 @@ var SubRegionHighlights = [
|
|
|
1259
1259
|
[() => HighlightList, 0],
|
|
1260
1260
|
],
|
|
1261
1261
|
];
|
|
1262
|
-
var SuggestAddressHighlights = [3, n0, _SAH, 0, [_L], [[() => HighlightList, 0]]];
|
|
1263
|
-
var SuggestFilter = [
|
|
1262
|
+
var SuggestAddressHighlights$ = [3, n0, _SAH, 0, [_L], [[() => HighlightList, 0]]];
|
|
1263
|
+
var SuggestFilter$ = [
|
|
1264
1264
|
3,
|
|
1265
1265
|
n0,
|
|
1266
1266
|
_SF,
|
|
@@ -1268,11 +1268,11 @@ var SuggestFilter = [
|
|
|
1268
1268
|
[_BB, _Ci, _IC],
|
|
1269
1269
|
[
|
|
1270
1270
|
[() => BoundingBox, 0],
|
|
1271
|
-
[() => FilterCircle
|
|
1271
|
+
[() => FilterCircle$, 0],
|
|
1272
1272
|
[() => CountryCodeList, 0],
|
|
1273
1273
|
],
|
|
1274
1274
|
];
|
|
1275
|
-
var SuggestHighlights = [
|
|
1275
|
+
var SuggestHighlights$ = [
|
|
1276
1276
|
3,
|
|
1277
1277
|
n0,
|
|
1278
1278
|
_SH,
|
|
@@ -1280,10 +1280,10 @@ var SuggestHighlights = [
|
|
|
1280
1280
|
[_T, _A],
|
|
1281
1281
|
[
|
|
1282
1282
|
[() => HighlightList, 0],
|
|
1283
|
-
[() => SuggestAddressHighlights
|
|
1283
|
+
[() => SuggestAddressHighlights$, 0],
|
|
1284
1284
|
],
|
|
1285
1285
|
];
|
|
1286
|
-
var SuggestPlaceResult = [
|
|
1286
|
+
var SuggestPlaceResult$ = [
|
|
1287
1287
|
3,
|
|
1288
1288
|
n0,
|
|
1289
1289
|
_SPR,
|
|
@@ -1292,7 +1292,7 @@ var SuggestPlaceResult = [
|
|
|
1292
1292
|
[
|
|
1293
1293
|
[() => SensitiveString, 0],
|
|
1294
1294
|
[() => PlaceType$1, 0],
|
|
1295
|
-
[() => Address
|
|
1295
|
+
[() => Address$, 0],
|
|
1296
1296
|
[() => Position, 0],
|
|
1297
1297
|
[() => DistanceMeters, 0],
|
|
1298
1298
|
[() => BoundingBox, 0],
|
|
@@ -1301,13 +1301,13 @@ var SuggestPlaceResult = [
|
|
|
1301
1301
|
[() => BusinessChainList, 0],
|
|
1302
1302
|
[() => AccessPointList, 0],
|
|
1303
1303
|
[() => AccessRestrictionList, 0],
|
|
1304
|
-
[() => TimeZone
|
|
1304
|
+
[() => TimeZone$, 0],
|
|
1305
1305
|
[() => CountryCode3, 0],
|
|
1306
|
-
[() => PhonemeDetails
|
|
1306
|
+
[() => PhonemeDetails$, 0],
|
|
1307
1307
|
],
|
|
1308
1308
|
];
|
|
1309
|
-
var SuggestQueryResult = [3, n0, _SQR, 0, [_QI, _QTu], [[() => SensitiveString, 0], 0]];
|
|
1310
|
-
var SuggestRequest = [
|
|
1309
|
+
var SuggestQueryResult$ = [3, n0, _SQR, 0, [_QI, _QTu], [[() => SensitiveString, 0], 0]];
|
|
1310
|
+
var SuggestRequest$ = [
|
|
1311
1311
|
3,
|
|
1312
1312
|
n0,
|
|
1313
1313
|
_SRu,
|
|
@@ -1318,7 +1318,7 @@ var SuggestRequest = [
|
|
|
1318
1318
|
1,
|
|
1319
1319
|
1,
|
|
1320
1320
|
[() => Position, 0],
|
|
1321
|
-
[() => SuggestFilter
|
|
1321
|
+
[() => SuggestFilter$, 0],
|
|
1322
1322
|
64 | 0,
|
|
1323
1323
|
0,
|
|
1324
1324
|
[() => CountryCode, 0],
|
|
@@ -1326,7 +1326,7 @@ var SuggestRequest = [
|
|
|
1326
1326
|
[() => ApiKey, { [_hQ]: _k }],
|
|
1327
1327
|
],
|
|
1328
1328
|
];
|
|
1329
|
-
var SuggestResponse = [
|
|
1329
|
+
var SuggestResponse$ = [
|
|
1330
1330
|
3,
|
|
1331
1331
|
n0,
|
|
1332
1332
|
_SRug,
|
|
@@ -1338,7 +1338,7 @@ var SuggestResponse = [
|
|
|
1338
1338
|
[() => QueryRefinementList, 0],
|
|
1339
1339
|
],
|
|
1340
1340
|
];
|
|
1341
|
-
var SuggestResultItem = [
|
|
1341
|
+
var SuggestResultItem$ = [
|
|
1342
1342
|
3,
|
|
1343
1343
|
n0,
|
|
1344
1344
|
_SRI,
|
|
@@ -1347,14 +1347,21 @@ var SuggestResultItem = [
|
|
|
1347
1347
|
[
|
|
1348
1348
|
[() => SensitiveString, 0],
|
|
1349
1349
|
0,
|
|
1350
|
-
[() => SuggestPlaceResult
|
|
1351
|
-
[() => SuggestQueryResult
|
|
1352
|
-
[() => SuggestHighlights
|
|
1350
|
+
[() => SuggestPlaceResult$, 0],
|
|
1351
|
+
[() => SuggestQueryResult$, 0],
|
|
1352
|
+
[() => SuggestHighlights$, 0],
|
|
1353
1353
|
],
|
|
1354
1354
|
];
|
|
1355
|
-
var ThrottlingException = [
|
|
1356
|
-
|
|
1357
|
-
|
|
1355
|
+
var ThrottlingException$ = [
|
|
1356
|
+
-3,
|
|
1357
|
+
n0,
|
|
1358
|
+
_TE,
|
|
1359
|
+
{ [_e]: _c, [_hE]: 429 },
|
|
1360
|
+
[_M],
|
|
1361
|
+
[[0, { [_jN]: _m }]],
|
|
1362
|
+
];
|
|
1363
|
+
schema.TypeRegistry.for(n0).registerError(ThrottlingException$, ThrottlingException);
|
|
1364
|
+
var TimeZone$ = [
|
|
1358
1365
|
3,
|
|
1359
1366
|
n0,
|
|
1360
1367
|
_TZ,
|
|
@@ -1366,9 +1373,9 @@ var TimeZone = [
|
|
|
1366
1373
|
[() => DurationSeconds, 0],
|
|
1367
1374
|
],
|
|
1368
1375
|
];
|
|
1369
|
-
var UspsZip = [3, n0, _UZ, 0, [_ZCC], [[() => ZipClassificationCode$1, 0]]];
|
|
1370
|
-
var UspsZipPlus4 = [3, n0, _UZP, 0, [_RTC], [[() => RecordTypeCode$1, 0]]];
|
|
1371
|
-
var ValidationException = [
|
|
1376
|
+
var UspsZip$ = [3, n0, _UZ, 0, [_ZCC], [[() => ZipClassificationCode$1, 0]]];
|
|
1377
|
+
var UspsZipPlus4$ = [3, n0, _UZP, 0, [_RTC], [[() => RecordTypeCode$1, 0]]];
|
|
1378
|
+
var ValidationException$ = [
|
|
1372
1379
|
-3,
|
|
1373
1380
|
n0,
|
|
1374
1381
|
_VE,
|
|
@@ -1380,8 +1387,8 @@ var ValidationException = [
|
|
|
1380
1387
|
[() => ValidationExceptionFieldList, { [_jN]: _fL }],
|
|
1381
1388
|
],
|
|
1382
1389
|
];
|
|
1383
|
-
schema.TypeRegistry.for(n0).registerError(ValidationException
|
|
1384
|
-
var ValidationExceptionField = [
|
|
1390
|
+
schema.TypeRegistry.for(n0).registerError(ValidationException$, ValidationException);
|
|
1391
|
+
var ValidationExceptionField$ = [
|
|
1385
1392
|
3,
|
|
1386
1393
|
n0,
|
|
1387
1394
|
_VEF,
|
|
@@ -1392,110 +1399,110 @@ var ValidationExceptionField = [
|
|
|
1392
1399
|
[0, { [_jN]: _m }],
|
|
1393
1400
|
],
|
|
1394
1401
|
];
|
|
1395
|
-
var GeoPlacesServiceException = [-3, _sm, "GeoPlacesServiceException", 0, [], []];
|
|
1396
|
-
schema.TypeRegistry.for(_sm).registerError(GeoPlacesServiceException
|
|
1397
|
-
var AccessPointList = [1, n0, _APL, 0, [() => AccessPoint
|
|
1398
|
-
var AccessRestrictionList = [1, n0, _ARL, 0, [() => AccessRestriction
|
|
1399
|
-
var AutocompleteResultItemList = [1, n0, _ARIL, 0, [() => AutocompleteResultItem
|
|
1402
|
+
var GeoPlacesServiceException$ = [-3, _sm, "GeoPlacesServiceException", 0, [], []];
|
|
1403
|
+
schema.TypeRegistry.for(_sm).registerError(GeoPlacesServiceException$, GeoPlacesServiceException);
|
|
1404
|
+
var AccessPointList = [1, n0, _APL, 0, [() => AccessPoint$, 0]];
|
|
1405
|
+
var AccessRestrictionList = [1, n0, _ARL, 0, [() => AccessRestriction$, 0]];
|
|
1406
|
+
var AutocompleteResultItemList = [1, n0, _ARIL, 0, [() => AutocompleteResultItem$, 0]];
|
|
1400
1407
|
var BoundingBox = [1, n0, _BB, 8, 1];
|
|
1401
|
-
var BusinessChainList = [1, n0, _BCL, 0, [() => BusinessChain
|
|
1402
|
-
var CategoryList = [1, n0, _CL, 0, [() => Category
|
|
1403
|
-
var ContactDetailsList = [1, n0, _CDL, 0, [() => ContactDetails
|
|
1408
|
+
var BusinessChainList = [1, n0, _BCL, 0, [() => BusinessChain$, 0]];
|
|
1409
|
+
var CategoryList = [1, n0, _CL, 0, [() => Category$, 0]];
|
|
1410
|
+
var ContactDetailsList = [1, n0, _CDL, 0, [() => ContactDetails$, 0]];
|
|
1404
1411
|
var CountryCodeList = [1, n0, _CCL, 0, [() => CountryCode, 0]];
|
|
1405
1412
|
var FilterBusinessChainList = [1, n0, _FBCL, 0, [() => SensitiveString, 0]];
|
|
1406
1413
|
var FilterCategoryList = [1, n0, _FCL, 0, [() => SensitiveString, 0]];
|
|
1407
1414
|
var FilterFoodTypeList = [1, n0, _FFTL, 0, [() => SensitiveString, 0]];
|
|
1408
|
-
var FoodTypeList = [1, n0, _FTL, 0, [() => FoodType
|
|
1415
|
+
var FoodTypeList = [1, n0, _FTL, 0, [() => FoodType$, 0]];
|
|
1409
1416
|
var GeocodeFilterPlaceTypeList = [1, n0, _GFPTL, 0, [() => GeocodeFilterPlaceType$1, 0]];
|
|
1410
|
-
var GeocodeResultItemList = [1, n0, _GRIL, 0, [() => GeocodeResultItem
|
|
1411
|
-
var HighlightList = [1, n0, _HL, 0, [() => Highlight
|
|
1417
|
+
var GeocodeResultItemList = [1, n0, _GRIL, 0, [() => GeocodeResultItem$, 0]];
|
|
1418
|
+
var HighlightList = [1, n0, _HL, 0, [() => Highlight$, 0]];
|
|
1412
1419
|
var IntersectionHighlightsList = [1, n0, _IHL, 0, [() => HighlightList, 0]];
|
|
1413
|
-
var IntersectionList = [1, n0, _IL, 0, [() => Intersection
|
|
1414
|
-
var OpeningHoursComponentsList = [1, n0, _OHCL, 0, [() => OpeningHoursComponents
|
|
1420
|
+
var IntersectionList = [1, n0, _IL, 0, [() => Intersection$, 0]];
|
|
1421
|
+
var OpeningHoursComponentsList = [1, n0, _OHCL, 0, [() => OpeningHoursComponents$, 0]];
|
|
1415
1422
|
var OpeningHoursDisplayList = [1, n0, _OHDL, 0, [() => OpeningHoursDisplay, 0]];
|
|
1416
|
-
var OpeningHoursList = [1, n0, _OHL, 0, [() => OpeningHours
|
|
1417
|
-
var ParsedQueryComponentList = [1, n0, _PQCL, 0, [() => ParsedQueryComponent
|
|
1423
|
+
var OpeningHoursList = [1, n0, _OHL, 0, [() => OpeningHours$, 0]];
|
|
1424
|
+
var ParsedQueryComponentList = [1, n0, _PQCL, 0, [() => ParsedQueryComponent$, 0]];
|
|
1418
1425
|
var ParsedQuerySecondaryAddressComponentList = [
|
|
1419
1426
|
1,
|
|
1420
1427
|
n0,
|
|
1421
1428
|
_PQSACL,
|
|
1422
1429
|
0,
|
|
1423
|
-
[() => ParsedQuerySecondaryAddressComponent
|
|
1430
|
+
[() => ParsedQuerySecondaryAddressComponent$, 0],
|
|
1424
1431
|
];
|
|
1425
|
-
var PhonemeTranscriptionList = [1, n0, _PTL, 0, [() => PhonemeTranscription
|
|
1432
|
+
var PhonemeTranscriptionList = [1, n0, _PTL, 0, [() => PhonemeTranscription$, 0]];
|
|
1426
1433
|
var Position = [1, n0, _P, 8, 1];
|
|
1427
|
-
var PostalCodeDetailsList = [1, n0, _PCDL, 0, [() => PostalCodeDetails
|
|
1428
|
-
var QueryRefinementList = [1, n0, _QRL, 0, [() => QueryRefinement
|
|
1429
|
-
var RelatedPlaceList = [1, n0, _RPL, 0, [() => RelatedPlace
|
|
1430
|
-
var ReverseGeocodeResultItemList = [1, n0, _RGRIL, 0, [() => ReverseGeocodeResultItem
|
|
1431
|
-
var SearchNearbyResultItemList = [1, n0, _SNRIL, 0, [() => SearchNearbyResultItem
|
|
1432
|
-
var SearchTextResultItemList = [1, n0, _STRIL, 0, [() => SearchTextResultItem
|
|
1433
|
-
var SecondaryAddressComponentList = [1, n0, _SACL, 0, [() => SecondaryAddressComponent
|
|
1434
|
+
var PostalCodeDetailsList = [1, n0, _PCDL, 0, [() => PostalCodeDetails$, 0]];
|
|
1435
|
+
var QueryRefinementList = [1, n0, _QRL, 0, [() => QueryRefinement$, 0]];
|
|
1436
|
+
var RelatedPlaceList = [1, n0, _RPL, 0, [() => RelatedPlace$, 0]];
|
|
1437
|
+
var ReverseGeocodeResultItemList = [1, n0, _RGRIL, 0, [() => ReverseGeocodeResultItem$, 0]];
|
|
1438
|
+
var SearchNearbyResultItemList = [1, n0, _SNRIL, 0, [() => SearchNearbyResultItem$, 0]];
|
|
1439
|
+
var SearchTextResultItemList = [1, n0, _STRIL, 0, [() => SearchTextResultItem$, 0]];
|
|
1440
|
+
var SecondaryAddressComponentList = [1, n0, _SACL, 0, [() => SecondaryAddressComponent$, 0]];
|
|
1434
1441
|
var SecondaryAddressComponentMatchScoreList = [
|
|
1435
1442
|
1,
|
|
1436
1443
|
n0,
|
|
1437
1444
|
_SACMSL,
|
|
1438
1445
|
0,
|
|
1439
|
-
() => SecondaryAddressComponentMatchScore
|
|
1446
|
+
() => SecondaryAddressComponentMatchScore$,
|
|
1440
1447
|
];
|
|
1441
|
-
var StreetComponentsList = [1, n0, _SCL, 0, [() => StreetComponents
|
|
1442
|
-
var SuggestResultItemList = [1, n0, _SRIL, 0, [() => SuggestResultItem
|
|
1443
|
-
var ValidationExceptionFieldList = [1, n0, _VEFL, 0, [() => ValidationExceptionField
|
|
1444
|
-
var Autocomplete = [
|
|
1448
|
+
var StreetComponentsList = [1, n0, _SCL, 0, [() => StreetComponents$, 0]];
|
|
1449
|
+
var SuggestResultItemList = [1, n0, _SRIL, 0, [() => SuggestResultItem$, 0]];
|
|
1450
|
+
var ValidationExceptionFieldList = [1, n0, _VEFL, 0, [() => ValidationExceptionField$, 0]];
|
|
1451
|
+
var Autocomplete$ = [
|
|
1445
1452
|
9,
|
|
1446
1453
|
n0,
|
|
1447
1454
|
_Au,
|
|
1448
1455
|
{ [_h]: ["POST", "/autocomplete", 200] },
|
|
1449
|
-
() => AutocompleteRequest
|
|
1450
|
-
() => AutocompleteResponse
|
|
1456
|
+
() => AutocompleteRequest$,
|
|
1457
|
+
() => AutocompleteResponse$,
|
|
1451
1458
|
];
|
|
1452
|
-
var Geocode = [
|
|
1459
|
+
var Geocode$ = [
|
|
1453
1460
|
9,
|
|
1454
1461
|
n0,
|
|
1455
1462
|
_G,
|
|
1456
1463
|
{ [_h]: ["POST", "/geocode", 200] },
|
|
1457
|
-
() => GeocodeRequest
|
|
1458
|
-
() => GeocodeResponse
|
|
1464
|
+
() => GeocodeRequest$,
|
|
1465
|
+
() => GeocodeResponse$,
|
|
1459
1466
|
];
|
|
1460
|
-
var GetPlace = [
|
|
1467
|
+
var GetPlace$ = [
|
|
1461
1468
|
9,
|
|
1462
1469
|
n0,
|
|
1463
1470
|
_GP,
|
|
1464
1471
|
{ [_h]: ["GET", "/place/{PlaceId}", 200] },
|
|
1465
|
-
() => GetPlaceRequest
|
|
1466
|
-
() => GetPlaceResponse
|
|
1472
|
+
() => GetPlaceRequest$,
|
|
1473
|
+
() => GetPlaceResponse$,
|
|
1467
1474
|
];
|
|
1468
|
-
var ReverseGeocode = [
|
|
1475
|
+
var ReverseGeocode$ = [
|
|
1469
1476
|
9,
|
|
1470
1477
|
n0,
|
|
1471
1478
|
_RG,
|
|
1472
1479
|
{ [_h]: ["POST", "/reverse-geocode", 200] },
|
|
1473
|
-
() => ReverseGeocodeRequest
|
|
1474
|
-
() => ReverseGeocodeResponse
|
|
1480
|
+
() => ReverseGeocodeRequest$,
|
|
1481
|
+
() => ReverseGeocodeResponse$,
|
|
1475
1482
|
];
|
|
1476
|
-
var SearchNearby = [
|
|
1483
|
+
var SearchNearby$ = [
|
|
1477
1484
|
9,
|
|
1478
1485
|
n0,
|
|
1479
1486
|
_SN,
|
|
1480
1487
|
{ [_h]: ["POST", "/search-nearby", 200] },
|
|
1481
|
-
() => SearchNearbyRequest
|
|
1482
|
-
() => SearchNearbyResponse
|
|
1488
|
+
() => SearchNearbyRequest$,
|
|
1489
|
+
() => SearchNearbyResponse$,
|
|
1483
1490
|
];
|
|
1484
|
-
var SearchText = [
|
|
1491
|
+
var SearchText$ = [
|
|
1485
1492
|
9,
|
|
1486
1493
|
n0,
|
|
1487
1494
|
_ST,
|
|
1488
1495
|
{ [_h]: ["POST", "/search-text", 200] },
|
|
1489
|
-
() => SearchTextRequest
|
|
1490
|
-
() => SearchTextResponse
|
|
1496
|
+
() => SearchTextRequest$,
|
|
1497
|
+
() => SearchTextResponse$,
|
|
1491
1498
|
];
|
|
1492
|
-
var Suggest = [
|
|
1499
|
+
var Suggest$ = [
|
|
1493
1500
|
9,
|
|
1494
1501
|
n0,
|
|
1495
1502
|
_Sug,
|
|
1496
1503
|
{ [_h]: ["POST", "/suggest", 200] },
|
|
1497
|
-
() => SuggestRequest
|
|
1498
|
-
() => SuggestResponse
|
|
1504
|
+
() => SuggestRequest$,
|
|
1505
|
+
() => SuggestResponse$,
|
|
1499
1506
|
];
|
|
1500
1507
|
|
|
1501
1508
|
class AutocompleteCommand extends smithyClient.Command
|
|
@@ -1506,7 +1513,7 @@ class AutocompleteCommand extends smithyClient.Command
|
|
|
1506
1513
|
})
|
|
1507
1514
|
.s("PlacesService", "Autocomplete", {})
|
|
1508
1515
|
.n("GeoPlacesClient", "AutocompleteCommand")
|
|
1509
|
-
.sc(Autocomplete)
|
|
1516
|
+
.sc(Autocomplete$)
|
|
1510
1517
|
.build() {
|
|
1511
1518
|
}
|
|
1512
1519
|
|
|
@@ -1518,7 +1525,7 @@ class GeocodeCommand extends smithyClient.Command
|
|
|
1518
1525
|
})
|
|
1519
1526
|
.s("PlacesService", "Geocode", {})
|
|
1520
1527
|
.n("GeoPlacesClient", "GeocodeCommand")
|
|
1521
|
-
.sc(Geocode)
|
|
1528
|
+
.sc(Geocode$)
|
|
1522
1529
|
.build() {
|
|
1523
1530
|
}
|
|
1524
1531
|
|
|
@@ -1530,7 +1537,7 @@ class GetPlaceCommand extends smithyClient.Command
|
|
|
1530
1537
|
})
|
|
1531
1538
|
.s("PlacesService", "GetPlace", {})
|
|
1532
1539
|
.n("GeoPlacesClient", "GetPlaceCommand")
|
|
1533
|
-
.sc(GetPlace)
|
|
1540
|
+
.sc(GetPlace$)
|
|
1534
1541
|
.build() {
|
|
1535
1542
|
}
|
|
1536
1543
|
|
|
@@ -1542,7 +1549,7 @@ class ReverseGeocodeCommand extends smithyClient.Command
|
|
|
1542
1549
|
})
|
|
1543
1550
|
.s("PlacesService", "ReverseGeocode", {})
|
|
1544
1551
|
.n("GeoPlacesClient", "ReverseGeocodeCommand")
|
|
1545
|
-
.sc(ReverseGeocode)
|
|
1552
|
+
.sc(ReverseGeocode$)
|
|
1546
1553
|
.build() {
|
|
1547
1554
|
}
|
|
1548
1555
|
|
|
@@ -1554,7 +1561,7 @@ class SearchNearbyCommand extends smithyClient.Command
|
|
|
1554
1561
|
})
|
|
1555
1562
|
.s("PlacesService", "SearchNearby", {})
|
|
1556
1563
|
.n("GeoPlacesClient", "SearchNearbyCommand")
|
|
1557
|
-
.sc(SearchNearby)
|
|
1564
|
+
.sc(SearchNearby$)
|
|
1558
1565
|
.build() {
|
|
1559
1566
|
}
|
|
1560
1567
|
|
|
@@ -1566,7 +1573,7 @@ class SearchTextCommand extends smithyClient.Command
|
|
|
1566
1573
|
})
|
|
1567
1574
|
.s("PlacesService", "SearchText", {})
|
|
1568
1575
|
.n("GeoPlacesClient", "SearchTextCommand")
|
|
1569
|
-
.sc(SearchText)
|
|
1576
|
+
.sc(SearchText$)
|
|
1570
1577
|
.build() {
|
|
1571
1578
|
}
|
|
1572
1579
|
|
|
@@ -1578,7 +1585,7 @@ class SuggestCommand extends smithyClient.Command
|
|
|
1578
1585
|
})
|
|
1579
1586
|
.s("PlacesService", "Suggest", {})
|
|
1580
1587
|
.n("GeoPlacesClient", "SuggestCommand")
|
|
1581
|
-
.sc(Suggest)
|
|
1588
|
+
.sc(Suggest$)
|
|
1582
1589
|
.build() {
|
|
1583
1590
|
}
|
|
1584
1591
|
|
|
@@ -1749,44 +1756,128 @@ Object.defineProperty(exports, "__Client", {
|
|
|
1749
1756
|
enumerable: true,
|
|
1750
1757
|
get: function () { return smithyClient.Client; }
|
|
1751
1758
|
});
|
|
1752
|
-
exports.AccessDeniedException = AccessDeniedException
|
|
1759
|
+
exports.AccessDeniedException = AccessDeniedException;
|
|
1760
|
+
exports.AccessDeniedException$ = AccessDeniedException$;
|
|
1761
|
+
exports.AccessPoint$ = AccessPoint$;
|
|
1762
|
+
exports.AccessRestriction$ = AccessRestriction$;
|
|
1763
|
+
exports.Address$ = Address$;
|
|
1764
|
+
exports.AddressComponentMatchScores$ = AddressComponentMatchScores$;
|
|
1765
|
+
exports.AddressComponentPhonemes$ = AddressComponentPhonemes$;
|
|
1766
|
+
exports.Autocomplete$ = Autocomplete$;
|
|
1753
1767
|
exports.AutocompleteAdditionalFeature = AutocompleteAdditionalFeature;
|
|
1768
|
+
exports.AutocompleteAddressHighlights$ = AutocompleteAddressHighlights$;
|
|
1754
1769
|
exports.AutocompleteCommand = AutocompleteCommand;
|
|
1770
|
+
exports.AutocompleteFilter$ = AutocompleteFilter$;
|
|
1755
1771
|
exports.AutocompleteFilterPlaceType = AutocompleteFilterPlaceType;
|
|
1772
|
+
exports.AutocompleteHighlights$ = AutocompleteHighlights$;
|
|
1756
1773
|
exports.AutocompleteIntendedUse = AutocompleteIntendedUse;
|
|
1774
|
+
exports.AutocompleteRequest$ = AutocompleteRequest$;
|
|
1775
|
+
exports.AutocompleteResponse$ = AutocompleteResponse$;
|
|
1776
|
+
exports.AutocompleteResultItem$ = AutocompleteResultItem$;
|
|
1777
|
+
exports.BusinessChain$ = BusinessChain$;
|
|
1778
|
+
exports.Category$ = Category$;
|
|
1779
|
+
exports.ComponentMatchScores$ = ComponentMatchScores$;
|
|
1780
|
+
exports.ContactDetails$ = ContactDetails$;
|
|
1781
|
+
exports.Contacts$ = Contacts$;
|
|
1782
|
+
exports.Country$ = Country$;
|
|
1783
|
+
exports.CountryHighlights$ = CountryHighlights$;
|
|
1784
|
+
exports.FilterCircle$ = FilterCircle$;
|
|
1785
|
+
exports.FoodType$ = FoodType$;
|
|
1757
1786
|
exports.GeoPlaces = GeoPlaces;
|
|
1758
1787
|
exports.GeoPlacesClient = GeoPlacesClient;
|
|
1759
|
-
exports.GeoPlacesServiceException = GeoPlacesServiceException
|
|
1788
|
+
exports.GeoPlacesServiceException = GeoPlacesServiceException;
|
|
1789
|
+
exports.GeoPlacesServiceException$ = GeoPlacesServiceException$;
|
|
1790
|
+
exports.Geocode$ = Geocode$;
|
|
1760
1791
|
exports.GeocodeAdditionalFeature = GeocodeAdditionalFeature;
|
|
1761
1792
|
exports.GeocodeCommand = GeocodeCommand;
|
|
1793
|
+
exports.GeocodeFilter$ = GeocodeFilter$;
|
|
1762
1794
|
exports.GeocodeFilterPlaceType = GeocodeFilterPlaceType;
|
|
1763
1795
|
exports.GeocodeIntendedUse = GeocodeIntendedUse;
|
|
1796
|
+
exports.GeocodeParsedQuery$ = GeocodeParsedQuery$;
|
|
1797
|
+
exports.GeocodeParsedQueryAddressComponents$ = GeocodeParsedQueryAddressComponents$;
|
|
1798
|
+
exports.GeocodeQueryComponents$ = GeocodeQueryComponents$;
|
|
1799
|
+
exports.GeocodeRequest$ = GeocodeRequest$;
|
|
1800
|
+
exports.GeocodeResponse$ = GeocodeResponse$;
|
|
1801
|
+
exports.GeocodeResultItem$ = GeocodeResultItem$;
|
|
1802
|
+
exports.GetPlace$ = GetPlace$;
|
|
1764
1803
|
exports.GetPlaceAdditionalFeature = GetPlaceAdditionalFeature;
|
|
1765
1804
|
exports.GetPlaceCommand = GetPlaceCommand;
|
|
1766
1805
|
exports.GetPlaceIntendedUse = GetPlaceIntendedUse;
|
|
1767
|
-
exports.
|
|
1806
|
+
exports.GetPlaceRequest$ = GetPlaceRequest$;
|
|
1807
|
+
exports.GetPlaceResponse$ = GetPlaceResponse$;
|
|
1808
|
+
exports.Highlight$ = Highlight$;
|
|
1809
|
+
exports.InternalServerException = InternalServerException;
|
|
1810
|
+
exports.InternalServerException$ = InternalServerException$;
|
|
1811
|
+
exports.Intersection$ = Intersection$;
|
|
1812
|
+
exports.MatchScoreDetails$ = MatchScoreDetails$;
|
|
1813
|
+
exports.OpeningHours$ = OpeningHours$;
|
|
1814
|
+
exports.OpeningHoursComponents$ = OpeningHoursComponents$;
|
|
1815
|
+
exports.ParsedQueryComponent$ = ParsedQueryComponent$;
|
|
1816
|
+
exports.ParsedQuerySecondaryAddressComponent$ = ParsedQuerySecondaryAddressComponent$;
|
|
1817
|
+
exports.PhonemeDetails$ = PhonemeDetails$;
|
|
1818
|
+
exports.PhonemeTranscription$ = PhonemeTranscription$;
|
|
1768
1819
|
exports.PlaceType = PlaceType;
|
|
1769
1820
|
exports.PostalAuthority = PostalAuthority;
|
|
1821
|
+
exports.PostalCodeDetails$ = PostalCodeDetails$;
|
|
1770
1822
|
exports.PostalCodeMode = PostalCodeMode;
|
|
1771
1823
|
exports.PostalCodeType = PostalCodeType;
|
|
1824
|
+
exports.QueryRefinement$ = QueryRefinement$;
|
|
1772
1825
|
exports.QueryType = QueryType;
|
|
1773
1826
|
exports.RecordTypeCode = RecordTypeCode;
|
|
1827
|
+
exports.Region$ = Region$;
|
|
1828
|
+
exports.RegionHighlights$ = RegionHighlights$;
|
|
1829
|
+
exports.RelatedPlace$ = RelatedPlace$;
|
|
1830
|
+
exports.ReverseGeocode$ = ReverseGeocode$;
|
|
1774
1831
|
exports.ReverseGeocodeAdditionalFeature = ReverseGeocodeAdditionalFeature;
|
|
1775
1832
|
exports.ReverseGeocodeCommand = ReverseGeocodeCommand;
|
|
1833
|
+
exports.ReverseGeocodeFilter$ = ReverseGeocodeFilter$;
|
|
1776
1834
|
exports.ReverseGeocodeFilterPlaceType = ReverseGeocodeFilterPlaceType;
|
|
1777
1835
|
exports.ReverseGeocodeIntendedUse = ReverseGeocodeIntendedUse;
|
|
1836
|
+
exports.ReverseGeocodeRequest$ = ReverseGeocodeRequest$;
|
|
1837
|
+
exports.ReverseGeocodeResponse$ = ReverseGeocodeResponse$;
|
|
1838
|
+
exports.ReverseGeocodeResultItem$ = ReverseGeocodeResultItem$;
|
|
1839
|
+
exports.SearchNearby$ = SearchNearby$;
|
|
1778
1840
|
exports.SearchNearbyAdditionalFeature = SearchNearbyAdditionalFeature;
|
|
1779
1841
|
exports.SearchNearbyCommand = SearchNearbyCommand;
|
|
1842
|
+
exports.SearchNearbyFilter$ = SearchNearbyFilter$;
|
|
1780
1843
|
exports.SearchNearbyIntendedUse = SearchNearbyIntendedUse;
|
|
1844
|
+
exports.SearchNearbyRequest$ = SearchNearbyRequest$;
|
|
1845
|
+
exports.SearchNearbyResponse$ = SearchNearbyResponse$;
|
|
1846
|
+
exports.SearchNearbyResultItem$ = SearchNearbyResultItem$;
|
|
1847
|
+
exports.SearchText$ = SearchText$;
|
|
1781
1848
|
exports.SearchTextAdditionalFeature = SearchTextAdditionalFeature;
|
|
1782
1849
|
exports.SearchTextCommand = SearchTextCommand;
|
|
1850
|
+
exports.SearchTextFilter$ = SearchTextFilter$;
|
|
1783
1851
|
exports.SearchTextIntendedUse = SearchTextIntendedUse;
|
|
1852
|
+
exports.SearchTextRequest$ = SearchTextRequest$;
|
|
1853
|
+
exports.SearchTextResponse$ = SearchTextResponse$;
|
|
1854
|
+
exports.SearchTextResultItem$ = SearchTextResultItem$;
|
|
1855
|
+
exports.SecondaryAddressComponent$ = SecondaryAddressComponent$;
|
|
1856
|
+
exports.SecondaryAddressComponentMatchScore$ = SecondaryAddressComponentMatchScore$;
|
|
1857
|
+
exports.StreetComponents$ = StreetComponents$;
|
|
1858
|
+
exports.SubRegion$ = SubRegion$;
|
|
1859
|
+
exports.SubRegionHighlights$ = SubRegionHighlights$;
|
|
1860
|
+
exports.Suggest$ = Suggest$;
|
|
1784
1861
|
exports.SuggestAdditionalFeature = SuggestAdditionalFeature;
|
|
1862
|
+
exports.SuggestAddressHighlights$ = SuggestAddressHighlights$;
|
|
1785
1863
|
exports.SuggestCommand = SuggestCommand;
|
|
1864
|
+
exports.SuggestFilter$ = SuggestFilter$;
|
|
1865
|
+
exports.SuggestHighlights$ = SuggestHighlights$;
|
|
1786
1866
|
exports.SuggestIntendedUse = SuggestIntendedUse;
|
|
1867
|
+
exports.SuggestPlaceResult$ = SuggestPlaceResult$;
|
|
1868
|
+
exports.SuggestQueryResult$ = SuggestQueryResult$;
|
|
1869
|
+
exports.SuggestRequest$ = SuggestRequest$;
|
|
1870
|
+
exports.SuggestResponse$ = SuggestResponse$;
|
|
1871
|
+
exports.SuggestResultItem$ = SuggestResultItem$;
|
|
1787
1872
|
exports.SuggestResultItemType = SuggestResultItemType;
|
|
1788
|
-
exports.ThrottlingException = ThrottlingException
|
|
1873
|
+
exports.ThrottlingException = ThrottlingException;
|
|
1874
|
+
exports.ThrottlingException$ = ThrottlingException$;
|
|
1875
|
+
exports.TimeZone$ = TimeZone$;
|
|
1789
1876
|
exports.TypePlacement = TypePlacement;
|
|
1790
|
-
exports.
|
|
1877
|
+
exports.UspsZip$ = UspsZip$;
|
|
1878
|
+
exports.UspsZipPlus4$ = UspsZipPlus4$;
|
|
1879
|
+
exports.ValidationException = ValidationException;
|
|
1880
|
+
exports.ValidationException$ = ValidationException$;
|
|
1881
|
+
exports.ValidationExceptionField$ = ValidationExceptionField$;
|
|
1791
1882
|
exports.ValidationExceptionReason = ValidationExceptionReason;
|
|
1792
1883
|
exports.ZipClassificationCode = ZipClassificationCode;
|