@aws-sdk/client-location
Advanced tools
Comparing version 3.85.0 to 3.86.0
@@ -6,2 +6,13 @@ # Change Log | ||
# [3.86.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.85.0...v3.86.0) (2022-05-06) | ||
### Features | ||
* **client-location:** Amazon Location Service now includes a MaxResults parameter for ListGeofences requests. ([5c0e234](https://github.com/aws/aws-sdk-js-v3/commit/5c0e234f03c9ea3748229dd87ca8fed349b36ea3)) | ||
# [3.85.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.84.0...v3.85.0) (2022-05-05) | ||
@@ -8,0 +19,0 @@ |
@@ -19,2 +19,3 @@ "use strict"; | ||
input.NextToken = token; | ||
input["MaxResults"] = config.pageSize; | ||
if (config.client instanceof Location_1.Location) { | ||
@@ -21,0 +22,0 @@ page = await makePagedRequest(config.client, input, ...additionalArguments); |
@@ -49,2 +49,3 @@ import { __asyncGenerator, __await, __awaiter, __generator, __read, __spreadArray } from "tslib"; | ||
input.NextToken = token; | ||
input["MaxResults"] = config.pageSize; | ||
if (!(config.client instanceof Location)) return [3, 3]; | ||
@@ -51,0 +52,0 @@ return [4, __await(makePagedRequest.apply(void 0, __spreadArray([config.client, input], __read(additionalArguments), false)))]; |
@@ -35,2 +35,6 @@ import { Command as $Command } from "@aws-sdk/smithy-client"; | ||
* </note> | ||
* <note> | ||
* <p>The <code>DeviceID</code> is used as a string to represent the device. You do not | ||
* need to have a <code>Tracker</code> associated with the <code>DeviceID</code>.</p> | ||
* </note> | ||
* @example | ||
@@ -37,0 +41,0 @@ * Use a bare-bones client and the command you need to make an API call. |
@@ -21,4 +21,5 @@ import { Command as $Command } from "@aws-sdk/smithy-client"; | ||
* <p> | ||
* <a href="https://docs.aws.amazon.com/location/latest/developerguide/departure-time.html">Specifying a departure time</a> using either <code>DepartureTime</code> | ||
* or <code>DepartNow</code>. This calculates a route based on predictive traffic | ||
* <a href="https://docs.aws.amazon.com/location/latest/developerguide/departure-time.html">Specifying a | ||
* departure time</a> using either <code>DepartureTime</code> or | ||
* <code>DepartNow</code>. This calculates a route based on predictive traffic | ||
* data at the given time. </p> | ||
@@ -33,5 +34,6 @@ * <note> | ||
* <p> | ||
* <a href="https://docs.aws.amazon.com/location/latest/developerguide/travel-mode.html">Specifying a travel mode</a> using TravelMode sets the transportation | ||
* mode used to calculate the routes. This also lets you specify additional route | ||
* preferences in <code>CarModeOptions</code> if traveling by <code>Car</code>, or | ||
* <a href="https://docs.aws.amazon.com/location/latest/developerguide/travel-mode.html">Specifying a travel | ||
* mode</a> using TravelMode sets the transportation mode used to calculate | ||
* the routes. This also lets you specify additional route preferences in | ||
* <code>CarModeOptions</code> if traveling by <code>Car</code>, or | ||
* <code>TruckModeOptions</code> if traveling by <code>Truck</code>.</p> | ||
@@ -38,0 +40,0 @@ * </li> |
@@ -11,17 +11,18 @@ import { Command as $Command } from "@aws-sdk/smithy-client"; | ||
* <p> | ||
* <a href="https://docs.aws.amazon.com/location/latest/developerguide/calculate-route-matrix.html"> Calculates a | ||
* route matrix</a> given the following required parameters: | ||
* <code>DeparturePositions</code> and <code>DestinationPositions</code>. | ||
* <code>CalculateRouteMatrix</code> calculates routes and returns the travel time and | ||
* <a href="https://docs.aws.amazon.com/location/latest/developerguide/calculate-route-matrix.html"> Calculates a route | ||
* matrix</a> given the following required parameters: | ||
* <code>DeparturePositions</code> and <code>DestinationPositions</code>. | ||
* <code>CalculateRouteMatrix</code> calculates routes and returns the travel time and | ||
* travel distance from each departure position to each destination position in the | ||
* request. For example, given departure positions A and B, and destination positions | ||
* X and Y, <code>CalculateRouteMatrix</code> will return time and distance for routes | ||
* from A to X, A to Y, B to X, and B to Y (in that order). The number of results returned | ||
* (and routes calculated) will be the number of <code>DeparturePositions</code> | ||
* times the number of <code>DestinationPositions</code>.</p> | ||
* request. For example, given departure positions A and B, and destination positions X and | ||
* Y, <code>CalculateRouteMatrix</code> will return time and distance for routes from A to | ||
* X, A to Y, B to X, and B to Y (in that order). The number of results returned (and | ||
* routes calculated) will be the number of <code>DeparturePositions</code> times the | ||
* number of <code>DestinationPositions</code>.</p> | ||
* <note> | ||
* <p>Your account is charged for each route calculated, not the number of requests.</p> | ||
* <p>Your account is charged for each route calculated, not the number of | ||
* requests.</p> | ||
* </note> | ||
* <p>Requires that you first <a href="https://docs.aws.amazon.com/location-routes/latest/APIReference/API_CreateRouteCalculator.html">create a | ||
* route calculator resource</a>.</p> | ||
* route calculator resource</a>.</p> | ||
* <p>By default, a request that doesn't specify a departure time uses the best time of day | ||
@@ -33,5 +34,5 @@ * to travel with the best traffic conditions when calculating routes.</p> | ||
* <p> | ||
* <a href="https://docs.aws.amazon.com/location/latest/developerguide/departure-time.html"> | ||
* Specifying a departure time</a> using either <code>DepartureTime</code> | ||
* or <code>DepartNow</code>. This calculates routes based on predictive traffic | ||
* <a href="https://docs.aws.amazon.com/location/latest/developerguide/departure-time.html"> Specifying a | ||
* departure time</a> using either <code>DepartureTime</code> or | ||
* <code>DepartNow</code>. This calculates routes based on predictive traffic | ||
* data at the given time. </p> | ||
@@ -46,5 +47,6 @@ * <note> | ||
* <p> | ||
* <a href="https://docs.aws.amazon.com/location/latest/developerguide/travel-mode.html">Specifying a travel mode</a> using TravelMode sets the transportation | ||
* mode used to calculate the routes. This also lets you specify additional route | ||
* preferences in <code>CarModeOptions</code> if traveling by <code>Car</code>, or | ||
* <a href="https://docs.aws.amazon.com/location/latest/developerguide/travel-mode.html">Specifying a travel | ||
* mode</a> using TravelMode sets the transportation mode used to calculate | ||
* the routes. This also lets you specify additional route preferences in | ||
* <code>CarModeOptions</code> if traveling by <code>Car</code>, or | ||
* <code>TruckModeOptions</code> if traveling by <code>Truck</code>.</p> | ||
@@ -51,0 +53,0 @@ * </li> |
@@ -11,11 +11,12 @@ import { Command as $Command } from "@aws-sdk/smithy-client"; | ||
* <p>Creates a place index resource in your AWS account. Use a place index resource to | ||
* geocode addresses and other text queries by using the <code>SearchPlaceIndexForText</code> operation, | ||
* and reverse geocode coordinates by using the <code>SearchPlaceIndexForPosition</code> operation, and | ||
* enable autosuggestions by using the <code>SearchPlaceIndexForSuggestions</code> operation.</p> | ||
* <note> | ||
* geocode addresses and other text queries by using the | ||
* <code>SearchPlaceIndexForText</code> operation, and reverse geocode coordinates by | ||
* using the <code>SearchPlaceIndexForPosition</code> operation, and enable autosuggestions | ||
* by using the <code>SearchPlaceIndexForSuggestions</code> operation.</p> | ||
* <note> | ||
* <p>If your application is tracking or routing assets you use in your business, such | ||
* as delivery vehicles or employees, you may only use HERE as your geolocation | ||
* provider. See section 82 of the <a href="http://aws.amazon.com/service-terms">AWS | ||
* service terms</a> for more details.</p> | ||
* </note> | ||
* as delivery vehicles or employees, you may only use HERE as your geolocation | ||
* provider. See section 82 of the <a href="http://aws.amazon.com/service-terms">AWS | ||
* service terms</a> for more details.</p> | ||
* </note> | ||
* @example | ||
@@ -22,0 +23,0 @@ * Use a bare-bones client and the command you need to make an API call. |
@@ -18,3 +18,3 @@ import { Command as $Command } from "@aws-sdk/smithy-client"; | ||
* provider. See section 82 of the <a href="http://aws.amazon.com/service-terms">AWS | ||
* service terms</a> for more details.</p> | ||
* service terms</a> for more details.</p> | ||
* </note> | ||
@@ -21,0 +21,0 @@ * @example |
@@ -11,5 +11,5 @@ import { Command as $Command } from "@aws-sdk/smithy-client"; | ||
* <p>Deletes a place index resource from your AWS account.</p> | ||
* <note> | ||
* <note> | ||
* <p>This operation deletes the resource permanently.</p> | ||
* </note> | ||
* </note> | ||
* @example | ||
@@ -16,0 +16,0 @@ * Use a bare-bones client and the command you need to make an API call. |
@@ -13,3 +13,3 @@ import { Command as $Command } from "@aws-sdk/smithy-client"; | ||
* <p>This operation deletes the resource permanently.</p> | ||
* </note> | ||
* </note> | ||
* @example | ||
@@ -16,0 +16,0 @@ * Use a bare-bones client and the command you need to make an API call. |
@@ -10,4 +10,4 @@ import { Command as $Command } from "@aws-sdk/smithy-client"; | ||
/** | ||
* <p>Reverse geocodes a given coordinate and returns a legible address. Allows you to search | ||
* for Places or points of interest near a given position.</p> | ||
* <p>Reverse geocodes a given coordinate and returns a legible address. Allows you to | ||
* search for Places or points of interest near a given position.</p> | ||
* @example | ||
@@ -14,0 +14,0 @@ * Use a bare-bones client and the command you need to make an API call. |
@@ -11,11 +11,13 @@ import { Command as $Command } from "@aws-sdk/smithy-client"; | ||
* <p>Generates suggestions for addresses and points of interest based on partial or | ||
* misspelled free-form text. This operation is also known as autocomplete, autosuggest, | ||
* or fuzzy matching.</p> | ||
* <p>Optional parameters let you narrow your search results by bounding box or | ||
* country, or bias your search toward a specific position on the globe.</p> | ||
* <note> | ||
* <p>You can search for suggested place names near a specified position by using <code>BiasPosition</code>, or | ||
* filter results within a bounding box by using <code>FilterBBox</code>. These parameters are mutually exclusive; | ||
* using both <code>BiasPosition</code> and <code>FilterBBox</code> in the same command returns an error.</p> | ||
* </note> | ||
* misspelled free-form text. This operation is also known as autocomplete, autosuggest, or | ||
* fuzzy matching.</p> | ||
* <p>Optional parameters let you narrow your search results by bounding box or country, or | ||
* bias your search toward a specific position on the globe.</p> | ||
* <note> | ||
* <p>You can search for suggested place names near a specified position by using | ||
* <code>BiasPosition</code>, or filter results within a bounding box by using | ||
* <code>FilterBBox</code>. These parameters are mutually exclusive; using both | ||
* <code>BiasPosition</code> and <code>FilterBBox</code> in the same command | ||
* returns an error.</p> | ||
* </note> | ||
* @example | ||
@@ -22,0 +24,0 @@ * Use a bare-bones client and the command you need to make an API call. |
@@ -11,11 +11,11 @@ import { Command as $Command } from "@aws-sdk/smithy-client"; | ||
* <p>Geocodes free-form text, such as an address, name, city, or region to allow you to | ||
* search for Places or points of interest. </p> | ||
* <p>Optional parameters let you narrow your search results by bounding box or | ||
* country, or bias your search toward a specific position on the globe.</p> | ||
* <note> | ||
* <p>You can search for places near a given position using <code>BiasPosition</code>, or | ||
* filter results within a bounding box using <code>FilterBBox</code>. Providing both | ||
* parameters simultaneously returns an error.</p> | ||
* </note> | ||
* <p>Search results are returned in order of highest to lowest relevance.</p> | ||
* search for Places or points of interest. </p> | ||
* <p>Optional parameters let you narrow your search results by bounding box or country, or | ||
* bias your search toward a specific position on the globe.</p> | ||
* <note> | ||
* <p>You can search for places near a given position using <code>BiasPosition</code>, | ||
* or filter results within a bounding box using <code>FilterBBox</code>. Providing | ||
* both parameters simultaneously returns an error.</p> | ||
* </note> | ||
* <p>Search results are returned in order of highest to lowest relevance.</p> | ||
* @example | ||
@@ -22,0 +22,0 @@ * Use a bare-bones client and the command you need to make an API call. |
@@ -112,2 +112,6 @@ import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types"; | ||
* </note> | ||
* <note> | ||
* <p>The <code>DeviceID</code> is used as a string to represent the device. You do not | ||
* need to have a <code>Tracker</code> associated with the <code>DeviceID</code>.</p> | ||
* </note> | ||
*/ | ||
@@ -166,4 +170,5 @@ batchEvaluateGeofences(args: BatchEvaluateGeofencesCommandInput, options?: __HttpHandlerOptions): Promise<BatchEvaluateGeofencesCommandOutput>; | ||
* <p> | ||
* <a href="https://docs.aws.amazon.com/location/latest/developerguide/departure-time.html">Specifying a departure time</a> using either <code>DepartureTime</code> | ||
* or <code>DepartNow</code>. This calculates a route based on predictive traffic | ||
* <a href="https://docs.aws.amazon.com/location/latest/developerguide/departure-time.html">Specifying a | ||
* departure time</a> using either <code>DepartureTime</code> or | ||
* <code>DepartNow</code>. This calculates a route based on predictive traffic | ||
* data at the given time. </p> | ||
@@ -178,5 +183,6 @@ * <note> | ||
* <p> | ||
* <a href="https://docs.aws.amazon.com/location/latest/developerguide/travel-mode.html">Specifying a travel mode</a> using TravelMode sets the transportation | ||
* mode used to calculate the routes. This also lets you specify additional route | ||
* preferences in <code>CarModeOptions</code> if traveling by <code>Car</code>, or | ||
* <a href="https://docs.aws.amazon.com/location/latest/developerguide/travel-mode.html">Specifying a travel | ||
* mode</a> using TravelMode sets the transportation mode used to calculate | ||
* the routes. This also lets you specify additional route preferences in | ||
* <code>CarModeOptions</code> if traveling by <code>Car</code>, or | ||
* <code>TruckModeOptions</code> if traveling by <code>Truck</code>.</p> | ||
@@ -191,17 +197,18 @@ * </li> | ||
* <p> | ||
* <a href="https://docs.aws.amazon.com/location/latest/developerguide/calculate-route-matrix.html"> Calculates a | ||
* route matrix</a> given the following required parameters: | ||
* <code>DeparturePositions</code> and <code>DestinationPositions</code>. | ||
* <code>CalculateRouteMatrix</code> calculates routes and returns the travel time and | ||
* <a href="https://docs.aws.amazon.com/location/latest/developerguide/calculate-route-matrix.html"> Calculates a route | ||
* matrix</a> given the following required parameters: | ||
* <code>DeparturePositions</code> and <code>DestinationPositions</code>. | ||
* <code>CalculateRouteMatrix</code> calculates routes and returns the travel time and | ||
* travel distance from each departure position to each destination position in the | ||
* request. For example, given departure positions A and B, and destination positions | ||
* X and Y, <code>CalculateRouteMatrix</code> will return time and distance for routes | ||
* from A to X, A to Y, B to X, and B to Y (in that order). The number of results returned | ||
* (and routes calculated) will be the number of <code>DeparturePositions</code> | ||
* times the number of <code>DestinationPositions</code>.</p> | ||
* request. For example, given departure positions A and B, and destination positions X and | ||
* Y, <code>CalculateRouteMatrix</code> will return time and distance for routes from A to | ||
* X, A to Y, B to X, and B to Y (in that order). The number of results returned (and | ||
* routes calculated) will be the number of <code>DeparturePositions</code> times the | ||
* number of <code>DestinationPositions</code>.</p> | ||
* <note> | ||
* <p>Your account is charged for each route calculated, not the number of requests.</p> | ||
* <p>Your account is charged for each route calculated, not the number of | ||
* requests.</p> | ||
* </note> | ||
* <p>Requires that you first <a href="https://docs.aws.amazon.com/location-routes/latest/APIReference/API_CreateRouteCalculator.html">create a | ||
* route calculator resource</a>.</p> | ||
* route calculator resource</a>.</p> | ||
* <p>By default, a request that doesn't specify a departure time uses the best time of day | ||
@@ -213,5 +220,5 @@ * to travel with the best traffic conditions when calculating routes.</p> | ||
* <p> | ||
* <a href="https://docs.aws.amazon.com/location/latest/developerguide/departure-time.html"> | ||
* Specifying a departure time</a> using either <code>DepartureTime</code> | ||
* or <code>DepartNow</code>. This calculates routes based on predictive traffic | ||
* <a href="https://docs.aws.amazon.com/location/latest/developerguide/departure-time.html"> Specifying a | ||
* departure time</a> using either <code>DepartureTime</code> or | ||
* <code>DepartNow</code>. This calculates routes based on predictive traffic | ||
* data at the given time. </p> | ||
@@ -226,5 +233,6 @@ * <note> | ||
* <p> | ||
* <a href="https://docs.aws.amazon.com/location/latest/developerguide/travel-mode.html">Specifying a travel mode</a> using TravelMode sets the transportation | ||
* mode used to calculate the routes. This also lets you specify additional route | ||
* preferences in <code>CarModeOptions</code> if traveling by <code>Car</code>, or | ||
* <a href="https://docs.aws.amazon.com/location/latest/developerguide/travel-mode.html">Specifying a travel | ||
* mode</a> using TravelMode sets the transportation mode used to calculate | ||
* the routes. This also lets you specify additional route preferences in | ||
* <code>CarModeOptions</code> if traveling by <code>Car</code>, or | ||
* <code>TruckModeOptions</code> if traveling by <code>Truck</code>.</p> | ||
@@ -258,11 +266,12 @@ * </li> | ||
* <p>Creates a place index resource in your AWS account. Use a place index resource to | ||
* geocode addresses and other text queries by using the <code>SearchPlaceIndexForText</code> operation, | ||
* and reverse geocode coordinates by using the <code>SearchPlaceIndexForPosition</code> operation, and | ||
* enable autosuggestions by using the <code>SearchPlaceIndexForSuggestions</code> operation.</p> | ||
* <note> | ||
* geocode addresses and other text queries by using the | ||
* <code>SearchPlaceIndexForText</code> operation, and reverse geocode coordinates by | ||
* using the <code>SearchPlaceIndexForPosition</code> operation, and enable autosuggestions | ||
* by using the <code>SearchPlaceIndexForSuggestions</code> operation.</p> | ||
* <note> | ||
* <p>If your application is tracking or routing assets you use in your business, such | ||
* as delivery vehicles or employees, you may only use HERE as your geolocation | ||
* provider. See section 82 of the <a href="http://aws.amazon.com/service-terms">AWS | ||
* service terms</a> for more details.</p> | ||
* </note> | ||
* as delivery vehicles or employees, you may only use HERE as your geolocation | ||
* provider. See section 82 of the <a href="http://aws.amazon.com/service-terms">AWS | ||
* service terms</a> for more details.</p> | ||
* </note> | ||
*/ | ||
@@ -281,3 +290,3 @@ createPlaceIndex(args: CreatePlaceIndexCommandInput, options?: __HttpHandlerOptions): Promise<CreatePlaceIndexCommandOutput>; | ||
* provider. See section 82 of the <a href="http://aws.amazon.com/service-terms">AWS | ||
* service terms</a> for more details.</p> | ||
* service terms</a> for more details.</p> | ||
* </note> | ||
@@ -317,5 +326,5 @@ */ | ||
* <p>Deletes a place index resource from your AWS account.</p> | ||
* <note> | ||
* <note> | ||
* <p>This operation deletes the resource permanently.</p> | ||
* </note> | ||
* </note> | ||
*/ | ||
@@ -329,3 +338,3 @@ deletePlaceIndex(args: DeletePlaceIndexCommandInput, options?: __HttpHandlerOptions): Promise<DeletePlaceIndexCommandOutput>; | ||
* <p>This operation deletes the resource permanently.</p> | ||
* </note> | ||
* </note> | ||
*/ | ||
@@ -507,4 +516,4 @@ deleteRouteCalculator(args: DeleteRouteCalculatorCommandInput, options?: __HttpHandlerOptions): Promise<DeleteRouteCalculatorCommandOutput>; | ||
/** | ||
* <p>Reverse geocodes a given coordinate and returns a legible address. Allows you to search | ||
* for Places or points of interest near a given position.</p> | ||
* <p>Reverse geocodes a given coordinate and returns a legible address. Allows you to | ||
* search for Places or points of interest near a given position.</p> | ||
*/ | ||
@@ -516,11 +525,13 @@ searchPlaceIndexForPosition(args: SearchPlaceIndexForPositionCommandInput, options?: __HttpHandlerOptions): Promise<SearchPlaceIndexForPositionCommandOutput>; | ||
* <p>Generates suggestions for addresses and points of interest based on partial or | ||
* misspelled free-form text. This operation is also known as autocomplete, autosuggest, | ||
* or fuzzy matching.</p> | ||
* <p>Optional parameters let you narrow your search results by bounding box or | ||
* country, or bias your search toward a specific position on the globe.</p> | ||
* <note> | ||
* <p>You can search for suggested place names near a specified position by using <code>BiasPosition</code>, or | ||
* filter results within a bounding box by using <code>FilterBBox</code>. These parameters are mutually exclusive; | ||
* using both <code>BiasPosition</code> and <code>FilterBBox</code> in the same command returns an error.</p> | ||
* </note> | ||
* misspelled free-form text. This operation is also known as autocomplete, autosuggest, or | ||
* fuzzy matching.</p> | ||
* <p>Optional parameters let you narrow your search results by bounding box or country, or | ||
* bias your search toward a specific position on the globe.</p> | ||
* <note> | ||
* <p>You can search for suggested place names near a specified position by using | ||
* <code>BiasPosition</code>, or filter results within a bounding box by using | ||
* <code>FilterBBox</code>. These parameters are mutually exclusive; using both | ||
* <code>BiasPosition</code> and <code>FilterBBox</code> in the same command | ||
* returns an error.</p> | ||
* </note> | ||
*/ | ||
@@ -532,11 +543,11 @@ searchPlaceIndexForSuggestions(args: SearchPlaceIndexForSuggestionsCommandInput, options?: __HttpHandlerOptions): Promise<SearchPlaceIndexForSuggestionsCommandOutput>; | ||
* <p>Geocodes free-form text, such as an address, name, city, or region to allow you to | ||
* search for Places or points of interest. </p> | ||
* <p>Optional parameters let you narrow your search results by bounding box or | ||
* country, or bias your search toward a specific position on the globe.</p> | ||
* <note> | ||
* <p>You can search for places near a given position using <code>BiasPosition</code>, or | ||
* filter results within a bounding box using <code>FilterBBox</code>. Providing both | ||
* parameters simultaneously returns an error.</p> | ||
* </note> | ||
* <p>Search results are returned in order of highest to lowest relevance.</p> | ||
* search for Places or points of interest. </p> | ||
* <p>Optional parameters let you narrow your search results by bounding box or country, or | ||
* bias your search toward a specific position on the globe.</p> | ||
* <note> | ||
* <p>You can search for places near a given position using <code>BiasPosition</code>, | ||
* or filter results within a bounding box using <code>FilterBBox</code>. Providing | ||
* both parameters simultaneously returns an error.</p> | ||
* </note> | ||
* <p>Search results are returned in order of highest to lowest relevance.</p> | ||
*/ | ||
@@ -543,0 +554,0 @@ searchPlaceIndexForText(args: SearchPlaceIndexForTextCommandInput, options?: __HttpHandlerOptions): Promise<SearchPlaceIndexForTextCommandOutput>; |
@@ -1163,2 +1163,4 @@ import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client"; | ||
NextToken?: string; | ||
MaxResults?: number; | ||
} | ||
@@ -1165,0 +1167,0 @@ export declare namespace ListGeofencesRequest { |
{ | ||
"name": "@aws-sdk/client-location", | ||
"description": "AWS SDK for JavaScript Location Client for Node.js, Browser and React Native", | ||
"version": "3.85.0", | ||
"version": "3.86.0", | ||
"scripts": { | ||
@@ -6,0 +6,0 @@ "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
1792806
33495