aspernaturalias 1.0.0
Sign up to get free protection for your applications and to get access to all the features.
- package/.prettierignore +2 -0
- package/.travis.yml +31 -0
- package/.vscode/launch.json +24 -0
- package/.vscode/settings.json +3 -0
- package/codecov.yml +3 -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 +152 -0
- package/demos/ago-node-cli/package.json +30 -0
- package/demos/attachments/README.md +5 -0
- package/demos/attachments/index.html +164 -0
- package/demos/attachments/package-lock.json +182 -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 +94 -0
- package/demos/batch-geocoder-node/package.json +38 -0
- package/demos/express/README.md +15 -0
- package/demos/express/config.json.template +3 -0
- package/demos/express/package-lock.json +413 -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 +182 -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 +182 -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 +85 -0
- package/demos/jsapi-integration/package-lock.json +184 -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 +152 -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 +202 -0
- package/demos/oauth2-browser/logo.svg +4 -0
- package/demos/oauth2-browser/package-lock.json +163 -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 +60 -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 +2225 -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 +9 -0
- package/demos/tree-shaking-webpack/index.html +11 -0
- package/demos/tree-shaking-webpack/package-lock.json +4595 -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 +11323 -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 +3851 -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/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 +41 -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/from-a-cdn.md +38 -0
- package/docs/src/guides/index.md +59 -0
- package/docs/src/guides/node.md +87 -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/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/karma.conf.js +106 -0
- package/lerna.json +8 -0
- package/notes/README.md +88 -0
- package/package.json +129 -0
- package/packages/arcgis-rest-auth/README.md +71 -0
- package/packages/arcgis-rest-auth/package-lock.json +11 -0
- package/packages/arcgis-rest-auth/package.json +69 -0
- package/packages/arcgis-rest-auth/src/ApplicationSession.ts +122 -0
- package/packages/arcgis-rest-auth/src/UserSession.ts +997 -0
- package/packages/arcgis-rest-auth/src/authenticated-request-options.ts +24 -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 +9 -0
- package/packages/arcgis-rest-auth/test/ApplicationSession.test.ts +124 -0
- package/packages/arcgis-rest-auth/test/UserSession.test.ts +1315 -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/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/decodeValues.ts +124 -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/getAttachments.ts +55 -0
- package/packages/arcgis-rest-feature-layer/src/getLayer.ts +24 -0
- package/packages/arcgis-rest-feature-layer/src/helpers.ts +55 -0
- package/packages/arcgis-rest-feature-layer/src/index.ts +28 -0
- package/packages/arcgis-rest-feature-layer/src/query.ts +203 -0
- package/packages/arcgis-rest-feature-layer/src/queryRelated.ts +89 -0
- package/packages/arcgis-rest-feature-layer/src/update.ts +56 -0
- package/packages/arcgis-rest-feature-layer/src/updateAttachment.ts +59 -0
- package/packages/arcgis-rest-feature-layer/test/attachments.test.ts +202 -0
- package/packages/arcgis-rest-feature-layer/test/crud.test.ts +130 -0
- package/packages/arcgis-rest-feature-layer/test/decodeValues.test.ts +67 -0
- package/packages/arcgis-rest-feature-layer/test/getLayer.test.ts +31 -0
- package/packages/arcgis-rest-feature-layer/test/mocks/cvdQueryResponse.ts +225 -0
- package/packages/arcgis-rest-feature-layer/test/mocks/feature.ts +281 -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 +259 -0
- package/packages/arcgis-rest-feature-layer/test/query.test.ts +168 -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 +11 -0
- package/packages/arcgis-rest-geocoding/package.json +64 -0
- package/packages/arcgis-rest-geocoding/src/bulk.ts +105 -0
- package/packages/arcgis-rest-geocoding/src/geocode.ts +130 -0
- package/packages/arcgis-rest-geocoding/src/helpers.ts +54 -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 +151 -0
- package/packages/arcgis-rest-geocoding/test/geocode.test.ts +212 -0
- package/packages/arcgis-rest-geocoding/test/helpers.test.ts +85 -0
- package/packages/arcgis-rest-geocoding/test/mocks/responses.ts +637 -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 +11 -0
- package/packages/arcgis-rest-portal/package.json +64 -0
- package/packages/arcgis-rest-portal/src/groups/create.ts +43 -0
- package/packages/arcgis-rest-portal/src/groups/get.ts +99 -0
- package/packages/arcgis-rest-portal/src/groups/helpers.ts +14 -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.ts +32 -0
- package/packages/arcgis-rest-portal/src/groups/search.ts +25 -0
- package/packages/arcgis-rest-portal/src/groups/update.ts +39 -0
- package/packages/arcgis-rest-portal/src/index.ts +48 -0
- package/packages/arcgis-rest-portal/src/items/add.ts +137 -0
- package/packages/arcgis-rest-portal/src/items/create.ts +128 -0
- package/packages/arcgis-rest-portal/src/items/get.ts +177 -0
- package/packages/arcgis-rest-portal/src/items/helpers.ts +193 -0
- package/packages/arcgis-rest-portal/src/items/protect.ts +39 -0
- package/packages/arcgis-rest-portal/src/items/remove.ts +131 -0
- package/packages/arcgis-rest-portal/src/items/search.ts +25 -0
- package/packages/arcgis-rest-portal/src/items/update.ts +145 -0
- package/packages/arcgis-rest-portal/src/sharing/access.ts +84 -0
- package/packages/arcgis-rest-portal/src/sharing/group-sharing.ts +210 -0
- package/packages/arcgis-rest-portal/src/sharing/helpers.ts +84 -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 +162 -0
- package/packages/arcgis-rest-portal/src/users/notification.ts +70 -0
- package/packages/arcgis-rest-portal/src/users/update.ts +66 -0
- package/packages/arcgis-rest-portal/src/util/SearchQueryBuilder.ts +374 -0
- package/packages/arcgis-rest-portal/src/util/generic-search.ts +67 -0
- package/packages/arcgis-rest-portal/src/util/get-portal-url.ts +27 -0
- package/packages/arcgis-rest-portal/src/util/get-portal.ts +52 -0
- package/packages/arcgis-rest-portal/src/util/search.ts +38 -0
- package/packages/arcgis-rest-portal/test/groups/crud.test.ts +180 -0
- package/packages/arcgis-rest-portal/test/groups/get.test.ts +101 -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/search.test.ts +110 -0
- package/packages/arcgis-rest-portal/test/items/add.test.ts +321 -0
- package/packages/arcgis-rest-portal/test/items/create.test.ts +375 -0
- package/packages/arcgis-rest-portal/test/items/get.test.ts +309 -0
- package/packages/arcgis-rest-portal/test/items/protect.test.ts +122 -0
- package/packages/arcgis-rest-portal/test/items/remove.test.ts +238 -0
- package/packages/arcgis-rest-portal/test/items/search.test.ts +272 -0
- package/packages/arcgis-rest-portal/test/items/update.test.ts +515 -0
- package/packages/arcgis-rest-portal/test/mocks/groups/responses.ts +144 -0
- package/packages/arcgis-rest-portal/test/mocks/items/foo.zip +0 -0
- package/packages/arcgis-rest-portal/test/mocks/items/item.ts +122 -0
- package/packages/arcgis-rest-portal/test/mocks/items/resources.ts +31 -0
- package/packages/arcgis-rest-portal/test/mocks/items/search.ts +121 -0
- package/packages/arcgis-rest-portal/test/mocks/portal/response.ts +112 -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.ts +173 -0
- package/packages/arcgis-rest-portal/test/sharing/access.test.ts +162 -0
- package/packages/arcgis-rest-portal/test/sharing/group-sharing.test.ts +650 -0
- package/packages/arcgis-rest-portal/test/sharing/helpers.test.ts +55 -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/update.test.ts +151 -0
- package/packages/arcgis-rest-portal/test/util/SearchQueryBuilder.test.ts +340 -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 +97 -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 +11 -0
- package/packages/arcgis-rest-request/package.json +60 -0
- package/packages/arcgis-rest-request/src/index.ts +24 -0
- package/packages/arcgis-rest-request/src/request.ts +389 -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 +21 -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 +43 -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 +16 -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 +23 -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 +496 -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 +47 -0
- package/packages/arcgis-rest-request/test/utils/encode-form-data.test.ts +133 -0
- package/packages/arcgis-rest-request/test/utils/process-params.test.ts +193 -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 +11 -0
- package/packages/arcgis-rest-routing/package.json +63 -0
- package/packages/arcgis-rest-routing/src/helpers.ts +16 -0
- package/packages/arcgis-rest-routing/src/index.ts +11 -0
- package/packages/arcgis-rest-routing/src/solveRoute.ts +124 -0
- package/packages/arcgis-rest-routing/test/mocks/responses.ts +825 -0
- package/packages/arcgis-rest-routing/test/solveRoute.test.ts +509 -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 +213 -0
- package/packages/arcgis-rest-service-admin/src/index.ts +9 -0
- package/packages/arcgis-rest-service-admin/test/addTo.test.ts +350 -0
- package/packages/arcgis-rest-service-admin/test/create.test.ts +377 -0
- package/packages/arcgis-rest-service-admin/test/mocks/layerDefinition.ts +79 -0
- package/packages/arcgis-rest-service-admin/test/mocks/move.ts +11 -0
- package/packages/arcgis-rest-service-admin/test/mocks/service.ts +69 -0
- package/packages/arcgis-rest-service-admin/tsconfig.json +6 -0
- package/packages/arcgis-rest-types/README.md +66 -0
- package/packages/arcgis-rest-types/package.json +54 -0
- package/packages/arcgis-rest-types/src/feature.ts +39 -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 +7 -0
- package/packages/arcgis-rest-types/src/item.ts +65 -0
- package/packages/arcgis-rest-types/src/symbol.ts +170 -0
- package/packages/arcgis-rest-types/src/user.ts +48 -0
- package/packages/arcgis-rest-types/src/webmap.ts +1345 -0
- package/packages/arcgis-rest-types/tsconfig.json +9 -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/tslint.json +16 -0
- package/umd-base-profile.js +81 -0
- package/umd-production-profile.js +13 -0
@@ -0,0 +1 @@
|
|
1
|
+
Hello World!
|
@@ -0,0 +1,259 @@
|
|
1
|
+
/* Copyright (c) 2018 Environmental Systems Research Institute, Inc.
|
2
|
+
* Apache-2.0 */
|
3
|
+
|
4
|
+
import { ILayerDefinition } from "@esri/arcgis-rest-types";
|
5
|
+
import { cvdServiceFields } from "./fields";
|
6
|
+
|
7
|
+
export const getFeatureServiceResponse: ILayerDefinition = {
|
8
|
+
currentVersion: 10.6,
|
9
|
+
id: 0,
|
10
|
+
name: "Service Requests",
|
11
|
+
parentLayerId: -1,
|
12
|
+
defaultVisibility: true,
|
13
|
+
minScale: 0,
|
14
|
+
maxScale: 0,
|
15
|
+
type: "Feature Layer",
|
16
|
+
geometryType: "esriGeometryPoint",
|
17
|
+
description:
|
18
|
+
"A request for service or incident reported by the general public or other interested party",
|
19
|
+
copyrightText: "",
|
20
|
+
editFieldsInfo: null,
|
21
|
+
ownershipBasedAccessControlForFeatures: null,
|
22
|
+
syncCanReturnChanges: false,
|
23
|
+
relationships: [
|
24
|
+
{
|
25
|
+
id: 0,
|
26
|
+
name: "ss6.gdb.ServiceRequestComment",
|
27
|
+
relatedTableId: 1,
|
28
|
+
cardinality: "esriRelCardinalityOneToMany",
|
29
|
+
role: "esriRelRoleOrigin",
|
30
|
+
keyField: "requestid",
|
31
|
+
composite: true
|
32
|
+
}
|
33
|
+
],
|
34
|
+
isDataVersioned: false,
|
35
|
+
supportsRollbackOnFailureParameter: false,
|
36
|
+
archivingInfo: {
|
37
|
+
supportsQueryWithHistoricMoment: false,
|
38
|
+
startArchivingMoment: -1
|
39
|
+
},
|
40
|
+
supportsStatistics: true,
|
41
|
+
supportsAdvancedQueries: true,
|
42
|
+
supportsValidateSQL: true,
|
43
|
+
supportsCalculate: true,
|
44
|
+
advancedQueryCapabilities: {
|
45
|
+
supportsPagination: true,
|
46
|
+
supportsTrueCurve: true,
|
47
|
+
supportsQueryWithDistance: true,
|
48
|
+
supportsReturningQueryExtent: true,
|
49
|
+
supportsStatistics: true,
|
50
|
+
supportsOrderBy: true,
|
51
|
+
supportsDistinct: true,
|
52
|
+
supportsSqlExpression: true
|
53
|
+
},
|
54
|
+
extent: {
|
55
|
+
xmin: -1.4842597721444273e7,
|
56
|
+
ymin: -7250478.783951572,
|
57
|
+
xmax: -4823845.204923232,
|
58
|
+
ymax: 1.3760961797220282e7,
|
59
|
+
spatialReference: {
|
60
|
+
wkid: 102100,
|
61
|
+
latestWkid: 3857
|
62
|
+
}
|
63
|
+
},
|
64
|
+
drawingInfo: {
|
65
|
+
renderer: {
|
66
|
+
type: "uniqueValue",
|
67
|
+
field1: "status",
|
68
|
+
field2: null,
|
69
|
+
field3: null,
|
70
|
+
defaultSymbol: null,
|
71
|
+
defaultLabel: null,
|
72
|
+
uniqueValueInfos: [
|
73
|
+
{
|
74
|
+
symbol: {
|
75
|
+
type: "esriPMS",
|
76
|
+
url: "503e8080ea4466250bb86ab805526668",
|
77
|
+
imageData:
|
78
|
+
"iVBORw0KGgoAAAANSUhEUgAAABYAAAAWCAYAAADEtGw7AAAAAXNSR0IB2cksfwAAAAlwSFlzAAAOxAAADsQBlSsOGwAAA+NJREFUOI211V9IW1ccwPHvvTd3iYnx/7BBsRPihObBSIJBO6l1LWipy1pBZH0SYWWjhbUPlZRaWHENvvSpc7BRSukenIwWKa0rpamta0Uw4EsmoYLW6qITTaIxJpp77x5sbUOtFcZ+T+cfn3POjx/n6PifQrfT5D+Qm4Jjot3ewsaGVUulsgUIA3+pweBvAvRbIL5rOABSnsXSoUAnoZBBHR9H2r8fKTcXdXGxQBkeLgPclJdHQgsL5yxLS798EJ6FLMnhGFD9/hrp8GEyOzsxlJYi6vVba5R4nMTz58R6e3PUYPDnOZutQR8IfJULyW3hKdBJLtdDdWTEafR4yKqvR5Ckd24kGY2YKirI2LePaH8/iZ6e40mHoxe//9i2sKG21qsODTlN58+TdegQAOraGqtjYyRHR1Hm59EVF6N3OjFWVCDKMjnNzUSARE/Pl3M22zd7AoGf0uC/YY82MfGdrqkJ88GDAKzPzxPu7kYdG9vafB1Y7+sjXl9P3unT6LKzyXa7Wff70SKR7hDcsEB8C5bq6r5VBgd1mW43giShrK4S7upCDQTeSQWA4vOxBBR0dCDKMpmtrSyfOWMWrNbjTEz8+iYVstwq7N2LoaQEgNWRkfeib+PxhgYynU4MZWUs6/VIZWXtabC2sFAkV1cj6DaHEo8f74i+juToKJlOJ5LRiFRdjZZMfpqWY2162iC6XK86GsrQ0K7g1MzMVlvMz0eZmTGnwUJJyYa6srJZrIKA6HCg+v0fhKXCwq22Gg4jZGWtpcGixbK04fdbtLY2BEnCUF9PfBew3uncRJNJlKdPkY8eDaXBUmGhLzUwcCI5O4uhpARTTQ1rFgtaKPReVLTbMdntACQmJyGZRDAaf0+D1VDoByEv78TqvXsYTp7crM+uLqIXLmyLizYbuR0diBkZaIpC7PZthPJyRb1588c0+OP798cX29sHk9eu1a1UVmJ2ucgoLUXu6WH12TMSPh+q349UW4vhwAFMLheSyQTAss+H8uAB+ra2G/nBYDgNBtDm5prkpqbZmMeThdeLuapq8+SNjWQ3NoKmgSC8Wa8orDx6RNzrRW5pmZ67fv3r13NpcMHdu7HI2bNVuN2jMY8nc72lBdORI+iLijYfo1eolkqRmJ4m1t9P6s4dPmptnQMqbaBsCwPkXLkSjHg8xWJx8cP1W7cc4b4+hPJyZIcD0WxGjUbZGB5Ge/ECwWrVMk6d+iN69eoXn0DqbWfbhz7H640CzuilS5+pkcj3qZcvq1JTU0ZtclIUrFZFrq5ekZqbnwgGw7mcy5eD2xk7fk3ZFy/+CXyeNrhD+e0a/i/xL6dZgxFzQIDxAAAAAElFTkSuQmCC",
|
79
|
+
contentType: "image/png",
|
80
|
+
width: 16,
|
81
|
+
height: 16,
|
82
|
+
angle: 0,
|
83
|
+
xoffset: 0,
|
84
|
+
yoffset: 0
|
85
|
+
},
|
86
|
+
value: "Unassigned",
|
87
|
+
label: "Unassigned",
|
88
|
+
description: ""
|
89
|
+
},
|
90
|
+
{
|
91
|
+
symbol: {
|
92
|
+
type: "esriPMS",
|
93
|
+
url: "00591bb6a81be2ce27412c3521fc5c66",
|
94
|
+
imageData:
|
95
|
+
"iVBORw0KGgoAAAANSUhEUgAAABYAAAAWCAYAAADEtGw7AAAAAXNSR0IB2cksfwAAAAlwSFlzAAAOxAAADsQBlSsOGwAAA8pJREFUOI211W9oG2UcB/Dv3XOXuySXJk3aNbe1a0sTMxmWbi0dyl4URRioqx1TRyeoKAOFib6Z+MIXvpDhaxGhDraCjI0KUkEmlo0gQ9hwMCqti422zWyTluXSNJf0/j6PL7rFHku7gfiDg4d7Hj7P7/f8jucE/E8h7DS5eh7NjoURnnS+ClgJBjPMcVIJDLPUzV/mLEyqp1F7bHhmDCTKSx+5Nj4BTJm6iyBSCkRUQG29xbUySQDD8EfX8ue0M+o7+PqR8NIFNBFXvUKd/DNETkHpOAy5uQ28INbXuLYFQ1uGnktHqK2NFc6pR6RKfrT5Q5gN4YWzEAhVr1InPxCID6Opuxccxz9UERF9CLZ1wd/yOsrZmzCKU8fMcOclYHGkISzHO89Sa3EgqA6jqbsPAEAdC9XCPMziHFy7DEGKQWpJILCrCzwREEk9jbUMYBSnXi6cj74bf0v7ygMvjyHO7MoHQqAPoa5eAIBVKaF0ZxLUXqxvbllZWJUbqC2nEN1/FIIcQDgxCGv9DzDX+jz/BcbV06jVYeJLvOeaWUHZexwcx8O1TJRmJ0DdfIP2Aq6ZgTbzPVr6joMnApS9Q1j/czzE+dVjQP6bLUdBTnBcFHJzGwCgupzZFt2K11YXoKgJyNHdWP8LIGLb2x6Yuet7RCVZb5ZR/G1H9EGY97JQ1ASI6APxpcCY/oTnjJmrybz45JZsso8FO2axPuZFBa55L+SBORK1qWNI/y7q9DRtuyBiuD6mtg6Olzc8MO+LanZ1XmWMguN4yNFe1FYeDUux5Cbq2HDNDMRgf94DE1/rNac2c9IsFyFHWhHcsw8bqz+BMXMbcrOqYLwbAGCUVu5XLn3rgalR+YzjpJPVu7cgR45sfp+pN1HOXGiI80RF875h8IIPjFHod6+DI6pLjV++9MCtb9z6vXh5KG2upYcqf/cg1J6EPxqHeOB9VJfuwNCmQe1FECkBOfYUgrtTIL7NlqzPT8M1MpAiQ+Ox1/IlDwwArJx+SQz0Lem5i03AKELtyc3Mew4i3HPwoawZo6gsTKNWmIQY6s8VyulTD+Y8cMsp6GvfqYPg7F/13EXFKh1CsKMfUjjmuYwYozBKK9BzN+HUbsOnHCogQA7sH4XbEAaAyMiVzNqlZ9v5WPtVS0v3l2ZvgCMqxGA3eEEGtauw9TkwpoEjUeaPPf9jeW7qaNfHcLY6DS/6yIlrZQAD5R9eOUwt/VNnQxt0jKUAsws85+twRSVZIf5dP3OifCby4kSmkbHjryn8wsR1AM9532bvPzvHjvB/iX8A1b6J7VdrDTIAAAAASUVORK5CYII=",
|
96
|
+
contentType: "image/png",
|
97
|
+
width: 16,
|
98
|
+
height: 16,
|
99
|
+
angle: 0,
|
100
|
+
xoffset: 0,
|
101
|
+
yoffset: 0
|
102
|
+
},
|
103
|
+
value: "Assigned",
|
104
|
+
label: "Assigned",
|
105
|
+
description: ""
|
106
|
+
},
|
107
|
+
{
|
108
|
+
symbol: {
|
109
|
+
type: "esriPMS",
|
110
|
+
url: "cd72b6fbdc1352015a7112f734f28806",
|
111
|
+
imageData:
|
112
|
+
"iVBORw0KGgoAAAANSUhEUgAAABYAAAAWCAYAAADEtGw7AAAAAXNSR0IB2cksfwAAAAlwSFlzAAAOxAAADsQBlSsOGwAABDpJREFUOI211VtM01ccB/Bv++feYikUuoKWlqvAQqmlYiHEFSgCkWHCZLppFjCLwekiYR1DWXaDEOKYDzr2QMgu4MIkCyDKgHIZ2aCClIvKihSllEEtLRak3Ayle9hoaAZIsuz3dHLOL59zzfnZ4X8Ku50GGwdKgqYNC5c1Om28ft5AN5rmHdxdaatebp6GfUzvRm9Pr8+Sw8/rdg3L1JVOT0aUt6/V/xCnMg2THMmO4HnGgEn3gNY4a9c23kQxW1az+YzYsxWyj3/KSvj8bRKJZNkRvvPgK05nZ2t/9YPv6SKWBDlvvIdgPy6cnB2tOYuLS/hjVIXypmpycfMXJ3XPDNF1/WURxw6cm9sSlo1ec2nv7h2oeVjplpuQj7SEOBAE8a8dUSguEPJ54IWFoupWPSp6ynyzkD1osVi4Gyu3gUdVGlnNw0q3DyWXkJaYAABYXl5Gl2IQ8uE+aI06sD33IiY8ElE8Hhwc7JGZng4AqOgp82W6M24AeMsGvtP3paD0Vnl0HDsVR+PFAICpaR0uV5RA9XzQOvnQLNAwchMHO+NQcOYCPOg0nHo9DXdVCjQpfn1TNvjNRUlE9owVnjQYijRLj/BJkhQEQcBkWkR+eSEem4a3ul/06tpRWAGUvJ8HBwd7vJt0Ahd/zCFrZsWfAjhnhR9PaUQsJ18EcNkAgI67Pduim/GeoSTECiMRGhQIguSISd10is1RqPWTVCFHBDu7v7uaFZ07ohvRdb8PscJIUCgu4DFEmJnTM2xgzfMxMp8bCgCwWCwYMPy2K1ij/9PaZtE9oDPOOtrA3lTu+tziAhkASCQSQugCKI2Kl8IsOtPa1s8bQafSXtjAHC+f5YEJBcVszgRBEEiMiIOy4+WwKCwSALCyvIohfRfSw08ZbeAAlm9/w0hNrHpyCv4cNhJE0ajqYmH2hXZbNHBPBGIEEQCAR0/Gsbq+CjaT1WYDv+LFLKTZs5pr2hqRl3UW7nQarmQWQvptwZa4PzUMRWfy4OzsDLPZjMrmWgRSwyzeDNciGzhdKG25Wpej/Pr3qyFRcj7E0VEIDuDiuw/K0CrvRstgO5RGBfiMWBwRHIb4UBSoVAoAoL61HXKtDNKEj9pS+HmjNjAA7PfzFx/RpasLavOdClGM10QH4U6nISMlGRkpybBYLCCRSNZ8s9mM220dKG0txonwd5757Q9L3RizgZPDz+vqBkoPA+gsqM13SlVm4Hh8Cjj7fEAQhBVdW1vD2LgGN5rq0a5pwPFXT8+J+DyBhHN6ZUsYAI7xc3t/uX+dE8Bkd1T1VIc0jNwElxIMvq8AbhRXGBbmcU8th3ZlAmyXYOSIpd1BgWyJJOjC0mZny4/+n6oQ+vO9K4lPZ3QFY9qJA6qnaudp0ziZvSdg/RA3xuTvc1K+18Pz0lFhbv9Wxo6lKV0obQHQsrmvB9s/v13D/yX+AiKnlMyVeu3hAAAAAElFTkSuQmCC",
|
113
|
+
contentType: "image/png",
|
114
|
+
width: 16,
|
115
|
+
height: 16,
|
116
|
+
angle: 0,
|
117
|
+
xoffset: 0,
|
118
|
+
yoffset: 0
|
119
|
+
},
|
120
|
+
value: "Closed",
|
121
|
+
label: "Closed",
|
122
|
+
description: ""
|
123
|
+
}
|
124
|
+
],
|
125
|
+
fieldDelimiter: ","
|
126
|
+
},
|
127
|
+
transparency: 0,
|
128
|
+
labelingInfo: null
|
129
|
+
},
|
130
|
+
hasM: false,
|
131
|
+
hasZ: false,
|
132
|
+
allowGeometryUpdates: true,
|
133
|
+
allowTrueCurvesUpdates: false,
|
134
|
+
onlyAllowTrueCurveUpdatesByTrueCurveClients: true,
|
135
|
+
hasAttachments: true,
|
136
|
+
supportsAttachmentsByUploadId: true,
|
137
|
+
supportsApplyEditsWithGlobalIds: false,
|
138
|
+
htmlPopupType: "esriServerHTMLPopupTypeAsHTMLText",
|
139
|
+
objectIdField: "objectid",
|
140
|
+
globalIdField: "globalid",
|
141
|
+
displayField: "name",
|
142
|
+
typeIdField: "status",
|
143
|
+
subtypeField: "",
|
144
|
+
fields: cvdServiceFields,
|
145
|
+
indexes: [
|
146
|
+
{
|
147
|
+
name: "i99requestid",
|
148
|
+
fields: "requestid",
|
149
|
+
isAscending: true,
|
150
|
+
isUnique: false,
|
151
|
+
description: ""
|
152
|
+
},
|
153
|
+
{
|
154
|
+
name: "a11_ix1",
|
155
|
+
fields: "shape",
|
156
|
+
isAscending: true,
|
157
|
+
isUnique: true,
|
158
|
+
description: ""
|
159
|
+
}
|
160
|
+
],
|
161
|
+
dateFieldsTimeReference: {
|
162
|
+
timeZone: "UTC",
|
163
|
+
respectsDaylightSaving: false
|
164
|
+
},
|
165
|
+
types: [
|
166
|
+
{
|
167
|
+
id: "Unassigned",
|
168
|
+
name: "Unassigned",
|
169
|
+
domains: {
|
170
|
+
requesttype: { type: "inherited" },
|
171
|
+
status: { type: "inherited" }
|
172
|
+
},
|
173
|
+
templates: [
|
174
|
+
{
|
175
|
+
name: "Unassigned",
|
176
|
+
description: "",
|
177
|
+
prototype: {
|
178
|
+
attributes: {
|
179
|
+
requestdate: null,
|
180
|
+
floor: null,
|
181
|
+
requestid: null,
|
182
|
+
requesttype: null,
|
183
|
+
comments: null,
|
184
|
+
name: null,
|
185
|
+
phone: null,
|
186
|
+
email: null,
|
187
|
+
status: "Unassigned",
|
188
|
+
building: null
|
189
|
+
}
|
190
|
+
},
|
191
|
+
drawingTool: "esriFeatureEditToolPoint"
|
192
|
+
}
|
193
|
+
]
|
194
|
+
},
|
195
|
+
{
|
196
|
+
id: "Assigned",
|
197
|
+
name: "Assigned",
|
198
|
+
domains: {
|
199
|
+
requesttype: { type: "inherited" },
|
200
|
+
status: { type: "inherited" }
|
201
|
+
},
|
202
|
+
templates: [
|
203
|
+
{
|
204
|
+
name: "Assigned",
|
205
|
+
description: "",
|
206
|
+
prototype: {
|
207
|
+
attributes: {
|
208
|
+
building: null,
|
209
|
+
floor: null,
|
210
|
+
requestid: null,
|
211
|
+
requesttype: null,
|
212
|
+
comments: null,
|
213
|
+
name: null,
|
214
|
+
phone: null,
|
215
|
+
email: null,
|
216
|
+
requestdate: null,
|
217
|
+
status: "Assigned"
|
218
|
+
}
|
219
|
+
},
|
220
|
+
drawingTool: "esriFeatureEditToolPoint"
|
221
|
+
}
|
222
|
+
]
|
223
|
+
},
|
224
|
+
{
|
225
|
+
id: "Closed",
|
226
|
+
name: "Closed",
|
227
|
+
domains: {
|
228
|
+
requesttype: { type: "inherited" },
|
229
|
+
status: { type: "inherited" }
|
230
|
+
},
|
231
|
+
templates: [
|
232
|
+
{
|
233
|
+
name: "Closed",
|
234
|
+
description: "",
|
235
|
+
prototype: {
|
236
|
+
attributes: {
|
237
|
+
building: null,
|
238
|
+
floor: null,
|
239
|
+
requestid: null,
|
240
|
+
requesttype: null,
|
241
|
+
comments: null,
|
242
|
+
name: null,
|
243
|
+
phone: null,
|
244
|
+
email: null,
|
245
|
+
requestdate: null,
|
246
|
+
status: "Closed"
|
247
|
+
}
|
248
|
+
},
|
249
|
+
drawingTool: "esriFeatureEditToolPoint"
|
250
|
+
}
|
251
|
+
]
|
252
|
+
}
|
253
|
+
],
|
254
|
+
templates: [],
|
255
|
+
maxRecordCount: 1000,
|
256
|
+
supportedQueryFormats: "JSON, AMF, geoJSON",
|
257
|
+
capabilities: "Create,Delete,Query,Update,Uploads,Editing",
|
258
|
+
useStandardizedQueries: true
|
259
|
+
};
|
@@ -0,0 +1,168 @@
|
|
1
|
+
/* Copyright (c) 2018 Environmental Systems Research Institute, Inc.
|
2
|
+
* Apache-2.0 */
|
3
|
+
|
4
|
+
import {
|
5
|
+
getFeature,
|
6
|
+
queryFeatures,
|
7
|
+
queryRelated,
|
8
|
+
IQueryFeaturesOptions,
|
9
|
+
IQueryRelatedOptions
|
10
|
+
} from "../src/index";
|
11
|
+
|
12
|
+
import * as fetchMock from "fetch-mock";
|
13
|
+
|
14
|
+
import {
|
15
|
+
featureResponse,
|
16
|
+
queryResponse,
|
17
|
+
queryRelatedResponse
|
18
|
+
} from "./mocks/feature";
|
19
|
+
|
20
|
+
const serviceUrl =
|
21
|
+
"https://services.arcgis.com/f8b/arcgis/rest/services/Custom/FeatureServer/0";
|
22
|
+
|
23
|
+
describe("getFeature() and queryFeatures()", () => {
|
24
|
+
afterEach(fetchMock.restore);
|
25
|
+
|
26
|
+
it("should return a feature by id", done => {
|
27
|
+
const requestOptions = {
|
28
|
+
url: serviceUrl,
|
29
|
+
id: 42
|
30
|
+
};
|
31
|
+
fetchMock.once("*", featureResponse);
|
32
|
+
getFeature(requestOptions)
|
33
|
+
.then(response => {
|
34
|
+
expect(fetchMock.called()).toBeTruthy();
|
35
|
+
const [url, options]: [string, RequestInit] = fetchMock.lastCall("*");
|
36
|
+
expect(url).toEqual(`${requestOptions.url}/42?f=json`);
|
37
|
+
expect(options.method).toBe("GET");
|
38
|
+
expect(response.attributes.FID).toEqual(42);
|
39
|
+
done();
|
40
|
+
})
|
41
|
+
.catch(e => {
|
42
|
+
fail(e);
|
43
|
+
});
|
44
|
+
});
|
45
|
+
|
46
|
+
it("return rawResponse when getting a feature", done => {
|
47
|
+
const requestOptions = {
|
48
|
+
url: serviceUrl,
|
49
|
+
id: 42,
|
50
|
+
rawResponse: true
|
51
|
+
};
|
52
|
+
fetchMock.once("*", featureResponse);
|
53
|
+
getFeature(requestOptions)
|
54
|
+
.then((response: any) => {
|
55
|
+
expect(fetchMock.called()).toBeTruthy();
|
56
|
+
const [url, options]: [string, RequestInit] = fetchMock.lastCall("*");
|
57
|
+
expect(url).toEqual(`${requestOptions.url}/42?f=json`);
|
58
|
+
expect(options.method).toBe("GET");
|
59
|
+
expect(response.status).toBe(200);
|
60
|
+
expect(response.ok).toBe(true);
|
61
|
+
expect(response.body.Readable).not.toBe(null);
|
62
|
+
response.json().then((raw: any) => {
|
63
|
+
expect(raw).toEqual(featureResponse);
|
64
|
+
done();
|
65
|
+
});
|
66
|
+
// this used to work with isomorphic-fetch
|
67
|
+
// expect(response instanceof Response).toBe(true);
|
68
|
+
})
|
69
|
+
.catch(e => {
|
70
|
+
fail(e);
|
71
|
+
});
|
72
|
+
});
|
73
|
+
|
74
|
+
it("should supply default query parameters", done => {
|
75
|
+
const requestOptions: IQueryFeaturesOptions = {
|
76
|
+
url: serviceUrl
|
77
|
+
};
|
78
|
+
fetchMock.once("*", queryResponse);
|
79
|
+
queryFeatures(requestOptions)
|
80
|
+
.then(() => {
|
81
|
+
expect(fetchMock.called()).toBeTruthy();
|
82
|
+
const [url, options]: [string, RequestInit] = fetchMock.lastCall("*");
|
83
|
+
expect(url).toEqual(
|
84
|
+
`${requestOptions.url}/query?f=json&where=1%3D1&outFields=*`
|
85
|
+
);
|
86
|
+
expect(options.method).toBe("GET");
|
87
|
+
done();
|
88
|
+
})
|
89
|
+
.catch(e => {
|
90
|
+
fail(e);
|
91
|
+
});
|
92
|
+
});
|
93
|
+
|
94
|
+
it("should use passed in query parameters", done => {
|
95
|
+
const requestOptions: IQueryFeaturesOptions = {
|
96
|
+
url: serviceUrl,
|
97
|
+
where: "Condition='Poor'",
|
98
|
+
outFields: ["FID", "Tree_ID", "Cmn_Name", "Condition"]
|
99
|
+
};
|
100
|
+
fetchMock.once("*", queryResponse);
|
101
|
+
queryFeatures(requestOptions)
|
102
|
+
.then(() => {
|
103
|
+
expect(fetchMock.called()).toBeTruthy();
|
104
|
+
const [url, options]: [string, RequestInit] = fetchMock.lastCall("*");
|
105
|
+
expect(url).toEqual(
|
106
|
+
`${
|
107
|
+
requestOptions.url
|
108
|
+
}/query?f=json&where=Condition%3D'Poor'&outFields=FID%2CTree_ID%2CCmn_Name%2CCondition`
|
109
|
+
);
|
110
|
+
expect(options.method).toBe("GET");
|
111
|
+
// expect(response.attributes.FID).toEqual(42);
|
112
|
+
done();
|
113
|
+
})
|
114
|
+
.catch(e => {
|
115
|
+
fail(e);
|
116
|
+
});
|
117
|
+
});
|
118
|
+
|
119
|
+
it("should supply default query related parameters", done => {
|
120
|
+
const requestOptions: IQueryRelatedOptions = {
|
121
|
+
url: serviceUrl
|
122
|
+
};
|
123
|
+
fetchMock.once("*", queryRelatedResponse);
|
124
|
+
queryRelated(requestOptions)
|
125
|
+
.then(() => {
|
126
|
+
expect(fetchMock.called()).toBeTruthy();
|
127
|
+
const [url, options]: [string, RequestInit] = fetchMock.lastCall("*");
|
128
|
+
expect(url).toEqual(
|
129
|
+
`${
|
130
|
+
requestOptions.url
|
131
|
+
}/queryRelatedRecords?f=json&definitionExpression=1%3D1&outFields=*&relationshipId=0`
|
132
|
+
);
|
133
|
+
expect(options.method).toBe("GET");
|
134
|
+
done();
|
135
|
+
})
|
136
|
+
.catch(e => {
|
137
|
+
fail(e);
|
138
|
+
});
|
139
|
+
});
|
140
|
+
|
141
|
+
it("should use passed in query related parameters", done => {
|
142
|
+
const requestOptions: IQueryRelatedOptions = {
|
143
|
+
url: serviceUrl,
|
144
|
+
relationshipId: 1,
|
145
|
+
definitionExpression: "APPROXACRE<10000",
|
146
|
+
outFields: ["APPROXACRE", "FIELD_NAME"],
|
147
|
+
httpMethod: "POST"
|
148
|
+
};
|
149
|
+
fetchMock.once("*", queryRelatedResponse);
|
150
|
+
queryRelated(requestOptions)
|
151
|
+
.then(() => {
|
152
|
+
expect(fetchMock.called()).toBeTruthy();
|
153
|
+
const [url, options]: [string, RequestInit] = fetchMock.lastCall("*");
|
154
|
+
expect(url).toEqual(`${requestOptions.url}/queryRelatedRecords`);
|
155
|
+
expect(options.method).toBe("POST");
|
156
|
+
expect(options.body).toContain("f=json");
|
157
|
+
expect(options.body).toContain("relationshipId=1");
|
158
|
+
expect(options.body).toContain(
|
159
|
+
"definitionExpression=APPROXACRE%3C10000"
|
160
|
+
);
|
161
|
+
expect(options.body).toContain("outFields=APPROXACRE%2CFIELD_NAME");
|
162
|
+
done();
|
163
|
+
})
|
164
|
+
.catch(e => {
|
165
|
+
fail(e);
|
166
|
+
});
|
167
|
+
});
|
168
|
+
});
|
@@ -0,0 +1,86 @@
|
|
1
|
+
[![npm version][npm-img]][npm-url]
|
2
|
+
[![build status][travis-img]][travis-url]
|
3
|
+
[![gzip bundle size][gzip-image]][npm-url]
|
4
|
+
[![Coverage Status][coverage-img]][coverage-url]
|
5
|
+
[![apache licensed](https://img.shields.io/badge/license-Apache-green.svg?style=flat-square)](https://raw.githubusercontent.com/Esri/arcgis-rest-js/master/LICENSE)
|
6
|
+
|
7
|
+
[npm-img]: https://img.shields.io/npm/v/@esri/arcgis-rest-geocoding.svg?style=flat-square
|
8
|
+
[npm-url]: https://www.npmjs.com/package/@esri/arcgis-rest-geocoding
|
9
|
+
[travis-img]: https://img.shields.io/travis/Esri/arcgis-rest-js/master.svg?style=flat-square
|
10
|
+
[travis-url]: https://travis-ci.org/Esri/arcgis-rest-js
|
11
|
+
[gzip-image]: https://img.badgesize.io/https://unpkg.com/@esri/arcgis-rest-geocoding/dist/umd/geocoding.umd.min.js?compression=gzip
|
12
|
+
[coverage-img]: https://codecov.io/gh/Esri/arcgis-rest-js/branch/master/graph/badge.svg
|
13
|
+
[coverage-url]: https://codecov.io/gh/Esri/arcgis-rest-js
|
14
|
+
|
15
|
+
# @esri/arcgis-rest-geocoding
|
16
|
+
|
17
|
+
> Geocoding helpers for [`@esri/arcgis-rest-request`](https://github.com/Esri/arcgis-rest-js).
|
18
|
+
|
19
|
+
### Example
|
20
|
+
|
21
|
+
```bash
|
22
|
+
npm install @esri/arcgis-rest-request
|
23
|
+
npm install @esri/arcgis-rest-geocoding
|
24
|
+
```
|
25
|
+
|
26
|
+
```js
|
27
|
+
import { geocode } from '@esri/arcgis-rest-geocoding';
|
28
|
+
|
29
|
+
geocode("LAX")
|
30
|
+
.then((response) => {
|
31
|
+
response.candidates[0].location;
|
32
|
+
// => { x: -118.409, y: 33.943 }
|
33
|
+
});
|
34
|
+
```
|
35
|
+
|
36
|
+
### [API Reference](https://esri.github.io/arcgis-rest-js/api/geocoding/)
|
37
|
+
|
38
|
+
* [`geocode("1 World Way Los Angeles 90045")`](https://esri.github.io/arcgis-rest-js/api/geocoding/geocode/)
|
39
|
+
|
40
|
+
* [`suggest("Starb")`](https://esri.github.io/arcgis-rest-js/api/geocoding/suggest/)
|
41
|
+
|
42
|
+
* [`reverseGeocode([-118.409,33.943 ])`](https://esri.github.io/arcgis-rest-js/api/geocoding/reverseGeocode/)
|
43
|
+
|
44
|
+
* [`bulkGeocode()`](https://esri.github.io/arcgis-rest-js/api/geocoding/bulkGeocode/)
|
45
|
+
|
46
|
+
### Issues
|
47
|
+
|
48
|
+
If something isn't working the way you expected, please take a look at [previously logged issues](https://github.com/Esri/arcgis-rest-js/issues) first. Have you found a new bug? Want to request a new feature? We'd [**love**](https://github.com/Esri/arcgis-rest-js/issues/new) to hear from you.
|
49
|
+
|
50
|
+
If you're looking for help you can also post issues on [GIS Stackexchange](http://gis.stackexchange.com/questions/ask?tags=esri-oss).
|
51
|
+
|
52
|
+
### Versioning
|
53
|
+
|
54
|
+
For transparency into the release cycle and in striving to maintain backward compatibility, @esri/arcgis-rest-js is maintained under Semantic Versioning guidelines and will adhere to these rules whenever possible.
|
55
|
+
|
56
|
+
For more information on SemVer, please visit <http://semver.org/>.
|
57
|
+
|
58
|
+
### Contributing
|
59
|
+
|
60
|
+
Esri welcomes contributions from anyone and everyone. Please see our [guidelines for contributing](CONTRIBUTING.md).
|
61
|
+
|
62
|
+
### In the wild
|
63
|
+
|
64
|
+
| What | Who |
|
65
|
+
| -- | -- |
|
66
|
+
| [React](https://twitter.com/oppoudel/status/1022209378378805249) component | [@oppoudel](https://github.com/oppoudel) |
|
67
|
+
|
68
|
+
### [Changelog](https://github.com/Esri/arcgis-rest-js/blob/master/CHANGELOG.md)
|
69
|
+
|
70
|
+
### License
|
71
|
+
|
72
|
+
Copyright © 2017-2019 Esri
|
73
|
+
|
74
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
75
|
+
you may not use this file except in compliance with the License.
|
76
|
+
You may obtain a copy of the License at
|
77
|
+
|
78
|
+
> http://www.apache.org/licenses/LICENSE-2.0
|
79
|
+
|
80
|
+
Unless required by applicable law or agreed to in writing, software
|
81
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
82
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
83
|
+
See the License for the specific language governing permissions and
|
84
|
+
limitations under the License.
|
85
|
+
|
86
|
+
A copy of the license is available in the repository's [LICENSE](../../LICENSE) file.
|
@@ -0,0 +1,11 @@
|
|
1
|
+
{
|
2
|
+
"requires": true,
|
3
|
+
"lockfileVersion": 1,
|
4
|
+
"dependencies": {
|
5
|
+
"tslib": {
|
6
|
+
"version": "1.9.3",
|
7
|
+
"resolved": "https://registry.npmjs.org/tslib/-/tslib-1.9.3.tgz",
|
8
|
+
"integrity": "sha512-4krF8scpejhaOgqzBEcGM7yDIEfi0/8+8zDRZhNZZ2kjmHJ4hv3zCbQWxoJGz1iw5U0Jl0nma13xzHXcncMavQ=="
|
9
|
+
}
|
10
|
+
}
|
11
|
+
}
|
@@ -0,0 +1,64 @@
|
|
1
|
+
{
|
2
|
+
"name": "@esri/arcgis-rest-geocoding",
|
3
|
+
"version": "2.0.4",
|
4
|
+
"description": "Geocoding helpers for @esri/arcgis-rest-js",
|
5
|
+
"main": "dist/node/index.js",
|
6
|
+
"unpkg": "dist/umd/geocoding.umd.js",
|
7
|
+
"module": "dist/esm/index.js",
|
8
|
+
"js:next": "dist/esm/index.js",
|
9
|
+
"sideEffects": false,
|
10
|
+
"types": "dist/esm/index.d.ts",
|
11
|
+
"license": "Apache-2.0",
|
12
|
+
"files": [
|
13
|
+
"dist/**"
|
14
|
+
],
|
15
|
+
"dependencies": {
|
16
|
+
"@esri/arcgis-rest-types": "^2.0.4",
|
17
|
+
"tslib": "^1.9.3"
|
18
|
+
},
|
19
|
+
"devDependencies": {
|
20
|
+
"@esri/arcgis-rest-auth": "^2.0.4",
|
21
|
+
"@esri/arcgis-rest-request": "^2.0.4"
|
22
|
+
},
|
23
|
+
"peerDependencies": {
|
24
|
+
"@esri/arcgis-rest-auth": "^2.0.0",
|
25
|
+
"@esri/arcgis-rest-request": "^2.0.0"
|
26
|
+
},
|
27
|
+
"scripts": {
|
28
|
+
"prepare": "npm run build",
|
29
|
+
"build": "npm run build:node && npm run build:umd && npm run build:esm",
|
30
|
+
"build:esm": "tsc --module es2015 --outDir ./dist/esm --declaration",
|
31
|
+
"build:umd": "rollup -c ../../umd-base-profile.js && rollup -c ../../umd-production-profile.js",
|
32
|
+
"build:node": "tsc --module commonjs --outDir ./dist/node",
|
33
|
+
"dev:esm": "tsc -w --module es2015 --outDir ./dist/esm --declaration",
|
34
|
+
"dev:umd": "rollup -w -c ../../umd-base-profile.js",
|
35
|
+
"dev:node": "tsc -w --module commonjs --outDir ./dist/node"
|
36
|
+
},
|
37
|
+
"publishConfig": {
|
38
|
+
"access": "public"
|
39
|
+
},
|
40
|
+
"repository": {
|
41
|
+
"type": "git",
|
42
|
+
"url": "git+https://github.com/Esri/arcgis-rest-js.git",
|
43
|
+
"directory": "packages/arcgis-rest-geocoding"
|
44
|
+
},
|
45
|
+
"contributors": [
|
46
|
+
{
|
47
|
+
"name": "Patrick Arlt",
|
48
|
+
"email": "parlt@esri.com",
|
49
|
+
"url": "http://patrickarlt.com/"
|
50
|
+
}
|
51
|
+
],
|
52
|
+
"bugs": {
|
53
|
+
"url": "https://github.com/Esri/arcgis-rest-js/issues"
|
54
|
+
},
|
55
|
+
"homepage": "https://github.com/Esri/arcgis-rest-js#readme",
|
56
|
+
"keywords": [
|
57
|
+
"typescript",
|
58
|
+
"promise",
|
59
|
+
"fetch",
|
60
|
+
"arcgis",
|
61
|
+
"esri",
|
62
|
+
"ES6"
|
63
|
+
]
|
64
|
+
}
|