@esri/solution-simple-types 1.5.0 → 1.5.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (40) hide show
  1. package/dist/esm/dashboard.d.ts +6 -4
  2. package/dist/esm/dashboard.js +9 -6
  3. package/dist/esm/dashboard.js.map +1 -1
  4. package/dist/esm/helpers/convert-item-to-template.d.ts +11 -0
  5. package/dist/esm/helpers/convert-item-to-template.js +35 -24
  6. package/dist/esm/helpers/convert-item-to-template.js.map +1 -1
  7. package/dist/esm/webmap.d.ts +4 -2
  8. package/dist/esm/webmap.js +7 -4
  9. package/dist/esm/webmap.js.map +1 -1
  10. package/dist/esm/webmappingapplication.d.ts +12 -2
  11. package/dist/esm/webmappingapplication.js +14 -3
  12. package/dist/esm/webmappingapplication.js.map +1 -1
  13. package/dist/esm/workforce.d.ts +2 -1
  14. package/dist/esm/workforce.js +3 -2
  15. package/dist/esm/workforce.js.map +1 -1
  16. package/dist/node/dashboard.d.ts +6 -4
  17. package/dist/node/dashboard.js +9 -6
  18. package/dist/node/dashboard.js.map +1 -1
  19. package/dist/node/helpers/convert-item-to-template.d.ts +11 -0
  20. package/dist/node/helpers/convert-item-to-template.js +37 -25
  21. package/dist/node/helpers/convert-item-to-template.js.map +1 -1
  22. package/dist/node/webmap.d.ts +4 -2
  23. package/dist/node/webmap.js +7 -4
  24. package/dist/node/webmap.js.map +1 -1
  25. package/dist/node/webmappingapplication.d.ts +12 -2
  26. package/dist/node/webmappingapplication.js +14 -3
  27. package/dist/node/webmappingapplication.js.map +1 -1
  28. package/dist/node/workforce.d.ts +2 -1
  29. package/dist/node/workforce.js +3 -2
  30. package/dist/node/workforce.js.map +1 -1
  31. package/dist/umd/simple-types/src/dashboard.d.ts +6 -4
  32. package/dist/umd/simple-types/src/helpers/convert-item-to-template.d.ts +11 -0
  33. package/dist/umd/simple-types/src/webmap.d.ts +4 -2
  34. package/dist/umd/simple-types/src/webmappingapplication.d.ts +12 -2
  35. package/dist/umd/simple-types/src/workforce.d.ts +2 -1
  36. package/dist/umd/simple-types.umd.js +70 -41
  37. package/dist/umd/simple-types.umd.js.map +1 -1
  38. package/dist/umd/simple-types.umd.min.js +3 -3
  39. package/dist/umd/simple-types.umd.min.js.map +1 -1
  40. package/package.json +94 -94
package/package.json CHANGED
@@ -1,94 +1,94 @@
1
- {
2
- "name": "@esri/solution-simple-types",
3
- "version": "1.5.0",
4
- "description": "Manages the creation and deployment of simple item types for @esri/solution.js.",
5
- "main": "dist/node/index.js",
6
- "unpkg": "dist/umd/simple-types.umd.min.js",
7
- "module": "dist/esm/index.js",
8
- "js:next": "dist/esm/index.js",
9
- "types": "dist/esm/index.d.ts",
10
- "author": "Esri",
11
- "license": "Apache-2.0",
12
- "files": [
13
- "dist/**"
14
- ],
15
- "devDependencies": {
16
- "@esri/arcgis-rest-auth": "3.5.0",
17
- "@esri/arcgis-rest-feature-layer": "3.5.0",
18
- "@esri/arcgis-rest-portal": "3.5.0",
19
- "@esri/arcgis-rest-request": "3.5.0",
20
- "@esri/arcgis-rest-service-admin": "3.5.0",
21
- "@esri/hub-common": "9.29.0",
22
- "@esri/hub-teams": "9.29.0",
23
- "rollup": "2.79.0"
24
- },
25
- "peerDependencies": {
26
- "@esri/arcgis-rest-auth": "3.5.0",
27
- "@esri/arcgis-rest-feature-layer": "3.5.0",
28
- "@esri/arcgis-rest-portal": "3.5.0",
29
- "@esri/arcgis-rest-request": "3.5.0",
30
- "@esri/arcgis-rest-service-admin": "3.5.0",
31
- "@esri/hub-common": "9.29.0",
32
- "@esri/hub-teams": "9.29.0"
33
- },
34
- "dependencies": {
35
- "@esri/solution-common": "^1.5.0",
36
- "@esri/solution-feature-layer": "^1.5.0",
37
- "@esri/solution-file": "^1.5.0",
38
- "@esri/solution-group": "^1.5.0",
39
- "tslib": "1.14.1"
40
- },
41
- "scripts": {
42
- "prepare": "npm run build",
43
- "build": "npm run build:node && npm run build:umd && npm run build:esm",
44
- "build:esm": "tsc -p ./tsconfig.json --module esnext --outDir ./dist/esm --declaration",
45
- "build:umd": "rollup -c ../../umd-base-profile.js && rollup -c ../../umd-production-profile.js",
46
- "build:node": "tsc -p ./tsconfig.json --module commonjs --outDir ./dist/node",
47
- "dev:esm": "tsc -w --module esnext --outDir ./dist/esm --declaration",
48
- "dev:umd": "rollup -w -c ../../umd-base-profile.js",
49
- "dev:node": "tsc -w --module commonjs --outDir ./dist/node",
50
- "getupdates": "npm-check-updates --upgrade",
51
- "tsc:v": "tsc -v"
52
- },
53
- "publishConfig": {
54
- "access": "public"
55
- },
56
- "repository": {
57
- "type": "git",
58
- "url": "git+https://github.com/Esri/solution.js.git"
59
- },
60
- "contributors": [
61
- {
62
- "name": "Mike Tschudi",
63
- "email": "mtschudi@esri.com"
64
- },
65
- {
66
- "name": "Chris Fox",
67
- "email": "cfox@esri.com"
68
- },
69
- {
70
- "name": "John Hauck",
71
- "email": "jhauck@esri.com"
72
- },
73
- {
74
- "name": "Dave Bouwman",
75
- "email": "dbouwman@esri.com"
76
- },
77
- {
78
- "name": "John Gravois"
79
- }
80
- ],
81
- "bugs": {
82
- "url": "https://github.com/Esri/solution.js/issues"
83
- },
84
- "homepage": "https://github.com/Esri/solution.js#readme",
85
- "keywords": [
86
- "typescript",
87
- "promise",
88
- "fetch",
89
- "arcgis",
90
- "esri",
91
- "ES6"
92
- ],
93
- "gitHead": "9af59d933c317bf4608d3f7d2046f48a9a8a2d35"
94
- }
1
+ {
2
+ "name": "@esri/solution-simple-types",
3
+ "version": "1.5.2",
4
+ "description": "Manages the creation and deployment of simple item types for @esri/solution.js.",
5
+ "main": "dist/node/index.js",
6
+ "unpkg": "dist/umd/simple-types.umd.min.js",
7
+ "module": "dist/esm/index.js",
8
+ "js:next": "dist/esm/index.js",
9
+ "types": "dist/esm/index.d.ts",
10
+ "author": "Esri",
11
+ "license": "Apache-2.0",
12
+ "files": [
13
+ "dist/**"
14
+ ],
15
+ "devDependencies": {
16
+ "@esri/arcgis-rest-auth": "3.5.0",
17
+ "@esri/arcgis-rest-feature-layer": "3.5.0",
18
+ "@esri/arcgis-rest-portal": "3.5.0",
19
+ "@esri/arcgis-rest-request": "3.5.0",
20
+ "@esri/arcgis-rest-service-admin": "3.5.0",
21
+ "@esri/hub-common": "9.29.0",
22
+ "@esri/hub-teams": "9.29.0",
23
+ "rollup": "2.79.0"
24
+ },
25
+ "peerDependencies": {
26
+ "@esri/arcgis-rest-auth": "3.5.0",
27
+ "@esri/arcgis-rest-feature-layer": "3.5.0",
28
+ "@esri/arcgis-rest-portal": "3.5.0",
29
+ "@esri/arcgis-rest-request": "3.5.0",
30
+ "@esri/arcgis-rest-service-admin": "3.5.0",
31
+ "@esri/hub-common": "9.29.0",
32
+ "@esri/hub-teams": "9.29.0"
33
+ },
34
+ "dependencies": {
35
+ "@esri/solution-common": "^1.5.2",
36
+ "@esri/solution-feature-layer": "^1.5.2",
37
+ "@esri/solution-file": "^1.5.2",
38
+ "@esri/solution-group": "^1.5.2",
39
+ "tslib": "1.14.1"
40
+ },
41
+ "scripts": {
42
+ "prepare": "npm run build",
43
+ "build": "npm run build:node && npm run build:umd && npm run build:esm",
44
+ "build:esm": "tsc -p ./tsconfig.json --module esnext --outDir ./dist/esm --declaration",
45
+ "build:umd": "rollup -c ../../umd-base-profile.js && rollup -c ../../umd-production-profile.js",
46
+ "build:node": "tsc -p ./tsconfig.json --module commonjs --outDir ./dist/node",
47
+ "dev:esm": "tsc -w --module esnext --outDir ./dist/esm --declaration",
48
+ "dev:umd": "rollup -w -c ../../umd-base-profile.js",
49
+ "dev:node": "tsc -w --module commonjs --outDir ./dist/node",
50
+ "getupdates": "npm-check-updates --upgrade",
51
+ "tsc:v": "tsc -v"
52
+ },
53
+ "publishConfig": {
54
+ "access": "public"
55
+ },
56
+ "repository": {
57
+ "type": "git",
58
+ "url": "git+https://github.com/Esri/solution.js.git"
59
+ },
60
+ "contributors": [
61
+ {
62
+ "name": "Mike Tschudi",
63
+ "email": "mtschudi@esri.com"
64
+ },
65
+ {
66
+ "name": "Chris Fox",
67
+ "email": "cfox@esri.com"
68
+ },
69
+ {
70
+ "name": "John Hauck",
71
+ "email": "jhauck@esri.com"
72
+ },
73
+ {
74
+ "name": "Dave Bouwman",
75
+ "email": "dbouwman@esri.com"
76
+ },
77
+ {
78
+ "name": "John Gravois"
79
+ }
80
+ ],
81
+ "bugs": {
82
+ "url": "https://github.com/Esri/solution.js/issues"
83
+ },
84
+ "homepage": "https://github.com/Esri/solution.js#readme",
85
+ "keywords": [
86
+ "typescript",
87
+ "promise",
88
+ "fetch",
89
+ "arcgis",
90
+ "esri",
91
+ "ES6"
92
+ ],
93
+ "gitHead": "90f2c36c7b1b367dad73a5d2349193841596eefd"
94
+ }