diff --git a/CHANGELOG.md b/CHANGELOG.md index 96870b67a4..2168124958 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. ### [Unreleased][HEAD] +## [2.2.0] - July 18th 2019 + +### @esri/arcgis-rest-portal + +* New Features + * **portal**: searchGroupUsers searches the users in the given group [`d9151a15`](https://github.com/Esri/arcgis-rest-js/commit/d9151a15fb34ae0ddc551f350e877ff7dd10405e) + ## [2.1.1] - July 15th 2019 ### @esri/arcgis-rest-feature-layer @@ -87,7 +94,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. ## [2.0.0] - April 22nd 2019 -For a more readable explanation of the new features and breaking changes in this release, please take a look at [What's new in `v2.0.0`](https://esri.github.io/arcgis-rest-js/guides/whats-new-v2-0/). +For a more readable explanation of the new features and breaking changes in this release, please take a look at [What is new in `v2.0.0`](https://esri.github.io/arcgis-rest-js/guides/whats-new-v2-0/). ### @esri/arcgis-rest-request @@ -1386,4 +1393,5 @@ Initial Public Release [2.0.4]: https://github.com/Esri/arcgis-rest-js/compare/v2.0.3...v2.0.4 "v2.0.4" [2.1.0]: https://github.com/Esri/arcgis-rest-js/compare/v2.0.4...v2.1.0 "v2.1.0" [2.1.1]: https://github.com/Esri/arcgis-rest-js/compare/v2.1.0...v2.1.1 "v2.1.1" -[HEAD]: https://github.com/Esri/arcgis-rest-js/compare/v2.1.1...HEAD "Unreleased Changes" +[2.2.0]: https://github.com/Esri/arcgis-rest-js/compare/v2.1.1...v2.2.0 "v2.2.0" +[HEAD]: https://github.com/Esri/arcgis-rest-js/compare/v2.2.0...HEAD "Unreleased Changes" diff --git a/demos/ago-node-cli/package.json b/demos/ago-node-cli/package.json index 1447aed495..a984092cc0 100644 --- a/demos/ago-node-cli/package.json +++ b/demos/ago-node-cli/package.json @@ -1,6 +1,6 @@ { "name": "node-cli", - "version": "2.1.1", + "version": "2.2.0", "description": "arcgis-rest-js node command-line item search example", "main": "ago.js", "scripts": { @@ -18,9 +18,9 @@ "author": "Dave Bouwman ", "license": "Apache-2.0", "dependencies": { - "@esri/arcgis-rest-auth": "^2.1.1", - "@esri/arcgis-rest-portal": "^2.1.1", - "@esri/arcgis-rest-request": "^2.1.1", + "@esri/arcgis-rest-auth": "^2.2.0", + "@esri/arcgis-rest-portal": "^2.2.0", + "@esri/arcgis-rest-request": "^2.2.0", "chalk": "^2.3.0", "commander": "^2.12.2", "cross-fetch": "^3.0.0", diff --git a/demos/attachments/package.json b/demos/attachments/package.json index c7188183cb..8c3d181b7a 100644 --- a/demos/attachments/package.json +++ b/demos/attachments/package.json @@ -1,13 +1,13 @@ { "name": "attachments", - "version": "2.1.1", + "version": "2.2.0", "private": true, "description": "Vanilla JavaScript demo of attachment methods of @esri/arcgis-rest-feature-service", "author": "", "license": "Apache-2.0", "dependencies": { - "@esri/arcgis-rest-feature-layer": "^2.1.1", - "@esri/arcgis-rest-request": "^2.1.1" + "@esri/arcgis-rest-feature-layer": "^2.2.0", + "@esri/arcgis-rest-request": "^2.2.0" }, "devDependencies": { "http-server": "*" diff --git a/demos/batch-geocoder-node/package.json b/demos/batch-geocoder-node/package.json index e5161d1ad3..7b97cee789 100644 --- a/demos/batch-geocoder-node/package.json +++ b/demos/batch-geocoder-node/package.json @@ -1,6 +1,6 @@ { "name": "batch-geocoder", - "version": "2.1.1", + "version": "2.2.0", "description": "arcgis-rest-js batch geocode sample", "main": "batch-geocode.js", "scripts": { @@ -27,10 +27,10 @@ }, "homepage": "https://github.com/Esri/arcgis-rest-js#readme", "dependencies": { - "@esri/arcgis-rest-auth": "^2.1.1", + "@esri/arcgis-rest-auth": "^2.2.0", "@esri/arcgis-rest-common": "^1.19.2", - "@esri/arcgis-rest-geocoding": "^2.1.1", - "@esri/arcgis-rest-request": "^2.1.1", + "@esri/arcgis-rest-geocoding": "^2.2.0", + "@esri/arcgis-rest-request": "^2.2.0", "cross-fetch": "^3.0.0", "isomorphic-form-data": "^2.0.0", "papaparse": "^4.6.0" diff --git a/demos/express/package.json b/demos/express/package.json index f938f3d3a2..557b0693f9 100644 --- a/demos/express/package.json +++ b/demos/express/package.json @@ -1,13 +1,13 @@ { "name": "@esri/arcgis-rest-demo-express", - "version": "2.1.1", + "version": "2.2.0", "private": true, "description": "Demo of @esri/arcgis-rest-* packages in an Express server", "author": "", "license": "Apache-2.0", "dependencies": { - "@esri/arcgis-rest-auth": "^2.1.1", - "@esri/arcgis-rest-request": "^2.1.1", + "@esri/arcgis-rest-auth": "^2.2.0", + "@esri/arcgis-rest-request": "^2.2.0", "cross-fetch": "^3.0.0", "express": "^4.16.3", "isomorphic-form-data": "^2.0.0" diff --git a/demos/feature-service-browser/package.json b/demos/feature-service-browser/package.json index ffb715b66a..d85dba9010 100644 --- a/demos/feature-service-browser/package.json +++ b/demos/feature-service-browser/package.json @@ -1,13 +1,13 @@ { "name": "feature-service-browser", - "version": "2.1.1", + "version": "2.2.0", "private": true, "description": "Vanilla JavaScript demo of @esri/arcgis-rest-feature-service", "author": "", "license": "Apache-2.0", "dependencies": { - "@esri/arcgis-rest-feature-layer": "^2.1.1", - "@esri/arcgis-rest-request": "^2.1.1" + "@esri/arcgis-rest-feature-layer": "^2.2.0", + "@esri/arcgis-rest-request": "^2.2.0" }, "devDependencies": { "http-server": "*" diff --git a/demos/geocoder-browser/package.json b/demos/geocoder-browser/package.json index 1d068415d4..2623afd1ac 100644 --- a/demos/geocoder-browser/package.json +++ b/demos/geocoder-browser/package.json @@ -1,14 +1,14 @@ { "name": "@esri/arcgis-rest-geocoder-vanilla", - "version": "2.1.1", + "version": "2.2.0", "private": true, "description": "Vanilla JavaScript demo of @esri/arcgis-rest-geocoder", "author": "", "license": "Apache-2.0", "dependencies": { - "@esri/arcgis-rest-auth": "^2.1.1", - "@esri/arcgis-rest-geocoding": "^2.1.1", - "@esri/arcgis-rest-request": "^2.1.1" + "@esri/arcgis-rest-auth": "^2.2.0", + "@esri/arcgis-rest-geocoding": "^2.2.0", + "@esri/arcgis-rest-request": "^2.2.0" }, "devDependencies": { "http-server": "0.11.1" diff --git a/demos/jsapi-integration/package.json b/demos/jsapi-integration/package.json index ccef9b32fa..176ae5face 100644 --- a/demos/jsapi-integration/package.json +++ b/demos/jsapi-integration/package.json @@ -1,14 +1,14 @@ { "name": "@esri/jsapi-integration", - "version": "2.1.1", + "version": "2.2.0", "private": true, "description": "to do", "author": "", "license": "Apache-2.0", "dependencies": { - "@esri/arcgis-rest-auth": "^2.1.1", - "@esri/arcgis-rest-portal": "^2.1.1", - "@esri/arcgis-rest-request": "^2.1.1" + "@esri/arcgis-rest-auth": "^2.2.0", + "@esri/arcgis-rest-portal": "^2.2.0", + "@esri/arcgis-rest-request": "^2.2.0" }, "devDependencies": { "http-server": "*" diff --git a/demos/node-cli-item-management/package.json b/demos/node-cli-item-management/package.json index e668f03714..0dd1df2ea9 100644 --- a/demos/node-cli-item-management/package.json +++ b/demos/node-cli-item-management/package.json @@ -1,6 +1,6 @@ { "name": "cli-item-management", - "version": "2.1.1", + "version": "2.2.0", "description": "Manage items in ArcGIS Online with a Node JS CLI and ArcGIS Rest JS", "main": "index.js", "scripts": { @@ -16,9 +16,9 @@ "arcgis-rest-js" ], "dependencies": { - "@esri/arcgis-rest-auth": "^2.1.1", - "@esri/arcgis-rest-portal": "^2.1.1", - "@esri/arcgis-rest-request": "^2.1.1", + "@esri/arcgis-rest-auth": "^2.2.0", + "@esri/arcgis-rest-portal": "^2.2.0", + "@esri/arcgis-rest-request": "^2.2.0", "chalk": "^2.3.0", "cross-fetch": "^3.0.0", "isomorphic-form-data": "^1.0.0", diff --git a/demos/oauth2-browser/package.json b/demos/oauth2-browser/package.json index 363b4c5d98..baea1e7427 100644 --- a/demos/oauth2-browser/package.json +++ b/demos/oauth2-browser/package.json @@ -1,13 +1,13 @@ { "name": "@esri/arcgis-rest-demo-vanilla", - "version": "2.1.1", + "version": "2.2.0", "private": true, "description": "Vanilla JavaScript demo of @esri/arcgis-rest-* packages", "author": "", "license": "Apache-2.0", "dependencies": { - "@esri/arcgis-rest-auth": "^2.1.1", - "@esri/arcgis-rest-request": "^2.1.1" + "@esri/arcgis-rest-auth": "^2.2.0", + "@esri/arcgis-rest-request": "^2.2.0" }, "devDependencies": { "http-server": "*" diff --git a/demos/stream-response-to-file/package.json b/demos/stream-response-to-file/package.json index c694d700f5..6b242a9c0c 100644 --- a/demos/stream-response-to-file/package.json +++ b/demos/stream-response-to-file/package.json @@ -1,6 +1,6 @@ { "name": "stream-response-to-file", - "version": "2.1.1", + "version": "2.2.0", "private": true, "description": "stream response to file with arcgis-rest-request", "main": "index.js", @@ -25,8 +25,8 @@ }, "homepage": "https://github.com/Esri/arcgis-rest-js#readme", "dependencies": { - "@esri/arcgis-rest-feature-layer": "^2.1.1", - "@esri/arcgis-rest-request": "^2.1.1", + "@esri/arcgis-rest-feature-layer": "^2.2.0", + "@esri/arcgis-rest-request": "^2.2.0", "isomorphic-form-data": "^2.0.0", "node-fetch": "^2.3.0" } diff --git a/demos/tree-shaking-rollup/package.json b/demos/tree-shaking-rollup/package.json index c88b6d5bb6..6d2869dd7e 100644 --- a/demos/tree-shaking-rollup/package.json +++ b/demos/tree-shaking-rollup/package.json @@ -1,6 +1,6 @@ { "name": "@esri/arcgis-rest-tree-shaking-rollup", - "version": "2.1.1", + "version": "2.2.0", "private": true, "description": "", "scripts": { @@ -19,7 +19,7 @@ "rollup-plugin-node-resolve": "^4.0.1" }, "dependencies": { - "@esri/arcgis-rest-portal": "^2.1.1", - "@esri/arcgis-rest-request": "^2.1.1" + "@esri/arcgis-rest-portal": "^2.2.0", + "@esri/arcgis-rest-request": "^2.2.0" } } diff --git a/demos/tree-shaking-webpack/package.json b/demos/tree-shaking-webpack/package.json index 06fadbc6b9..295934182f 100644 --- a/demos/tree-shaking-webpack/package.json +++ b/demos/tree-shaking-webpack/package.json @@ -1,6 +1,6 @@ { "name": "@esri/arcgis-rest-tree-shaking-webpack", - "version": "2.1.1", + "version": "2.2.0", "private": true, "description": "", "scripts": { @@ -18,7 +18,7 @@ "webpack-cli": "^3.3.0" }, "dependencies": { - "@esri/arcgis-rest-portal": "^2.1.1", - "@esri/arcgis-rest-request": "^2.1.1" + "@esri/arcgis-rest-portal": "^2.2.0", + "@esri/arcgis-rest-request": "^2.2.0" } } diff --git a/demos/vue/package.json b/demos/vue/package.json index ff7db2afb3..4b6deadc0a 100644 --- a/demos/vue/package.json +++ b/demos/vue/package.json @@ -1,7 +1,7 @@ { "name": "@esri/arcgis-rest-demo-vue-with-popup", "description": "VueJS demo of @esri/arcgis-rest-* packages.", - "version": "2.1.1", + "version": "2.2.0", "author": "", "license": "Apache-2.0", "private": true, @@ -12,8 +12,8 @@ "start": "npm run serve" }, "dependencies": { - "@esri/arcgis-rest-auth": "^2.1.1", - "@esri/arcgis-rest-request": "^2.1.1", + "@esri/arcgis-rest-auth": "^2.2.0", + "@esri/arcgis-rest-request": "^2.2.0", "vue": "^2.5.17", "vue-router": "^3.0.1", "vuex": "^3.0.1" diff --git a/demos/webmap-checker-sapper/package.json b/demos/webmap-checker-sapper/package.json index f15417dc9b..7054a26c5a 100644 --- a/demos/webmap-checker-sapper/package.json +++ b/demos/webmap-checker-sapper/package.json @@ -2,7 +2,7 @@ "name": "sapper-webmap-checker", "description": "this thing is cray cray", "private": true, - "version": "2.1.1", + "version": "2.2.0", "scripts": { "dev": "sapper dev", "build:legacy": "sapper build --legacy", @@ -13,9 +13,9 @@ "test": "run-p --race dev cy:run" }, "dependencies": { - "@esri/arcgis-rest-auth": "^2.1.1", - "@esri/arcgis-rest-portal": "^2.1.1", - "@esri/arcgis-rest-request": "^2.1.1", + "@esri/arcgis-rest-auth": "^2.2.0", + "@esri/arcgis-rest-portal": "^2.2.0", + "@esri/arcgis-rest-request": "^2.2.0", "compression": "^1.7.1", "cookies": "^0.7.3", "cross-fetch": "^3.0.0", diff --git a/docs/src/srihashes.json b/docs/src/srihashes.json index 503d32c703..25101b5784 100644 --- a/docs/src/srihashes.json +++ b/docs/src/srihashes.json @@ -1,12 +1,12 @@ { - "version": "2.1.1", + "version": "2.2.0", "packages": { - "@esri/arcgis-rest-auth": "sha384-2mKN4b/8IGVd4wJDfrkug2tg7pTtFRL44rqZBSOWHBlTvpoU82bzc2BgnBKbOlyS", - "@esri/arcgis-rest-feature-layer": "sha384-Z1leWefQCNeWCpYbZgmQ+SxWmcKN25/pHUlLaoGxUPPjsGpvt8vP+W/MtQfQ9Pny", - "@esri/arcgis-rest-geocoding": "sha384-Da4L0o1m0zlJUAG2PRoT3OnsgXMwzsCh+a22upo39GenYm3LQ9rEVKBlvTWuGErO", - "@esri/arcgis-rest-portal": "sha384-Q600qlD6tdtlnsO4XJZUzr0+zXWmVYBuzutI+02o+JB018piVL479XFnqaODtISN", - "@esri/arcgis-rest-request": "sha384-Lwvy91JddqNoKtXg7DlRDxwsKRv2Gr6xlhUFeX8v0cPSAzzaBGxrFzQLp3fuFfjo", - "@esri/arcgis-rest-routing": "sha384-g0eTf5Xosg7jbqlKz2q5h3etNXvjEjr8gQbQ3McGp9tBHSguN9Mxjq0CpAFDZhqE", - "@esri/arcgis-rest-service-admin": "sha384-hSKxEsJ4vjuFTHMb6g8B5QtyDk3oXL5pGMyAFvpM0tJzGUhnVhuFJKSxr17szgWh" + "@esri/arcgis-rest-auth": "sha384-dBq+A0kEtFc4+tOF6sF9mR/Zs/o5r+b+ZGuDstuMuy5WKDD/groZV6TAud4VE9Gb", + "@esri/arcgis-rest-feature-layer": "sha384-jxpOav2q9rQgfQfYU9kTA1t1Z/uzDenCsIxE+W82ss7E+fmvVT20gyXK2F6VSchq", + "@esri/arcgis-rest-geocoding": "sha384-7adjbE+V1lCcGxGRFJf0zbYVOyxAEG2ibjkZztbPCz7ec6vJ4qEvCtiMHdpd0WKl", + "@esri/arcgis-rest-portal": "sha384-QgVOvnvqcH52ba7ttudoRR8KcCaa/wt2Zvbklmoi9XhqLi7hszyy78aaxW0/yxdS", + "@esri/arcgis-rest-request": "sha384-OoeVd3ED1VlH5+xhBRDDtGfPaQGbSVEaQZi0H0ZQhfVv/KkdGXwvhNZ8BFRaD+Hy", + "@esri/arcgis-rest-routing": "sha384-Opp/bUEiCbdJv9pKHHw3mogHgoCc7UciUT02rgFkLsLVIQ9gbKt5xwen3TkBvonG", + "@esri/arcgis-rest-service-admin": "sha384-Q/o7UbRJN31UDVsVsi/7L6Gj2IYNNKw9WzFEX88rZq5gXGjcw5I2mSBdJTjlZEof" } } \ No newline at end of file diff --git a/lerna.json b/lerna.json index f793a51bd6..9fec9105b5 100644 --- a/lerna.json +++ b/lerna.json @@ -4,5 +4,5 @@ "packages/*", "demos/*" ], - "version": "2.1.1" + "version": "2.2.0" } diff --git a/package-lock.json b/package-lock.json index c045a74cf2..95f1de8c10 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "@esri/arcgis-rest-js", - "version": "2.1.1", + "version": "2.2.0", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index 5c8fa7c989..a7603175f0 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@esri/arcgis-rest-js", - "version": "2.1.1", + "version": "2.2.0", "description": "Compact, modular JavaScript wrappers for the ArcGIS REST API that run in Node.js and modern browsers.", "devDependencies": { "@types/es6-promise": "0.0.32", diff --git a/packages/arcgis-rest-auth/package.json b/packages/arcgis-rest-auth/package.json index 199ceff391..ca656a5a60 100644 --- a/packages/arcgis-rest-auth/package.json +++ b/packages/arcgis-rest-auth/package.json @@ -1,6 +1,6 @@ { "name": "@esri/arcgis-rest-auth", - "version": "2.1.1", + "version": "2.2.0", "description": "Authentication helpers for @esri/arcgis-rest-js.", "main": "dist/node/index.js", "unpkg": "dist/umd/auth.umd.js", @@ -13,11 +13,11 @@ "dist/**" ], "dependencies": { - "@esri/arcgis-rest-types": "^2.1.1", + "@esri/arcgis-rest-types": "^2.2.0", "tslib": "^1.9.3" }, "devDependencies": { - "@esri/arcgis-rest-request": "^2.1.1" + "@esri/arcgis-rest-request": "^2.2.0" }, "peerDependencies": { "@esri/arcgis-rest-request": "^2.0.0" diff --git a/packages/arcgis-rest-feature-layer/package.json b/packages/arcgis-rest-feature-layer/package.json index 77562fcadf..2e338d1744 100644 --- a/packages/arcgis-rest-feature-layer/package.json +++ b/packages/arcgis-rest-feature-layer/package.json @@ -1,6 +1,6 @@ { "name": "@esri/arcgis-rest-feature-layer", - "version": "2.1.1", + "version": "2.2.0", "description": "Feature layer query and edit helpers for @esri/arcgis-rest-js", "main": "dist/node/index.js", "unpkg": "dist/umd/feature-layer.umd.js", @@ -13,12 +13,12 @@ "dist/**" ], "dependencies": { - "@esri/arcgis-rest-types": "^2.1.1", + "@esri/arcgis-rest-types": "^2.2.0", "tslib": "^1.9.3" }, "devDependencies": { - "@esri/arcgis-rest-auth": "^2.1.1", - "@esri/arcgis-rest-request": "^2.1.1" + "@esri/arcgis-rest-auth": "^2.2.0", + "@esri/arcgis-rest-request": "^2.2.0" }, "peerDependencies": { "@esri/arcgis-rest-auth": "^2.0.0", diff --git a/packages/arcgis-rest-geocoding/package.json b/packages/arcgis-rest-geocoding/package.json index 12c50e5f48..c18753b466 100644 --- a/packages/arcgis-rest-geocoding/package.json +++ b/packages/arcgis-rest-geocoding/package.json @@ -1,6 +1,6 @@ { "name": "@esri/arcgis-rest-geocoding", - "version": "2.1.1", + "version": "2.2.0", "description": "Geocoding helpers for @esri/arcgis-rest-js", "main": "dist/node/index.js", "unpkg": "dist/umd/geocoding.umd.js", @@ -13,12 +13,12 @@ "dist/**" ], "dependencies": { - "@esri/arcgis-rest-types": "^2.1.1", + "@esri/arcgis-rest-types": "^2.2.0", "tslib": "^1.9.3" }, "devDependencies": { - "@esri/arcgis-rest-auth": "^2.1.1", - "@esri/arcgis-rest-request": "^2.1.1" + "@esri/arcgis-rest-auth": "^2.2.0", + "@esri/arcgis-rest-request": "^2.2.0" }, "peerDependencies": { "@esri/arcgis-rest-auth": "^2.0.0", diff --git a/packages/arcgis-rest-portal/package.json b/packages/arcgis-rest-portal/package.json index 1902ea5ea9..f4ffa1d1ed 100644 --- a/packages/arcgis-rest-portal/package.json +++ b/packages/arcgis-rest-portal/package.json @@ -1,6 +1,6 @@ { "name": "@esri/arcgis-rest-portal", - "version": "2.1.1", + "version": "2.2.0", "description": "ArcGIS Online and Enterprise content and user helpers for @esri/arcgis-rest-request", "main": "dist/node/index.js", "unpkg": "dist/umd/portal.umd.js", @@ -13,12 +13,12 @@ "dist/**" ], "dependencies": { - "@esri/arcgis-rest-types": "^2.1.1", + "@esri/arcgis-rest-types": "^2.2.0", "tslib": "^1.9.3" }, "devDependencies": { - "@esri/arcgis-rest-auth": "^2.1.1", - "@esri/arcgis-rest-request": "^2.1.1" + "@esri/arcgis-rest-auth": "^2.2.0", + "@esri/arcgis-rest-request": "^2.2.0" }, "peerDependencies": { "@esri/arcgis-rest-auth": "^2.0.0", diff --git a/packages/arcgis-rest-request/package.json b/packages/arcgis-rest-request/package.json index 3bd8667007..d9eee5791b 100644 --- a/packages/arcgis-rest-request/package.json +++ b/packages/arcgis-rest-request/package.json @@ -1,6 +1,6 @@ { "name": "@esri/arcgis-rest-request", - "version": "2.1.1", + "version": "2.2.0", "description": "Common methods and utilities for @esri/arcgis-rest-js packages.", "main": "dist/node/index.js", "unpkg": "dist/umd/request.umd.js", diff --git a/packages/arcgis-rest-routing/package.json b/packages/arcgis-rest-routing/package.json index 003d846a91..5e3a5890d9 100644 --- a/packages/arcgis-rest-routing/package.json +++ b/packages/arcgis-rest-routing/package.json @@ -1,6 +1,6 @@ { "name": "@esri/arcgis-rest-routing", - "version": "2.1.1", + "version": "2.2.0", "description": "Routing helpers for @esri/arcgis-rest-js", "main": "dist/node/index.js", "unpkg": "dist/umd/routing.umd.js", @@ -13,12 +13,12 @@ "dist/**" ], "dependencies": { - "@esri/arcgis-rest-types": "^2.1.1", + "@esri/arcgis-rest-types": "^2.2.0", "tslib": "^1.9.3" }, "devDependencies": { - "@esri/arcgis-rest-auth": "^2.1.1", - "@esri/arcgis-rest-request": "^2.1.1" + "@esri/arcgis-rest-auth": "^2.2.0", + "@esri/arcgis-rest-request": "^2.2.0" }, "peerDependencies": { "@esri/arcgis-rest-auth": "^2.0.0", diff --git a/packages/arcgis-rest-service-admin/package.json b/packages/arcgis-rest-service-admin/package.json index f8ef9c48fc..f8dce3eae8 100644 --- a/packages/arcgis-rest-service-admin/package.json +++ b/packages/arcgis-rest-service-admin/package.json @@ -1,6 +1,6 @@ { "name": "@esri/arcgis-rest-service-admin", - "version": "2.1.1", + "version": "2.2.0", "description": "Service administration helpers for @esri/arcgis-rest-js", "main": "dist/node/index.js", "unpkg": "dist/umd/service-admin.umd.js", @@ -13,13 +13,13 @@ "dist/**" ], "dependencies": { - "@esri/arcgis-rest-types": "^2.1.1", + "@esri/arcgis-rest-types": "^2.2.0", "tslib": "^1.9.3" }, "devDependencies": { - "@esri/arcgis-rest-auth": "^2.1.1", - "@esri/arcgis-rest-portal": "^2.1.1", - "@esri/arcgis-rest-request": "^2.1.1" + "@esri/arcgis-rest-auth": "^2.2.0", + "@esri/arcgis-rest-portal": "^2.2.0", + "@esri/arcgis-rest-request": "^2.2.0" }, "peerDependencies": { "@esri/arcgis-rest-auth": "^2.0.0", diff --git a/packages/arcgis-rest-types/package.json b/packages/arcgis-rest-types/package.json index 724ffa863d..71314ea69f 100755 --- a/packages/arcgis-rest-types/package.json +++ b/packages/arcgis-rest-types/package.json @@ -1,6 +1,6 @@ { "name": "@esri/arcgis-rest-types", - "version": "2.1.1", + "version": "2.2.0", "description": "Shared TypeScript types for @esri/arcgis-rest-js", "types": "dist/types/index.d.ts", "author": "",