impeditmaiores 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 +35 -0
- package/.vscode/launch.json +24 -0
- package/.vscode/settings.json +3 -0
- package/codecov.yml +7 -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 +165 -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 +81 -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 +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 +89 -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 +211 -0
- package/demos/oauth2-browser/logo.svg +4 -0
- package/demos/oauth2-browser/package-lock.json +224 -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 +8 -0
- package/demos/tree-shaking-webpack/index.html +11 -0
- package/demos/tree-shaking-webpack/package-lock.json +4614 -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 +11342 -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 +3870 -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/embedded-apps.md +93 -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 +68 -0
- package/package.json +87 -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 +1206 -0
- package/packages/arcgis-rest-auth/src/app-tokens.ts +91 -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 +9 -0
- package/packages/arcgis-rest-auth/src/validate-app-access.ts +68 -0
- package/packages/arcgis-rest-auth/test/ApplicationSession.test.ts +124 -0
- package/packages/arcgis-rest-auth/test/UserSession.test.ts +1807 -0
- package/packages/arcgis-rest-auth/test/app-tokens.test.ts +91 -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-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 +90 -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/getService.ts +26 -0
- package/packages/arcgis-rest-feature-layer/src/helpers.ts +79 -0
- package/packages/arcgis-rest-feature-layer/src/index.ts +31 -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 +56 -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 +195 -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/getService.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 +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 +11 -0
- package/packages/arcgis-rest-geocoding/package.json +64 -0
- package/packages/arcgis-rest-geocoding/src/bulk.ts +104 -0
- package/packages/arcgis-rest-geocoding/src/geocode.ts +133 -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 +194 -0
- package/packages/arcgis-rest-geocoding/test/geocode.test.ts +249 -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/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 +66 -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 +275 -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 +135 -0
- package/packages/arcgis-rest-portal/src/items/search.ts +25 -0
- package/packages/arcgis-rest-portal/src/items/update.ts +184 -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/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 +319 -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 +374 -0
- package/packages/arcgis-rest-portal/src/util/array.ts +16 -0
- package/packages/arcgis-rest-portal/src/util/generic-search.ts +99 -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 +27 -0
- package/packages/arcgis-rest-portal/src/util/get-portal.ts +52 -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 +12 -0
- package/packages/arcgis-rest-portal/src/util/search.ts +42 -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 +149 -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 +399 -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 +238 -0
- package/packages/arcgis-rest-portal/test/items/search.test.ts +272 -0
- package/packages/arcgis-rest-portal/test/items/update.test.ts +554 -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 +142 -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 +1325 -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 +340 -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 +11 -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 +413 -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 +49 -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 +108 -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 +571 -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 +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 +189 -0
- package/packages/arcgis-rest-service-admin/src/index.ts +11 -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/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 +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 +9 -0
- package/packages/arcgis-rest-types/src/item.ts +81 -0
- package/packages/arcgis-rest-types/src/service.ts +114 -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 +1367 -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/tslint.json +16 -0
- package/umd-base-profile.js +81 -0
- package/umd-production-profile.js +13 -0
@@ -0,0 +1,526 @@
|
|
1
|
+
/* Copyright (c) 2018 Environmental Systems Research Institute, Inc.
|
2
|
+
* Apache-2.0 */
|
3
|
+
|
4
|
+
import { IItem } from "@esri/arcgis-rest-types";
|
5
|
+
import {
|
6
|
+
IGetRelatedItemsResponse,
|
7
|
+
IGetItemGroupsResponse,
|
8
|
+
IGetItemStatusResponse,
|
9
|
+
IGetItemPartsResponse
|
10
|
+
} from "../../../src/items/get";
|
11
|
+
|
12
|
+
export const ItemSuccessResponse: any = {
|
13
|
+
success: true,
|
14
|
+
id: "3efakeitemid0000"
|
15
|
+
};
|
16
|
+
|
17
|
+
export const ItemResponse: IItem = {
|
18
|
+
id: "4bc",
|
19
|
+
owner: "jeffvader",
|
20
|
+
title: "DS Plans",
|
21
|
+
description: "The plans",
|
22
|
+
snippet: "Yeah these are the ones",
|
23
|
+
tags: ["plans", "star dust"],
|
24
|
+
type: "Web Map",
|
25
|
+
typeKeywords: ["Javascript", "hubSiteApplication"],
|
26
|
+
properties: {
|
27
|
+
parentId: "3eb"
|
28
|
+
},
|
29
|
+
created: 123,
|
30
|
+
modified: 456,
|
31
|
+
size: 123,
|
32
|
+
numViews: 1337,
|
33
|
+
protected: false
|
34
|
+
};
|
35
|
+
|
36
|
+
export const RelatedItemsResponse: IGetRelatedItemsResponse = {
|
37
|
+
total: 1,
|
38
|
+
relatedItems: [ItemResponse]
|
39
|
+
};
|
40
|
+
|
41
|
+
export const ItemDataResponse: any = {
|
42
|
+
source: "3ef",
|
43
|
+
values: {
|
44
|
+
key: "value"
|
45
|
+
}
|
46
|
+
};
|
47
|
+
|
48
|
+
export const ItemGroupResponse: IGetItemGroupsResponse = {
|
49
|
+
admin: [
|
50
|
+
{
|
51
|
+
id: "2ecb37a8c8fb4051af9c086c25503bb0",
|
52
|
+
title: "Street Maps",
|
53
|
+
isInvitationOnly: false,
|
54
|
+
owner: "jsmith",
|
55
|
+
description:
|
56
|
+
"The street maps group provides street maps for the city of Redlands.",
|
57
|
+
snippet: null,
|
58
|
+
tags: ["Redlands", "Street", "Maps"],
|
59
|
+
phone: "909.555.1234",
|
60
|
+
thumbnail: "streets.jpg",
|
61
|
+
created: 1247082196000,
|
62
|
+
modified: 1276793808000,
|
63
|
+
access: "public",
|
64
|
+
userMembership: {
|
65
|
+
username: "jsmith",
|
66
|
+
memberType: "owner",
|
67
|
+
applications: 1
|
68
|
+
},
|
69
|
+
isFav: false,
|
70
|
+
autoJoin: false,
|
71
|
+
isViewOnly: false,
|
72
|
+
protected: false
|
73
|
+
}
|
74
|
+
],
|
75
|
+
member: [
|
76
|
+
{
|
77
|
+
id: "bf51aa6e879e4676b683dcbefb0ab0a9",
|
78
|
+
title: "Parks and Recreation",
|
79
|
+
isInvitationOnly: true,
|
80
|
+
owner: "swilson",
|
81
|
+
description:
|
82
|
+
"The Parks and Recreation group contains maps and applications used by the Parks Department.",
|
83
|
+
snippet: null,
|
84
|
+
tags: ["Redlands", "Parks", "Recreation"],
|
85
|
+
phone: "909.555.1234",
|
86
|
+
thumbnail: "parks.jpg",
|
87
|
+
created: 1247082197000,
|
88
|
+
modified: 1276793919000,
|
89
|
+
access: "private",
|
90
|
+
userMembership: {
|
91
|
+
username: "jsmith",
|
92
|
+
memberType: "member"
|
93
|
+
},
|
94
|
+
isFav: false,
|
95
|
+
autoJoin: false,
|
96
|
+
isViewOnly: false,
|
97
|
+
protected: false
|
98
|
+
}
|
99
|
+
],
|
100
|
+
other: [
|
101
|
+
{
|
102
|
+
id: "dbc385ac1b7d4231b24b97750f0e633c",
|
103
|
+
title: "Featured Maps and Apps",
|
104
|
+
isInvitationOnly: true,
|
105
|
+
owner: "city_redlands",
|
106
|
+
description: "These items are featured on the gallery page.",
|
107
|
+
snippet: null,
|
108
|
+
tags: ["gallery", "Featured Maps", "Featured Apps"],
|
109
|
+
phone: "909.555.1234",
|
110
|
+
thumbnail: "gallery.jpg",
|
111
|
+
created: 1327099662000,
|
112
|
+
modified: 1327099662000,
|
113
|
+
access: "public",
|
114
|
+
userMembership: {
|
115
|
+
username: "jsmith",
|
116
|
+
memberType: "none"
|
117
|
+
},
|
118
|
+
isFav: false,
|
119
|
+
autoJoin: false,
|
120
|
+
isViewOnly: false,
|
121
|
+
protected: false
|
122
|
+
}
|
123
|
+
]
|
124
|
+
};
|
125
|
+
|
126
|
+
export const ItemStatusResponse: IGetItemStatusResponse = {
|
127
|
+
status: "completed",
|
128
|
+
statusMessage: "completed",
|
129
|
+
itemId: "1df"
|
130
|
+
};
|
131
|
+
|
132
|
+
export const ItemPartsResponse: IGetItemPartsResponse = {
|
133
|
+
parts: [1]
|
134
|
+
};
|
135
|
+
|
136
|
+
// https://www.arcgis.com/sharing/rest/content/items/1ce4060e854747038b153c5c8f8c894d/info/iteminfo.xml
|
137
|
+
export const ItemInfoResponse: string = `
|
138
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?><ESRI_ItemInformation Culture="en-us"><name>Sharjah_selection_WFL1</name><title>Sharjah_selection_WFL1</title><thumbnail>thumbnail/thumbnail.png</thumbnail><type>Feature Service</type><typekeywords><typekeyword>ArcGIS Server</typekeyword><typekeyword>Data</typekeyword><typekeyword>Feature Access</typekeyword><typekeyword>Feature Service</typekeyword><typekeyword>Metadata</typekeyword><typekeyword>Service</typekeyword><typekeyword>Singlelayer</typekeyword><typekeyword>Hosted Service</typekeyword></typekeywords><description/><tags><tag>Sharjah_selection</tag></tags><snippet>Sharjah_selection</snippet><extent><xmin>55.00687876313506</xmin><ymin>24.749573764658628</ymin><xmax>56.38435669830817</xmax><ymax>25.911597786107645</ymax></extent><spatialreference>102100</spatialreference><accessinformation/><licenseinfo/><url>https://services1.arcgis.com/Kq4xB498o2K1KK7t/arcgis/rest/services/Sharjah_selection_WFL1/FeatureServer</url></ESRI_ItemInformation>
|
139
|
+
`;
|
140
|
+
|
141
|
+
// https://www.arcgis.com/sharing/rest/content/items/1ce4060e854747038b153c5c8f8c894d/info/metadata/metadata.xml
|
142
|
+
export const ItemMetadataResponse: string = `
|
143
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?><metadata xml:lang="en">
|
144
|
+
<Esri>
|
145
|
+
<CreaDate>20200305</CreaDate>
|
146
|
+
<CreaTime>16302900</CreaTime>
|
147
|
+
<ArcGISFormat>1.0</ArcGISFormat>
|
148
|
+
<SyncOnce>FALSE</SyncOnce>
|
149
|
+
<DataProperties>
|
150
|
+
<itemProps>
|
151
|
+
<itemName Sync="TRUE">SDE.ARCDATA_AREAS</itemName>
|
152
|
+
<imsContentType Sync="TRUE">002</imsContentType>
|
153
|
+
<nativeExtBox>
|
154
|
+
<westBL Sync="TRUE">333996.493700</westBL>
|
155
|
+
<eastBL Sync="TRUE">437765.674000</eastBL>
|
156
|
+
<southBL Sync="TRUE">2742761.572800</southBL>
|
157
|
+
<northBL Sync="TRUE">2834452.030000</northBL>
|
158
|
+
<exTypeCode Sync="TRUE">1</exTypeCode>
|
159
|
+
</nativeExtBox>
|
160
|
+
</itemProps>
|
161
|
+
<coordRef>
|
162
|
+
<type Sync="TRUE">Projected</type>
|
163
|
+
<geogcsn Sync="TRUE">GCS_WGS_1984</geogcsn>
|
164
|
+
<csUnits Sync="TRUE">Linear Unit: Meter (1.000000)</csUnits>
|
165
|
+
<projcsn Sync="TRUE">WGS_1984_UTM_Zone_40N</projcsn>
|
166
|
+
<peXml Sync="TRUE"><ProjectedCoordinateSystem xsi:type='typens:ProjectedCoordinateSystem' xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance' xmlns:xs='http://www.w3.org/2001/XMLSchema' xmlns:typens='http://www.esri.com/schemas/ArcGIS/10.5'><WKT>PROJCS[&quot;WGS_1984_UTM_Zone_40N&quot;,GEOGCS[&quot;GCS_WGS_1984&quot;,DATUM[&quot;D_WGS_1984&quot;,SPHEROID[&quot;WGS_1984&quot;,6378137.0,298.257223563]],PRIMEM[&quot;Greenwich&quot;,0.0],UNIT[&quot;Degree&quot;,0.0174532925199433]],PROJECTION[&quot;Transverse_Mercator&quot;],PARAMETER[&quot;False_Easting&quot;,500000.0],PARAMETER[&quot;False_Northing&quot;,0.0],PARAMETER[&quot;Central_Meridian&quot;,57.0],PARAMETER[&quot;Scale_Factor&quot;,0.9996],PARAMETER[&quot;Latitude_Of_Origin&quot;,0.0],UNIT[&quot;Meter&quot;,1.0],AUTHORITY[&quot;EPSG&quot;,32640]]</WKT><XOrigin>-5120900</XOrigin><YOrigin>-9998100</YOrigin><XYScale>10000</XYScale><ZOrigin>0</ZOrigin><ZScale>1</ZScale><MOrigin>0</MOrigin><MScale>1</MScale><XYTolerance>0.001</XYTolerance><ZTolerance>0.001</ZTolerance><MTolerance>0.001</MTolerance><HighPrecision>true</HighPrecision><WKID>32640</WKID><LatestWKID>32640</LatestWKID></ProjectedCoordinateSystem></peXml>
|
167
|
+
</coordRef>
|
168
|
+
</DataProperties>
|
169
|
+
<SyncDate>20180711</SyncDate>
|
170
|
+
<SyncTime>08475400</SyncTime>
|
171
|
+
<ModDate>20180711</ModDate>
|
172
|
+
<ModTime>08475400</ModTime>
|
173
|
+
</Esri>
|
174
|
+
<dataIdInfo>
|
175
|
+
<envirDesc Sync="FALSE">Esri ArcGIS 10.5.0.6491</envirDesc>
|
176
|
+
<dataLang>
|
177
|
+
<languageCode Sync="TRUE" value="eng"/>
|
178
|
+
<countryCode Sync="TRUE" value="USA"/>
|
179
|
+
</dataLang>
|
180
|
+
<idCitation>
|
181
|
+
<resTitle Sync="TRUE">SDE.ARCDATA_AREAS</resTitle>
|
182
|
+
<presForm>
|
183
|
+
<PresFormCd Sync="TRUE" value="005"/>
|
184
|
+
</presForm>
|
185
|
+
</idCitation>
|
186
|
+
<spatRpType>
|
187
|
+
<SpatRepTypCd Sync="TRUE" value="001"/>
|
188
|
+
</spatRpType>
|
189
|
+
<dataExt>
|
190
|
+
<geoEle>
|
191
|
+
<GeoBndBox esriExtentType="search">
|
192
|
+
<exTypeCode Sync="TRUE">1</exTypeCode>
|
193
|
+
<westBL Sync="TRUE">55.346704</westBL>
|
194
|
+
<eastBL Sync="TRUE">56.384276</eastBL>
|
195
|
+
<northBL Sync="TRUE">25.626358</northBL>
|
196
|
+
<southBL Sync="TRUE">24.790622</southBL>
|
197
|
+
</GeoBndBox>
|
198
|
+
</geoEle>
|
199
|
+
</dataExt>
|
200
|
+
<idAbs/>
|
201
|
+
<searchKeys>
|
202
|
+
<keyword>Sharjah_selection</keyword>
|
203
|
+
</searchKeys>
|
204
|
+
<idPurp>Sharjah_selection</idPurp>
|
205
|
+
<idCredit/>
|
206
|
+
<resConst>
|
207
|
+
<Consts>
|
208
|
+
<useLimit/>
|
209
|
+
</Consts>
|
210
|
+
</resConst>
|
211
|
+
</dataIdInfo>
|
212
|
+
<mdLang>
|
213
|
+
<languageCode Sync="TRUE" value="eng"/>
|
214
|
+
<countryCode Sync="TRUE" value="USA"/>
|
215
|
+
</mdLang>
|
216
|
+
<distInfo>
|
217
|
+
<distFormat>
|
218
|
+
<formatName Sync="FALSE">Feature Class</formatName>
|
219
|
+
</distFormat>
|
220
|
+
</distInfo>
|
221
|
+
<mdHrLv>
|
222
|
+
<ScopeCd Sync="TRUE" value="005"/>
|
223
|
+
</mdHrLv>
|
224
|
+
<mdHrLvName Sync="TRUE">dataset</mdHrLvName>
|
225
|
+
<refSysInfo>
|
226
|
+
<RefSystem>
|
227
|
+
<refSysID>
|
228
|
+
<identCode Sync="TRUE" code="32640"/>
|
229
|
+
<idCodeSpace Sync="TRUE">EPSG</idCodeSpace>
|
230
|
+
<idVersion Sync="TRUE">2.1(3.0.1)</idVersion>
|
231
|
+
</refSysID>
|
232
|
+
</RefSystem>
|
233
|
+
</refSysInfo>
|
234
|
+
<spatRepInfo>
|
235
|
+
<VectSpatRep>
|
236
|
+
<geometObjs Name="SDE.ARCDATA_AREAS">
|
237
|
+
<geoObjTyp>
|
238
|
+
<GeoObjTypCd Sync="TRUE" value="002"/>
|
239
|
+
</geoObjTyp>
|
240
|
+
<geoObjCnt Sync="TRUE">0</geoObjCnt>
|
241
|
+
</geometObjs>
|
242
|
+
<topLvl>
|
243
|
+
<TopoLevCd Sync="TRUE" value="001"/>
|
244
|
+
</topLvl>
|
245
|
+
</VectSpatRep>
|
246
|
+
</spatRepInfo>
|
247
|
+
<spdoinfo>
|
248
|
+
<ptvctinf>
|
249
|
+
<esriterm Name="SDE.ARCDATA_AREAS">
|
250
|
+
<efeatyp Sync="TRUE">Simple</efeatyp>
|
251
|
+
<efeageom Sync="TRUE" code="4"/>
|
252
|
+
<esritopo Sync="TRUE">FALSE</esritopo>
|
253
|
+
<efeacnt Sync="TRUE">0</efeacnt>
|
254
|
+
<spindex Sync="TRUE">TRUE</spindex>
|
255
|
+
<linrefer Sync="TRUE">FALSE</linrefer>
|
256
|
+
</esriterm>
|
257
|
+
</ptvctinf>
|
258
|
+
</spdoinfo>
|
259
|
+
<eainfo>
|
260
|
+
<detailed Name="SDE.ARCDATA_AREAS">
|
261
|
+
<enttyp>
|
262
|
+
<enttypl Sync="TRUE">SDE.ARCDATA_AREAS</enttypl>
|
263
|
+
<enttypt Sync="TRUE">Feature Class</enttypt>
|
264
|
+
<enttypc Sync="TRUE">0</enttypc>
|
265
|
+
</enttyp>
|
266
|
+
<attr>
|
267
|
+
<attrlabl Sync="TRUE">REMARKS</attrlabl>
|
268
|
+
<attalias Sync="TRUE">REMARKS</attalias>
|
269
|
+
<attrtype Sync="TRUE">String</attrtype>
|
270
|
+
<attwidth Sync="TRUE">254</attwidth>
|
271
|
+
<atprecis Sync="TRUE">0</atprecis>
|
272
|
+
<attscale Sync="TRUE">0</attscale>
|
273
|
+
</attr>
|
274
|
+
<attr>
|
275
|
+
<attrlabl Sync="TRUE">AREA_CODE</attrlabl>
|
276
|
+
<attalias Sync="TRUE">AREA_CODE</attalias>
|
277
|
+
<attrtype Sync="TRUE">Double</attrtype>
|
278
|
+
<attwidth Sync="TRUE">8</attwidth>
|
279
|
+
<atprecis Sync="TRUE">38</atprecis>
|
280
|
+
<attscale Sync="TRUE">8</attscale>
|
281
|
+
</attr>
|
282
|
+
<attr>
|
283
|
+
<attrlabl Sync="TRUE">SUBURB_COD</attrlabl>
|
284
|
+
<attalias Sync="TRUE">SUBURB_COD</attalias>
|
285
|
+
<attrtype Sync="TRUE">Double</attrtype>
|
286
|
+
<attwidth Sync="TRUE">8</attwidth>
|
287
|
+
<atprecis Sync="TRUE">38</atprecis>
|
288
|
+
<attscale Sync="TRUE">8</attscale>
|
289
|
+
</attr>
|
290
|
+
<attr>
|
291
|
+
<attrlabl Sync="TRUE">AREA_NAME_</attrlabl>
|
292
|
+
<attalias Sync="TRUE">AREA_NAME_</attalias>
|
293
|
+
<attrtype Sync="TRUE">String</attrtype>
|
294
|
+
<attwidth Sync="TRUE">50</attwidth>
|
295
|
+
<atprecis Sync="TRUE">0</atprecis>
|
296
|
+
<attscale Sync="TRUE">0</attscale>
|
297
|
+
</attr>
|
298
|
+
<attr>
|
299
|
+
<attrlabl Sync="TRUE">AREA_NAME1</attrlabl>
|
300
|
+
<attalias Sync="TRUE">AREA_NAME1</attalias>
|
301
|
+
<attrtype Sync="TRUE">String</attrtype>
|
302
|
+
<attwidth Sync="TRUE">50</attwidth>
|
303
|
+
<atprecis Sync="TRUE">0</atprecis>
|
304
|
+
<attscale Sync="TRUE">0</attscale>
|
305
|
+
</attr>
|
306
|
+
<attr>
|
307
|
+
<attrlabl Sync="TRUE">POPULATION</attrlabl>
|
308
|
+
<attalias Sync="TRUE">POPULATION</attalias>
|
309
|
+
<attrtype Sync="TRUE">Double</attrtype>
|
310
|
+
<attwidth Sync="TRUE">8</attwidth>
|
311
|
+
<atprecis Sync="TRUE">38</atprecis>
|
312
|
+
<attscale Sync="TRUE">8</attscale>
|
313
|
+
</attr>
|
314
|
+
<attr>
|
315
|
+
<attrlabl Sync="TRUE">CITY_CODE</attrlabl>
|
316
|
+
<attalias Sync="TRUE">CITY_CODE</attalias>
|
317
|
+
<attrtype Sync="TRUE">Double</attrtype>
|
318
|
+
<attwidth Sync="TRUE">8</attwidth>
|
319
|
+
<atprecis Sync="TRUE">38</atprecis>
|
320
|
+
<attscale Sync="TRUE">8</attscale>
|
321
|
+
</attr>
|
322
|
+
<attr>
|
323
|
+
<attrlabl Sync="TRUE">OBJECTID</attrlabl>
|
324
|
+
<attalias Sync="TRUE">OBJECTID</attalias>
|
325
|
+
<attrtype Sync="TRUE">OID</attrtype>
|
326
|
+
<attwidth Sync="TRUE">4</attwidth>
|
327
|
+
<atprecis Sync="TRUE">10</atprecis>
|
328
|
+
<attscale Sync="TRUE">0</attscale>
|
329
|
+
<attrdef Sync="TRUE">Internal feature number.</attrdef>
|
330
|
+
<attrdefs Sync="TRUE">Esri</attrdefs>
|
331
|
+
<attrdomv>
|
332
|
+
<udom Sync="TRUE">Sequential unique whole numbers that are automatically generated.</udom>
|
333
|
+
</attrdomv>
|
334
|
+
</attr>
|
335
|
+
<attr>
|
336
|
+
<attrlabl Sync="TRUE">SHAPE</attrlabl>
|
337
|
+
<attalias Sync="TRUE">SHAPE</attalias>
|
338
|
+
<attrtype Sync="TRUE">Geometry</attrtype>
|
339
|
+
<attwidth Sync="TRUE">4</attwidth>
|
340
|
+
<atprecis Sync="TRUE">0</atprecis>
|
341
|
+
<attscale Sync="TRUE">0</attscale>
|
342
|
+
<attrdef Sync="TRUE">Feature geometry.</attrdef>
|
343
|
+
<attrdefs Sync="TRUE">ESRI</attrdefs>
|
344
|
+
<attrdomv>
|
345
|
+
<udom Sync="TRUE">Coordinates defining the features.</udom>
|
346
|
+
</attrdomv>
|
347
|
+
</attr>
|
348
|
+
<attr>
|
349
|
+
<attrlabl Sync="TRUE">GLOBALID</attrlabl>
|
350
|
+
<attalias Sync="TRUE">GLOBALID</attalias>
|
351
|
+
<attrtype Sync="TRUE">GlobalID</attrtype>
|
352
|
+
<attwidth Sync="TRUE">38</attwidth>
|
353
|
+
<atprecis Sync="TRUE">0</atprecis>
|
354
|
+
<attscale Sync="TRUE">0</attscale>
|
355
|
+
</attr>
|
356
|
+
<attr>
|
357
|
+
<attrlabl Sync="TRUE">CREATED_USER</attrlabl>
|
358
|
+
<attalias Sync="TRUE">CREATED_USER</attalias>
|
359
|
+
<attrtype Sync="TRUE">String</attrtype>
|
360
|
+
<attwidth Sync="TRUE">255</attwidth>
|
361
|
+
<atprecis Sync="TRUE">0</atprecis>
|
362
|
+
<attscale Sync="TRUE">0</attscale>
|
363
|
+
</attr>
|
364
|
+
<attr>
|
365
|
+
<attrlabl Sync="TRUE">CREATED_DATE</attrlabl>
|
366
|
+
<attalias Sync="TRUE">CREATED_DATE</attalias>
|
367
|
+
<attrtype Sync="TRUE">Date</attrtype>
|
368
|
+
<attwidth Sync="TRUE">8</attwidth>
|
369
|
+
<atprecis Sync="TRUE">0</atprecis>
|
370
|
+
<attscale Sync="TRUE">0</attscale>
|
371
|
+
</attr>
|
372
|
+
<attr>
|
373
|
+
<attrlabl Sync="TRUE">LAST_EDITED_USER</attrlabl>
|
374
|
+
<attalias Sync="TRUE">LAST_EDITED_USER</attalias>
|
375
|
+
<attrtype Sync="TRUE">String</attrtype>
|
376
|
+
<attwidth Sync="TRUE">255</attwidth>
|
377
|
+
<atprecis Sync="TRUE">0</atprecis>
|
378
|
+
<attscale Sync="TRUE">0</attscale>
|
379
|
+
</attr>
|
380
|
+
<attr>
|
381
|
+
<attrlabl Sync="TRUE">LAST_EDITED_DATE</attrlabl>
|
382
|
+
<attalias Sync="TRUE">LAST_EDITED_DATE</attalias>
|
383
|
+
<attrtype Sync="TRUE">Date</attrtype>
|
384
|
+
<attwidth Sync="TRUE">8</attwidth>
|
385
|
+
<atprecis Sync="TRUE">0</atprecis>
|
386
|
+
<attscale Sync="TRUE">0</attscale>
|
387
|
+
</attr>
|
388
|
+
<attr>
|
389
|
+
<attrlabl Sync="TRUE">LOCAL_POPULATION</attrlabl>
|
390
|
+
<attalias Sync="TRUE">Local_Population</attalias>
|
391
|
+
<attrtype Sync="TRUE">Integer</attrtype>
|
392
|
+
<attwidth Sync="TRUE">4</attwidth>
|
393
|
+
<atprecis Sync="TRUE">10</atprecis>
|
394
|
+
<attscale Sync="TRUE">0</attscale>
|
395
|
+
</attr>
|
396
|
+
<attr>
|
397
|
+
<attrlabl Sync="TRUE">FOREIGN_POPULATION</attrlabl>
|
398
|
+
<attalias Sync="TRUE">Foreign_Population</attalias>
|
399
|
+
<attrtype Sync="TRUE">Integer</attrtype>
|
400
|
+
<attwidth Sync="TRUE">4</attwidth>
|
401
|
+
<atprecis Sync="TRUE">10</atprecis>
|
402
|
+
<attscale Sync="TRUE">0</attscale>
|
403
|
+
</attr>
|
404
|
+
<attr>
|
405
|
+
<attrlabl Sync="TRUE">POPULATION2016</attrlabl>
|
406
|
+
<attalias Sync="TRUE">Population2016</attalias>
|
407
|
+
<attrtype Sync="TRUE">Integer</attrtype>
|
408
|
+
<attwidth Sync="TRUE">4</attwidth>
|
409
|
+
<atprecis Sync="TRUE">10</atprecis>
|
410
|
+
<attscale Sync="TRUE">0</attscale>
|
411
|
+
</attr>
|
412
|
+
<attr>
|
413
|
+
<attrlabl Sync="TRUE">AREA_USE</attrlabl>
|
414
|
+
<attalias Sync="TRUE">AREA_USE</attalias>
|
415
|
+
<attrtype Sync="TRUE">String</attrtype>
|
416
|
+
<attwidth Sync="TRUE">1</attwidth>
|
417
|
+
<atprecis Sync="TRUE">0</atprecis>
|
418
|
+
<attscale Sync="TRUE">0</attscale>
|
419
|
+
</attr>
|
420
|
+
<attr>
|
421
|
+
<attrlabl Sync="TRUE">SHAPE.AREA</attrlabl>
|
422
|
+
<attalias Sync="TRUE">SHAPE.AREA</attalias>
|
423
|
+
<attrtype Sync="TRUE">Double</attrtype>
|
424
|
+
<attwidth Sync="TRUE">0</attwidth>
|
425
|
+
<atprecis Sync="TRUE">0</atprecis>
|
426
|
+
<attscale Sync="TRUE">0</attscale>
|
427
|
+
</attr>
|
428
|
+
<attr>
|
429
|
+
<attrlabl Sync="TRUE">SHAPE.LEN</attrlabl>
|
430
|
+
<attalias Sync="TRUE">SHAPE.LEN</attalias>
|
431
|
+
<attrtype Sync="TRUE">Double</attrtype>
|
432
|
+
<attwidth Sync="TRUE">0</attwidth>
|
433
|
+
<atprecis Sync="TRUE">0</atprecis>
|
434
|
+
<attscale Sync="TRUE">0</attscale>
|
435
|
+
</attr>
|
436
|
+
</detailed>
|
437
|
+
</eainfo>
|
438
|
+
<mdDateSt Sync="TRUE">20180711</mdDateSt>
|
439
|
+
</metadata>
|
440
|
+
`;
|
441
|
+
|
442
|
+
export const ItemFormJsonResponse: any = {
|
443
|
+
portalUrl: "https://qaext.arcgis.com",
|
444
|
+
header: {
|
445
|
+
content:
|
446
|
+
"%3Cp%20title%3D'Community%20Survey'%3ECommunity%20Survey%3C%2Fp%3E",
|
447
|
+
isVisible: true
|
448
|
+
},
|
449
|
+
subHeader: {
|
450
|
+
content:
|
451
|
+
"%3Cp%3E%3Cspan%20style%3D%22font-size%3A%2014px%3B%22%3ESimple%20survey%20starter%20for%20ArcGIS%20Hub's%20Create%20Your%20Own%20Initiative.%20%3C%2Fspan%3E%3C%2Fp%3E%3Cp%3E%3Cbr%3E%3C%2Fp%3E%3Cp%3E%3Cbr%3E%3C%2Fp%3E%3Cp%3E%3Cspan%20style%3D%22font-size%3A%2014px%3B%22%3EIn%20edit%20mode%2C%20use%20the%20configuration%20panel%20at%20the%20right%20to%20add%20different%20kinds%20of%20questions.%20Save%20and%20publish%20your%20survey%20to%20gather%20feedback%20and%20data%20from%20your%20communities.%20%3C%2Fspan%3E%3C%2Fp%3E%3Cp%3E%3Cbr%3E%3C%2Fp%3E%3Cp%3E%3Cspan%20style%3D%22font-size%3A%2014px%3B%22%3E%3Cspan%20class%3D%22ql-cursor%22%3E%EF%BB%BF%3C%2Fspan%3E%3C%2Fspan%3E%3C%2Fp%3E",
|
452
|
+
isVisible: true
|
453
|
+
},
|
454
|
+
questions: [
|
455
|
+
{
|
456
|
+
id: "field_0",
|
457
|
+
position: 0,
|
458
|
+
fieldName: "field_0",
|
459
|
+
name: "field_0",
|
460
|
+
type: "esriQuestionTypeSingleChoice",
|
461
|
+
label: "What is your favorite pet?",
|
462
|
+
description:
|
463
|
+
"%3Cp%3EReplace%20this%20question%20with%20your%20own%2C%20and%20add%20more!%3C%2Fp%3E",
|
464
|
+
isRequired: false,
|
465
|
+
choices: {
|
466
|
+
items: [
|
467
|
+
{
|
468
|
+
label: "Dog",
|
469
|
+
value: "choice0",
|
470
|
+
position: 0
|
471
|
+
},
|
472
|
+
{
|
473
|
+
label: "Cat",
|
474
|
+
value: "choice1",
|
475
|
+
position: 1
|
476
|
+
},
|
477
|
+
{
|
478
|
+
label: "Monkey",
|
479
|
+
value: "choice2",
|
480
|
+
position: 2
|
481
|
+
}
|
482
|
+
],
|
483
|
+
other: {
|
484
|
+
isEnabled: true,
|
485
|
+
label: "Other",
|
486
|
+
value: "other",
|
487
|
+
fieldName: "field_0_other",
|
488
|
+
name: "field_0_other"
|
489
|
+
}
|
490
|
+
},
|
491
|
+
appearance: {
|
492
|
+
layout: "compact"
|
493
|
+
}
|
494
|
+
}
|
495
|
+
],
|
496
|
+
rules: [],
|
497
|
+
version: "2.5",
|
498
|
+
theme: {
|
499
|
+
name: "theme-color1",
|
500
|
+
style: {
|
501
|
+
header: {
|
502
|
+
backgroundColor: "#31872e",
|
503
|
+
color: "#ffffff"
|
504
|
+
},
|
505
|
+
subHeader: {},
|
506
|
+
footer: {}
|
507
|
+
}
|
508
|
+
},
|
509
|
+
footer: {
|
510
|
+
content:
|
511
|
+
"%3Ca%20href%3D'https%3A%2F%2Fsurvey123.arcgis.com'%20target%3D'_blank'%3EPowered%20by%20Survey123%20for%20ArcGIS%3C%2Fa%3E",
|
512
|
+
isVisible: true
|
513
|
+
},
|
514
|
+
submit: {
|
515
|
+
buttonText: "Submit"
|
516
|
+
},
|
517
|
+
settings: {
|
518
|
+
showQuestionNumber: true,
|
519
|
+
allowSubmitAnother: true,
|
520
|
+
thankYouScreenContent: "Great! Your data was sent successfully. Thanks.",
|
521
|
+
recordStartEndTime: {
|
522
|
+
isEnabled: false,
|
523
|
+
fieldInfos: []
|
524
|
+
}
|
525
|
+
}
|
526
|
+
};
|
@@ -0,0 +1,38 @@
|
|
1
|
+
/* Copyright (c) 2018 Environmental Systems Research Institute, Inc.
|
2
|
+
* Apache-2.0 */
|
3
|
+
|
4
|
+
export const GetItemResourcesResponse: any = {
|
5
|
+
total: 3,
|
6
|
+
start: 1,
|
7
|
+
num: 3,
|
8
|
+
nextStart: -1,
|
9
|
+
resources: [
|
10
|
+
{
|
11
|
+
resource: "image/banner.jpg"
|
12
|
+
},
|
13
|
+
{
|
14
|
+
resource: "image/logo.jpg"
|
15
|
+
},
|
16
|
+
{
|
17
|
+
resource: "text/desc.txt"
|
18
|
+
}
|
19
|
+
]
|
20
|
+
};
|
21
|
+
|
22
|
+
export const RemoveItemResourceResponse: any = {
|
23
|
+
success: true
|
24
|
+
};
|
25
|
+
|
26
|
+
export const UpdateItemInfoResponse: any = {
|
27
|
+
success: true,
|
28
|
+
itemId: "0c66beb52dff4994be67937cdadbdbf1",
|
29
|
+
owner: "jsmith",
|
30
|
+
folder: null
|
31
|
+
};
|
32
|
+
|
33
|
+
export const UpdateItemResourceResponse: any = {
|
34
|
+
success: true,
|
35
|
+
itemId: "0c66beb52dff4994be67937cdadbdbf1",
|
36
|
+
owner: "jsmith",
|
37
|
+
folder: null
|
38
|
+
};
|
@@ -0,0 +1,121 @@
|
|
1
|
+
/* Copyright (c) 2018 Environmental Systems Research Institute, Inc.
|
2
|
+
* Apache-2.0 */
|
3
|
+
|
4
|
+
import { IItem } from "@esri/arcgis-rest-types";
|
5
|
+
import { ISearchResult } from "../../../src/util/search";
|
6
|
+
|
7
|
+
export const SearchResponse: ISearchResult<IItem> = {
|
8
|
+
query: "",
|
9
|
+
total: 10795,
|
10
|
+
start: 1,
|
11
|
+
num: 1,
|
12
|
+
nextStart: -1,
|
13
|
+
results: [
|
14
|
+
{
|
15
|
+
id: "a5b",
|
16
|
+
owner: "dcadminqa",
|
17
|
+
created: 1496748288000,
|
18
|
+
modified: 1508856526000,
|
19
|
+
name: "survey123_7d7a9fabcb0c44bcaf1d6473cd088a07",
|
20
|
+
title: " Drug Activity Reporter",
|
21
|
+
type: "Feature Service",
|
22
|
+
typeKeywords: [
|
23
|
+
"ArcGIS Server",
|
24
|
+
"Data",
|
25
|
+
"Feature Access",
|
26
|
+
"Feature Service",
|
27
|
+
"OwnerView",
|
28
|
+
"Service",
|
29
|
+
"Survey123",
|
30
|
+
"Survey123 Hub",
|
31
|
+
"Hosted Service"
|
32
|
+
],
|
33
|
+
description: "Some Description",
|
34
|
+
tags: [],
|
35
|
+
snippet: "Some Snippet",
|
36
|
+
thumbnail: "thumbnail/ago_downloaded.png",
|
37
|
+
documentation: "WAT docs",
|
38
|
+
extent: [[-180, -90], [180, 90]],
|
39
|
+
categories: [],
|
40
|
+
spatialReference: null,
|
41
|
+
accessInformation: null,
|
42
|
+
licenseInfo: null,
|
43
|
+
culture: null,
|
44
|
+
properties: {},
|
45
|
+
url:
|
46
|
+
"https://servicesqa.arcgis.com/97KLIFOSt5CxbiRI/arcgis/rest/services/survey123_7d7a9fabcb0c44bcaf1d6473cd088a07/FeatureServer",
|
47
|
+
proxyFilter: null,
|
48
|
+
access: "shared",
|
49
|
+
size: -1,
|
50
|
+
appCategories: [],
|
51
|
+
industries: [],
|
52
|
+
languages: [],
|
53
|
+
largeThumbnail: null,
|
54
|
+
banner: null,
|
55
|
+
screenshots: [],
|
56
|
+
listed: false,
|
57
|
+
numComments: 0,
|
58
|
+
numRatings: 0,
|
59
|
+
avgRating: 0,
|
60
|
+
numViews: 4
|
61
|
+
}
|
62
|
+
]
|
63
|
+
};
|
64
|
+
|
65
|
+
export const BigSearchResponse: ISearchResult<IItem> = {
|
66
|
+
query: "",
|
67
|
+
total: 10795,
|
68
|
+
start: 1,
|
69
|
+
num: 1,
|
70
|
+
nextStart: 2,
|
71
|
+
results: [
|
72
|
+
{
|
73
|
+
id: "a5b",
|
74
|
+
owner: "dcadminqa",
|
75
|
+
created: 1496748288000,
|
76
|
+
modified: 1508856526000,
|
77
|
+
name: "survey123_7d7a9fabcb0c44bcaf1d6473cd088a07",
|
78
|
+
title: " Drug Activity Reporter",
|
79
|
+
type: "Feature Service",
|
80
|
+
typeKeywords: [
|
81
|
+
"ArcGIS Server",
|
82
|
+
"Data",
|
83
|
+
"Feature Access",
|
84
|
+
"Feature Service",
|
85
|
+
"OwnerView",
|
86
|
+
"Service",
|
87
|
+
"Survey123",
|
88
|
+
"Survey123 Hub",
|
89
|
+
"Hosted Service"
|
90
|
+
],
|
91
|
+
description: "Some Description",
|
92
|
+
tags: [],
|
93
|
+
snippet: "Some Snippet",
|
94
|
+
thumbnail: "thumbnail/ago_downloaded.png",
|
95
|
+
documentation: "WAT docs",
|
96
|
+
extent: [[-180, -90], [180, 90]],
|
97
|
+
categories: [],
|
98
|
+
spatialReference: null,
|
99
|
+
accessInformation: null,
|
100
|
+
licenseInfo: null,
|
101
|
+
culture: null,
|
102
|
+
properties: {},
|
103
|
+
url:
|
104
|
+
"https://servicesqa.arcgis.com/97KLIFOSt5CxbiRI/arcgis/rest/services/survey123_7d7a9fabcb0c44bcaf1d6473cd088a07/FeatureServer",
|
105
|
+
proxyFilter: null,
|
106
|
+
access: "shared",
|
107
|
+
size: -1,
|
108
|
+
appCategories: [],
|
109
|
+
industries: [],
|
110
|
+
languages: [],
|
111
|
+
largeThumbnail: null,
|
112
|
+
banner: null,
|
113
|
+
screenshots: [],
|
114
|
+
listed: false,
|
115
|
+
numComments: 0,
|
116
|
+
numRatings: 0,
|
117
|
+
avgRating: 0,
|
118
|
+
numViews: 4
|
119
|
+
}
|
120
|
+
]
|
121
|
+
};
|