0.0.12-rc.2 • Published 26 days ago

arcgis-item-engine v0.0.12-rc.2

Weekly downloads
14
License
-
Repository
github
Last release
26 days ago

arcgis-item-engine

Engine for powering ArcGIS item workflows in Node.js and web browsers.

Installation

$ npm install arcgis-item-engine

Example

import { updateItemDescription } from 'arcgis-item-engine';
import { UserSession } from '@esri/arcgis-rest-auth';

updateItemDescription(
  {
    id: '0123456789abcdef0123456789abcdef', // item id
    authentication: new UserSession({ // user login w/update permissions
      username: 'example_user',
      password: 'password',
    }),
  },
  {
    title: 'Updated Title',
    // more properties...
  }, // description property updates
)
  .onProgress((progress) => {
    console.log(`Progress: ${progress}%`);
  })
  .then((result) => {
    console.log(result); // json response
  });
0.0.12-rc.2

26 days ago

0.0.13

9 months ago

0.0.12-rc.1

7 months ago

0.0.12

10 months ago

0.0.11

3 years ago

0.0.10

3 years ago

0.0.9

3 years ago

0.0.8

3 years ago

0.0.7

3 years ago

0.0.6

3 years ago

0.0.5

3 years ago

0.0.4

3 years ago

0.0.3

3 years ago

0.0.2

3 years ago

0.0.1

4 years ago