culparepellendus 1.0.0
Sign up to get free protection for your applications and to get access to all the features.
- package/.env.example +2 -0
- package/.eslintrc.js +20 -0
- package/.github/workflows/deploy-docs.yml +27 -0
- package/.github/workflows/pre-release-tests.yml +45 -0
- package/.github/workflows/pull-request-tests.yml +45 -0
- package/.prettierignore +2 -0
- package/.prettierrc +19 -0
- package/.vscode/launch.json +24 -0
- package/.vscode/settings.json +3 -0
- package/codecov.yml +7 -0
- package/demos/.eslintrc.js +13 -0
- package/demos/ago-node-cli/README.md +29 -0
- package/demos/ago-node-cli/ago.js +33 -0
- package/demos/ago-node-cli/index.js +11 -0
- package/demos/ago-node-cli/lib/item-export-command.js +48 -0
- package/demos/ago-node-cli/lib/item-search-command.js +35 -0
- package/demos/ago-node-cli/package-lock.json +430 -0
- package/demos/ago-node-cli/package.json +30 -0
- package/demos/attachments/README.md +5 -0
- package/demos/attachments/index.html +165 -0
- package/demos/attachments/package-lock.json +543 -0
- package/demos/attachments/package.json +18 -0
- package/demos/batch-geocoder-node/NYC_Restaurant_Inspection_Results.csv +100 -0
- package/demos/batch-geocoder-node/README.md +15 -0
- package/demos/batch-geocoder-node/batch-geocode.js +115 -0
- package/demos/batch-geocoder-node/config-template.js +18 -0
- package/demos/batch-geocoder-node/package-lock.json +336 -0
- package/demos/batch-geocoder-node/package.json +37 -0
- package/demos/express/README.md +15 -0
- package/demos/express/config.json.template +3 -0
- package/demos/express/package-lock.json +1008 -0
- package/demos/express/package.json +18 -0
- package/demos/express/server.js +33 -0
- package/demos/feature-service-browser/README.md +6 -0
- package/demos/feature-service-browser/index.html +122 -0
- package/demos/feature-service-browser/package-lock.json +543 -0
- package/demos/feature-service-browser/package.json +18 -0
- package/demos/geocoder-browser/README.md +10 -0
- package/demos/geocoder-browser/config.js.template +1 -0
- package/demos/geocoder-browser/index.html +131 -0
- package/demos/geocoder-browser/package-lock.json +610 -0
- package/demos/geocoder-browser/package.json +19 -0
- package/demos/geocoder-browser/post-sign-in.html +25 -0
- package/demos/jsapi-integration/README.md +25 -0
- package/demos/jsapi-integration/config.js +6 -0
- package/demos/jsapi-integration/index.html +93 -0
- package/demos/jsapi-integration/package-lock.json +247 -0
- package/demos/jsapi-integration/package.json +19 -0
- package/demos/node-cli-item-management/README.md +10 -0
- package/demos/node-cli-item-management/index.js +238 -0
- package/demos/node-cli-item-management/package-lock.json +432 -0
- package/demos/node-cli-item-management/package.json +27 -0
- package/demos/node-cli-item-management/screenshot.png +0 -0
- package/demos/oauth2-browser/README.md +14 -0
- package/demos/oauth2-browser/authenticate.html +30 -0
- package/demos/oauth2-browser/config.js.template +6 -0
- package/demos/oauth2-browser/index.html +211 -0
- package/demos/oauth2-browser/logo.svg +4 -0
- package/demos/oauth2-browser/package-lock.json +474 -0
- package/demos/oauth2-browser/package.json +18 -0
- package/demos/oauth2-browser/style.css +36 -0
- package/demos/oauth2-browser-retry/README.md +25 -0
- package/demos/oauth2-browser-retry/authenticate.html +22 -0
- package/demos/oauth2-browser-retry/index.html +116 -0
- package/demos/oauth2-browser-retry/logo.svg +4 -0
- package/demos/stream-response-to-file/README.md +7 -0
- package/demos/stream-response-to-file/index.js +36 -0
- package/demos/stream-response-to-file/output/.gitkeep +0 -0
- package/demos/stream-response-to-file/package-lock.json +227 -0
- package/demos/stream-response-to-file/package.json +33 -0
- package/demos/tree-shaking-rollup/.babelrc +3 -0
- package/demos/tree-shaking-rollup/README.md +9 -0
- package/demos/tree-shaking-rollup/index.html +11 -0
- package/demos/tree-shaking-rollup/package-lock.json +5646 -0
- package/demos/tree-shaking-rollup/package.json +25 -0
- package/demos/tree-shaking-rollup/rollup.config.js +17 -0
- package/demos/tree-shaking-rollup/src/index.js +8 -0
- package/demos/tree-shaking-webpack/README.md +8 -0
- package/demos/tree-shaking-webpack/index.html +11 -0
- package/demos/tree-shaking-webpack/package-lock.json +11455 -0
- package/demos/tree-shaking-webpack/package.json +24 -0
- package/demos/tree-shaking-webpack/src/index.js +10 -0
- package/demos/tree-shaking-webpack/webpack.config.js +27 -0
- package/demos/vue/.env.example +11 -0
- package/demos/vue/.eslintrc.js +17 -0
- package/demos/vue/.postcssrc.js +5 -0
- package/demos/vue/README.md +17 -0
- package/demos/vue/babel.config.js +3 -0
- package/demos/vue/package-lock.json +28044 -0
- package/demos/vue/package.json +33 -0
- package/demos/vue/public/favicon.ico +0 -0
- package/demos/vue/public/index.html +24 -0
- package/demos/vue/src/assets/logo.svg +29 -0
- package/demos/vue/src/components/App.vue +305 -0
- package/demos/vue/src/components/Authenticate.vue +65 -0
- package/demos/vue/src/components/Loader.vue +230 -0
- package/demos/vue/src/main.js +92 -0
- package/demos/webmap-checker-sapper/.env.example +5 -0
- package/demos/webmap-checker-sapper/README.md +123 -0
- package/demos/webmap-checker-sapper/appveyor.yml +18 -0
- package/demos/webmap-checker-sapper/cypress/fixtures/example.json +5 -0
- package/demos/webmap-checker-sapper/cypress/integration/spec.js +19 -0
- package/demos/webmap-checker-sapper/cypress/plugins/index.js +17 -0
- package/demos/webmap-checker-sapper/cypress/support/commands.js +25 -0
- package/demos/webmap-checker-sapper/cypress/support/index.js +20 -0
- package/demos/webmap-checker-sapper/cypress.json +4 -0
- package/demos/webmap-checker-sapper/package-lock.json +9622 -0
- package/demos/webmap-checker-sapper/package.json +50 -0
- package/demos/webmap-checker-sapper/rollup.config.js +87 -0
- package/demos/webmap-checker-sapper/src/client.js +20 -0
- package/demos/webmap-checker-sapper/src/components/LayerStatus.html +108 -0
- package/demos/webmap-checker-sapper/src/components/Nav.html +21 -0
- package/demos/webmap-checker-sapper/src/components/WebMap.html +62 -0
- package/demos/webmap-checker-sapper/src/routes/_error.html +41 -0
- package/demos/webmap-checker-sapper/src/routes/_layout.html +21 -0
- package/demos/webmap-checker-sapper/src/routes/auth/authorize.js +18 -0
- package/demos/webmap-checker-sapper/src/routes/auth/exchange-token.js +20 -0
- package/demos/webmap-checker-sapper/src/routes/auth/post-sign-in.js +24 -0
- package/demos/webmap-checker-sapper/src/routes/auth/sign-out.js +10 -0
- package/demos/webmap-checker-sapper/src/routes/index.html +20 -0
- package/demos/webmap-checker-sapper/src/routes/webmaps/[webmapId].html +83 -0
- package/demos/webmap-checker-sapper/src/routes/webmaps/index.html +59 -0
- package/demos/webmap-checker-sapper/src/server.js +101 -0
- package/demos/webmap-checker-sapper/src/service-worker.js +82 -0
- package/demos/webmap-checker-sapper/src/template.html +33 -0
- package/demos/webmap-checker-sapper/src/userInfoMiddleware.js +21 -0
- package/demos/webmap-checker-sapper/src/utils.js +33 -0
- package/demos/webmap-checker-sapper/static/favicon.png +0 -0
- package/demos/webmap-checker-sapper/static/global.css +36 -0
- package/demos/webmap-checker-sapper/static/manifest.json +20 -0
- package/demos/webmap-checker-sapper/static/svelte-logo-192.png +0 -0
- package/demos/webmap-checker-sapper/static/svelte-logo-512.png +0 -0
- package/docs/.eslintrc.js +12 -0
- package/docs/FAQ.md +48 -0
- package/docs/HISTORY.md +62 -0
- package/docs/acetate.config.js +262 -0
- package/docs/build-typedoc.js +434 -0
- package/docs/generate-srihashes.js +53 -0
- package/docs/src/_layout.html +86 -0
- package/docs/src/api/_declaration.html +600 -0
- package/docs/src/api/_layout.html +204 -0
- package/docs/src/api/_package.html +38 -0
- package/docs/src/api/index.html +16 -0
- package/docs/src/guides/_layout.html +24 -0
- package/docs/src/guides/amd-requirejs-dojo.md +40 -0
- package/docs/src/guides/browser-authentication.md +39 -0
- package/docs/src/guides/bundlers.md +52 -0
- package/docs/src/guides/cli-authentication.md +9 -0
- package/docs/src/guides/client-server-authentication.md +9 -0
- package/docs/src/guides/embedded-apps.md +106 -0
- package/docs/src/guides/from-a-cdn.md +38 -0
- package/docs/src/guides/index.md +59 -0
- package/docs/src/guides/node.md +104 -0
- package/docs/src/guides/package-overview.md +111 -0
- package/docs/src/guides/server-authentication.md +9 -0
- package/docs/src/guides/whats-new-v2-0.md +305 -0
- package/docs/src/img/icons.png +0 -0
- package/docs/src/img/icons@2x.png +0 -0
- package/docs/src/img/oauth-browser.png +0 -0
- package/docs/src/index.html +12 -0
- package/docs/src/js/api-search.js +112 -0
- package/docs/src/js/nav-toggle.js +41 -0
- package/docs/src/sass/_highlight.scss +96 -0
- package/docs/src/sass/_icons.scss +157 -0
- package/docs/src/sass/style.scss +242 -0
- package/docs/src/srihashes.json +12 -0
- package/jasmine.json +7 -0
- package/jasmine.live.json +7 -0
- package/karma.conf.js +107 -0
- package/lerna.json +8 -0
- package/notes/README.md +68 -0
- package/package.json +87 -0
- package/packages/arcgis-rest-auth/README.md +71 -0
- package/packages/arcgis-rest-auth/package-lock.json +27 -0
- package/packages/arcgis-rest-auth/package.json +69 -0
- package/packages/arcgis-rest-auth/post-message-auth-spec.md +70 -0
- package/packages/arcgis-rest-auth/src/ApiKey.ts +41 -0
- package/packages/arcgis-rest-auth/src/ApplicationSession.ts +122 -0
- package/packages/arcgis-rest-auth/src/UserSession.ts +1376 -0
- package/packages/arcgis-rest-auth/src/app-tokens.ts +131 -0
- package/packages/arcgis-rest-auth/src/authenticated-request-options.ts +24 -0
- package/packages/arcgis-rest-auth/src/federation-utils.ts +85 -0
- package/packages/arcgis-rest-auth/src/fetch-token.ts +50 -0
- package/packages/arcgis-rest-auth/src/generate-token.ts +35 -0
- package/packages/arcgis-rest-auth/src/index.ts +13 -0
- package/packages/arcgis-rest-auth/src/validate-app-access.ts +68 -0
- package/packages/arcgis-rest-auth/test/ApiKey.test.ts +35 -0
- package/packages/arcgis-rest-auth/test/ApplicationSession.test.ts +124 -0
- package/packages/arcgis-rest-auth/test/UserSession.test.ts +2430 -0
- package/packages/arcgis-rest-auth/test/app-tokens.test.ts +95 -0
- package/packages/arcgis-rest-auth/test/federation-utils.test.ts +323 -0
- package/packages/arcgis-rest-auth/test/fetchToken.test.ts +112 -0
- package/packages/arcgis-rest-auth/test/generateToken.test.ts +102 -0
- package/packages/arcgis-rest-auth/test/utils.ts +14 -0
- package/packages/arcgis-rest-auth/test/validate-app-access.test.ts +46 -0
- package/packages/arcgis-rest-auth/tsconfig.json +6 -0
- package/packages/arcgis-rest-demographics/README.md +75 -0
- package/packages/arcgis-rest-demographics/package-lock.json +11 -0
- package/packages/arcgis-rest-demographics/package.json +69 -0
- package/packages/arcgis-rest-demographics/src/getAvailableCountries.ts +113 -0
- package/packages/arcgis-rest-demographics/src/getAvailableDataCollections.ts +166 -0
- package/packages/arcgis-rest-demographics/src/getAvailableGeographyLevels.ts +88 -0
- package/packages/arcgis-rest-demographics/src/getGeography.ts +152 -0
- package/packages/arcgis-rest-demographics/src/helpers.ts +28 -0
- package/packages/arcgis-rest-demographics/src/index.ts +8 -0
- package/packages/arcgis-rest-demographics/src/queryDemographicData.ts +106 -0
- package/packages/arcgis-rest-demographics/test/getAvailableCountries.test.ts +92 -0
- package/packages/arcgis-rest-demographics/test/getAvailableDataCollections.test.ts +115 -0
- package/packages/arcgis-rest-demographics/test/getAvailableGeographyLevels.test.ts +72 -0
- package/packages/arcgis-rest-demographics/test/getGeography.test.ts +141 -0
- package/packages/arcgis-rest-demographics/test/mocks/responses.ts +4 -0
- package/packages/arcgis-rest-demographics/test/queryDemographicData.test.live.ts +42 -0
- package/packages/arcgis-rest-demographics/test/queryDemographicData.test.ts +113 -0
- package/packages/arcgis-rest-demographics/tsconfig.json +6 -0
- package/packages/arcgis-rest-feature-layer/README.md +77 -0
- package/packages/arcgis-rest-feature-layer/package-lock.json +11 -0
- package/packages/arcgis-rest-feature-layer/package.json +64 -0
- package/packages/arcgis-rest-feature-layer/src/add.ts +56 -0
- package/packages/arcgis-rest-feature-layer/src/addAttachment.ts +53 -0
- package/packages/arcgis-rest-feature-layer/src/applyEdits.ts +95 -0
- package/packages/arcgis-rest-feature-layer/src/decodeValues.ts +122 -0
- package/packages/arcgis-rest-feature-layer/src/delete.ts +61 -0
- package/packages/arcgis-rest-feature-layer/src/deleteAttachments.ts +52 -0
- package/packages/arcgis-rest-feature-layer/src/getAllLayersAndTables.ts +30 -0
- package/packages/arcgis-rest-feature-layer/src/getAttachments.ts +55 -0
- package/packages/arcgis-rest-feature-layer/src/getLayer.ts +24 -0
- package/packages/arcgis-rest-feature-layer/src/getService.ts +26 -0
- package/packages/arcgis-rest-feature-layer/src/helpers.ts +97 -0
- package/packages/arcgis-rest-feature-layer/src/index.ts +32 -0
- package/packages/arcgis-rest-feature-layer/src/query.ts +204 -0
- package/packages/arcgis-rest-feature-layer/src/queryRelated.ts +89 -0
- package/packages/arcgis-rest-feature-layer/src/update.ts +60 -0
- package/packages/arcgis-rest-feature-layer/src/updateAttachment.ts +59 -0
- package/packages/arcgis-rest-feature-layer/test/attachments.test.ts +200 -0
- package/packages/arcgis-rest-feature-layer/test/crud.test.ts +197 -0
- package/packages/arcgis-rest-feature-layer/test/decodeValues.test.ts +67 -0
- package/packages/arcgis-rest-feature-layer/test/getAllLayersAndTables.test.ts +28 -0
- package/packages/arcgis-rest-feature-layer/test/getLayer.test.ts +31 -0
- package/packages/arcgis-rest-feature-layer/test/getService.test.ts +31 -0
- package/packages/arcgis-rest-feature-layer/test/helpers.test.ts +25 -0
- package/packages/arcgis-rest-feature-layer/test/mocks/allLayersAndTablesResponse.ts +906 -0
- package/packages/arcgis-rest-feature-layer/test/mocks/cvdQueryResponse.ts +225 -0
- package/packages/arcgis-rest-feature-layer/test/mocks/feature.ts +302 -0
- package/packages/arcgis-rest-feature-layer/test/mocks/fields.ts +779 -0
- package/packages/arcgis-rest-feature-layer/test/mocks/foo.txt +1 -0
- package/packages/arcgis-rest-feature-layer/test/mocks/service.ts +398 -0
- package/packages/arcgis-rest-feature-layer/test/query.test.ts +167 -0
- package/packages/arcgis-rest-feature-layer/tsconfig.json +6 -0
- package/packages/arcgis-rest-geocoding/README.md +86 -0
- package/packages/arcgis-rest-geocoding/package-lock.json +43 -0
- package/packages/arcgis-rest-geocoding/package.json +66 -0
- package/packages/arcgis-rest-geocoding/src/bulk.ts +104 -0
- package/packages/arcgis-rest-geocoding/src/geocode.ts +166 -0
- package/packages/arcgis-rest-geocoding/src/helpers.ts +56 -0
- package/packages/arcgis-rest-geocoding/src/index.ts +15 -0
- package/packages/arcgis-rest-geocoding/src/reverse.ts +84 -0
- package/packages/arcgis-rest-geocoding/src/suggest.ts +45 -0
- package/packages/arcgis-rest-geocoding/test/bulk.test.ts +194 -0
- package/packages/arcgis-rest-geocoding/test/geocode.test.ts +253 -0
- package/packages/arcgis-rest-geocoding/test/helpers.test.ts +85 -0
- package/packages/arcgis-rest-geocoding/test/mocks/responses.ts +591 -0
- package/packages/arcgis-rest-geocoding/test/reverse.test.ts +126 -0
- package/packages/arcgis-rest-geocoding/test/suggest.test.ts +53 -0
- package/packages/arcgis-rest-geocoding/tsconfig.json +6 -0
- package/packages/arcgis-rest-portal/README.md +73 -0
- package/packages/arcgis-rest-portal/package-lock.json +37 -0
- package/packages/arcgis-rest-portal/package.json +64 -0
- package/packages/arcgis-rest-portal/src/groups/add-users.ts +140 -0
- package/packages/arcgis-rest-portal/src/groups/create.ts +43 -0
- package/packages/arcgis-rest-portal/src/groups/get.ts +184 -0
- package/packages/arcgis-rest-portal/src/groups/helpers.ts +14 -0
- package/packages/arcgis-rest-portal/src/groups/invite-users.ts +127 -0
- package/packages/arcgis-rest-portal/src/groups/join.ts +57 -0
- package/packages/arcgis-rest-portal/src/groups/notification.ts +77 -0
- package/packages/arcgis-rest-portal/src/groups/protect.ts +56 -0
- package/packages/arcgis-rest-portal/src/groups/remove-users.ts +76 -0
- package/packages/arcgis-rest-portal/src/groups/remove.ts +32 -0
- package/packages/arcgis-rest-portal/src/groups/search.ts +47 -0
- package/packages/arcgis-rest-portal/src/groups/update-user-membership.ts +63 -0
- package/packages/arcgis-rest-portal/src/groups/update.ts +39 -0
- package/packages/arcgis-rest-portal/src/index.ts +70 -0
- package/packages/arcgis-rest-portal/src/items/add.ts +138 -0
- package/packages/arcgis-rest-portal/src/items/content.ts +67 -0
- package/packages/arcgis-rest-portal/src/items/create.ts +150 -0
- package/packages/arcgis-rest-portal/src/items/export.ts +80 -0
- package/packages/arcgis-rest-portal/src/items/get.ts +437 -0
- package/packages/arcgis-rest-portal/src/items/helpers.ts +292 -0
- package/packages/arcgis-rest-portal/src/items/protect.ts +41 -0
- package/packages/arcgis-rest-portal/src/items/reassign.ts +61 -0
- package/packages/arcgis-rest-portal/src/items/remove.ts +141 -0
- package/packages/arcgis-rest-portal/src/items/search.ts +25 -0
- package/packages/arcgis-rest-portal/src/items/update.ts +185 -0
- package/packages/arcgis-rest-portal/src/items/upload.ts +125 -0
- package/packages/arcgis-rest-portal/src/orgs/notification.ts +131 -0
- package/packages/arcgis-rest-portal/src/services/get-unique-service-name.ts +35 -0
- package/packages/arcgis-rest-portal/src/services/is-service-name-available.ts +30 -0
- package/packages/arcgis-rest-portal/src/sharing/access.ts +84 -0
- package/packages/arcgis-rest-portal/src/sharing/helpers.ts +81 -0
- package/packages/arcgis-rest-portal/src/sharing/is-item-shared-with-group.ts +42 -0
- package/packages/arcgis-rest-portal/src/sharing/share-item-with-group.ts +340 -0
- package/packages/arcgis-rest-portal/src/sharing/unshare-item-with-group.ts +105 -0
- package/packages/arcgis-rest-portal/src/users/get-user-tags.ts +52 -0
- package/packages/arcgis-rest-portal/src/users/get-user-url.ts +18 -0
- package/packages/arcgis-rest-portal/src/users/get-user.ts +58 -0
- package/packages/arcgis-rest-portal/src/users/invitation.ts +156 -0
- package/packages/arcgis-rest-portal/src/users/notification.ts +68 -0
- package/packages/arcgis-rest-portal/src/users/search-users.ts +37 -0
- package/packages/arcgis-rest-portal/src/users/update.ts +66 -0
- package/packages/arcgis-rest-portal/src/util/SearchQueryBuilder.ts +391 -0
- package/packages/arcgis-rest-portal/src/util/array.ts +16 -0
- package/packages/arcgis-rest-portal/src/util/generic-search.ts +114 -0
- package/packages/arcgis-rest-portal/src/util/get-portal-settings.ts +45 -0
- package/packages/arcgis-rest-portal/src/util/get-portal-url.ts +28 -0
- package/packages/arcgis-rest-portal/src/util/get-portal.ts +53 -0
- package/packages/arcgis-rest-portal/src/util/get-subscription-info.ts +43 -0
- package/packages/arcgis-rest-portal/src/util/scrub-control-chars.ts +13 -0
- package/packages/arcgis-rest-portal/src/util/search.ts +47 -0
- package/packages/arcgis-rest-portal/test/groups/add-users.test.ts +239 -0
- package/packages/arcgis-rest-portal/test/groups/crud.test.ts +180 -0
- package/packages/arcgis-rest-portal/test/groups/get.test.ts +176 -0
- package/packages/arcgis-rest-portal/test/groups/invite-users.test.ts +146 -0
- package/packages/arcgis-rest-portal/test/groups/join.test.ts +72 -0
- package/packages/arcgis-rest-portal/test/groups/notification.test.ts +112 -0
- package/packages/arcgis-rest-portal/test/groups/protect.test.ts +72 -0
- package/packages/arcgis-rest-portal/test/groups/remove-users.test.ts +140 -0
- package/packages/arcgis-rest-portal/test/groups/search.test.ts +151 -0
- package/packages/arcgis-rest-portal/test/groups/update-user-membership.test.ts +62 -0
- package/packages/arcgis-rest-portal/test/items/add.test.ts +323 -0
- package/packages/arcgis-rest-portal/test/items/content.test.ts +156 -0
- package/packages/arcgis-rest-portal/test/items/create.test.ts +400 -0
- package/packages/arcgis-rest-portal/test/items/export.test.ts +122 -0
- package/packages/arcgis-rest-portal/test/items/get.test.ts +583 -0
- package/packages/arcgis-rest-portal/test/items/helpers.test.ts +60 -0
- package/packages/arcgis-rest-portal/test/items/protect.test.ts +122 -0
- package/packages/arcgis-rest-portal/test/items/reassign.test.ts +131 -0
- package/packages/arcgis-rest-portal/test/items/remove.test.ts +261 -0
- package/packages/arcgis-rest-portal/test/items/search.test.ts +322 -0
- package/packages/arcgis-rest-portal/test/items/update.test.ts +556 -0
- package/packages/arcgis-rest-portal/test/items/upload.test.ts +282 -0
- package/packages/arcgis-rest-portal/test/mocks/groups/responses.ts +208 -0
- package/packages/arcgis-rest-portal/test/mocks/items/foo.zip +0 -0
- package/packages/arcgis-rest-portal/test/mocks/items/item.ts +526 -0
- package/packages/arcgis-rest-portal/test/mocks/items/resources.ts +38 -0
- package/packages/arcgis-rest-portal/test/mocks/items/search.ts +121 -0
- package/packages/arcgis-rest-portal/test/mocks/portal/response.ts +126 -0
- package/packages/arcgis-rest-portal/test/mocks/portal/settings-response.ts +56 -0
- package/packages/arcgis-rest-portal/test/mocks/sharing/sharing.ts +18 -0
- package/packages/arcgis-rest-portal/test/mocks/users/invitation.ts +70 -0
- package/packages/arcgis-rest-portal/test/mocks/users/notification.ts +34 -0
- package/packages/arcgis-rest-portal/test/mocks/users/user-search.ts +388 -0
- package/packages/arcgis-rest-portal/test/mocks/users/user-tags.ts +5 -0
- package/packages/arcgis-rest-portal/test/mocks/users/user.ts +174 -0
- package/packages/arcgis-rest-portal/test/orgs/notification.test.ts +144 -0
- package/packages/arcgis-rest-portal/test/services/get-unique-service-name.test.ts +59 -0
- package/packages/arcgis-rest-portal/test/services/is-service-name-available.test.ts +46 -0
- package/packages/arcgis-rest-portal/test/sharing/access.test.ts +162 -0
- package/packages/arcgis-rest-portal/test/sharing/helpers.test.ts +55 -0
- package/packages/arcgis-rest-portal/test/sharing/share-item-with-group.test.ts +1382 -0
- package/packages/arcgis-rest-portal/test/sharing/unshare-item-with-group.test.ts +288 -0
- package/packages/arcgis-rest-portal/test/users/get-user-tags.test.ts +71 -0
- package/packages/arcgis-rest-portal/test/users/get-user-url.test.ts +40 -0
- package/packages/arcgis-rest-portal/test/users/get-user.test.ts +90 -0
- package/packages/arcgis-rest-portal/test/users/invitation.test.ts +127 -0
- package/packages/arcgis-rest-portal/test/users/notification.test.ts +77 -0
- package/packages/arcgis-rest-portal/test/users/search.test.ts +42 -0
- package/packages/arcgis-rest-portal/test/users/update.test.ts +151 -0
- package/packages/arcgis-rest-portal/test/util/SearchQueryBuilder.test.ts +345 -0
- package/packages/arcgis-rest-portal/test/util/array.test.ts +30 -0
- package/packages/arcgis-rest-portal/test/util/get-portal-settings.test.ts +68 -0
- package/packages/arcgis-rest-portal/test/util/get-portal-url.test.ts +37 -0
- package/packages/arcgis-rest-portal/test/util/portal.test.ts +148 -0
- package/packages/arcgis-rest-portal/test/util/scrub-control-chars.test.ts +22 -0
- package/packages/arcgis-rest-portal/tsconfig.json +6 -0
- package/packages/arcgis-rest-request/README.md +72 -0
- package/packages/arcgis-rest-request/package-lock.json +13 -0
- package/packages/arcgis-rest-request/package.json +60 -0
- package/packages/arcgis-rest-request/src/index.ts +25 -0
- package/packages/arcgis-rest-request/src/request.ts +433 -0
- package/packages/arcgis-rest-request/src/utils/ArcGISRequestError.ts +76 -0
- package/packages/arcgis-rest-request/src/utils/ErrorTypes.ts +29 -0
- package/packages/arcgis-rest-request/src/utils/GrantTypes.ts +5 -0
- package/packages/arcgis-rest-request/src/utils/HTTPMethods.ts +6 -0
- package/packages/arcgis-rest-request/src/utils/IAuthenticationManager.ts +22 -0
- package/packages/arcgis-rest-request/src/utils/IFetchTokenParams.ts +11 -0
- package/packages/arcgis-rest-request/src/utils/IGenerateTokenParams.ts +9 -0
- package/packages/arcgis-rest-request/src/utils/IParamBuilder.ts +3 -0
- package/packages/arcgis-rest-request/src/utils/IParams.ts +6 -0
- package/packages/arcgis-rest-request/src/utils/IParamsBuilder.ts +5 -0
- package/packages/arcgis-rest-request/src/utils/IRequestOptions.ts +54 -0
- package/packages/arcgis-rest-request/src/utils/ITokenRequestOptions.ts +9 -0
- package/packages/arcgis-rest-request/src/utils/ResponseFormats.ts +10 -0
- package/packages/arcgis-rest-request/src/utils/append-custom-params.ts +49 -0
- package/packages/arcgis-rest-request/src/utils/clean-url.ts +20 -0
- package/packages/arcgis-rest-request/src/utils/decode-query-string.ts +27 -0
- package/packages/arcgis-rest-request/src/utils/encode-form-data.ts +38 -0
- package/packages/arcgis-rest-request/src/utils/encode-query-string.ts +35 -0
- package/packages/arcgis-rest-request/src/utils/process-params.ts +109 -0
- package/packages/arcgis-rest-request/src/utils/retryAuthError.ts +10 -0
- package/packages/arcgis-rest-request/src/utils/warn.ts +11 -0
- package/packages/arcgis-rest-request/src/utils/with-options.ts +48 -0
- package/packages/arcgis-rest-request/test/mocks/errors.ts +76 -0
- package/packages/arcgis-rest-request/test/mocks/geojson-feature-collection.ts +13 -0
- package/packages/arcgis-rest-request/test/mocks/param-builder.ts +7 -0
- package/packages/arcgis-rest-request/test/mocks/sharing-rest-info.ts +41 -0
- package/packages/arcgis-rest-request/test/mocks/webmap.ts +41 -0
- package/packages/arcgis-rest-request/test/request.test.ts +621 -0
- package/packages/arcgis-rest-request/test/utils/ArcGISAuthError.test.ts +191 -0
- package/packages/arcgis-rest-request/test/utils/ArcGISRequestError.test.ts +51 -0
- package/packages/arcgis-rest-request/test/utils/check-for-errors.test.ts +111 -0
- package/packages/arcgis-rest-request/test/utils/clean-url.test.ts +50 -0
- package/packages/arcgis-rest-request/test/utils/encode-form-data.test.ts +133 -0
- package/packages/arcgis-rest-request/test/utils/encode-query-string.test.ts +18 -0
- package/packages/arcgis-rest-request/test/utils/process-params.test.ts +205 -0
- package/packages/arcgis-rest-request/test/utils/with-options.test.ts +133 -0
- package/packages/arcgis-rest-request/tsconfig.json +4 -0
- package/packages/arcgis-rest-routing/README.md +75 -0
- package/packages/arcgis-rest-routing/package-lock.json +43 -0
- package/packages/arcgis-rest-routing/package.json +65 -0
- package/packages/arcgis-rest-routing/src/closestFacility.ts +225 -0
- package/packages/arcgis-rest-routing/src/helpers.ts +104 -0
- package/packages/arcgis-rest-routing/src/index.ts +14 -0
- package/packages/arcgis-rest-routing/src/originDestinationMatrix.ts +223 -0
- package/packages/arcgis-rest-routing/src/serviceArea.ts +173 -0
- package/packages/arcgis-rest-routing/src/solveRoute.ts +180 -0
- package/packages/arcgis-rest-routing/test/closestFacility.test.ts +683 -0
- package/packages/arcgis-rest-routing/test/mocks/inputs.ts +132 -0
- package/packages/arcgis-rest-routing/test/mocks/responses.ts +13322 -0
- package/packages/arcgis-rest-routing/test/originDestinationMatrix.test.ts +797 -0
- package/packages/arcgis-rest-routing/test/serviceArea.test.ts +601 -0
- package/packages/arcgis-rest-routing/test/solveRoute.test.ts +677 -0
- package/packages/arcgis-rest-routing/tsconfig.json +6 -0
- package/packages/arcgis-rest-service-admin/README.md +73 -0
- package/packages/arcgis-rest-service-admin/package-lock.json +11 -0
- package/packages/arcgis-rest-service-admin/package.json +65 -0
- package/packages/arcgis-rest-service-admin/src/addTo.ts +70 -0
- package/packages/arcgis-rest-service-admin/src/create.ts +189 -0
- package/packages/arcgis-rest-service-admin/src/get-service-admin-info.ts +34 -0
- package/packages/arcgis-rest-service-admin/src/get-view-sources.ts +20 -0
- package/packages/arcgis-rest-service-admin/src/index.ts +14 -0
- package/packages/arcgis-rest-service-admin/src/update.ts +50 -0
- package/packages/arcgis-rest-service-admin/test/addTo.test.ts +350 -0
- package/packages/arcgis-rest-service-admin/test/create.test.ts +294 -0
- package/packages/arcgis-rest-service-admin/test/get-service-admin-info.test.ts +37 -0
- package/packages/arcgis-rest-service-admin/test/get-view-sources.test.ts +40 -0
- package/packages/arcgis-rest-service-admin/test/mocks/layerDefinition.ts +79 -0
- package/packages/arcgis-rest-service-admin/test/mocks/service.ts +81 -0
- package/packages/arcgis-rest-service-admin/test/update.test.ts +115 -0
- package/packages/arcgis-rest-service-admin/tsconfig.json +5 -0
- package/packages/arcgis-rest-types/README.md +66 -0
- package/packages/arcgis-rest-types/package-lock.json +5 -0
- package/packages/arcgis-rest-types/package.json +54 -0
- package/packages/arcgis-rest-types/src/feature.ts +42 -0
- package/packages/arcgis-rest-types/src/geometry.ts +272 -0
- package/packages/arcgis-rest-types/src/group.ts +72 -0
- package/packages/arcgis-rest-types/src/index.ts +9 -0
- package/packages/arcgis-rest-types/src/item.ts +81 -0
- package/packages/arcgis-rest-types/src/service.ts +156 -0
- package/packages/arcgis-rest-types/src/statisticDefinition.ts +33 -0
- package/packages/arcgis-rest-types/src/symbol.ts +170 -0
- package/packages/arcgis-rest-types/src/user.ts +49 -0
- package/packages/arcgis-rest-types/src/webmap.ts +1405 -0
- package/packages/arcgis-rest-types/tsconfig.json +10 -0
- package/support/changelog.js +393 -0
- package/support/deploy-doc-site.js +16 -0
- package/support/dev.sh +6 -0
- package/support/publish.sh +47 -0
- package/support/test-helpers.js +9 -0
- package/tsconfig.json +63 -0
- package/umd-base-profile.js +81 -0
- package/umd-production-profile.js +13 -0
@@ -0,0 +1,432 @@
|
|
1
|
+
{
|
2
|
+
"name": "cli-item-management",
|
3
|
+
"version": "3.1.2",
|
4
|
+
"lockfileVersion": 2,
|
5
|
+
"requires": true,
|
6
|
+
"packages": {
|
7
|
+
"": {
|
8
|
+
"name": "cli-item-management",
|
9
|
+
"version": "3.1.2",
|
10
|
+
"license": "Apache-2.0",
|
11
|
+
"dependencies": {
|
12
|
+
"@esri/arcgis-rest-auth": "^3.1.2",
|
13
|
+
"@esri/arcgis-rest-portal": "^3.1.2",
|
14
|
+
"@esri/arcgis-rest-request": "^3.1.2",
|
15
|
+
"chalk": "^2.3.0",
|
16
|
+
"cross-fetch": "^3.0.0",
|
17
|
+
"isomorphic-form-data": "^1.0.0",
|
18
|
+
"prompts": "^2.0.3"
|
19
|
+
}
|
20
|
+
},
|
21
|
+
"node_modules/@esri/arcgis-rest-auth": {
|
22
|
+
"version": "3.1.2",
|
23
|
+
"resolved": "https://registry.npmjs.org/@esri/arcgis-rest-auth/-/arcgis-rest-auth-3.1.2.tgz",
|
24
|
+
"integrity": "sha512-HVWJogF8QPcOW2tOeOtA16Y4X726cnLcciWyogIWzdvbGzreVmnXIHkEQYyvR03YzDy1xLVaMWHNbgWaG59ubw==",
|
25
|
+
"dependencies": {
|
26
|
+
"@esri/arcgis-rest-types": "^3.1.2",
|
27
|
+
"tslib": "^1.13.0"
|
28
|
+
},
|
29
|
+
"peerDependencies": {
|
30
|
+
"@esri/arcgis-rest-request": "^3.0.0"
|
31
|
+
}
|
32
|
+
},
|
33
|
+
"node_modules/@esri/arcgis-rest-portal": {
|
34
|
+
"version": "3.1.2",
|
35
|
+
"resolved": "https://registry.npmjs.org/@esri/arcgis-rest-portal/-/arcgis-rest-portal-3.1.2.tgz",
|
36
|
+
"integrity": "sha512-e9hnameOT+8nbI65Hk5+tijz5km7U+GdNba9AiCbhvBFcOR8btIZll4ujRtNNq01nPvZA8dj5JddkER+uVJR2g==",
|
37
|
+
"dependencies": {
|
38
|
+
"@esri/arcgis-rest-types": "^3.1.2",
|
39
|
+
"tslib": "^1.13.0"
|
40
|
+
},
|
41
|
+
"peerDependencies": {
|
42
|
+
"@esri/arcgis-rest-auth": "^3.0.0",
|
43
|
+
"@esri/arcgis-rest-request": "^3.0.0"
|
44
|
+
}
|
45
|
+
},
|
46
|
+
"node_modules/@esri/arcgis-rest-request": {
|
47
|
+
"version": "3.1.2",
|
48
|
+
"resolved": "https://registry.npmjs.org/@esri/arcgis-rest-request/-/arcgis-rest-request-3.1.2.tgz",
|
49
|
+
"integrity": "sha512-qsKNe6MJ3uXshgMc1pLiMMhIzC76v4jc+1UeWc58wgkI0IU9WQLpgo2uj9CBqzvrofkA4LT1dqCxuxXrueOoHA==",
|
50
|
+
"dependencies": {
|
51
|
+
"tslib": "^1.10.0"
|
52
|
+
}
|
53
|
+
},
|
54
|
+
"node_modules/@esri/arcgis-rest-types": {
|
55
|
+
"version": "3.1.2",
|
56
|
+
"resolved": "https://registry.npmjs.org/@esri/arcgis-rest-types/-/arcgis-rest-types-3.1.2.tgz",
|
57
|
+
"integrity": "sha512-J78mt/oHUkqt4E9OLl9xaSRgZaIEJ9brK7GMWmk8Kq2k8/N0EeUwMTPQk0JNLqHpFf22B4vWikrCQPyNAVDonA=="
|
58
|
+
},
|
59
|
+
"node_modules/ansi-styles": {
|
60
|
+
"version": "3.2.1",
|
61
|
+
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
|
62
|
+
"integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
|
63
|
+
"dependencies": {
|
64
|
+
"color-convert": "^1.9.0"
|
65
|
+
},
|
66
|
+
"engines": {
|
67
|
+
"node": ">=4"
|
68
|
+
}
|
69
|
+
},
|
70
|
+
"node_modules/async": {
|
71
|
+
"version": "2.6.2",
|
72
|
+
"resolved": "https://registry.npmjs.org/async/-/async-2.6.2.tgz",
|
73
|
+
"integrity": "sha512-H1qVYh1MYhEEFLsP97cVKqCGo7KfCyTt6uEWqsTBr9SO84oK9Uwbyd/yCW+6rKJLHksBNUVWZDAjfS+Ccx0Bbg==",
|
74
|
+
"dependencies": {
|
75
|
+
"lodash": "^4.17.11"
|
76
|
+
}
|
77
|
+
},
|
78
|
+
"node_modules/chalk": {
|
79
|
+
"version": "2.4.2",
|
80
|
+
"resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
|
81
|
+
"integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
|
82
|
+
"dependencies": {
|
83
|
+
"ansi-styles": "^3.2.1",
|
84
|
+
"escape-string-regexp": "^1.0.5",
|
85
|
+
"supports-color": "^5.3.0"
|
86
|
+
},
|
87
|
+
"engines": {
|
88
|
+
"node": ">=4"
|
89
|
+
}
|
90
|
+
},
|
91
|
+
"node_modules/color-convert": {
|
92
|
+
"version": "1.9.3",
|
93
|
+
"resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz",
|
94
|
+
"integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==",
|
95
|
+
"dependencies": {
|
96
|
+
"color-name": "1.1.3"
|
97
|
+
}
|
98
|
+
},
|
99
|
+
"node_modules/color-name": {
|
100
|
+
"version": "1.1.3",
|
101
|
+
"resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz",
|
102
|
+
"integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU="
|
103
|
+
},
|
104
|
+
"node_modules/combined-stream": {
|
105
|
+
"version": "1.0.7",
|
106
|
+
"resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.7.tgz",
|
107
|
+
"integrity": "sha512-brWl9y6vOB1xYPZcpZde3N9zDByXTosAeMDo4p1wzo6UMOX4vumB+TP1RZ76sfE6Md68Q0NJSrE/gbezd4Ul+w==",
|
108
|
+
"dependencies": {
|
109
|
+
"delayed-stream": "~1.0.0"
|
110
|
+
},
|
111
|
+
"engines": {
|
112
|
+
"node": ">= 0.8"
|
113
|
+
}
|
114
|
+
},
|
115
|
+
"node_modules/cross-fetch": {
|
116
|
+
"version": "3.0.2",
|
117
|
+
"resolved": "https://registry.npmjs.org/cross-fetch/-/cross-fetch-3.0.2.tgz",
|
118
|
+
"integrity": "sha512-a4Z0EJ5Nck6QtMy9ZqloLfpvu2uMV3sBfMCR+CgSBCZc6z5KR4bfEiD3dkepH8iZgJMXQpTqf8FjMmvu/GMFkg==",
|
119
|
+
"dependencies": {
|
120
|
+
"node-fetch": "2.3.0",
|
121
|
+
"whatwg-fetch": "3.0.0"
|
122
|
+
}
|
123
|
+
},
|
124
|
+
"node_modules/cross-fetch/node_modules/node-fetch": {
|
125
|
+
"version": "2.3.0",
|
126
|
+
"resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.3.0.tgz",
|
127
|
+
"integrity": "sha512-MOd8pV3fxENbryESLgVIeaGKrdl+uaYhCSSVkjeOb/31/njTpcis5aWfdqgNlHIrKOLRbMnfPINPOML2CIFeXA==",
|
128
|
+
"engines": {
|
129
|
+
"node": "4.x || >=6.0.0"
|
130
|
+
}
|
131
|
+
},
|
132
|
+
"node_modules/delayed-stream": {
|
133
|
+
"version": "1.0.0",
|
134
|
+
"resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz",
|
135
|
+
"integrity": "sha1-3zrhmayt+31ECqrgsp4icrJOxhk=",
|
136
|
+
"engines": {
|
137
|
+
"node": ">=0.4.0"
|
138
|
+
}
|
139
|
+
},
|
140
|
+
"node_modules/escape-string-regexp": {
|
141
|
+
"version": "1.0.5",
|
142
|
+
"resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz",
|
143
|
+
"integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=",
|
144
|
+
"engines": {
|
145
|
+
"node": ">=0.8.0"
|
146
|
+
}
|
147
|
+
},
|
148
|
+
"node_modules/form-data": {
|
149
|
+
"version": "1.0.1",
|
150
|
+
"resolved": "https://registry.npmjs.org/form-data/-/form-data-1.0.1.tgz",
|
151
|
+
"integrity": "sha1-rjFduaSQf6BlUCMEpm13M0de43w=",
|
152
|
+
"dependencies": {
|
153
|
+
"async": "^2.0.1",
|
154
|
+
"combined-stream": "^1.0.5",
|
155
|
+
"mime-types": "^2.1.11"
|
156
|
+
},
|
157
|
+
"engines": {
|
158
|
+
"node": ">= 0.10"
|
159
|
+
}
|
160
|
+
},
|
161
|
+
"node_modules/has-flag": {
|
162
|
+
"version": "3.0.0",
|
163
|
+
"resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz",
|
164
|
+
"integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=",
|
165
|
+
"engines": {
|
166
|
+
"node": ">=4"
|
167
|
+
}
|
168
|
+
},
|
169
|
+
"node_modules/isomorphic-form-data": {
|
170
|
+
"version": "1.0.0",
|
171
|
+
"resolved": "https://registry.npmjs.org/isomorphic-form-data/-/isomorphic-form-data-1.0.0.tgz",
|
172
|
+
"integrity": "sha1-BEe+fg9rht7z05MDbPdmSpiRkQA=",
|
173
|
+
"dependencies": {
|
174
|
+
"form-data": "^1.0.0-rc3"
|
175
|
+
}
|
176
|
+
},
|
177
|
+
"node_modules/kleur": {
|
178
|
+
"version": "3.0.2",
|
179
|
+
"resolved": "https://registry.npmjs.org/kleur/-/kleur-3.0.2.tgz",
|
180
|
+
"integrity": "sha512-3h7B2WRT5LNXOtQiAaWonilegHcPSf9nLVXlSTci8lu1dZUuui61+EsPEZqSVxY7rXYmB2DVKMQILxaO5WL61Q==",
|
181
|
+
"engines": {
|
182
|
+
"node": ">=6"
|
183
|
+
}
|
184
|
+
},
|
185
|
+
"node_modules/lodash": {
|
186
|
+
"version": "4.17.11",
|
187
|
+
"resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.11.tgz",
|
188
|
+
"integrity": "sha512-cQKh8igo5QUhZ7lg38DYWAxMvjSAKG0A8wGSVimP07SIUEK2UO+arSRKbRZWtelMtN5V0Hkwh5ryOto/SshYIg=="
|
189
|
+
},
|
190
|
+
"node_modules/mime-db": {
|
191
|
+
"version": "1.38.0",
|
192
|
+
"resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.38.0.tgz",
|
193
|
+
"integrity": "sha512-bqVioMFFzc2awcdJZIzR3HjZFX20QhilVS7hytkKrv7xFAn8bM1gzc/FOX2awLISvWe0PV8ptFKcon+wZ5qYkg==",
|
194
|
+
"engines": {
|
195
|
+
"node": ">= 0.6"
|
196
|
+
}
|
197
|
+
},
|
198
|
+
"node_modules/mime-types": {
|
199
|
+
"version": "2.1.22",
|
200
|
+
"resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.22.tgz",
|
201
|
+
"integrity": "sha512-aGl6TZGnhm/li6F7yx82bJiBZwgiEa4Hf6CNr8YO+r5UHr53tSTYZb102zyU50DOWWKeOv0uQLRL0/9EiKWCog==",
|
202
|
+
"dependencies": {
|
203
|
+
"mime-db": "~1.38.0"
|
204
|
+
},
|
205
|
+
"engines": {
|
206
|
+
"node": ">= 0.6"
|
207
|
+
}
|
208
|
+
},
|
209
|
+
"node_modules/prompts": {
|
210
|
+
"version": "2.0.3",
|
211
|
+
"resolved": "https://registry.npmjs.org/prompts/-/prompts-2.0.3.tgz",
|
212
|
+
"integrity": "sha512-H8oWEoRZpybm6NV4to9/1limhttEo13xK62pNvn2JzY0MA03p7s0OjtmhXyon3uJmxiJJVSuUwEJFFssI3eBiQ==",
|
213
|
+
"dependencies": {
|
214
|
+
"kleur": "^3.0.2",
|
215
|
+
"sisteransi": "^1.0.0"
|
216
|
+
},
|
217
|
+
"engines": {
|
218
|
+
"node": ">= 6"
|
219
|
+
}
|
220
|
+
},
|
221
|
+
"node_modules/sisteransi": {
|
222
|
+
"version": "1.0.0",
|
223
|
+
"resolved": "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.0.tgz",
|
224
|
+
"integrity": "sha512-N+z4pHB4AmUv0SjveWRd6q1Nj5w62m5jodv+GD8lvmbY/83T/rpbJGZOnK5T149OldDj4Db07BSv9xY4K6NTPQ=="
|
225
|
+
},
|
226
|
+
"node_modules/supports-color": {
|
227
|
+
"version": "5.5.0",
|
228
|
+
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz",
|
229
|
+
"integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==",
|
230
|
+
"dependencies": {
|
231
|
+
"has-flag": "^3.0.0"
|
232
|
+
},
|
233
|
+
"engines": {
|
234
|
+
"node": ">=4"
|
235
|
+
}
|
236
|
+
},
|
237
|
+
"node_modules/tslib": {
|
238
|
+
"version": "1.14.1",
|
239
|
+
"resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz",
|
240
|
+
"integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg=="
|
241
|
+
},
|
242
|
+
"node_modules/whatwg-fetch": {
|
243
|
+
"version": "3.0.0",
|
244
|
+
"resolved": "https://registry.npmjs.org/whatwg-fetch/-/whatwg-fetch-3.0.0.tgz",
|
245
|
+
"integrity": "sha512-9GSJUgz1D4MfyKU7KRqwOjXCXTqWdFNvEr7eUBYchQiVc744mqK/MzXPNR2WsPkmkOa4ywfg8C2n8h+13Bey1Q=="
|
246
|
+
}
|
247
|
+
},
|
248
|
+
"dependencies": {
|
249
|
+
"@esri/arcgis-rest-auth": {
|
250
|
+
"version": "3.1.2",
|
251
|
+
"resolved": "https://registry.npmjs.org/@esri/arcgis-rest-auth/-/arcgis-rest-auth-3.1.2.tgz",
|
252
|
+
"integrity": "sha512-HVWJogF8QPcOW2tOeOtA16Y4X726cnLcciWyogIWzdvbGzreVmnXIHkEQYyvR03YzDy1xLVaMWHNbgWaG59ubw==",
|
253
|
+
"requires": {
|
254
|
+
"@esri/arcgis-rest-types": "^3.1.2",
|
255
|
+
"tslib": "^1.13.0"
|
256
|
+
}
|
257
|
+
},
|
258
|
+
"@esri/arcgis-rest-portal": {
|
259
|
+
"version": "3.1.2",
|
260
|
+
"resolved": "https://registry.npmjs.org/@esri/arcgis-rest-portal/-/arcgis-rest-portal-3.1.2.tgz",
|
261
|
+
"integrity": "sha512-e9hnameOT+8nbI65Hk5+tijz5km7U+GdNba9AiCbhvBFcOR8btIZll4ujRtNNq01nPvZA8dj5JddkER+uVJR2g==",
|
262
|
+
"requires": {
|
263
|
+
"@esri/arcgis-rest-types": "^3.1.2",
|
264
|
+
"tslib": "^1.13.0"
|
265
|
+
}
|
266
|
+
},
|
267
|
+
"@esri/arcgis-rest-request": {
|
268
|
+
"version": "3.1.2",
|
269
|
+
"resolved": "https://registry.npmjs.org/@esri/arcgis-rest-request/-/arcgis-rest-request-3.1.2.tgz",
|
270
|
+
"integrity": "sha512-qsKNe6MJ3uXshgMc1pLiMMhIzC76v4jc+1UeWc58wgkI0IU9WQLpgo2uj9CBqzvrofkA4LT1dqCxuxXrueOoHA==",
|
271
|
+
"requires": {
|
272
|
+
"tslib": "^1.10.0"
|
273
|
+
}
|
274
|
+
},
|
275
|
+
"@esri/arcgis-rest-types": {
|
276
|
+
"version": "3.1.2",
|
277
|
+
"resolved": "https://registry.npmjs.org/@esri/arcgis-rest-types/-/arcgis-rest-types-3.1.2.tgz",
|
278
|
+
"integrity": "sha512-J78mt/oHUkqt4E9OLl9xaSRgZaIEJ9brK7GMWmk8Kq2k8/N0EeUwMTPQk0JNLqHpFf22B4vWikrCQPyNAVDonA=="
|
279
|
+
},
|
280
|
+
"ansi-styles": {
|
281
|
+
"version": "3.2.1",
|
282
|
+
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
|
283
|
+
"integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
|
284
|
+
"requires": {
|
285
|
+
"color-convert": "^1.9.0"
|
286
|
+
}
|
287
|
+
},
|
288
|
+
"async": {
|
289
|
+
"version": "2.6.2",
|
290
|
+
"resolved": "https://registry.npmjs.org/async/-/async-2.6.2.tgz",
|
291
|
+
"integrity": "sha512-H1qVYh1MYhEEFLsP97cVKqCGo7KfCyTt6uEWqsTBr9SO84oK9Uwbyd/yCW+6rKJLHksBNUVWZDAjfS+Ccx0Bbg==",
|
292
|
+
"requires": {
|
293
|
+
"lodash": "^4.17.11"
|
294
|
+
}
|
295
|
+
},
|
296
|
+
"chalk": {
|
297
|
+
"version": "2.4.2",
|
298
|
+
"resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
|
299
|
+
"integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
|
300
|
+
"requires": {
|
301
|
+
"ansi-styles": "^3.2.1",
|
302
|
+
"escape-string-regexp": "^1.0.5",
|
303
|
+
"supports-color": "^5.3.0"
|
304
|
+
}
|
305
|
+
},
|
306
|
+
"color-convert": {
|
307
|
+
"version": "1.9.3",
|
308
|
+
"resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz",
|
309
|
+
"integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==",
|
310
|
+
"requires": {
|
311
|
+
"color-name": "1.1.3"
|
312
|
+
}
|
313
|
+
},
|
314
|
+
"color-name": {
|
315
|
+
"version": "1.1.3",
|
316
|
+
"resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz",
|
317
|
+
"integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU="
|
318
|
+
},
|
319
|
+
"combined-stream": {
|
320
|
+
"version": "1.0.7",
|
321
|
+
"resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.7.tgz",
|
322
|
+
"integrity": "sha512-brWl9y6vOB1xYPZcpZde3N9zDByXTosAeMDo4p1wzo6UMOX4vumB+TP1RZ76sfE6Md68Q0NJSrE/gbezd4Ul+w==",
|
323
|
+
"requires": {
|
324
|
+
"delayed-stream": "~1.0.0"
|
325
|
+
}
|
326
|
+
},
|
327
|
+
"cross-fetch": {
|
328
|
+
"version": "3.0.2",
|
329
|
+
"resolved": "https://registry.npmjs.org/cross-fetch/-/cross-fetch-3.0.2.tgz",
|
330
|
+
"integrity": "sha512-a4Z0EJ5Nck6QtMy9ZqloLfpvu2uMV3sBfMCR+CgSBCZc6z5KR4bfEiD3dkepH8iZgJMXQpTqf8FjMmvu/GMFkg==",
|
331
|
+
"requires": {
|
332
|
+
"node-fetch": "2.3.0",
|
333
|
+
"whatwg-fetch": "3.0.0"
|
334
|
+
},
|
335
|
+
"dependencies": {
|
336
|
+
"node-fetch": {
|
337
|
+
"version": "2.3.0",
|
338
|
+
"resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.3.0.tgz",
|
339
|
+
"integrity": "sha512-MOd8pV3fxENbryESLgVIeaGKrdl+uaYhCSSVkjeOb/31/njTpcis5aWfdqgNlHIrKOLRbMnfPINPOML2CIFeXA=="
|
340
|
+
}
|
341
|
+
}
|
342
|
+
},
|
343
|
+
"delayed-stream": {
|
344
|
+
"version": "1.0.0",
|
345
|
+
"resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz",
|
346
|
+
"integrity": "sha1-3zrhmayt+31ECqrgsp4icrJOxhk="
|
347
|
+
},
|
348
|
+
"escape-string-regexp": {
|
349
|
+
"version": "1.0.5",
|
350
|
+
"resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz",
|
351
|
+
"integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ="
|
352
|
+
},
|
353
|
+
"form-data": {
|
354
|
+
"version": "1.0.1",
|
355
|
+
"resolved": "https://registry.npmjs.org/form-data/-/form-data-1.0.1.tgz",
|
356
|
+
"integrity": "sha1-rjFduaSQf6BlUCMEpm13M0de43w=",
|
357
|
+
"requires": {
|
358
|
+
"async": "^2.0.1",
|
359
|
+
"combined-stream": "^1.0.5",
|
360
|
+
"mime-types": "^2.1.11"
|
361
|
+
}
|
362
|
+
},
|
363
|
+
"has-flag": {
|
364
|
+
"version": "3.0.0",
|
365
|
+
"resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz",
|
366
|
+
"integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0="
|
367
|
+
},
|
368
|
+
"isomorphic-form-data": {
|
369
|
+
"version": "1.0.0",
|
370
|
+
"resolved": "https://registry.npmjs.org/isomorphic-form-data/-/isomorphic-form-data-1.0.0.tgz",
|
371
|
+
"integrity": "sha1-BEe+fg9rht7z05MDbPdmSpiRkQA=",
|
372
|
+
"requires": {
|
373
|
+
"form-data": "^1.0.0-rc3"
|
374
|
+
}
|
375
|
+
},
|
376
|
+
"kleur": {
|
377
|
+
"version": "3.0.2",
|
378
|
+
"resolved": "https://registry.npmjs.org/kleur/-/kleur-3.0.2.tgz",
|
379
|
+
"integrity": "sha512-3h7B2WRT5LNXOtQiAaWonilegHcPSf9nLVXlSTci8lu1dZUuui61+EsPEZqSVxY7rXYmB2DVKMQILxaO5WL61Q=="
|
380
|
+
},
|
381
|
+
"lodash": {
|
382
|
+
"version": "4.17.11",
|
383
|
+
"resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.11.tgz",
|
384
|
+
"integrity": "sha512-cQKh8igo5QUhZ7lg38DYWAxMvjSAKG0A8wGSVimP07SIUEK2UO+arSRKbRZWtelMtN5V0Hkwh5ryOto/SshYIg=="
|
385
|
+
},
|
386
|
+
"mime-db": {
|
387
|
+
"version": "1.38.0",
|
388
|
+
"resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.38.0.tgz",
|
389
|
+
"integrity": "sha512-bqVioMFFzc2awcdJZIzR3HjZFX20QhilVS7hytkKrv7xFAn8bM1gzc/FOX2awLISvWe0PV8ptFKcon+wZ5qYkg=="
|
390
|
+
},
|
391
|
+
"mime-types": {
|
392
|
+
"version": "2.1.22",
|
393
|
+
"resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.22.tgz",
|
394
|
+
"integrity": "sha512-aGl6TZGnhm/li6F7yx82bJiBZwgiEa4Hf6CNr8YO+r5UHr53tSTYZb102zyU50DOWWKeOv0uQLRL0/9EiKWCog==",
|
395
|
+
"requires": {
|
396
|
+
"mime-db": "~1.38.0"
|
397
|
+
}
|
398
|
+
},
|
399
|
+
"prompts": {
|
400
|
+
"version": "2.0.3",
|
401
|
+
"resolved": "https://registry.npmjs.org/prompts/-/prompts-2.0.3.tgz",
|
402
|
+
"integrity": "sha512-H8oWEoRZpybm6NV4to9/1limhttEo13xK62pNvn2JzY0MA03p7s0OjtmhXyon3uJmxiJJVSuUwEJFFssI3eBiQ==",
|
403
|
+
"requires": {
|
404
|
+
"kleur": "^3.0.2",
|
405
|
+
"sisteransi": "^1.0.0"
|
406
|
+
}
|
407
|
+
},
|
408
|
+
"sisteransi": {
|
409
|
+
"version": "1.0.0",
|
410
|
+
"resolved": "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.0.tgz",
|
411
|
+
"integrity": "sha512-N+z4pHB4AmUv0SjveWRd6q1Nj5w62m5jodv+GD8lvmbY/83T/rpbJGZOnK5T149OldDj4Db07BSv9xY4K6NTPQ=="
|
412
|
+
},
|
413
|
+
"supports-color": {
|
414
|
+
"version": "5.5.0",
|
415
|
+
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz",
|
416
|
+
"integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==",
|
417
|
+
"requires": {
|
418
|
+
"has-flag": "^3.0.0"
|
419
|
+
}
|
420
|
+
},
|
421
|
+
"tslib": {
|
422
|
+
"version": "1.14.1",
|
423
|
+
"resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz",
|
424
|
+
"integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg=="
|
425
|
+
},
|
426
|
+
"whatwg-fetch": {
|
427
|
+
"version": "3.0.0",
|
428
|
+
"resolved": "https://registry.npmjs.org/whatwg-fetch/-/whatwg-fetch-3.0.0.tgz",
|
429
|
+
"integrity": "sha512-9GSJUgz1D4MfyKU7KRqwOjXCXTqWdFNvEr7eUBYchQiVc744mqK/MzXPNR2WsPkmkOa4ywfg8C2n8h+13Bey1Q=="
|
430
|
+
}
|
431
|
+
}
|
432
|
+
}
|
@@ -0,0 +1,27 @@
|
|
1
|
+
{
|
2
|
+
"name": "cli-item-management",
|
3
|
+
"version": "3.4.3",
|
4
|
+
"description": "Manage items in ArcGIS Online with a Node JS CLI and ArcGIS Rest JS",
|
5
|
+
"main": "index.js",
|
6
|
+
"scripts": {
|
7
|
+
"start": "node index.js",
|
8
|
+
"test": "echo \"Error: no test specified\" && exit 1"
|
9
|
+
},
|
10
|
+
"author": "Patrick Arlt <parlt@esri.com>",
|
11
|
+
"license": "Apache-2.0",
|
12
|
+
"private": true,
|
13
|
+
"keywords": [
|
14
|
+
"arcgis",
|
15
|
+
"node",
|
16
|
+
"arcgis-rest-js"
|
17
|
+
],
|
18
|
+
"dependencies": {
|
19
|
+
"@esri/arcgis-rest-auth": "^3.4.3",
|
20
|
+
"@esri/arcgis-rest-portal": "^3.4.3",
|
21
|
+
"@esri/arcgis-rest-request": "^3.4.3",
|
22
|
+
"chalk": "^2.3.0",
|
23
|
+
"cross-fetch": "^3.0.0",
|
24
|
+
"isomorphic-form-data": "^1.0.0",
|
25
|
+
"prompts": "^2.0.3"
|
26
|
+
}
|
27
|
+
}
|
Binary file
|
@@ -0,0 +1,14 @@
|
|
1
|
+
# ArcGIS Rest JS / Vanilla JS Demo
|
2
|
+
|
3
|
+
This demo uses Vanilla JS to implement OAuth2 using
|
4
|
+
the `arcgis-rest-js` libraries.
|
5
|
+
|
6
|
+
See the ArcGIS Rest JS guide to [Authentication in Browser-based Apps](https://esri.github.io/arcgis-rest-js/guides/browser-authentication/) for more info.
|
7
|
+
|
8
|
+
## Running this demo
|
9
|
+
1. Like all the other demo apps, run `npm run bootstrap` in the root directory.
|
10
|
+
1. Register a new application using https://developers.arcgis.com/applications/new (you will be prompted to sign in or create a free account first).
|
11
|
+
1. Add a redirect URL of `http://localhost:8080` to your new app.
|
12
|
+
1. Either copy the `config.js.template` file and rename it to `config.js` with your own ClientID or supply it in the prompt when the app is launched.
|
13
|
+
1. Run `npm start` to spin up the development server.
|
14
|
+
1. Visit [http://localhost:8080](http://localhost:8080).
|
@@ -0,0 +1,30 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html lang="en">
|
3
|
+
<head>
|
4
|
+
<meta charset="utf-8">
|
5
|
+
<title>ArcGIS Rest JS OAuth redirect</title>
|
6
|
+
</head>
|
7
|
+
<body>
|
8
|
+
<script src="node_modules/@esri/arcgis-rest-request/dist/umd/request.umd.js"></script>
|
9
|
+
<script src="node_modules/@esri/arcgis-rest-auth/dist/umd/auth.umd.js"></script>
|
10
|
+
<script>
|
11
|
+
/* in a production app, clientId could be hardcoded. here we're using a regex to extract it from the state parameter in the OAuth2 server response to make the demo more interchangeable.
|
12
|
+
|
13
|
+
this relies on the fact that the ClientId is associated with the state parameter internally when another value isn't supplied manually.
|
14
|
+
*/
|
15
|
+
const match = window.location.href.match(
|
16
|
+
/&state=([^&]+)/
|
17
|
+
);
|
18
|
+
const clientId = match[1];
|
19
|
+
let session;
|
20
|
+
function processAuthentication() {
|
21
|
+
window.location.href = './';
|
22
|
+
session = arcgisRest.UserSession.completeOAuth2({
|
23
|
+
clientId: clientId,
|
24
|
+
});
|
25
|
+
localStorage.setItem('__ARCGIS_REST_USER_SESSION__', session.serialize());
|
26
|
+
}
|
27
|
+
processAuthentication();
|
28
|
+
</script>
|
29
|
+
</body>
|
30
|
+
</html>
|
@@ -0,0 +1,6 @@
|
|
1
|
+
/*
|
2
|
+
You can generate your own clientid by creating an application on the ArcGIS for Developers site. Be sure to add http://localhost:8080/ as a redirect uri for your application
|
3
|
+
|
4
|
+
once you have a clientid of your own, copy/paste it here and rename this file 'config.js'
|
5
|
+
*/
|
6
|
+
let clientId = "QVQNb3XfDzoboWS0"
|