impeditmaiores 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (421) hide show
  1. package/.prettierignore +2 -0
  2. package/.travis.yml +35 -0
  3. package/.vscode/launch.json +24 -0
  4. package/.vscode/settings.json +3 -0
  5. package/codecov.yml +7 -0
  6. package/demos/ago-node-cli/README.md +29 -0
  7. package/demos/ago-node-cli/ago.js +33 -0
  8. package/demos/ago-node-cli/index.js +11 -0
  9. package/demos/ago-node-cli/lib/item-export-command.js +48 -0
  10. package/demos/ago-node-cli/lib/item-search-command.js +35 -0
  11. package/demos/ago-node-cli/package-lock.json +152 -0
  12. package/demos/ago-node-cli/package.json +30 -0
  13. package/demos/attachments/README.md +5 -0
  14. package/demos/attachments/index.html +165 -0
  15. package/demos/attachments/package-lock.json +182 -0
  16. package/demos/attachments/package.json +18 -0
  17. package/demos/batch-geocoder-node/NYC_Restaurant_Inspection_Results.csv +100 -0
  18. package/demos/batch-geocoder-node/README.md +15 -0
  19. package/demos/batch-geocoder-node/batch-geocode.js +115 -0
  20. package/demos/batch-geocoder-node/config-template.js +18 -0
  21. package/demos/batch-geocoder-node/package-lock.json +81 -0
  22. package/demos/batch-geocoder-node/package.json +37 -0
  23. package/demos/express/README.md +15 -0
  24. package/demos/express/config.json.template +3 -0
  25. package/demos/express/package-lock.json +413 -0
  26. package/demos/express/package.json +18 -0
  27. package/demos/express/server.js +33 -0
  28. package/demos/feature-service-browser/README.md +6 -0
  29. package/demos/feature-service-browser/index.html +122 -0
  30. package/demos/feature-service-browser/package-lock.json +182 -0
  31. package/demos/feature-service-browser/package.json +18 -0
  32. package/demos/geocoder-browser/README.md +10 -0
  33. package/demos/geocoder-browser/config.js.template +1 -0
  34. package/demos/geocoder-browser/index.html +131 -0
  35. package/demos/geocoder-browser/package-lock.json +182 -0
  36. package/demos/geocoder-browser/package.json +19 -0
  37. package/demos/geocoder-browser/post-sign-in.html +25 -0
  38. package/demos/jsapi-integration/README.md +25 -0
  39. package/demos/jsapi-integration/config.js +6 -0
  40. package/demos/jsapi-integration/index.html +89 -0
  41. package/demos/jsapi-integration/package-lock.json +184 -0
  42. package/demos/jsapi-integration/package.json +19 -0
  43. package/demos/node-cli-item-management/README.md +10 -0
  44. package/demos/node-cli-item-management/index.js +238 -0
  45. package/demos/node-cli-item-management/package-lock.json +152 -0
  46. package/demos/node-cli-item-management/package.json +27 -0
  47. package/demos/node-cli-item-management/screenshot.png +0 -0
  48. package/demos/oauth2-browser/README.md +14 -0
  49. package/demos/oauth2-browser/authenticate.html +30 -0
  50. package/demos/oauth2-browser/config.js.template +6 -0
  51. package/demos/oauth2-browser/index.html +211 -0
  52. package/demos/oauth2-browser/logo.svg +4 -0
  53. package/demos/oauth2-browser/package-lock.json +224 -0
  54. package/demos/oauth2-browser/package.json +18 -0
  55. package/demos/oauth2-browser/style.css +36 -0
  56. package/demos/oauth2-browser-retry/README.md +25 -0
  57. package/demos/oauth2-browser-retry/authenticate.html +22 -0
  58. package/demos/oauth2-browser-retry/index.html +116 -0
  59. package/demos/oauth2-browser-retry/logo.svg +4 -0
  60. package/demos/stream-response-to-file/README.md +7 -0
  61. package/demos/stream-response-to-file/index.js +36 -0
  62. package/demos/stream-response-to-file/output/.gitkeep +0 -0
  63. package/demos/stream-response-to-file/package-lock.json +60 -0
  64. package/demos/stream-response-to-file/package.json +33 -0
  65. package/demos/tree-shaking-rollup/.babelrc +3 -0
  66. package/demos/tree-shaking-rollup/README.md +9 -0
  67. package/demos/tree-shaking-rollup/index.html +11 -0
  68. package/demos/tree-shaking-rollup/package-lock.json +2225 -0
  69. package/demos/tree-shaking-rollup/package.json +25 -0
  70. package/demos/tree-shaking-rollup/rollup.config.js +17 -0
  71. package/demos/tree-shaking-rollup/src/index.js +8 -0
  72. package/demos/tree-shaking-webpack/README.md +8 -0
  73. package/demos/tree-shaking-webpack/index.html +11 -0
  74. package/demos/tree-shaking-webpack/package-lock.json +4614 -0
  75. package/demos/tree-shaking-webpack/package.json +24 -0
  76. package/demos/tree-shaking-webpack/src/index.js +10 -0
  77. package/demos/tree-shaking-webpack/webpack.config.js +27 -0
  78. package/demos/vue/.env.example +11 -0
  79. package/demos/vue/.eslintrc.js +17 -0
  80. package/demos/vue/.postcssrc.js +5 -0
  81. package/demos/vue/README.md +17 -0
  82. package/demos/vue/babel.config.js +3 -0
  83. package/demos/vue/package-lock.json +11342 -0
  84. package/demos/vue/package.json +33 -0
  85. package/demos/vue/public/favicon.ico +0 -0
  86. package/demos/vue/public/index.html +24 -0
  87. package/demos/vue/src/assets/logo.svg +29 -0
  88. package/demos/vue/src/components/App.vue +305 -0
  89. package/demos/vue/src/components/Authenticate.vue +65 -0
  90. package/demos/vue/src/components/Loader.vue +230 -0
  91. package/demos/vue/src/main.js +92 -0
  92. package/demos/webmap-checker-sapper/.env.example +5 -0
  93. package/demos/webmap-checker-sapper/README.md +123 -0
  94. package/demos/webmap-checker-sapper/appveyor.yml +18 -0
  95. package/demos/webmap-checker-sapper/cypress/fixtures/example.json +5 -0
  96. package/demos/webmap-checker-sapper/cypress/integration/spec.js +19 -0
  97. package/demos/webmap-checker-sapper/cypress/plugins/index.js +17 -0
  98. package/demos/webmap-checker-sapper/cypress/support/commands.js +25 -0
  99. package/demos/webmap-checker-sapper/cypress/support/index.js +20 -0
  100. package/demos/webmap-checker-sapper/cypress.json +4 -0
  101. package/demos/webmap-checker-sapper/package-lock.json +3870 -0
  102. package/demos/webmap-checker-sapper/package.json +50 -0
  103. package/demos/webmap-checker-sapper/rollup.config.js +87 -0
  104. package/demos/webmap-checker-sapper/src/client.js +20 -0
  105. package/demos/webmap-checker-sapper/src/components/LayerStatus.html +108 -0
  106. package/demos/webmap-checker-sapper/src/components/Nav.html +21 -0
  107. package/demos/webmap-checker-sapper/src/components/WebMap.html +62 -0
  108. package/demos/webmap-checker-sapper/src/routes/_error.html +41 -0
  109. package/demos/webmap-checker-sapper/src/routes/_layout.html +21 -0
  110. package/demos/webmap-checker-sapper/src/routes/auth/authorize.js +18 -0
  111. package/demos/webmap-checker-sapper/src/routes/auth/exchange-token.js +20 -0
  112. package/demos/webmap-checker-sapper/src/routes/auth/post-sign-in.js +24 -0
  113. package/demos/webmap-checker-sapper/src/routes/auth/sign-out.js +10 -0
  114. package/demos/webmap-checker-sapper/src/routes/index.html +20 -0
  115. package/demos/webmap-checker-sapper/src/routes/webmaps/[webmapId].html +83 -0
  116. package/demos/webmap-checker-sapper/src/routes/webmaps/index.html +59 -0
  117. package/demos/webmap-checker-sapper/src/server.js +101 -0
  118. package/demos/webmap-checker-sapper/src/service-worker.js +82 -0
  119. package/demos/webmap-checker-sapper/src/template.html +33 -0
  120. package/demos/webmap-checker-sapper/src/userInfoMiddleware.js +21 -0
  121. package/demos/webmap-checker-sapper/src/utils.js +33 -0
  122. package/demos/webmap-checker-sapper/static/favicon.png +0 -0
  123. package/demos/webmap-checker-sapper/static/global.css +36 -0
  124. package/demos/webmap-checker-sapper/static/manifest.json +20 -0
  125. package/demos/webmap-checker-sapper/static/svelte-logo-192.png +0 -0
  126. package/demos/webmap-checker-sapper/static/svelte-logo-512.png +0 -0
  127. package/docs/FAQ.md +48 -0
  128. package/docs/HISTORY.md +62 -0
  129. package/docs/acetate.config.js +262 -0
  130. package/docs/build-typedoc.js +434 -0
  131. package/docs/generate-srihashes.js +53 -0
  132. package/docs/src/_layout.html +86 -0
  133. package/docs/src/api/_declaration.html +600 -0
  134. package/docs/src/api/_layout.html +204 -0
  135. package/docs/src/api/_package.html +38 -0
  136. package/docs/src/api/index.html +16 -0
  137. package/docs/src/guides/_layout.html +24 -0
  138. package/docs/src/guides/amd-requirejs-dojo.md +40 -0
  139. package/docs/src/guides/browser-authentication.md +41 -0
  140. package/docs/src/guides/bundlers.md +52 -0
  141. package/docs/src/guides/cli-authentication.md +9 -0
  142. package/docs/src/guides/client-server-authentication.md +9 -0
  143. package/docs/src/guides/embedded-apps.md +93 -0
  144. package/docs/src/guides/from-a-cdn.md +38 -0
  145. package/docs/src/guides/index.md +59 -0
  146. package/docs/src/guides/node.md +87 -0
  147. package/docs/src/guides/package-overview.md +111 -0
  148. package/docs/src/guides/server-authentication.md +9 -0
  149. package/docs/src/guides/whats-new-v2-0.md +305 -0
  150. package/docs/src/img/icons.png +0 -0
  151. package/docs/src/img/icons@2x.png +0 -0
  152. package/docs/src/index.html +12 -0
  153. package/docs/src/js/api-search.js +112 -0
  154. package/docs/src/js/nav-toggle.js +41 -0
  155. package/docs/src/sass/_highlight.scss +96 -0
  156. package/docs/src/sass/_icons.scss +157 -0
  157. package/docs/src/sass/style.scss +242 -0
  158. package/docs/src/srihashes.json +12 -0
  159. package/jasmine.json +7 -0
  160. package/karma.conf.js +106 -0
  161. package/lerna.json +8 -0
  162. package/notes/README.md +68 -0
  163. package/package.json +87 -0
  164. package/packages/arcgis-rest-auth/README.md +71 -0
  165. package/packages/arcgis-rest-auth/package-lock.json +11 -0
  166. package/packages/arcgis-rest-auth/package.json +69 -0
  167. package/packages/arcgis-rest-auth/src/ApplicationSession.ts +122 -0
  168. package/packages/arcgis-rest-auth/src/UserSession.ts +1206 -0
  169. package/packages/arcgis-rest-auth/src/app-tokens.ts +91 -0
  170. package/packages/arcgis-rest-auth/src/authenticated-request-options.ts +24 -0
  171. package/packages/arcgis-rest-auth/src/federation-utils.ts +85 -0
  172. package/packages/arcgis-rest-auth/src/fetch-token.ts +50 -0
  173. package/packages/arcgis-rest-auth/src/generate-token.ts +35 -0
  174. package/packages/arcgis-rest-auth/src/index.ts +9 -0
  175. package/packages/arcgis-rest-auth/src/validate-app-access.ts +68 -0
  176. package/packages/arcgis-rest-auth/test/ApplicationSession.test.ts +124 -0
  177. package/packages/arcgis-rest-auth/test/UserSession.test.ts +1807 -0
  178. package/packages/arcgis-rest-auth/test/app-tokens.test.ts +91 -0
  179. package/packages/arcgis-rest-auth/test/federation-utils.test.ts +323 -0
  180. package/packages/arcgis-rest-auth/test/fetchToken.test.ts +112 -0
  181. package/packages/arcgis-rest-auth/test/generateToken.test.ts +102 -0
  182. package/packages/arcgis-rest-auth/test/utils.ts +14 -0
  183. package/packages/arcgis-rest-auth/test/validate-app-access.test.ts +46 -0
  184. package/packages/arcgis-rest-auth/tsconfig.json +6 -0
  185. package/packages/arcgis-rest-feature-layer/README.md +77 -0
  186. package/packages/arcgis-rest-feature-layer/package-lock.json +11 -0
  187. package/packages/arcgis-rest-feature-layer/package.json +64 -0
  188. package/packages/arcgis-rest-feature-layer/src/add.ts +56 -0
  189. package/packages/arcgis-rest-feature-layer/src/addAttachment.ts +53 -0
  190. package/packages/arcgis-rest-feature-layer/src/applyEdits.ts +90 -0
  191. package/packages/arcgis-rest-feature-layer/src/decodeValues.ts +124 -0
  192. package/packages/arcgis-rest-feature-layer/src/delete.ts +61 -0
  193. package/packages/arcgis-rest-feature-layer/src/deleteAttachments.ts +52 -0
  194. package/packages/arcgis-rest-feature-layer/src/getAttachments.ts +55 -0
  195. package/packages/arcgis-rest-feature-layer/src/getLayer.ts +24 -0
  196. package/packages/arcgis-rest-feature-layer/src/getService.ts +26 -0
  197. package/packages/arcgis-rest-feature-layer/src/helpers.ts +79 -0
  198. package/packages/arcgis-rest-feature-layer/src/index.ts +31 -0
  199. package/packages/arcgis-rest-feature-layer/src/query.ts +204 -0
  200. package/packages/arcgis-rest-feature-layer/src/queryRelated.ts +89 -0
  201. package/packages/arcgis-rest-feature-layer/src/update.ts +56 -0
  202. package/packages/arcgis-rest-feature-layer/src/updateAttachment.ts +59 -0
  203. package/packages/arcgis-rest-feature-layer/test/attachments.test.ts +200 -0
  204. package/packages/arcgis-rest-feature-layer/test/crud.test.ts +195 -0
  205. package/packages/arcgis-rest-feature-layer/test/decodeValues.test.ts +67 -0
  206. package/packages/arcgis-rest-feature-layer/test/getLayer.test.ts +31 -0
  207. package/packages/arcgis-rest-feature-layer/test/getService.test.ts +31 -0
  208. package/packages/arcgis-rest-feature-layer/test/mocks/cvdQueryResponse.ts +225 -0
  209. package/packages/arcgis-rest-feature-layer/test/mocks/feature.ts +302 -0
  210. package/packages/arcgis-rest-feature-layer/test/mocks/fields.ts +779 -0
  211. package/packages/arcgis-rest-feature-layer/test/mocks/foo.txt +1 -0
  212. package/packages/arcgis-rest-feature-layer/test/mocks/service.ts +398 -0
  213. package/packages/arcgis-rest-feature-layer/test/query.test.ts +167 -0
  214. package/packages/arcgis-rest-feature-layer/tsconfig.json +6 -0
  215. package/packages/arcgis-rest-geocoding/README.md +86 -0
  216. package/packages/arcgis-rest-geocoding/package-lock.json +11 -0
  217. package/packages/arcgis-rest-geocoding/package.json +64 -0
  218. package/packages/arcgis-rest-geocoding/src/bulk.ts +104 -0
  219. package/packages/arcgis-rest-geocoding/src/geocode.ts +133 -0
  220. package/packages/arcgis-rest-geocoding/src/helpers.ts +54 -0
  221. package/packages/arcgis-rest-geocoding/src/index.ts +15 -0
  222. package/packages/arcgis-rest-geocoding/src/reverse.ts +84 -0
  223. package/packages/arcgis-rest-geocoding/src/suggest.ts +45 -0
  224. package/packages/arcgis-rest-geocoding/test/bulk.test.ts +194 -0
  225. package/packages/arcgis-rest-geocoding/test/geocode.test.ts +249 -0
  226. package/packages/arcgis-rest-geocoding/test/helpers.test.ts +85 -0
  227. package/packages/arcgis-rest-geocoding/test/mocks/responses.ts +637 -0
  228. package/packages/arcgis-rest-geocoding/test/reverse.test.ts +126 -0
  229. package/packages/arcgis-rest-geocoding/test/suggest.test.ts +53 -0
  230. package/packages/arcgis-rest-geocoding/tsconfig.json +6 -0
  231. package/packages/arcgis-rest-portal/README.md +73 -0
  232. package/packages/arcgis-rest-portal/package-lock.json +11 -0
  233. package/packages/arcgis-rest-portal/package.json +64 -0
  234. package/packages/arcgis-rest-portal/src/groups/add-users.ts +140 -0
  235. package/packages/arcgis-rest-portal/src/groups/create.ts +43 -0
  236. package/packages/arcgis-rest-portal/src/groups/get.ts +184 -0
  237. package/packages/arcgis-rest-portal/src/groups/helpers.ts +14 -0
  238. package/packages/arcgis-rest-portal/src/groups/invite-users.ts +127 -0
  239. package/packages/arcgis-rest-portal/src/groups/join.ts +57 -0
  240. package/packages/arcgis-rest-portal/src/groups/notification.ts +77 -0
  241. package/packages/arcgis-rest-portal/src/groups/protect.ts +56 -0
  242. package/packages/arcgis-rest-portal/src/groups/remove-users.ts +76 -0
  243. package/packages/arcgis-rest-portal/src/groups/remove.ts +32 -0
  244. package/packages/arcgis-rest-portal/src/groups/search.ts +47 -0
  245. package/packages/arcgis-rest-portal/src/groups/update-user-membership.ts +63 -0
  246. package/packages/arcgis-rest-portal/src/groups/update.ts +39 -0
  247. package/packages/arcgis-rest-portal/src/index.ts +66 -0
  248. package/packages/arcgis-rest-portal/src/items/add.ts +138 -0
  249. package/packages/arcgis-rest-portal/src/items/content.ts +67 -0
  250. package/packages/arcgis-rest-portal/src/items/create.ts +150 -0
  251. package/packages/arcgis-rest-portal/src/items/export.ts +80 -0
  252. package/packages/arcgis-rest-portal/src/items/get.ts +437 -0
  253. package/packages/arcgis-rest-portal/src/items/helpers.ts +275 -0
  254. package/packages/arcgis-rest-portal/src/items/protect.ts +41 -0
  255. package/packages/arcgis-rest-portal/src/items/reassign.ts +61 -0
  256. package/packages/arcgis-rest-portal/src/items/remove.ts +135 -0
  257. package/packages/arcgis-rest-portal/src/items/search.ts +25 -0
  258. package/packages/arcgis-rest-portal/src/items/update.ts +184 -0
  259. package/packages/arcgis-rest-portal/src/items/upload.ts +125 -0
  260. package/packages/arcgis-rest-portal/src/orgs/notification.ts +131 -0
  261. package/packages/arcgis-rest-portal/src/sharing/access.ts +84 -0
  262. package/packages/arcgis-rest-portal/src/sharing/helpers.ts +81 -0
  263. package/packages/arcgis-rest-portal/src/sharing/is-item-shared-with-group.ts +42 -0
  264. package/packages/arcgis-rest-portal/src/sharing/share-item-with-group.ts +319 -0
  265. package/packages/arcgis-rest-portal/src/sharing/unshare-item-with-group.ts +105 -0
  266. package/packages/arcgis-rest-portal/src/users/get-user-tags.ts +52 -0
  267. package/packages/arcgis-rest-portal/src/users/get-user-url.ts +18 -0
  268. package/packages/arcgis-rest-portal/src/users/get-user.ts +58 -0
  269. package/packages/arcgis-rest-portal/src/users/invitation.ts +156 -0
  270. package/packages/arcgis-rest-portal/src/users/notification.ts +68 -0
  271. package/packages/arcgis-rest-portal/src/users/search-users.ts +37 -0
  272. package/packages/arcgis-rest-portal/src/users/update.ts +66 -0
  273. package/packages/arcgis-rest-portal/src/util/SearchQueryBuilder.ts +374 -0
  274. package/packages/arcgis-rest-portal/src/util/array.ts +16 -0
  275. package/packages/arcgis-rest-portal/src/util/generic-search.ts +99 -0
  276. package/packages/arcgis-rest-portal/src/util/get-portal-settings.ts +45 -0
  277. package/packages/arcgis-rest-portal/src/util/get-portal-url.ts +27 -0
  278. package/packages/arcgis-rest-portal/src/util/get-portal.ts +52 -0
  279. package/packages/arcgis-rest-portal/src/util/get-subscription-info.ts +43 -0
  280. package/packages/arcgis-rest-portal/src/util/scrub-control-chars.ts +12 -0
  281. package/packages/arcgis-rest-portal/src/util/search.ts +42 -0
  282. package/packages/arcgis-rest-portal/test/groups/add-users.test.ts +239 -0
  283. package/packages/arcgis-rest-portal/test/groups/crud.test.ts +180 -0
  284. package/packages/arcgis-rest-portal/test/groups/get.test.ts +176 -0
  285. package/packages/arcgis-rest-portal/test/groups/invite-users.test.ts +149 -0
  286. package/packages/arcgis-rest-portal/test/groups/join.test.ts +72 -0
  287. package/packages/arcgis-rest-portal/test/groups/notification.test.ts +112 -0
  288. package/packages/arcgis-rest-portal/test/groups/protect.test.ts +72 -0
  289. package/packages/arcgis-rest-portal/test/groups/remove-users.test.ts +140 -0
  290. package/packages/arcgis-rest-portal/test/groups/search.test.ts +151 -0
  291. package/packages/arcgis-rest-portal/test/groups/update-user-membership.test.ts +62 -0
  292. package/packages/arcgis-rest-portal/test/items/add.test.ts +323 -0
  293. package/packages/arcgis-rest-portal/test/items/content.test.ts +156 -0
  294. package/packages/arcgis-rest-portal/test/items/create.test.ts +399 -0
  295. package/packages/arcgis-rest-portal/test/items/export.test.ts +122 -0
  296. package/packages/arcgis-rest-portal/test/items/get.test.ts +583 -0
  297. package/packages/arcgis-rest-portal/test/items/helpers.test.ts +60 -0
  298. package/packages/arcgis-rest-portal/test/items/protect.test.ts +122 -0
  299. package/packages/arcgis-rest-portal/test/items/reassign.test.ts +131 -0
  300. package/packages/arcgis-rest-portal/test/items/remove.test.ts +238 -0
  301. package/packages/arcgis-rest-portal/test/items/search.test.ts +272 -0
  302. package/packages/arcgis-rest-portal/test/items/update.test.ts +554 -0
  303. package/packages/arcgis-rest-portal/test/items/upload.test.ts +282 -0
  304. package/packages/arcgis-rest-portal/test/mocks/groups/responses.ts +208 -0
  305. package/packages/arcgis-rest-portal/test/mocks/items/foo.zip +0 -0
  306. package/packages/arcgis-rest-portal/test/mocks/items/item.ts +526 -0
  307. package/packages/arcgis-rest-portal/test/mocks/items/resources.ts +38 -0
  308. package/packages/arcgis-rest-portal/test/mocks/items/search.ts +121 -0
  309. package/packages/arcgis-rest-portal/test/mocks/portal/response.ts +126 -0
  310. package/packages/arcgis-rest-portal/test/mocks/portal/settings-response.ts +56 -0
  311. package/packages/arcgis-rest-portal/test/mocks/sharing/sharing.ts +18 -0
  312. package/packages/arcgis-rest-portal/test/mocks/users/invitation.ts +70 -0
  313. package/packages/arcgis-rest-portal/test/mocks/users/notification.ts +34 -0
  314. package/packages/arcgis-rest-portal/test/mocks/users/user-search.ts +388 -0
  315. package/packages/arcgis-rest-portal/test/mocks/users/user-tags.ts +5 -0
  316. package/packages/arcgis-rest-portal/test/mocks/users/user.ts +174 -0
  317. package/packages/arcgis-rest-portal/test/orgs/notification.test.ts +142 -0
  318. package/packages/arcgis-rest-portal/test/sharing/access.test.ts +162 -0
  319. package/packages/arcgis-rest-portal/test/sharing/helpers.test.ts +55 -0
  320. package/packages/arcgis-rest-portal/test/sharing/share-item-with-group.test.ts +1325 -0
  321. package/packages/arcgis-rest-portal/test/sharing/unshare-item-with-group.test.ts +288 -0
  322. package/packages/arcgis-rest-portal/test/users/get-user-tags.test.ts +71 -0
  323. package/packages/arcgis-rest-portal/test/users/get-user-url.test.ts +40 -0
  324. package/packages/arcgis-rest-portal/test/users/get-user.test.ts +90 -0
  325. package/packages/arcgis-rest-portal/test/users/invitation.test.ts +127 -0
  326. package/packages/arcgis-rest-portal/test/users/notification.test.ts +77 -0
  327. package/packages/arcgis-rest-portal/test/users/search.test.ts +42 -0
  328. package/packages/arcgis-rest-portal/test/users/update.test.ts +151 -0
  329. package/packages/arcgis-rest-portal/test/util/SearchQueryBuilder.test.ts +340 -0
  330. package/packages/arcgis-rest-portal/test/util/array.test.ts +30 -0
  331. package/packages/arcgis-rest-portal/test/util/get-portal-settings.test.ts +68 -0
  332. package/packages/arcgis-rest-portal/test/util/get-portal-url.test.ts +37 -0
  333. package/packages/arcgis-rest-portal/test/util/portal.test.ts +148 -0
  334. package/packages/arcgis-rest-portal/test/util/scrub-control-chars.test.ts +22 -0
  335. package/packages/arcgis-rest-portal/tsconfig.json +6 -0
  336. package/packages/arcgis-rest-request/README.md +72 -0
  337. package/packages/arcgis-rest-request/package-lock.json +11 -0
  338. package/packages/arcgis-rest-request/package.json +60 -0
  339. package/packages/arcgis-rest-request/src/index.ts +25 -0
  340. package/packages/arcgis-rest-request/src/request.ts +413 -0
  341. package/packages/arcgis-rest-request/src/utils/ArcGISRequestError.ts +76 -0
  342. package/packages/arcgis-rest-request/src/utils/ErrorTypes.ts +29 -0
  343. package/packages/arcgis-rest-request/src/utils/GrantTypes.ts +5 -0
  344. package/packages/arcgis-rest-request/src/utils/HTTPMethods.ts +6 -0
  345. package/packages/arcgis-rest-request/src/utils/IAuthenticationManager.ts +21 -0
  346. package/packages/arcgis-rest-request/src/utils/IFetchTokenParams.ts +11 -0
  347. package/packages/arcgis-rest-request/src/utils/IGenerateTokenParams.ts +9 -0
  348. package/packages/arcgis-rest-request/src/utils/IParamBuilder.ts +3 -0
  349. package/packages/arcgis-rest-request/src/utils/IParams.ts +6 -0
  350. package/packages/arcgis-rest-request/src/utils/IParamsBuilder.ts +5 -0
  351. package/packages/arcgis-rest-request/src/utils/IRequestOptions.ts +49 -0
  352. package/packages/arcgis-rest-request/src/utils/ITokenRequestOptions.ts +9 -0
  353. package/packages/arcgis-rest-request/src/utils/ResponseFormats.ts +10 -0
  354. package/packages/arcgis-rest-request/src/utils/append-custom-params.ts +49 -0
  355. package/packages/arcgis-rest-request/src/utils/clean-url.ts +20 -0
  356. package/packages/arcgis-rest-request/src/utils/decode-query-string.ts +27 -0
  357. package/packages/arcgis-rest-request/src/utils/encode-form-data.ts +38 -0
  358. package/packages/arcgis-rest-request/src/utils/encode-query-string.ts +35 -0
  359. package/packages/arcgis-rest-request/src/utils/process-params.ts +108 -0
  360. package/packages/arcgis-rest-request/src/utils/retryAuthError.ts +10 -0
  361. package/packages/arcgis-rest-request/src/utils/warn.ts +11 -0
  362. package/packages/arcgis-rest-request/src/utils/with-options.ts +48 -0
  363. package/packages/arcgis-rest-request/test/mocks/errors.ts +76 -0
  364. package/packages/arcgis-rest-request/test/mocks/geojson-feature-collection.ts +13 -0
  365. package/packages/arcgis-rest-request/test/mocks/param-builder.ts +7 -0
  366. package/packages/arcgis-rest-request/test/mocks/sharing-rest-info.ts +41 -0
  367. package/packages/arcgis-rest-request/test/mocks/webmap.ts +41 -0
  368. package/packages/arcgis-rest-request/test/request.test.ts +571 -0
  369. package/packages/arcgis-rest-request/test/utils/ArcGISAuthError.test.ts +191 -0
  370. package/packages/arcgis-rest-request/test/utils/ArcGISRequestError.test.ts +51 -0
  371. package/packages/arcgis-rest-request/test/utils/check-for-errors.test.ts +111 -0
  372. package/packages/arcgis-rest-request/test/utils/clean-url.test.ts +50 -0
  373. package/packages/arcgis-rest-request/test/utils/encode-form-data.test.ts +133 -0
  374. package/packages/arcgis-rest-request/test/utils/encode-query-string.test.ts +18 -0
  375. package/packages/arcgis-rest-request/test/utils/process-params.test.ts +205 -0
  376. package/packages/arcgis-rest-request/test/utils/with-options.test.ts +133 -0
  377. package/packages/arcgis-rest-request/tsconfig.json +4 -0
  378. package/packages/arcgis-rest-routing/README.md +75 -0
  379. package/packages/arcgis-rest-routing/package-lock.json +11 -0
  380. package/packages/arcgis-rest-routing/package.json +63 -0
  381. package/packages/arcgis-rest-routing/src/helpers.ts +16 -0
  382. package/packages/arcgis-rest-routing/src/index.ts +11 -0
  383. package/packages/arcgis-rest-routing/src/solveRoute.ts +124 -0
  384. package/packages/arcgis-rest-routing/test/mocks/responses.ts +825 -0
  385. package/packages/arcgis-rest-routing/test/solveRoute.test.ts +509 -0
  386. package/packages/arcgis-rest-routing/tsconfig.json +6 -0
  387. package/packages/arcgis-rest-service-admin/README.md +73 -0
  388. package/packages/arcgis-rest-service-admin/package-lock.json +11 -0
  389. package/packages/arcgis-rest-service-admin/package.json +65 -0
  390. package/packages/arcgis-rest-service-admin/src/addTo.ts +70 -0
  391. package/packages/arcgis-rest-service-admin/src/create.ts +189 -0
  392. package/packages/arcgis-rest-service-admin/src/index.ts +11 -0
  393. package/packages/arcgis-rest-service-admin/src/update.ts +50 -0
  394. package/packages/arcgis-rest-service-admin/test/addTo.test.ts +350 -0
  395. package/packages/arcgis-rest-service-admin/test/create.test.ts +294 -0
  396. package/packages/arcgis-rest-service-admin/test/mocks/layerDefinition.ts +79 -0
  397. package/packages/arcgis-rest-service-admin/test/mocks/service.ts +81 -0
  398. package/packages/arcgis-rest-service-admin/test/update.test.ts +115 -0
  399. package/packages/arcgis-rest-service-admin/tsconfig.json +6 -0
  400. package/packages/arcgis-rest-types/README.md +66 -0
  401. package/packages/arcgis-rest-types/package.json +54 -0
  402. package/packages/arcgis-rest-types/src/feature.ts +39 -0
  403. package/packages/arcgis-rest-types/src/geometry.ts +272 -0
  404. package/packages/arcgis-rest-types/src/group.ts +72 -0
  405. package/packages/arcgis-rest-types/src/index.ts +9 -0
  406. package/packages/arcgis-rest-types/src/item.ts +81 -0
  407. package/packages/arcgis-rest-types/src/service.ts +114 -0
  408. package/packages/arcgis-rest-types/src/statisticDefinition.ts +33 -0
  409. package/packages/arcgis-rest-types/src/symbol.ts +170 -0
  410. package/packages/arcgis-rest-types/src/user.ts +49 -0
  411. package/packages/arcgis-rest-types/src/webmap.ts +1367 -0
  412. package/packages/arcgis-rest-types/tsconfig.json +10 -0
  413. package/support/changelog.js +393 -0
  414. package/support/deploy-doc-site.js +16 -0
  415. package/support/dev.sh +6 -0
  416. package/support/publish.sh +47 -0
  417. package/support/test-helpers.js +9 -0
  418. package/tsconfig.json +63 -0
  419. package/tslint.json +16 -0
  420. package/umd-base-profile.js +81 -0
  421. package/umd-production-profile.js +13 -0
@@ -0,0 +1,182 @@
1
+ {
2
+ "requires": true,
3
+ "lockfileVersion": 1,
4
+ "dependencies": {
5
+ "async": {
6
+ "version": "1.5.2",
7
+ "resolved": "https://registry.npmjs.org/async/-/async-1.5.2.tgz",
8
+ "integrity": "sha1-7GphrlZIDAw8skHJVhjiCJL5Zyo="
9
+ },
10
+ "colors": {
11
+ "version": "1.0.3",
12
+ "resolved": "https://registry.npmjs.org/colors/-/colors-1.0.3.tgz",
13
+ "integrity": "sha1-BDP0TYCWgP3rYO0mDxsMJi6CpAs="
14
+ },
15
+ "corser": {
16
+ "version": "2.0.1",
17
+ "resolved": "https://registry.npmjs.org/corser/-/corser-2.0.1.tgz",
18
+ "integrity": "sha1-jtolLsqrWEDc2XXOuQ2TcMgZ/4c="
19
+ },
20
+ "debug": {
21
+ "version": "3.1.0",
22
+ "resolved": "https://registry.npmjs.org/debug/-/debug-3.1.0.tgz",
23
+ "integrity": "sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g==",
24
+ "requires": {
25
+ "ms": "2.0.0"
26
+ }
27
+ },
28
+ "ecstatic": {
29
+ "version": "3.2.1",
30
+ "resolved": "https://registry.npmjs.org/ecstatic/-/ecstatic-3.2.1.tgz",
31
+ "integrity": "sha512-BAdHx9LOCG1fwxY8MIydUBskl8UUQrYeC3WE14FA1DPlBzqoG1aOgEkypcSpmiiel8RAj8gW1s40RrclfrpGUg==",
32
+ "requires": {
33
+ "he": "^1.1.1",
34
+ "mime": "^1.6.0",
35
+ "minimist": "^1.1.0",
36
+ "url-join": "^2.0.5"
37
+ }
38
+ },
39
+ "eventemitter3": {
40
+ "version": "3.1.0",
41
+ "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-3.1.0.tgz",
42
+ "integrity": "sha512-ivIvhpq/Y0uSjcHDcOIccjmYjGLcP09MFGE7ysAwkAvkXfpZlC985pH2/ui64DKazbTW/4kN3yqozUxlXzI6cA=="
43
+ },
44
+ "follow-redirects": {
45
+ "version": "1.5.1",
46
+ "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.5.1.tgz",
47
+ "integrity": "sha512-v9GI1hpaqq1ZZR6pBD1+kI7O24PhDvNGNodjS3MdcEqyrahCp8zbtpv+2B/krUnSmUH80lbAS7MrdeK5IylgKg==",
48
+ "requires": {
49
+ "debug": "^3.1.0"
50
+ }
51
+ },
52
+ "he": {
53
+ "version": "1.1.1",
54
+ "resolved": "https://registry.npmjs.org/he/-/he-1.1.1.tgz",
55
+ "integrity": "sha1-k0EP0hsAlzUVH4howvJx80J+I/0="
56
+ },
57
+ "http-proxy": {
58
+ "version": "1.17.0",
59
+ "resolved": "https://registry.npmjs.org/http-proxy/-/http-proxy-1.17.0.tgz",
60
+ "integrity": "sha512-Taqn+3nNvYRfJ3bGvKfBSRwy1v6eePlm3oc/aWVxZp57DQr5Eq3xhKJi7Z4hZpS8PC3H4qI+Yly5EmFacGuA/g==",
61
+ "requires": {
62
+ "eventemitter3": "^3.0.0",
63
+ "follow-redirects": "^1.0.0",
64
+ "requires-port": "^1.0.0"
65
+ }
66
+ },
67
+ "http-server": {
68
+ "version": "0.11.1",
69
+ "resolved": "https://registry.npmjs.org/http-server/-/http-server-0.11.1.tgz",
70
+ "integrity": "sha512-6JeGDGoujJLmhjiRGlt8yK8Z9Kl0vnl/dQoQZlc4oeqaUoAKQg94NILLfrY3oWzSyFaQCVNTcKE5PZ3cH8VP9w==",
71
+ "requires": {
72
+ "colors": "1.0.3",
73
+ "corser": "~2.0.0",
74
+ "ecstatic": "^3.0.0",
75
+ "http-proxy": "^1.8.1",
76
+ "opener": "~1.4.0",
77
+ "optimist": "0.6.x",
78
+ "portfinder": "^1.0.13",
79
+ "union": "~0.4.3"
80
+ }
81
+ },
82
+ "mime": {
83
+ "version": "1.6.0",
84
+ "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz",
85
+ "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg=="
86
+ },
87
+ "minimist": {
88
+ "version": "1.2.0",
89
+ "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz",
90
+ "integrity": "sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ="
91
+ },
92
+ "mkdirp": {
93
+ "version": "0.5.1",
94
+ "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz",
95
+ "integrity": "sha1-MAV0OOrGz3+MR2fzhkjWaX11yQM=",
96
+ "requires": {
97
+ "minimist": "0.0.8"
98
+ },
99
+ "dependencies": {
100
+ "minimist": {
101
+ "version": "0.0.8",
102
+ "resolved": "https://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz",
103
+ "integrity": "sha1-hX/Kv8M5fSYluCKCYuhqp6ARsF0="
104
+ }
105
+ }
106
+ },
107
+ "ms": {
108
+ "version": "2.0.0",
109
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
110
+ "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g="
111
+ },
112
+ "opener": {
113
+ "version": "1.4.3",
114
+ "resolved": "https://registry.npmjs.org/opener/-/opener-1.4.3.tgz",
115
+ "integrity": "sha1-XG2ixdflgx6P+jlklQ+NZnSskLg="
116
+ },
117
+ "optimist": {
118
+ "version": "0.6.1",
119
+ "resolved": "https://registry.npmjs.org/optimist/-/optimist-0.6.1.tgz",
120
+ "integrity": "sha1-2j6nRob6IaGaERwybpDrFaAZZoY=",
121
+ "requires": {
122
+ "minimist": "~0.0.1",
123
+ "wordwrap": "~0.0.2"
124
+ },
125
+ "dependencies": {
126
+ "minimist": {
127
+ "version": "0.0.10",
128
+ "resolved": "https://registry.npmjs.org/minimist/-/minimist-0.0.10.tgz",
129
+ "integrity": "sha1-3j+YVD2/lggr5IrRoMfNqDYwHc8="
130
+ }
131
+ }
132
+ },
133
+ "portfinder": {
134
+ "version": "1.0.13",
135
+ "resolved": "https://registry.npmjs.org/portfinder/-/portfinder-1.0.13.tgz",
136
+ "integrity": "sha1-uzLs2HwnEErm7kS1o8y/Drsa7ek=",
137
+ "requires": {
138
+ "async": "^1.5.2",
139
+ "debug": "^2.2.0",
140
+ "mkdirp": "0.5.x"
141
+ },
142
+ "dependencies": {
143
+ "debug": {
144
+ "version": "2.6.9",
145
+ "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
146
+ "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
147
+ "requires": {
148
+ "ms": "2.0.0"
149
+ }
150
+ }
151
+ }
152
+ },
153
+ "qs": {
154
+ "version": "2.3.3",
155
+ "resolved": "https://registry.npmjs.org/qs/-/qs-2.3.3.tgz",
156
+ "integrity": "sha1-6eha2+ddoLvkyOBHaghikPhjtAQ="
157
+ },
158
+ "requires-port": {
159
+ "version": "1.0.0",
160
+ "resolved": "https://registry.npmjs.org/requires-port/-/requires-port-1.0.0.tgz",
161
+ "integrity": "sha1-kl0mAdOaxIXgkc8NpcbmlNw9yv8="
162
+ },
163
+ "union": {
164
+ "version": "0.4.6",
165
+ "resolved": "https://registry.npmjs.org/union/-/union-0.4.6.tgz",
166
+ "integrity": "sha1-GY+9rrolTniLDvy2MLwR8kopWeA=",
167
+ "requires": {
168
+ "qs": "~2.3.3"
169
+ }
170
+ },
171
+ "url-join": {
172
+ "version": "2.0.5",
173
+ "resolved": "https://registry.npmjs.org/url-join/-/url-join-2.0.5.tgz",
174
+ "integrity": "sha1-WvIvGMBSoACkjXuCxenC4v7tpyg="
175
+ },
176
+ "wordwrap": {
177
+ "version": "0.0.3",
178
+ "resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-0.0.3.tgz",
179
+ "integrity": "sha1-o9XabNXAvAAI03I0u68b7WMFkQc="
180
+ }
181
+ }
182
+ }
@@ -0,0 +1,18 @@
1
+ {
2
+ "name": "attachments",
3
+ "version": "2.22.0",
4
+ "private": true,
5
+ "description": "Vanilla JavaScript demo of attachment methods of @esri/arcgis-rest-feature-service",
6
+ "author": "",
7
+ "license": "Apache-2.0",
8
+ "dependencies": {
9
+ "@esri/arcgis-rest-feature-layer": "^2.22.0",
10
+ "@esri/arcgis-rest-request": "^2.22.0"
11
+ },
12
+ "devDependencies": {
13
+ "http-server": "*"
14
+ },
15
+ "scripts": {
16
+ "start": "http-server ."
17
+ }
18
+ }
@@ -0,0 +1,100 @@
1
+ CAMIS,DBA,BORO,BUILDING,STREET,ADDRESS,ZIPCODE,PHONE,CUISINE DESCRIPTION,INSPECTION DATE,ACTION,VIOLATION CODE,VIOLATION DESCRIPTION,CRITICAL FLAG,SCORE,GRADE,GRADE DATE,RECORD DATE,INSPECTION TYPE
2
+ 50015075,NEW YORK FRIED CHICKEN,BROOKLYN,102,SARATOGA AVE,102 SARATOGA AVE,11233,7185522345,Chicken,4/28/15,Violations were cited in the following area(s).,02G,Cold food item held above 41º F (smoked fish and reduced oxygen packaged foods above 38 ºF) except during necessary preparation.,Critical,16,B,4/28/15,3/1/18,Cycle Inspection / Re-inspection
3
+ 40364529,BEN-BEST DELI & RESTAURANT,QUEENS,9640,QUEENS BOULEVARD,9640 QUEENS BOULEVARD,11374,7188971700,Jewish/Kosher,3/24/16,Violations were cited in the following area(s).,05B,"Harmful, noxious gas or vapor detected. CO ~1 3 ppm.",Critical,42,C,3/24/16,3/1/18,Cycle Inspection / Re-inspection
4
+ 41580756,ROTI ON THE RUN,BROOKLYN,189,NORWOOD AVENUE,189 NORWOOD AVENUE,11208,7182354414,Caribbean,1/25/18,Violations were cited in the following area(s).,10F,"Non-food contact surface improperly constructed. Unacceptable material used. Non-food contact surface or equipment improperly maintained and/or not properly sealed, raised, spaced or movable to allow accessibility for cleaning on all sides, above and underneath the unit.",Not Critical,9,A,1/25/18,3/1/18,Cycle Inspection / Re-inspection
5
+ 50001255,THE MILLING ROOM,MANHATTAN,446,COLUMBUS AVE,446 COLUMBUS AVE,10024,2125952624,Italian,7/30/15,Violations were cited in the following area(s).,06E,"Sanitized equipment or utensil, including in-use food dispensing utensil, improperly used or stored.",Critical,28,,,3/1/18,Cycle Inspection / Initial Inspection
6
+ 50016437,CHANG'S FAMILY RESTAURANT,QUEENS,15428,NORTHERN BLVD,15428 NORTHERN BLVD,11354,7189392255,Korean,5/27/15,Violations were cited in the following area(s).,06B,"Tobacco use, eating, or drinking from open container in food preparation, food storage or dishwashing area observed.",Critical,5,A,5/27/15,3/1/18,Cycle Inspection / Re-inspection
7
+ 50000786,DUNKIN' DONUTS,BROOKLYN,873,FLATBUSH AVENUE,873 FLATBUSH AVENUE,11226,7189400080,Donuts,12/10/15,Violations were cited in the following area(s).,09C,Food contact surface not properly maintained.,Not Critical,11,A,12/10/15,3/1/18,Cycle Inspection / Initial Inspection
8
+ 41319308,EUROPA CAFE,MANHATTAN,2,PARK AVENUE,2 PARK AVENUE,10016,2127255425,Sandwiches/Salads/Mixed Buffet,2/20/15,Violations were cited in the following area(s).,10F,"Non-food contact surface improperly constructed. Unacceptable material used. Non-food contact surface or equipment improperly maintained and/or not properly sealed, raised, spaced or movable to allow accessibility for cleaning on all sides, above and underneath the unit.",Not Critical,7,A,2/20/15,3/1/18,Cycle Inspection / Initial Inspection
9
+ 50018079,ESPACE,MANHATTAN,635,W 42ND ST,635 W 42ND ST,10036,2129677003,American,1/10/18,Violations were cited in the following area(s).,04N,"Filth flies or food/refuse/sewage-associated (FRSA) flies present in facilitys food and/or non-food areas. Filth flies include house flies, little house flies, blow flies, bottle flies and flesh flies. Food/refuse/sewage-associated flies include fruit flies, drain flies and Phorid flies.",Critical,13,A,1/10/18,3/1/18,Cycle Inspection / Initial Inspection
10
+ 50000768,"BUFFALO WILD WINGS, PEETS COFFEE & TEA, BENTO SUSHI",QUEENS,NKA,JFK INTERNATIONAL AIRPORT,NKA JFK INTERNATIONAL AIRPORT,11430,7187514769,American,5/14/15,Violations were cited in the following area(s).,10F,"Non-food contact surface improperly constructed. Unacceptable material used. Non-food contact surface or equipment improperly maintained and/or not properly sealed, raised, spaced or movable to allow accessibility for cleaning on all sides, above and underneath the unit.",Not Critical,40,,,3/1/18,Cycle Inspection / Initial Inspection
11
+ 50008684,LIZZMONADE,BROOKLYN,1,BROOKLYN BRIDGE PARK,1 BROOKLYN BRIDGE PARK,11201,9179308234,"Juice, Smoothies, Fruit Salads",10/7/15,Violations were cited in the following area(s).,04N,"Filth flies or food/refuse/sewage-associated (FRSA) flies present in facilitys food and/or non-food areas. Filth flies include house flies, little house flies, blow flies, bottle flies and flesh flies. Food/refuse/sewage-associated flies include fruit flies, drain flies and Phorid flies.",Critical,11,A,10/7/15,3/1/18,Cycle Inspection / Initial Inspection
12
+ 50015315,MY PIZZERIA,STATEN ISLAND,755,TARGEE ST,755 TARGEE ST,10304,7187207777,Pizza/Italian,1/19/17,Violations were cited in the following area(s).,08C,Pesticide use not in accordance with label or applicable laws. Prohibited chemical used/stored. Open bait station used.,Not Critical,39,C,1/19/17,3/1/18,Cycle Inspection / Re-inspection
13
+ 41720838,ROTI MEDITERRANEAN GRILL,MANHATTAN,100,MAIDEN LANE,100 MAIDEN LANE,10038,6464943359,Mediterranean,5/14/14,Violations were cited in the following area(s).,02B,Hot food item not held at or above 140º F.,Critical,11,A,5/14/14,3/1/18,Cycle Inspection / Re-inspection
14
+ 40370507,THE PLAYERS CLUB,MANHATTAN,16,GRAMERCY PARK SOUTH,16 GRAMERCY PARK SOUTH,10003,2124756116,American,11/9/16,Violations were cited in the following area(s).,04L,Evidence of mice or live mice present in facility's food and/or non-food areas.,Critical,19,,,3/1/18,Cycle Inspection / Initial Inspection
15
+ 41089834,MURRAY HILL DINER,MANHATTAN,222,LEXINGTON AVENUE,222 LEXINGTON AVENUE,10016,2126866667,American,3/21/17,Violations were cited in the following area(s).,10F,"Non-food contact surface improperly constructed. Unacceptable material used. Non-food contact surface or equipment improperly maintained and/or not properly sealed, raised, spaced or movable to allow accessibility for cleaning on all sides, above and underneath the unit.",Not Critical,7,A,3/21/17,3/1/18,Cycle Inspection / Initial Inspection
16
+ 50012832,NATIONAL DINER,BRONX,135,WESTCHESTER SQ,135 WESTCHESTER SQ,10461,7188241126,American,1/20/15,Violations were cited in the following area(s).,15L,"Smoke free workplace smoking policy inadequate, not posted, not provided to employees.",Not Critical,,,,3/1/18,Smoke-Free Air Act / Re-inspection
17
+ 41675589,AJI SUSHI HOUSE,QUEENS,3606,DITMARS BLVD,3606 DITMARS BLVD,11105,7187778885,Japanese,5/21/15,Violations were cited in the following area(s).,08A,Facility not vermin proof. Harborage or conditions conducive to attracting vermin to the premises and/or allowing vermin to exist.,Not Critical,13,A,5/21/15,3/1/18,Cycle Inspection / Re-inspection
18
+ 50001526,EVERYDAY CHINESE RESTAURANT,BROOKLYN,890,WYCKOFF AVE,890 WYCKOFF AVE,11237,7183818899,Chinese,8/4/14,Violations were cited in the following area(s).,04N,"Filth flies or food/refuse/sewage-associated (FRSA) flies present in facilitys food and/or non-food areas. Filth flies include house flies, little house flies, blow flies, bottle flies and flesh flies. Food/refuse/sewage-associated flies include fruit flies, drain flies and Phorid flies.",Critical,10,A,8/4/14,3/1/18,Cycle Inspection / Re-inspection
19
+ 50008170,SOUTH SHORE HOT BAGELS,STATEN ISLAND,4882,ARTHUR KILL RD,4882 ARTHUR KILL RD,10309,7182278600,Delicatessen,4/17/14,Violations were cited in the following area(s).,06D,"Food contact surface not properly washed, rinsed and sanitized after each use and following any activity when contamination may have occurred.",Critical,36,,,3/1/18,Pre-permit (Operational) / Initial Inspection
20
+ 41236893,NEPTUNE PIZZA,BROOKLYN,3033,CONEY ISLAND AVENUE,3033 CONEY ISLAND AVENUE,11235,7189754472,Pizza,6/8/15,Violations were cited in the following area(s).,09C,Food contact surface not properly maintained.,Not Critical,29,,,3/1/18,Cycle Inspection / Initial Inspection
21
+ 50041083,TENZAN 89,MANHATTAN,1714,2ND AVE,1714 2ND AVE,10128,2123693600,Japanese,10/19/16,Violations were cited in the following area(s).,06C,"Food not protected from potential source of contamination during storage, preparation, transportation, display or service.",Critical,11,A,10/19/16,3/1/18,Cycle Inspection / Initial Inspection
22
+ 41547596,FUJI SUSHI BEDFORD,BROOKLYN,1185,BEDFORD AVENUE,1185 BEDFORD AVENUE,11216,3479851198,Japanese,10/1/14,Violations were cited in the following area(s).,06E,"Sanitized equipment or utensil, including in-use food dispensing utensil, improperly used or stored.",Critical,55,C,10/1/14,3/1/18,Cycle Inspection / Re-inspection
23
+ 41633054,TASTE OF TACO/YUMMY CHINA,QUEENS,6841,MYRTLE AVE,6841 MYRTLE AVE,11385,7184564062,Tex-Mex,3/29/17,Establishment Closed by DOHMH. Violations were cited in the following area(s) and those requiring immediate action were addressed.,08C,Pesticide use not in accordance with label or applicable laws. Prohibited chemical used/stored. Open bait station used.,Not Critical,52,,,3/1/18,Cycle Inspection / Initial Inspection
24
+ 40829164,BUNGALOW BAR & RESTAURANT,QUEENS,377,BEACH 92 STREET,377 BEACH 92 STREET,11693,7189452100,American,8/11/15,Violations were cited in the following area(s).,06C,"Food not protected from potential source of contamination during storage, preparation, transportation, display or service.",Critical,28,,,3/1/18,Cycle Inspection / Initial Inspection
25
+ 40810784,BARRAGE,MANHATTAN,401,WEST 47 STREET,401 WEST 47 STREET,10036,2125869390,American,1/6/15,Violations were cited in the following area(s).,15L,"Smoke free workplace smoking policy inadequate, not posted, not provided to employees.",Not Critical,,,,3/1/18,Smoke-Free Air Act / Re-inspection
26
+ 50044393,RYUJIN RAMEN,BROOKLYN,513,GRAND ST,513 GRAND ST,11211,7187099888,Japanese,11/21/16,Violations were cited in the following area(s).,08A,Facility not vermin proof. Harborage or conditions conducive to attracting vermin to the premises and/or allowing vermin to exist.,Not Critical,11,A,11/21/16,3/1/18,Cycle Inspection / Re-inspection
27
+ 50033769,NATIVIDAD RESTAURANT,QUEENS,3766,103RD ST,3766 103RD ST,11368,3472040733,"Latin (Cuban, Dominican, Puerto Rican, South & Central American)",12/1/15,Violations were cited in the following area(s).,06A,Personal cleanliness inadequate. Outer garment soiled with possible contaminant. Effective hair restraint not worn in an area where food is prepared.,Critical,8,A,12/1/15,3/1/18,Cycle Inspection / Initial Inspection
28
+ 40786301,EL RANCHITO DE DAISY,QUEENS,4149,150 STREET,4149 150 STREET,11355,7186613307,"Latin (Cuban, Dominican, Puerto Rican, South & Central American)",2/6/18,No violations were recorded at the time of this inspection.,,,Not Applicable,,,,3/1/18,Administrative Miscellaneous / Initial Inspection
29
+ 41643816,ROCCO'S BRICK OVEN PIZZERIA,QUEENS,79-16,21 AVENUE,79-16 21 AVENUE,11370,7187213535,Pizza,6/2/16,Violations were cited in the following area(s).,10F,"Non-food contact surface improperly constructed. Unacceptable material used. Non-food contact surface or equipment improperly maintained and/or not properly sealed, raised, spaced or movable to allow accessibility for cleaning on all sides, above and underneath the unit.",Not Critical,13,A,6/2/16,3/1/18,Cycle Inspection / Initial Inspection
30
+ 41611664,SERVICE BAR 6,QUEENS,11000,ROCKAWAY BOULEVARD,11000 ROCKAWAY BOULEVARD,11420,7182152828,American,12/7/16,Violations were cited in the following area(s).,06D,"Food contact surface not properly washed, rinsed and sanitized after each use and following any activity when contamination may have occurred.",Critical,7,A,12/7/16,3/1/18,Cycle Inspection / Initial Inspection
31
+ 41410071,RIMINI PASTRY SHOPPE,BROOKLYN,6822,BAY PARKWAY,6822 BAY PARKWAY,11204,7182360644,Bakery,1/5/15,Violations were cited in the following area(s).,06F,Wiping cloths soiled or not stored in sanitizing solution.,Critical,14,,,3/1/18,Cycle Inspection / Initial Inspection
32
+ 41282827,HAPPY GARDEN,QUEENS,2926,30 AVENUE,2926 30 AVENUE,11102,7182741195,Chinese,11/16/16,Violations were cited in the following area(s).,06C,"Food not protected from potential source of contamination during storage, preparation, transportation, display or service.",Critical,19,,,3/1/18,Cycle Inspection / Initial Inspection
33
+ 50000045,BURGER JOINT,MANHATTAN,33,W. 8TH ST,33 W. 8TH ST,10011,2124321400,Hamburgers,11/28/16,Violations were cited in the following area(s).,06C,"Food not protected from potential source of contamination during storage, preparation, transportation, display or service.",Critical,19,B,11/28/16,3/1/18,Cycle Inspection / Re-inspection
34
+ 41627867,DAVIDSTEA,MANHATTAN,275,BLEECKER STREET,275 BLEECKER STREET,10014,2124148599,Café/Coffee/Tea,4/5/16,Violations were cited in the following area(s).,10F,"Non-food contact surface improperly constructed. Unacceptable material used. Non-food contact surface or equipment improperly maintained and/or not properly sealed, raised, spaced or movable to allow accessibility for cleaning on all sides, above and underneath the unit.",Not Critical,21,,,3/1/18,Cycle Inspection / Initial Inspection
35
+ 50032822,RED LION INN & SUITES,BROOKLYN,279,BUTLER ST,279 BUTLER ST,11217,7188559600,American,8/25/15,Violations were cited in the following area(s).,10H,Proper sanitization not provided for utensil ware washing operation.,Not Critical,26,B,8/25/15,3/1/18,Pre-permit (Operational) / Re-inspection
36
+ 40390902,SCOTTY'S DINER,MANHATTAN,336,LEXINGTON AVENUE,336 LEXINGTON AVENUE,10016,2129861520,American,3/2/16,Violations were cited in the following area(s).,08C,Pesticide use not in accordance with label or applicable laws. Prohibited chemical used/stored. Open bait station used.,Not Critical,14,B,3/2/16,3/1/18,Cycle Inspection / Re-inspection
37
+ 50058366,CAFE86,MANHATTAN,2350,BROADWAY,2350 BROADWAY,10024,2124964004,Delicatessen,2/6/17,Violations were cited in the following area(s).,04N,"Filth flies or food/refuse/sewage-associated (FRSA) flies present in facilitys food and/or non-food areas. Filth flies include house flies, little house flies, blow flies, bottle flies and flesh flies. Food/refuse/sewage-associated flies include fruit flies, drain flies and Phorid flies.",Critical,22,,,3/1/18,Pre-permit (Operational) / Initial Inspection
38
+ 41701052,GREEN CAFE,MANHATTAN,1324,LEXINGTON AVENUE,1324 LEXINGTON AVENUE,10128,2122899100,American,5/18/17,Violations were cited in the following area(s).,10F,"Non-food contact surface improperly constructed. Unacceptable material used. Non-food contact surface or equipment improperly maintained and/or not properly sealed, raised, spaced or movable to allow accessibility for cleaning on all sides, above and underneath the unit.",Not Critical,12,A,5/18/17,3/1/18,Cycle Inspection / Initial Inspection
39
+ 41304245,MANNA'S RESTAURANT,MANHATTAN,54,EAST 125 STREET,54 EAST 125 STREET,10035,2123604975,Soul Food,4/6/15,Violations were cited in the following area(s).,16B,"The original nutritional fact labels and/or ingredient label for a cooking oil, shortening or margarine or food item sold in bulk, or acceptable manufacturers documentation not maintained on site.",Not Critical,,,,3/1/18,Trans Fat / Initial Inspection
40
+ 50018772,LINDA ASIAN KITCHEN,BROOKLYN,882,DEKALB AVE,882 DEKALB AVE,11221,7185741686,Chinese,3/16/15,Violations were cited in the following area(s).,06D,"Food contact surface not properly washed, rinsed and sanitized after each use and following any activity when contamination may have occurred.",Critical,12,A,3/16/15,3/1/18,Pre-permit (Operational) / Re-inspection
41
+ 41414279,JUST SALAD,MANHATTAN,600,3 AVENUE,600 3 AVENUE,10016,2126823832,Salads,2/11/15,Violations were cited in the following area(s).,04L,Evidence of mice or live mice present in facility's food and/or non-food areas.,Critical,10,A,2/11/15,3/1/18,Cycle Inspection / Initial Inspection
42
+ 50038733,HERO SHOP,BROOKLYN,1211,MCDONALD AVE,1211 MCDONALD AVE,11230,7183385472,American,9/15/15,Violations were cited in the following area(s).,06C,"Food not protected from potential source of contamination during storage, preparation, transportation, display or service.",Critical,37,,,3/1/18,Pre-permit (Operational) / Initial Inspection
43
+ 41109419,THEATER ROW DINER,MANHATTAN,424,WEST 42 STREET,424 WEST 42 STREET,10036,2124266000,American,9/14/16,Violations were cited in the following area(s).,08A,Facility not vermin proof. Harborage or conditions conducive to attracting vermin to the premises and/or allowing vermin to exist.,Not Critical,20,B,9/14/16,3/1/18,Cycle Inspection / Re-inspection
44
+ 40705931,BLUE HILL RESTAURANT,MANHATTAN,75,WASHINGTON PLACE,75 WASHINGTON PLACE,10011,2125391776,American,3/1/16,Violations were cited in the following area(s).,05D,Hand washing facility not provided in or near food preparation area and toilet room. Hot and cold running water at adequate pressure to enable cleanliness of employees not provided at facility. Soap and an acceptable hand-drying device not provided.,Critical,13,A,3/1/16,3/1/18,Cycle Inspection / Re-inspection
45
+ 41276395,SAM'S PIZZA,BRONX,232,WEST 231 STREET,232 WEST 231 STREET,10463,7185489070,Pizza,2/8/17,Violations were cited in the following area(s).,02G,Cold food item held above 41º F (smoked fish and reduced oxygen packaged foods above 38 ºF) except during necessary preparation.,Critical,11,A,2/8/17,3/1/18,Cycle Inspection / Initial Inspection
46
+ 41182288,MCDONALD'S,QUEENS,9801,METROPOLITAN AVENUE,9801 METROPOLITAN AVENUE,11375,7182637281,Hamburgers,4/18/17,Violations were cited in the following area(s).,10I,"Single service item reused, improperly stored, dispensed; not used when required.",Not Critical,12,A,4/18/17,3/1/18,Cycle Inspection / Initial Inspection
47
+ 50047279,CARBONE,MANHATTAN,331,W 38TH ST,331 W 38TH ST,10018,2122902625,Italian,5/9/17,Violations were cited in the following area(s).,04L,Evidence of mice or live mice present in facility's food and/or non-food areas.,Critical,18,B,5/9/17,3/1/18,Cycle Inspection / Re-inspection
48
+ 50033727,PAPA JOHN'S,BROOKLYN,1009,BROADWAY,1009 BROADWAY,11221,7184437272,Pizza,8/16/16,Establishment Closed by DOHMH. Violations were cited in the following area(s) and those requiring immediate action were addressed.,04N,"Filth flies or food/refuse/sewage-associated (FRSA) flies present in facilitys food and/or non-food areas. Filth flies include house flies, little house flies, blow flies, bottle flies and flesh flies. Food/refuse/sewage-associated flies include fruit flies, drain flies and Phorid flies.",Critical,37,,,3/1/18,Cycle Inspection / Initial Inspection
49
+ 41422787,GREAT WALL,QUEENS,25903,HILLSIDE AVENUE,25903 HILLSIDE AVENUE,11004,7189621111,Chinese,12/14/16,Violations were cited in the following area(s).,10F,"Non-food contact surface improperly constructed. Unacceptable material used. Non-food contact surface or equipment improperly maintained and/or not properly sealed, raised, spaced or movable to allow accessibility for cleaning on all sides, above and underneath the unit.",Not Critical,9,A,12/14/16,3/1/18,Cycle Inspection / Initial Inspection
50
+ 50009127,BAGEL CAFE,BROOKLYN,200,CLINTON ST,200 CLINTON ST,11201,7188586358,Bagels/Pretzels,1/12/16,Violations were cited in the following area(s).,06C,"Food not protected from potential source of contamination during storage, preparation, transportation, display or service.",Critical,12,,,3/1/18,Cycle Inspection / Initial Inspection
51
+ 50017825,NEW JW GOLDEN BAKERY,BROOKLYN,6017,4TH AVE,6017 4TH AVE,11220,7187659199,Bakery,2/22/17,Violations were cited in the following area(s).,08A,Facility not vermin proof. Harborage or conditions conducive to attracting vermin to the premises and/or allowing vermin to exist.,Not Critical,39,,,3/1/18,Cycle Inspection / Initial Inspection
52
+ 40530630,NACIONAL BAKERY #1,BRONX,1484,WESTCHESTER AVENUE,1484 WESTCHESTER AVENUE,10472,7188930168,Bakery,5/9/16,Violations were cited in the following area(s).,02B,Hot food item not held at or above 140º F.,Critical,13,A,5/9/16,3/1/18,Cycle Inspection / Initial Inspection
53
+ 41142394,TAZA CAFE AND DELI,MANHATTAN,350,PARK AVENUE SOUTH,350 PARK AVENUE SOUTH,10010,2127791200,American,12/21/16,Violations were cited in the following area(s).,06F,Wiping cloths soiled or not stored in sanitizing solution.,Critical,22,,,3/1/18,Cycle Inspection / Initial Inspection
54
+ 41176438,LAS CAMELIAS BAR & RESTAURANT,BRONX,1802,WESTCHESTER AVENUE,1802 WESTCHESTER AVENUE,10472,7187941827,"Latin (Cuban, Dominican, Puerto Rican, South & Central American)",8/13/15,Violations were cited in the following area(s).,08A,Facility not vermin proof. Harborage or conditions conducive to attracting vermin to the premises and/or allowing vermin to exist.,Not Critical,12,,,3/1/18,Cycle Inspection / Initial Inspection
55
+ 41339622,DUNKIN' DONUTS,QUEENS,24501,FRANCIS LEWIS BOULEVARD,24501 FRANCIS LEWIS BOULEVARD,11422,7183412894,Donuts,5/13/16,Violations were cited in the following area(s).,10F,"Non-food contact surface improperly constructed. Unacceptable material used. Non-food contact surface or equipment improperly maintained and/or not properly sealed, raised, spaced or movable to allow accessibility for cleaning on all sides, above and underneath the unit.",Not Critical,9,A,5/13/16,3/1/18,Cycle Inspection / Re-inspection
56
+ 50051701,JUICE PRESS,MANHATTAN,100,10TH AVE,100 10TH AVE,10011,2123889539,"Juice, Smoothies, Fruit Salads",9/19/16,Violations were cited in the following area(s).,06D,"Food contact surface not properly washed, rinsed and sanitized after each use and following any activity when contamination may have occurred.",Critical,5,A,9/19/16,3/1/18,Pre-permit (Operational) / Re-inspection
57
+ 40810032,AL-MEHRAN RESTAURANT,QUEENS,8746,PARSONS BOULEVARD,8746 PARSONS BOULEVARD,11432,7185235533,Indian,2/18/15,Violations were cited in the following area(s).,04L,Evidence of mice or live mice present in facility's food and/or non-food areas.,Critical,12,A,2/18/15,3/1/18,Cycle Inspection / Re-inspection
58
+ 41374876,CEMI CAFE,BROOKLYN,61,CHURCH AVENUE,61 CHURCH AVENUE,11218,3477506960,Russian,6/2/16,Violations were cited in the following area(s).,09C,Food contact surface not properly maintained.,Not Critical,36,,,3/1/18,Cycle Inspection / Initial Inspection
59
+ 40936347,SMITH TAVERN,BROOKLYN,440,5 AVENUE,440 5 AVENUE,11215,7187885218,American,12/11/15,Violations were cited in the following area(s).,06D,"Food contact surface not properly washed, rinsed and sanitized after each use and following any activity when contamination may have occurred.",Critical,26,,,3/1/18,Cycle Inspection / Initial Inspection
60
+ 41142578,GRAPE AND GRAIN,MANHATTAN,620,EAST 6 STREET,620 EAST 6 STREET,10009,2124200002,Café/Coffee/Tea,10/18/16,Violations were cited in the following area(s).,04L,Evidence of mice or live mice present in facility's food and/or non-food areas.,Critical,12,A,10/18/16,3/1/18,Cycle Inspection / Initial Inspection
61
+ 41681367,JUMBO CHINESE KITCHEN,QUEENS,11304,JAMAICA AVENUE,11304 JAMAICA AVENUE,11418,7184415946,Chinese,1/25/16,Violations were cited in the following area(s).,16B,"The original nutritional fact labels and/or ingredient label for a cooking oil, shortening or margarine or food item sold in bulk, or acceptable manufacturers documentation not maintained on site.",Not Critical,,,,3/1/18,Trans Fat / Re-inspection
62
+ 50000341,MAMAJUANA CAFE / FIESTA CLUB,QUEENS,3315,56 STREET,3315 56 STREET,11377,7185656454,Seafood,6/24/14,Violations were cited in the following area(s).,10B,Plumbing not properly installed or maintained; anti-siphonage or backflow prevention device not provided where required; equipment or floor not properly drained; sewage disposal system in disrepair or not functioning properly.,Not Critical,28,,,3/1/18,Cycle Inspection / Initial Inspection
63
+ 50074590,,QUEENS,803,CYPRESS AVE,803 CYPRESS AVE,11385,7182246030,Other,1/1/00,,,,Not Applicable,,,,3/1/18,
64
+ 41395881,THE VIG BAR,MANHATTAN,12,SPRING STREET,12 SPRING STREET,10012,2126250011,American,7/27/17,Violations were cited in the following area(s).,08A,Facility not vermin proof. Harborage or conditions conducive to attracting vermin to the premises and/or allowing vermin to exist.,Not Critical,18,,,3/1/18,Cycle Inspection / Initial Inspection
65
+ 50043895,CREATE,QUEENS,2921,DITMARS BLVD,2921 DITMARS BLVD,11105,3477398424,American,6/21/17,Violations were cited in the following area(s).,10F,"Non-food contact surface improperly constructed. Unacceptable material used. Non-food contact surface or equipment improperly maintained and/or not properly sealed, raised, spaced or movable to allow accessibility for cleaning on all sides, above and underneath the unit.",Not Critical,19,B,6/21/17,3/1/18,Cycle Inspection / Re-inspection
66
+ 41362438,NEW YORK SPORTS GRILL,QUEENS,0,JFK INTERNATIONAL AIRPORT,0 JFK INTERNATIONAL AIRPORT,11430,6464835087,American,11/2/17,Violations were cited in the following area(s).,08A,Facility not vermin proof. Harborage or conditions conducive to attracting vermin to the premises and/or allowing vermin to exist.,Not Critical,13,A,11/2/17,3/1/18,Cycle Inspection / Initial Inspection
67
+ 41372258,EDDIE'S HERO PLACE,BROOKLYN,6917,4 AVENUE,6917 4 AVENUE,11209,7187451350,American,4/6/15,Violations were cited in the following area(s).,09C,Food contact surface not properly maintained.,Not Critical,11,A,4/6/15,3/1/18,Cycle Inspection / Initial Inspection
68
+ 50012117,ROBERTA'S PIZZA & BAKERY,BROOKLYN,261,MOORE ST,261 MOORE ST,11206,7184171118,Pizza,3/9/16,Violations were cited in the following area(s).,06C,"Food not protected from potential source of contamination during storage, preparation, transportation, display or service.",Critical,45,,,3/1/18,Cycle Inspection / Initial Inspection
69
+ 41611347,ANDY'S TERIYAKI & TACO,BRONX,171,EINSTEIN LOOP,171 EINSTEIN LOOP,10475,7188620191,Tex-Mex,4/4/15,Violations were cited in the following area(s).,10F,"Non-food contact surface improperly constructed. Unacceptable material used. Non-food contact surface or equipment improperly maintained and/or not properly sealed, raised, spaced or movable to allow accessibility for cleaning on all sides, above and underneath the unit.",Not Critical,12,A,4/4/15,3/1/18,Cycle Inspection / Re-inspection
70
+ 50063942,FLETCHER'S (DEKALB MARKET),BROOKLYN,445,ALBEE SQUARE WEST,445 ALBEE SQUARE WEST,11201,9176220931,Barbecue,8/30/17,Violations were cited in the following area(s).,02B,Hot food item not held at or above 140º F.,Critical,9,A,8/30/17,3/1/18,Pre-permit (Operational) / Re-inspection
71
+ 41439729,MAGGIE BAKERY,BROOKLYN,6802,BAY PARKWAY,6802 BAY PARKWAY,11204,7183314372,Bakery,3/9/15,Violations were cited in the following area(s).,04M,Live roaches present in facility's food and/or non-food areas.,Critical,9,A,3/9/15,3/1/18,Cycle Inspection / Re-inspection
72
+ 41069969,ANGELO'S PIZZA,QUEENS,3903,103 STREET,3903 103 STREET,11368,7183358637,Pizza,9/6/17,Violations were cited in the following area(s).,10B,Plumbing not properly installed or maintained; anti-siphonage or backflow prevention device not provided where required; equipment or floor not properly drained; sewage disposal system in disrepair or not functioning properly.,Not Critical,12,A,9/6/17,3/1/18,Cycle Inspection / Initial Inspection
73
+ 41696881,NUMERO 28 PIZZERIA,MANHATTAN,658660,AMSTERDAM AVENUE,658660 AMSTERDAM AVENUE,10025,2127067282,Pizza/Italian,6/17/17,Violations were cited in the following area(s).,10F,"Non-food contact surface improperly constructed. Unacceptable material used. Non-food contact surface or equipment improperly maintained and/or not properly sealed, raised, spaced or movable to allow accessibility for cleaning on all sides, above and underneath the unit.",Not Critical,10,A,6/17/17,3/1/18,Cycle Inspection / Re-inspection
74
+ 41392668,KENNY'S BAKERY,MANHATTAN,126,DYCKMAN STREET,126 DYCKMAN STREET,10040,2125698414,Bakery,4/10/15,Violations were cited in the following area(s).,08A,Facility not vermin proof. Harborage or conditions conducive to attracting vermin to the premises and/or allowing vermin to exist.,Not Critical,36,,,3/1/18,Cycle Inspection / Initial Inspection
75
+ 40368223,OYSTER BAR,MANHATTAN,0,GRAND CENTRAL TERMINAL,0 GRAND CENTRAL TERMINAL,10017,2124906650,Seafood,4/20/15,Violations were cited in the following area(s).,04M,Live roaches present in facility's food and/or non-food areas.,Critical,5,A,4/20/15,3/1/18,Cycle Inspection / Re-inspection
76
+ 41198297,HEARST GOOD HOUSEKEEPING INSTITUTE,MANHATTAN,300,WEST 57 STREET,300 WEST 57 STREET,10019,2126492724,American,4/2/15,Violations were cited in the following area(s).,10F,"Non-food contact surface improperly constructed. Unacceptable material used. Non-food contact surface or equipment improperly maintained and/or not properly sealed, raised, spaced or movable to allow accessibility for cleaning on all sides, above and underneath the unit.",Not Critical,2,A,4/2/15,3/1/18,Cycle Inspection / Initial Inspection
77
+ 50055649,JAMAICA BREEZE RESTAURANT,QUEENS,2136,MOTT AVE,2136 MOTT AVE,11691,7184716030,Caribbean,2/1/17,Violations were cited in the following area(s).,02B,Hot food item not held at or above 140º F.,Critical,18,,,3/1/18,Pre-permit (Operational) / Initial Inspection
78
+ 41581674,SHELLCOVE & CHINGER,QUEENS,8302,BROADWAY,8302 BROADWAY,11373,7185026668,Asian,8/2/16,Violations were cited in the following area(s).,08A,Facility not vermin proof. Harborage or conditions conducive to attracting vermin to the premises and/or allowing vermin to exist.,Not Critical,11,A,8/2/16,3/1/18,Cycle Inspection / Re-inspection
79
+ 50043999,Cresent Kitchen,QUEENS,2342,30TH AVE,2342 30TH AVE,11102,6465330110,Greek,5/9/16,Violations were cited in the following area(s).,05D,Hand washing facility not provided in or near food preparation area and toilet room. Hot and cold running water at adequate pressure to enable cleanliness of employees not provided at facility. Soap and an acceptable hand-drying device not provided.,Critical,22,,,3/1/18,Pre-permit (Operational) / Initial Inspection
80
+ 41384329,ICHI SUSHI I,BROOKLYN,2040,86 STREET,2040 86 STREET,11214,7183732929,Japanese,6/14/14,Violations were cited in the following area(s).,06D,"Food contact surface not properly washed, rinsed and sanitized after each use and following any activity when contamination may have occurred.",Critical,28,,,3/1/18,Cycle Inspection / Initial Inspection
81
+ 50041617,ITTADI GARDEN & GRILL,QUEENS,7307,37TH RD,7307 37TH RD,11372,3478662923,Bangladeshi,7/21/16,Violations were cited in the following area(s).,08B,"Covered garbage receptacle not provided or inadequate, except that garbage receptacle may be uncovered during active use. Garbage storage area not properly constructed or maintained; grinder or compactor dirty.",Not Critical,28,C,7/21/16,3/1/18,Cycle Inspection / Re-inspection
82
+ 41167453,EL MANGU SABROSO RESTAURANT,BRONX,80,WEST KINGSBRIDGE ROAD,80 WEST KINGSBRIDGE ROAD,10468,7185636499,"Latin (Cuban, Dominican, Puerto Rican, South & Central American)",2/2/18,Violations were cited in the following area(s).,06C,"Food not protected from potential source of contamination during storage, preparation, transportation, display or service.",Critical,25,,,3/1/18,Cycle Inspection / Initial Inspection
83
+ 50039368,GOOD NIGHT SONNY,MANHATTAN,134,1ST AVE,134 1ST AVE,10009,9173328432,American,1/3/18,Violations were cited in the following area(s).,10F,"Non-food contact surface improperly constructed. Unacceptable material used. Non-food contact surface or equipment improperly maintained and/or not properly sealed, raised, spaced or movable to allow accessibility for cleaning on all sides, above and underneath the unit.",Not Critical,17,,,3/1/18,Cycle Inspection / Initial Inspection
84
+ 50000635,ESTRELLITA POBLANA,BRONX,240,W 231 ST,240 W 231 ST,10463,7188843827,Mexican,1/29/16,Violations were cited in the following area(s).,02B,Hot food item not held at or above 140º F.,Critical,22,,,3/1/18,Cycle Inspection / Initial Inspection
85
+ 40576812,BEL-AIRE DINER,QUEENS,3191,21 STREET,3191 21 STREET,11106,7187213160,American,8/5/15,Violations were cited in the following area(s).,04N,"Filth flies or food/refuse/sewage-associated (FRSA) flies present in facilitys food and/or non-food areas. Filth flies include house flies, little house flies, blow flies, bottle flies and flesh flies. Food/refuse/sewage-associated flies include fruit flies, drain flies and Phorid flies.",Critical,26,,,3/1/18,Cycle Inspection / Initial Inspection
86
+ 40362715,THE COUNTRY CAFE,MANHATTAN,60,WALL STREET,60 WALL STREET,10005,3474279132,Sandwiches/Salads/Mixed Buffet,9/6/16,Violations were cited in the following area(s).,06A,Personal cleanliness inadequate. Outer garment soiled with possible contaminant. Effective hair restraint not worn in an area where food is prepared.,Critical,33,,,3/1/18,Cycle Inspection / Initial Inspection
87
+ 41433220,SILVER KRUST WEST INDIAN RESTAURANT,BROOKLYN,747,NOSTRAND AVENUE,747 NOSTRAND AVENUE,11216,7186042076,Caribbean,2/10/16,Violations were cited in the following area(s).,10F,"Non-food contact surface improperly constructed. Unacceptable material used. Non-food contact surface or equipment improperly maintained and/or not properly sealed, raised, spaced or movable to allow accessibility for cleaning on all sides, above and underneath the unit.",Not Critical,12,A,2/10/16,3/1/18,Cycle Inspection / Re-inspection
88
+ 41144262,BURGER KING,BROOKLYN,6421,14 AVENUE,6421 14 AVENUE,11219,7182368074,Hamburgers,6/15/17,Violations were cited in the following area(s).,04N,"Filth flies or food/refuse/sewage-associated (FRSA) flies present in facilitys food and/or non-food areas. Filth flies include house flies, little house flies, blow flies, bottle flies and flesh flies. Food/refuse/sewage-associated flies include fruit flies, drain flies and Phorid flies.",Critical,15,,,3/1/18,Cycle Inspection / Initial Inspection
89
+ 50001193,EL NUEVO YAUCO RESTAURANT,BROOKLYN,465A,BUSHWICK AVE,465A BUSHWICK AVE,11206,7183865913,"Latin (Cuban, Dominican, Puerto Rican, South & Central American)",9/8/16,Violations were cited in the following area(s).,02G,Cold food item held above 41º F (smoked fish and reduced oxygen packaged foods above 38 ºF) except during necessary preparation.,Critical,17,,,3/1/18,Cycle Inspection / Initial Inspection
90
+ 50001855,MANGIA,MANHATTAN,422,MADISON AVE,422 MADISON AVE,10017,2126449144,American,12/4/17,Violations were cited in the following area(s).,10F,"Non-food contact surface improperly constructed. Unacceptable material used. Non-food contact surface or equipment improperly maintained and/or not properly sealed, raised, spaced or movable to allow accessibility for cleaning on all sides, above and underneath the unit.",Not Critical,12,A,12/4/17,3/1/18,Cycle Inspection / Initial Inspection
91
+ 41643108,KAI FENG FU DUMPLING HOUSE,BROOKLYN,4801,8 AVENUE,4801 8 AVENUE,11220,7184373542,Chinese,8/3/15,Violations were cited in the following area(s).,04N,"Filth flies or food/refuse/sewage-associated (FRSA) flies present in facilitys food and/or non-food areas. Filth flies include house flies, little house flies, blow flies, bottle flies and flesh flies. Food/refuse/sewage-associated flies include fruit flies, drain flies and Phorid flies.",Critical,12,A,8/3/15,3/1/18,Cycle Inspection / Re-inspection
92
+ 41097273,NEW UNIVERSITY DELI,MANHATTAN,603,WEST 168 STREET,603 WEST 168 STREET,10032,2125683838,Delicatessen,3/17/16,Violations were cited in the following area(s).,02B,Hot food item not held at or above 140º F.,Critical,25,,,3/1/18,Cycle Inspection / Initial Inspection
93
+ 50014905,LUPITA'S RESTAURANT,BRONX,904,MELROSE AVE,904 MELROSE AVE,10451,3473678773,Mexican,8/25/15,Violations were cited in the following area(s).,10A,"Toilet facility not maintained and provided with toilet paper, waste receptacle and self-closing door.",Not Critical,16,,,3/1/18,Pre-permit (Non-operational) / Initial Inspection
94
+ 50001655,EL RICO TINTO BAKERY,QUEENS,76-07,37TH AVENUE,76-07 37TH AVENUE,11372,7184241324,Spanish,1/23/18,Violations were cited in the following area(s).,04N,"Filth flies or food/refuse/sewage-associated (FRSA) flies present in facilitys food and/or non-food areas. Filth flies include house flies, little house flies, blow flies, bottle flies and flesh flies. Food/refuse/sewage-associated flies include fruit flies, drain flies and Phorid flies.",Critical,26,,,3/1/18,Cycle Inspection / Initial Inspection
95
+ 50061134,CHILLHOUSE,MANHATTAN,149,ESSEX ST,149 ESSEX ST,10002,6466783501,Café/Coffee/Tea,6/2/17,Establishment re-opened by DOHMH,,,Not Applicable,0,P,6/2/17,3/1/18,Pre-permit (Operational) / Reopening Inspection
96
+ 41167580,POCO LOCO BAR,STATEN ISLAND,8,VANDUZER STREET,8 VANDUZER STREET,10301,3478258858,"Latin (Cuban, Dominican, Puerto Rican, South & Central American)",6/21/14,Violations were cited in the following area(s).,15L,"Smoke free workplace smoking policy inadequate, not posted, not provided to employees.",Not Critical,,,,3/1/18,Smoke-Free Air Act / Initial Inspection
97
+ 40856837,BURRITO BOX,MANHATTAN,885,9 AVENUE,885 9 AVENUE,10019,2124896889,Tex-Mex,7/18/16,Violations were cited in the following area(s).,06C,"Food not protected from potential source of contamination during storage, preparation, transportation, display or service.",Critical,22,,,3/1/18,Cycle Inspection / Initial Inspection
98
+ 50007410,CHALK POINT KITCHEN,MANHATTAN,525,BROOME ST,525 BROOME ST,10013,2123900327,American,5/7/15,Violations were cited in the following area(s).,10B,Plumbing not properly installed or maintained; anti-siphonage or backflow prevention device not provided where required; equipment or floor not properly drained; sewage disposal system in disrepair or not functioning properly.,Not Critical,12,A,5/7/15,3/1/18,Cycle Inspection / Initial Inspection
99
+ 50035381,WENDY'S,BROOKLYN,621,BRIGHTON BEACH AVE,621 BRIGHTON BEACH AVE,11235,7188097780,Hamburgers,8/18/15,Violations were cited in the following area(s).,06C,"Food not protected from potential source of contamination during storage, preparation, transportation, display or service.",Critical,12,,,3/1/18,Pre-permit (Non-operational) / Initial Inspection
100
+ 41506337,POPEYES LOUISIANA KITCHEN,QUEENS,14202,ROCKAWAY BOULEVARD,14202 ROCKAWAY BOULEVARD,11436,7183233500,Chicken,9/14/16,Violations were cited in the following area(s).,02B,Hot food item not held at or above 140º F.,Critical,7,A,9/14/16,3/1/18,Cycle Inspection / Initial Inspection
@@ -0,0 +1,15 @@
1
+ # Running this demo
2
+
3
+ :loudspeaker: Node.js 8.6 or higher is [required](http://node.green/), this demo uses a couple shiny new JS features like `{... }`
4
+
5
+ 1. Make sure you run `npm run bootstrap` in the root folder to setup the dependencies
6
+ 2. Create and register a [new application](https://developers.arcgis.com/documentation/core-concepts/security-and-authentication/accessing-arcgis-online-services/).
7
+ 3. Replace values in [config-template.js](/demos/batch-geocoder-node/config-template.js) and rename to `config.js`
8
+ 1. `"clientId"`: ArcGIS ClientId
9
+ 2. `"clientSecret"`: ArcGIS ClientSecret
10
+ 3. `"csv"`: csv path
11
+ 4. `"output"`: output csv path
12
+ 5. `"fieldmap"`: `object` that maps CSV fields to [address fields](https://esri.github.io/arcgis-rest-js/api/geocoder/IAddressBulk/) __or__ `string` that points to a CSV field with single-line addresses
13
+ 4. `npm start`
14
+
15
+ Sample Restaurant Inspections adapted from a DOHMH dataset available [online](https://data.cityofnewyork.us/Health/DOHMH-New-York-City-Restaurant-Inspection-Results/xx67-kt59/data)
@@ -0,0 +1,115 @@
1
+ require('cross-fetch/polyfill');
2
+ require('isomorphic-form-data');
3
+ const fs = require('fs');
4
+ const Papa = require('papaparse');
5
+ const { ApplicationSession } = require('@esri/arcgis-rest-auth');
6
+ const { bulkGeocode } = require('@esri/arcgis-rest-geocoding');
7
+ const config = require('./config-template');
8
+
9
+ // FUNCTIONS!
10
+
11
+ // Reads a csv file to an array of dictionary rows
12
+ const parseCsv = csvPath => {
13
+ const readStream = fs.createReadStream(csvPath);
14
+ return new Promise((res, rej) => {
15
+ Papa.parse(readStream, {
16
+ header: true,
17
+ complete: (data, file) => res(data.data),
18
+ error: (er, file) => rej(er)
19
+ });
20
+ });
21
+ };
22
+
23
+ //Writes a csv-style object to filepath
24
+ const exportCsv = (output, filePath) => {
25
+ return new Promise((res, rej) => {
26
+ const str = Papa.unparse(output);
27
+ fs.writeFile(filePath, str, er => {
28
+ if(er) rej(er);
29
+ res("SUCCESS!");
30
+ });
31
+ });
32
+ }
33
+
34
+ // Format objects in data to conform to request params
35
+ // `fields` can be a `string` for address field or an `object` mapping request fields to csv fields
36
+ // https://esri.github.io/arcgis-rest-js/api/geocoder/IAddressBulk/
37
+ const getAddresses = (data, fields) => {
38
+ if(typeof fields === 'string'){
39
+ return data.map((row, i) => ({
40
+ OBJECTID: i,
41
+ address: row[fields]
42
+ }));
43
+ }
44
+ return data.map((row,i) => {
45
+ let addressObj = {OBJECTID: i};
46
+ for(let key in fields){
47
+ addressObj[key] = row[fields[key]];
48
+ }
49
+ return addressObj;
50
+ });
51
+ };
52
+
53
+ // Chunks an array to max batch geocode limit of 1000
54
+ // Copied from https://github.com/Chalarangelo/30-seconds-of-code#chunk
55
+ const chunkGeocode = arr =>
56
+ Array.from({ length: Math.ceil(arr.length / 1000) }, (v, i) =>
57
+ arr.slice(i * 1000, i * 1000 + 1000)
58
+ );
59
+
60
+ // Translates array of batch geocode request results to IDs mapped to geocode locations
61
+ const mapResults = results =>
62
+ results.reduce((resMap, res) => {
63
+ const locations = res.locations;
64
+ return locations.reduce((locMap, loc) => {
65
+ const locFields = {};
66
+ locFields['x'] = loc.location.x;
67
+ locFields['y'] = loc.location.y;
68
+ // ref: https://developers.arcgis.com/rest/geocode/api-reference/geocoding-service-output.htm#ESRI_SECTION1_42D7D3D0231241E9B656C01438209440
69
+ locFields['geocode_score'] = loc.score;
70
+ locFields['match_type'] = loc.attributes.Addr_type;
71
+ locMap[loc.attributes.ResultID] = locFields;
72
+ return locMap;
73
+ }, resMap);
74
+ }, {});
75
+
76
+ // IMPLEMENTATION!
77
+
78
+ // Instantiate an ApplicationSession to run Geocoding service
79
+ const session = new ApplicationSession({
80
+ clientId: config.clientId,
81
+ clientSecret: config.clientSecret
82
+ });
83
+
84
+ // Parse and geocode
85
+ parseCsv(config.csv)
86
+ .then(data => {
87
+ // Build address requests
88
+ const addrs = getAddresses(data, config.fieldmap);
89
+ const chunks = chunkGeocode(addrs, 1000);
90
+
91
+ // Geocode
92
+ const promises = chunks.map(chunk =>
93
+ bulkGeocode({
94
+ addresses: chunk,
95
+ authentication: session
96
+ })
97
+ );
98
+
99
+ // Resolve results and combine with CSV data
100
+ return Promise.all(promises).then(res => {
101
+ resultMap = mapResults(res);
102
+ output = data.map((row, i) => {
103
+ id = row[config.fieldmap.OBJECTID] || i;
104
+ return {...row, ...resultMap[id]};
105
+ });
106
+ return output;
107
+ });
108
+ })
109
+ .then(output => {
110
+ // Write the new CSV
111
+ return exportCsv(output, config.output);
112
+ })
113
+ .then(success => console.log(success))
114
+ .catch(er => console.log(er))
115
+
@@ -0,0 +1,18 @@
1
+ module.exports = {
2
+ "clientId": "[public]",
3
+ "clientSecret": "[secret]",
4
+ "csv": "NYC_Restaurant_Inspection_Results.csv",
5
+ "output": "NYC_Restaurant_Inspection_Results_Geocoded.csv",
6
+ "fieldmap": {
7
+ "address": "ADDRESS",
8
+ // "address2": "<csv field>",
9
+ // "address3": "<csv field>",
10
+ "city": "BORO",
11
+ // "countryCode": "<csv field>",
12
+ // "neighborhood": "<csv field>",
13
+ "postal": "ZIPCODE",
14
+ // "postal Ext": "<csv field>",
15
+ // "region": "STATE",
16
+ // "subregion": "<csv field>"
17
+ }
18
+ }
@@ -0,0 +1,81 @@
1
+ {
2
+ "requires": true,
3
+ "lockfileVersion": 1,
4
+ "dependencies": {
5
+ "asynckit": {
6
+ "version": "0.4.0",
7
+ "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz",
8
+ "integrity": "sha1-x57Zf380y48robyXkLzDZkdLS3k="
9
+ },
10
+ "combined-stream": {
11
+ "version": "1.0.7",
12
+ "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.7.tgz",
13
+ "integrity": "sha512-brWl9y6vOB1xYPZcpZde3N9zDByXTosAeMDo4p1wzo6UMOX4vumB+TP1RZ76sfE6Md68Q0NJSrE/gbezd4Ul+w==",
14
+ "requires": {
15
+ "delayed-stream": "~1.0.0"
16
+ }
17
+ },
18
+ "cross-fetch": {
19
+ "version": "3.0.2",
20
+ "resolved": "https://registry.npmjs.org/cross-fetch/-/cross-fetch-3.0.2.tgz",
21
+ "integrity": "sha512-a4Z0EJ5Nck6QtMy9ZqloLfpvu2uMV3sBfMCR+CgSBCZc6z5KR4bfEiD3dkepH8iZgJMXQpTqf8FjMmvu/GMFkg==",
22
+ "requires": {
23
+ "node-fetch": "2.3.0",
24
+ "whatwg-fetch": "3.0.0"
25
+ },
26
+ "dependencies": {
27
+ "node-fetch": {
28
+ "version": "2.3.0",
29
+ "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.3.0.tgz",
30
+ "integrity": "sha512-MOd8pV3fxENbryESLgVIeaGKrdl+uaYhCSSVkjeOb/31/njTpcis5aWfdqgNlHIrKOLRbMnfPINPOML2CIFeXA=="
31
+ }
32
+ }
33
+ },
34
+ "delayed-stream": {
35
+ "version": "1.0.0",
36
+ "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz",
37
+ "integrity": "sha1-3zrhmayt+31ECqrgsp4icrJOxhk="
38
+ },
39
+ "form-data": {
40
+ "version": "2.3.3",
41
+ "resolved": "https://registry.npmjs.org/form-data/-/form-data-2.3.3.tgz",
42
+ "integrity": "sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==",
43
+ "requires": {
44
+ "asynckit": "^0.4.0",
45
+ "combined-stream": "^1.0.6",
46
+ "mime-types": "^2.1.12"
47
+ }
48
+ },
49
+ "isomorphic-form-data": {
50
+ "version": "2.0.0",
51
+ "resolved": "https://registry.npmjs.org/isomorphic-form-data/-/isomorphic-form-data-2.0.0.tgz",
52
+ "integrity": "sha512-TYgVnXWeESVmQSg4GLVbalmQ+B4NPi/H4eWxqALKj63KsUrcu301YDjBqaOw3h+cbak7Na4Xyps3BiptHtxTfg==",
53
+ "requires": {
54
+ "form-data": "^2.3.2"
55
+ }
56
+ },
57
+ "mime-db": {
58
+ "version": "1.37.0",
59
+ "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.37.0.tgz",
60
+ "integrity": "sha512-R3C4db6bgQhlIhPU48fUtdVmKnflq+hRdad7IyKhtFj06VPNVdk2RhiYL3UjQIlso8L+YxAtFkobT0VK+S/ybg=="
61
+ },
62
+ "mime-types": {
63
+ "version": "2.1.21",
64
+ "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.21.tgz",
65
+ "integrity": "sha512-3iL6DbwpyLzjR3xHSFNFeb9Nz/M8WDkX33t1GFQnFOllWk8pOrh/LSrB5OXlnlW5P9LH73X6loW/eogc+F5lJg==",
66
+ "requires": {
67
+ "mime-db": "~1.37.0"
68
+ }
69
+ },
70
+ "papaparse": {
71
+ "version": "4.6.2",
72
+ "resolved": "https://registry.npmjs.org/papaparse/-/papaparse-4.6.2.tgz",
73
+ "integrity": "sha512-P/4p6S6wZyXAjcFPnJAjFn7lxMIkd+23prFELhcbfWswQfg7dG1XJfV8/lKvk5lu5BGSSJZFHSDMejjFcB1feg=="
74
+ },
75
+ "whatwg-fetch": {
76
+ "version": "3.0.0",
77
+ "resolved": "https://registry.npmjs.org/whatwg-fetch/-/whatwg-fetch-3.0.0.tgz",
78
+ "integrity": "sha512-9GSJUgz1D4MfyKU7KRqwOjXCXTqWdFNvEr7eUBYchQiVc744mqK/MzXPNR2WsPkmkOa4ywfg8C2n8h+13Bey1Q=="
79
+ }
80
+ }
81
+ }
@@ -0,0 +1,37 @@
1
+ {
2
+ "name": "batch-geocoder",
3
+ "version": "2.22.0",
4
+ "description": "arcgis-rest-js batch geocode sample",
5
+ "main": "batch-geocode.js",
6
+ "scripts": {
7
+ "test": "echo \"Error: no test specified\" && exit 1",
8
+ "start": "node batch-geocode.js"
9
+ },
10
+ "repository": {
11
+ "type": "git",
12
+ "url": "git+https://github.com/Esri/arcgis-rest-js.git"
13
+ },
14
+ "keywords": [
15
+ "geocode",
16
+ "batch",
17
+ "arcgis",
18
+ "rest",
19
+ "js",
20
+ "arcgis-rest-js"
21
+ ],
22
+ "author": "Max Payson (mpayson)",
23
+ "license": "Apache-2.0",
24
+ "private": true,
25
+ "bugs": {
26
+ "url": "https://github.com/Esri/arcgis-rest-js/issues"
27
+ },
28
+ "homepage": "https://github.com/Esri/arcgis-rest-js#readme",
29
+ "dependencies": {
30
+ "@esri/arcgis-rest-auth": "^2.22.0",
31
+ "@esri/arcgis-rest-geocoding": "^2.22.0",
32
+ "@esri/arcgis-rest-request": "^2.22.0",
33
+ "cross-fetch": "^3.0.0",
34
+ "isomorphic-form-data": "^2.0.0",
35
+ "papaparse": "^4.6.0"
36
+ }
37
+ }