@esri/solution-deployer 4.1.2 → 5.0.0

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 (41) hide show
  1. package/dist/cjs/deploySolutionFromTemplate.d.ts +48 -48
  2. package/dist/cjs/deploySolutionFromTemplate.js +331 -331
  3. package/dist/cjs/deploySolutionFromTemplate.js.map +1 -1
  4. package/dist/cjs/deploySolutionItems.d.ts +224 -224
  5. package/dist/cjs/deploySolutionItems.js +853 -849
  6. package/dist/cjs/deploySolutionItems.js.map +1 -1
  7. package/dist/cjs/deployer.d.ts +34 -34
  8. package/dist/cjs/deployer.js +101 -101
  9. package/dist/cjs/deployerUtils.d.ts +47 -47
  10. package/dist/cjs/deployerUtils.js +123 -123
  11. package/dist/cjs/helpers/post-process.d.ts +29 -29
  12. package/dist/cjs/helpers/post-process.js +61 -61
  13. package/dist/cjs/helpers/share-templates-to-groups.d.ts +24 -24
  14. package/dist/cjs/helpers/share-templates-to-groups.js +64 -64
  15. package/dist/cjs/helpers/sortTemplates.d.ts +23 -23
  16. package/dist/cjs/helpers/sortTemplates.js +14 -14
  17. package/dist/cjs/index.d.ts +24 -24
  18. package/dist/cjs/index.js +27 -27
  19. package/dist/cjs/module-map.d.ts +23 -23
  20. package/dist/cjs/module-map.js +195 -195
  21. package/dist/esm/deploySolutionFromTemplate.d.ts +48 -48
  22. package/dist/esm/deploySolutionFromTemplate.js +317 -317
  23. package/dist/esm/deploySolutionFromTemplate.js.map +1 -1
  24. package/dist/esm/deploySolutionItems.d.ts +224 -224
  25. package/dist/esm/deploySolutionItems.js +830 -826
  26. package/dist/esm/deploySolutionItems.js.map +1 -1
  27. package/dist/esm/deployer.d.ts +34 -34
  28. package/dist/esm/deployer.js +96 -96
  29. package/dist/esm/deployerUtils.d.ts +47 -47
  30. package/dist/esm/deployerUtils.js +115 -115
  31. package/dist/esm/helpers/post-process.d.ts +29 -29
  32. package/dist/esm/helpers/post-process.js +57 -57
  33. package/dist/esm/helpers/share-templates-to-groups.d.ts +24 -24
  34. package/dist/esm/helpers/share-templates-to-groups.js +60 -60
  35. package/dist/esm/helpers/sortTemplates.d.ts +23 -23
  36. package/dist/esm/helpers/sortTemplates.js +10 -10
  37. package/dist/esm/index.d.ts +24 -24
  38. package/dist/esm/index.js +24 -24
  39. package/dist/esm/module-map.d.ts +23 -23
  40. package/dist/esm/module-map.js +191 -191
  41. package/package.json +12 -12
@@ -1,23 +1,23 @@
1
- /** @license
2
- * Copyright 2021 Esri
3
- *
4
- * Licensed under the Apache License, Version 2.0 (the "License");
5
- * you may not use this file except in compliance with the License.
6
- * You may obtain a copy of the License at
7
- *
8
- * http://www.apache.org/licenses/LICENSE-2.0
9
- *
10
- * Unless required by applicable law or agreed to in writing, software
11
- * distributed under the License is distributed on an "AS IS" BASIS,
12
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
- * See the License for the specific language governing permissions and
14
- * limitations under the License.
15
- */
16
- import { IItemTemplate } from "@esri/solution-common";
17
- /**
18
- * Sorts a list of templates in place to match a provided sort-order list.
19
- *
20
- * @param templates List of templates in a Solution
21
- * @param sortOrderIds List of template ids in the desired sort order
22
- */
23
- export declare function sortTemplates(templates: IItemTemplate[], sortOrderIds: string[]): void;
1
+ /** @license
2
+ * Copyright 2021 Esri
3
+ *
4
+ * Licensed under the Apache License, Version 2.0 (the "License");
5
+ * you may not use this file except in compliance with the License.
6
+ * You may obtain a copy of the License at
7
+ *
8
+ * http://www.apache.org/licenses/LICENSE-2.0
9
+ *
10
+ * Unless required by applicable law or agreed to in writing, software
11
+ * distributed under the License is distributed on an "AS IS" BASIS,
12
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ * See the License for the specific language governing permissions and
14
+ * limitations under the License.
15
+ */
16
+ import { IItemTemplate } from "@esri/solution-common";
17
+ /**
18
+ * Sorts a list of templates in place to match a provided sort-order list.
19
+ *
20
+ * @param templates List of templates in a Solution
21
+ * @param sortOrderIds List of template ids in the desired sort order
22
+ */
23
+ export declare function sortTemplates(templates: IItemTemplate[], sortOrderIds: string[]): void;
@@ -1,15 +1,15 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.sortTemplates = void 0;
4
- /**
5
- * Sorts a list of templates in place to match a provided sort-order list.
6
- *
7
- * @param templates List of templates in a Solution
8
- * @param sortOrderIds List of template ids in the desired sort order
9
- */
10
- function sortTemplates(templates, sortOrderIds) {
11
- templates.sort((template1, template2) => sortOrderIds.indexOf(template1.itemId) -
12
- sortOrderIds.indexOf(template2.itemId));
13
- }
14
- exports.sortTemplates = sortTemplates;
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.sortTemplates = void 0;
4
+ /**
5
+ * Sorts a list of templates in place to match a provided sort-order list.
6
+ *
7
+ * @param templates List of templates in a Solution
8
+ * @param sortOrderIds List of template ids in the desired sort order
9
+ */
10
+ function sortTemplates(templates, sortOrderIds) {
11
+ templates.sort((template1, template2) => sortOrderIds.indexOf(template1.itemId) -
12
+ sortOrderIds.indexOf(template2.itemId));
13
+ }
14
+ exports.sortTemplates = sortTemplates;
15
15
  //# sourceMappingURL=sortTemplates.js.map
@@ -1,24 +1,24 @@
1
- /** @license
2
- * Copyright 2018 Esri
3
- *
4
- * Licensed under the Apache License, Version 2.0 (the "License");
5
- * you may not use this file except in compliance with the License.
6
- * You may obtain a copy of the License at
7
- *
8
- * http://www.apache.org/licenses/LICENSE-2.0
9
- *
10
- * Unless required by applicable law or agreed to in writing, software
11
- * distributed under the License is distributed on an "AS IS" BASIS,
12
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
- * See the License for the specific language governing permissions and
14
- * limitations under the License.
15
- */
16
- /**
17
- * Manages the deployment of a Solution.
18
- *
19
- * @module deployer
20
- */
21
- export * from "./deployer";
22
- export * from "./deploySolutionItems";
23
- export * from "./deployerUtils";
24
- export * from "./module-map";
1
+ /** @license
2
+ * Copyright 2018 Esri
3
+ *
4
+ * Licensed under the Apache License, Version 2.0 (the "License");
5
+ * you may not use this file except in compliance with the License.
6
+ * You may obtain a copy of the License at
7
+ *
8
+ * http://www.apache.org/licenses/LICENSE-2.0
9
+ *
10
+ * Unless required by applicable law or agreed to in writing, software
11
+ * distributed under the License is distributed on an "AS IS" BASIS,
12
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ * See the License for the specific language governing permissions and
14
+ * limitations under the License.
15
+ */
16
+ /**
17
+ * Manages the deployment of a Solution.
18
+ *
19
+ * @module deployer
20
+ */
21
+ export * from "./deployer";
22
+ export * from "./deploySolutionItems";
23
+ export * from "./deployerUtils";
24
+ export * from "./module-map";
package/dist/cjs/index.js CHANGED
@@ -1,28 +1,28 @@
1
- "use strict";
2
- /** @license
3
- * Copyright 2018 Esri
4
- *
5
- * Licensed under the Apache License, Version 2.0 (the "License");
6
- * you may not use this file except in compliance with the License.
7
- * You may obtain a copy of the License at
8
- *
9
- * http://www.apache.org/licenses/LICENSE-2.0
10
- *
11
- * Unless required by applicable law or agreed to in writing, software
12
- * distributed under the License is distributed on an "AS IS" BASIS,
13
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
- * See the License for the specific language governing permissions and
15
- * limitations under the License.
16
- */
17
- Object.defineProperty(exports, "__esModule", { value: true });
18
- const tslib_1 = require("tslib");
19
- /**
20
- * Manages the deployment of a Solution.
21
- *
22
- * @module deployer
23
- */
24
- tslib_1.__exportStar(require("./deployer"), exports);
25
- tslib_1.__exportStar(require("./deploySolutionItems"), exports);
26
- tslib_1.__exportStar(require("./deployerUtils"), exports);
27
- tslib_1.__exportStar(require("./module-map"), exports);
1
+ "use strict";
2
+ /** @license
3
+ * Copyright 2018 Esri
4
+ *
5
+ * Licensed under the Apache License, Version 2.0 (the "License");
6
+ * you may not use this file except in compliance with the License.
7
+ * You may obtain a copy of the License at
8
+ *
9
+ * http://www.apache.org/licenses/LICENSE-2.0
10
+ *
11
+ * Unless required by applicable law or agreed to in writing, software
12
+ * distributed under the License is distributed on an "AS IS" BASIS,
13
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
+ * See the License for the specific language governing permissions and
15
+ * limitations under the License.
16
+ */
17
+ Object.defineProperty(exports, "__esModule", { value: true });
18
+ const tslib_1 = require("tslib");
19
+ /**
20
+ * Manages the deployment of a Solution.
21
+ *
22
+ * @module deployer
23
+ */
24
+ tslib_1.__exportStar(require("./deployer"), exports);
25
+ tslib_1.__exportStar(require("./deploySolutionItems"), exports);
26
+ tslib_1.__exportStar(require("./deployerUtils"), exports);
27
+ tslib_1.__exportStar(require("./module-map"), exports);
28
28
  //# sourceMappingURL=index.js.map
@@ -1,23 +1,23 @@
1
- /** @license
2
- * Copyright 2020 Esri
3
- *
4
- * Licensed under the Apache License, Version 2.0 (the "License");
5
- * you may not use this file except in compliance with the License.
6
- * You may obtain a copy of the License at
7
- *
8
- * http://www.apache.org/licenses/LICENSE-2.0
9
- *
10
- * Unless required by applicable law or agreed to in writing, software
11
- * distributed under the License is distributed on an "AS IS" BASIS,
12
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
- * See the License for the specific language governing permissions and
14
- * limitations under the License.
15
- */
16
- import { moduleHandler, IItemTypeModuleMap } from "@esri/solution-common";
17
- export declare const UNSUPPORTED: moduleHandler;
18
- /**
19
- * Mapping from item type to module with type-specific template-handling code.
20
- * AGO types come from a blend of arcgis-portal-app\src\js\arcgisonline\pages\item\_Info.js and
21
- * arcgis-portal-app\src\js\arcgis-components\src\_utils\metadata\item\displayName.ts
22
- */
23
- export declare const moduleMap: IItemTypeModuleMap;
1
+ /** @license
2
+ * Copyright 2020 Esri
3
+ *
4
+ * Licensed under the Apache License, Version 2.0 (the "License");
5
+ * you may not use this file except in compliance with the License.
6
+ * You may obtain a copy of the License at
7
+ *
8
+ * http://www.apache.org/licenses/LICENSE-2.0
9
+ *
10
+ * Unless required by applicable law or agreed to in writing, software
11
+ * distributed under the License is distributed on an "AS IS" BASIS,
12
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ * See the License for the specific language governing permissions and
14
+ * limitations under the License.
15
+ */
16
+ import { moduleHandler, IItemTypeModuleMap } from "@esri/solution-common";
17
+ export declare const UNSUPPORTED: moduleHandler;
18
+ /**
19
+ * Mapping from item type to module with type-specific template-handling code.
20
+ * AGO types come from a blend of arcgis-portal-app\src\js\arcgisonline\pages\item\_Info.js and
21
+ * arcgis-portal-app\src\js\arcgis-components\src\_utils\metadata\item\displayName.ts
22
+ */
23
+ export declare const moduleMap: IItemTypeModuleMap;
@@ -1,196 +1,196 @@
1
- "use strict";
2
- /** @license
3
- * Copyright 2020 Esri
4
- *
5
- * Licensed under the Apache License, Version 2.0 (the "License");
6
- * you may not use this file except in compliance with the License.
7
- * You may obtain a copy of the License at
8
- *
9
- * http://www.apache.org/licenses/LICENSE-2.0
10
- *
11
- * Unless required by applicable law or agreed to in writing, software
12
- * distributed under the License is distributed on an "AS IS" BASIS,
13
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
- * See the License for the specific language governing permissions and
15
- * limitations under the License.
16
- */
17
- Object.defineProperty(exports, "__esModule", { value: true });
18
- exports.moduleMap = exports.UNSUPPORTED = void 0;
19
- const tslib_1 = require("tslib");
20
- const featureLayer = tslib_1.__importStar(require("@esri/solution-feature-layer"));
21
- const fileProcessor = tslib_1.__importStar(require("@esri/solution-file"));
22
- const formProcessor = tslib_1.__importStar(require("@esri/solution-form"));
23
- const group = tslib_1.__importStar(require("@esri/solution-group"));
24
- const solution_simple_types_1 = require("@esri/solution-simple-types");
25
- const solution_storymap_1 = require("@esri/solution-storymap");
26
- const solution_velocity_1 = require("@esri/solution-velocity");
27
- const solution_web_experience_1 = require("@esri/solution-web-experience");
28
- const solution_hub_types_1 = require("@esri/solution-hub-types");
29
- exports.UNSUPPORTED = null;
30
- /**
31
- * Mapping from item type to module with type-specific template-handling code.
32
- * AGO types come from a blend of arcgis-portal-app\src\js\arcgisonline\pages\item\_Info.js and
33
- * arcgis-portal-app\src\js\arcgis-components\src\_utils\metadata\item\displayName.ts
34
- */
35
- exports.moduleMap = {
36
- ////////////////////////////////////////////////////////
37
- // Group type
38
- Group: group,
39
- ////////////////////////////////////////////////////////
40
- // Layer types
41
- "Big Data Analytic": solution_velocity_1.VelocityProcessor,
42
- "Feature Collection": solution_simple_types_1.simpleTypes,
43
- "Feature Service": featureLayer,
44
- Feed: solution_velocity_1.VelocityProcessor,
45
- "Geocoding Service": undefined,
46
- "Geodata Service": undefined,
47
- "Geometry Service": undefined,
48
- "Geoprocessing Service": undefined,
49
- "Globe Service": undefined,
50
- "Image Service": undefined,
51
- KML: undefined,
52
- "Map Service": featureLayer,
53
- "Network Analysis Service": undefined,
54
- "Real Time Analytic": solution_velocity_1.VelocityProcessor,
55
- "Relational Database Connection": undefined,
56
- "Scene Service": undefined,
57
- "Stream Service": undefined,
58
- Tool: undefined,
59
- "Vector Tile Service": solution_simple_types_1.simpleTypes,
60
- WFS: undefined,
61
- WMS: undefined,
62
- WMTS: undefined,
63
- "Workflow Manager Service": undefined,
64
- ////////////////////////////////////////////////////////
65
- // Map types
66
- "3D Web Scene": undefined,
67
- "Web Map": solution_simple_types_1.simpleTypes,
68
- "Web Scene": solution_simple_types_1.simpleTypes,
69
- ////////////////////////////////////////////////////////
70
- // App types
71
- Application: undefined,
72
- Dashboard: solution_simple_types_1.simpleTypes,
73
- "Data Pipeline": solution_simple_types_1.simpleTypes,
74
- "Data Store": undefined,
75
- "Desktop Application": undefined,
76
- "Excalibur Imagery Project": undefined,
77
- Form: formProcessor,
78
- "Hub Initiative": exports.UNSUPPORTED,
79
- "Hub Page": solution_hub_types_1.HubPageProcessor,
80
- "Hub Site Application": solution_hub_types_1.HubSiteProcessor,
81
- "Insights Model": solution_simple_types_1.simpleTypes,
82
- "Insights Page": undefined,
83
- "Insights Theme": undefined,
84
- "Insights Workbook": undefined,
85
- Mission: undefined,
86
- "Mobile Application": undefined,
87
- Notebook: solution_simple_types_1.notebookProcessor,
88
- "Oriented Imagery Catalog": solution_simple_types_1.simpleTypes,
89
- "Ortho Mapping Project": undefined,
90
- "QuickCapture Project": solution_simple_types_1.quickcaptureProcessor,
91
- "Site Application": solution_hub_types_1.HubSiteProcessor,
92
- "Site Page": solution_hub_types_1.HubPageProcessor,
93
- Solution: exports.UNSUPPORTED,
94
- StoryMap: solution_storymap_1.StoryMapProcessor,
95
- "Urban Model": undefined,
96
- "Web Experience Template": undefined,
97
- "Web Experience": solution_web_experience_1.WebExperienceProcessor,
98
- "Web Mapping Application": solution_simple_types_1.simpleTypes,
99
- "Workforce Project": solution_simple_types_1.simpleTypes,
100
- ////////////////////////////////////////////////////////
101
- // File types
102
- "360 VR Experience": fileProcessor,
103
- "AppBuilder Extension": fileProcessor,
104
- "AppBuilder Widget Package": fileProcessor,
105
- "Application Configuration": fileProcessor,
106
- "ArcGIS Pro Add In": fileProcessor,
107
- "ArcGIS Pro Configuration": fileProcessor,
108
- "ArcPad Package": fileProcessor,
109
- "Basemap Package": fileProcessor,
110
- "CAD Drawing": fileProcessor,
111
- "CityEngine Web Scene": fileProcessor,
112
- "Code Attachment": exports.UNSUPPORTED,
113
- "Code Sample": fileProcessor,
114
- "Color Set": fileProcessor,
115
- "Compact Tile Package": fileProcessor,
116
- "CSV Collection": fileProcessor,
117
- CSV: fileProcessor,
118
- "Deep Learning Package": fileProcessor,
119
- "Desktop Add In": fileProcessor,
120
- "Desktop Application Template": fileProcessor,
121
- "Desktop Style": fileProcessor,
122
- "Document Link": fileProcessor,
123
- "Explorer Add In": fileProcessor,
124
- "Explorer Layer": fileProcessor,
125
- "Explorer Map": fileProcessor,
126
- "Feature Collection Template": fileProcessor,
127
- "File Geodatabase": fileProcessor,
128
- GeoJson: fileProcessor,
129
- GeoPackage: fileProcessor,
130
- "Geoprocessing Package": fileProcessor,
131
- "Geoprocessing Sample": fileProcessor,
132
- "Globe Document": fileProcessor,
133
- "Image Collection": fileProcessor,
134
- Image: fileProcessor,
135
- "iWork Keynote": fileProcessor,
136
- "iWork Numbers": fileProcessor,
137
- "iWork Pages": fileProcessor,
138
- "KML Collection": fileProcessor,
139
- "Layer Package": fileProcessor,
140
- "Layer Template": fileProcessor,
141
- Layer: fileProcessor,
142
- Layout: fileProcessor,
143
- "Locator Package": fileProcessor,
144
- "Map Document": fileProcessor,
145
- "Map Package": fileProcessor,
146
- "Map Template": fileProcessor,
147
- "Microsoft Excel": fileProcessor,
148
- "Microsoft Powerpoint": fileProcessor,
149
- "Microsoft Word": fileProcessor,
150
- "Mobile Basemap Package": fileProcessor,
151
- "Mobile Map Package": fileProcessor,
152
- "Mobile Scene Package": fileProcessor,
153
- "Native Application": fileProcessor,
154
- "Native Application Installer": fileProcessor,
155
- "Native Application Template": fileProcessor,
156
- netCDF: fileProcessor,
157
- "Operation View": fileProcessor,
158
- "Operations Dashboard Add In": fileProcessor,
159
- "Operations Dashboard Extension": fileProcessor,
160
- PDF: fileProcessor,
161
- "Pro Layer Package": fileProcessor,
162
- "Pro Layer": fileProcessor,
163
- "Pro Map Package": fileProcessor,
164
- "Pro Map": fileProcessor,
165
- "Pro Report": fileProcessor,
166
- "Project Package": fileProcessor,
167
- "Project Template": fileProcessor,
168
- "Published Map": fileProcessor,
169
- "Raster function template": fileProcessor,
170
- "Report Template": fileProcessor,
171
- "Rule Package": fileProcessor,
172
- "Scene Document": fileProcessor,
173
- "Scene Package": fileProcessor,
174
- "Service Definition": fileProcessor,
175
- Shapefile: fileProcessor,
176
- "Statistical Data Collection": fileProcessor,
177
- Style: fileProcessor,
178
- "Survey123 Add In": fileProcessor,
179
- "Symbol Set": fileProcessor,
180
- "Task File": fileProcessor,
181
- "Tile Package": fileProcessor,
182
- "Toolbox Package": fileProcessor,
183
- "Vector Tile Package": fileProcessor,
184
- "Viewer Configuration": fileProcessor,
185
- "Visio Document": fileProcessor,
186
- "Window Mobile Package": fileProcessor,
187
- "Windows Mobile Package": fileProcessor,
188
- "Windows Viewer Add In": fileProcessor,
189
- "Windows Viewer Configuration": fileProcessor,
190
- "Workflow Manager Package": fileProcessor,
191
- ////////////////////////////////////////////////////////
192
- // Testing "types"
193
- Undefined: undefined,
194
- Unsupported: exports.UNSUPPORTED
195
- };
1
+ "use strict";
2
+ /** @license
3
+ * Copyright 2020 Esri
4
+ *
5
+ * Licensed under the Apache License, Version 2.0 (the "License");
6
+ * you may not use this file except in compliance with the License.
7
+ * You may obtain a copy of the License at
8
+ *
9
+ * http://www.apache.org/licenses/LICENSE-2.0
10
+ *
11
+ * Unless required by applicable law or agreed to in writing, software
12
+ * distributed under the License is distributed on an "AS IS" BASIS,
13
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
+ * See the License for the specific language governing permissions and
15
+ * limitations under the License.
16
+ */
17
+ Object.defineProperty(exports, "__esModule", { value: true });
18
+ exports.moduleMap = exports.UNSUPPORTED = void 0;
19
+ const tslib_1 = require("tslib");
20
+ const featureLayer = tslib_1.__importStar(require("@esri/solution-feature-layer"));
21
+ const fileProcessor = tslib_1.__importStar(require("@esri/solution-file"));
22
+ const formProcessor = tslib_1.__importStar(require("@esri/solution-form"));
23
+ const group = tslib_1.__importStar(require("@esri/solution-group"));
24
+ const solution_simple_types_1 = require("@esri/solution-simple-types");
25
+ const solution_storymap_1 = require("@esri/solution-storymap");
26
+ const solution_velocity_1 = require("@esri/solution-velocity");
27
+ const solution_web_experience_1 = require("@esri/solution-web-experience");
28
+ const solution_hub_types_1 = require("@esri/solution-hub-types");
29
+ exports.UNSUPPORTED = null;
30
+ /**
31
+ * Mapping from item type to module with type-specific template-handling code.
32
+ * AGO types come from a blend of arcgis-portal-app\src\js\arcgisonline\pages\item\_Info.js and
33
+ * arcgis-portal-app\src\js\arcgis-components\src\_utils\metadata\item\displayName.ts
34
+ */
35
+ exports.moduleMap = {
36
+ ////////////////////////////////////////////////////////
37
+ // Group type
38
+ Group: group,
39
+ ////////////////////////////////////////////////////////
40
+ // Layer types
41
+ "Big Data Analytic": solution_velocity_1.VelocityProcessor,
42
+ "Feature Collection": solution_simple_types_1.simpleTypes,
43
+ "Feature Service": featureLayer,
44
+ Feed: solution_velocity_1.VelocityProcessor,
45
+ "Geocoding Service": undefined,
46
+ "Geodata Service": undefined,
47
+ "Geometry Service": undefined,
48
+ "Geoprocessing Service": undefined,
49
+ "Globe Service": undefined,
50
+ "Image Service": undefined,
51
+ KML: undefined,
52
+ "Map Service": featureLayer,
53
+ "Network Analysis Service": undefined,
54
+ "Real Time Analytic": solution_velocity_1.VelocityProcessor,
55
+ "Relational Database Connection": undefined,
56
+ "Scene Service": undefined,
57
+ "Stream Service": undefined,
58
+ Tool: undefined,
59
+ "Vector Tile Service": solution_simple_types_1.simpleTypes,
60
+ WFS: undefined,
61
+ WMS: undefined,
62
+ WMTS: undefined,
63
+ "Workflow Manager Service": undefined,
64
+ ////////////////////////////////////////////////////////
65
+ // Map types
66
+ "3D Web Scene": undefined,
67
+ "Web Map": solution_simple_types_1.simpleTypes,
68
+ "Web Scene": solution_simple_types_1.simpleTypes,
69
+ ////////////////////////////////////////////////////////
70
+ // App types
71
+ Application: undefined,
72
+ Dashboard: solution_simple_types_1.simpleTypes,
73
+ "Data Pipeline": solution_simple_types_1.simpleTypes,
74
+ "Data Store": undefined,
75
+ "Desktop Application": undefined,
76
+ "Excalibur Imagery Project": undefined,
77
+ Form: formProcessor,
78
+ "Hub Initiative": exports.UNSUPPORTED,
79
+ "Hub Page": solution_hub_types_1.HubPageProcessor,
80
+ "Hub Site Application": solution_hub_types_1.HubSiteProcessor,
81
+ "Insights Model": solution_simple_types_1.simpleTypes,
82
+ "Insights Page": undefined,
83
+ "Insights Theme": undefined,
84
+ "Insights Workbook": undefined,
85
+ Mission: undefined,
86
+ "Mobile Application": undefined,
87
+ Notebook: solution_simple_types_1.notebookProcessor,
88
+ "Oriented Imagery Catalog": solution_simple_types_1.simpleTypes,
89
+ "Ortho Mapping Project": undefined,
90
+ "QuickCapture Project": solution_simple_types_1.quickcaptureProcessor,
91
+ "Site Application": solution_hub_types_1.HubSiteProcessor,
92
+ "Site Page": solution_hub_types_1.HubPageProcessor,
93
+ Solution: exports.UNSUPPORTED,
94
+ StoryMap: solution_storymap_1.StoryMapProcessor,
95
+ "Urban Model": undefined,
96
+ "Web Experience Template": undefined,
97
+ "Web Experience": solution_web_experience_1.WebExperienceProcessor,
98
+ "Web Mapping Application": solution_simple_types_1.simpleTypes,
99
+ "Workforce Project": solution_simple_types_1.simpleTypes,
100
+ ////////////////////////////////////////////////////////
101
+ // File types
102
+ "360 VR Experience": fileProcessor,
103
+ "AppBuilder Extension": fileProcessor,
104
+ "AppBuilder Widget Package": fileProcessor,
105
+ "Application Configuration": fileProcessor,
106
+ "ArcGIS Pro Add In": fileProcessor,
107
+ "ArcGIS Pro Configuration": fileProcessor,
108
+ "ArcPad Package": fileProcessor,
109
+ "Basemap Package": fileProcessor,
110
+ "CAD Drawing": fileProcessor,
111
+ "CityEngine Web Scene": fileProcessor,
112
+ "Code Attachment": exports.UNSUPPORTED,
113
+ "Code Sample": fileProcessor,
114
+ "Color Set": fileProcessor,
115
+ "Compact Tile Package": fileProcessor,
116
+ "CSV Collection": fileProcessor,
117
+ CSV: fileProcessor,
118
+ "Deep Learning Package": fileProcessor,
119
+ "Desktop Add In": fileProcessor,
120
+ "Desktop Application Template": fileProcessor,
121
+ "Desktop Style": fileProcessor,
122
+ "Document Link": fileProcessor,
123
+ "Explorer Add In": fileProcessor,
124
+ "Explorer Layer": fileProcessor,
125
+ "Explorer Map": fileProcessor,
126
+ "Feature Collection Template": fileProcessor,
127
+ "File Geodatabase": fileProcessor,
128
+ GeoJson: fileProcessor,
129
+ GeoPackage: fileProcessor,
130
+ "Geoprocessing Package": fileProcessor,
131
+ "Geoprocessing Sample": fileProcessor,
132
+ "Globe Document": fileProcessor,
133
+ "Image Collection": fileProcessor,
134
+ Image: fileProcessor,
135
+ "iWork Keynote": fileProcessor,
136
+ "iWork Numbers": fileProcessor,
137
+ "iWork Pages": fileProcessor,
138
+ "KML Collection": fileProcessor,
139
+ "Layer Package": fileProcessor,
140
+ "Layer Template": fileProcessor,
141
+ Layer: fileProcessor,
142
+ Layout: fileProcessor,
143
+ "Locator Package": fileProcessor,
144
+ "Map Document": fileProcessor,
145
+ "Map Package": fileProcessor,
146
+ "Map Template": fileProcessor,
147
+ "Microsoft Excel": fileProcessor,
148
+ "Microsoft Powerpoint": fileProcessor,
149
+ "Microsoft Word": fileProcessor,
150
+ "Mobile Basemap Package": fileProcessor,
151
+ "Mobile Map Package": fileProcessor,
152
+ "Mobile Scene Package": fileProcessor,
153
+ "Native Application": fileProcessor,
154
+ "Native Application Installer": fileProcessor,
155
+ "Native Application Template": fileProcessor,
156
+ netCDF: fileProcessor,
157
+ "Operation View": fileProcessor,
158
+ "Operations Dashboard Add In": fileProcessor,
159
+ "Operations Dashboard Extension": fileProcessor,
160
+ PDF: fileProcessor,
161
+ "Pro Layer Package": fileProcessor,
162
+ "Pro Layer": fileProcessor,
163
+ "Pro Map Package": fileProcessor,
164
+ "Pro Map": fileProcessor,
165
+ "Pro Report": fileProcessor,
166
+ "Project Package": fileProcessor,
167
+ "Project Template": fileProcessor,
168
+ "Published Map": fileProcessor,
169
+ "Raster function template": fileProcessor,
170
+ "Report Template": fileProcessor,
171
+ "Rule Package": fileProcessor,
172
+ "Scene Document": fileProcessor,
173
+ "Scene Package": fileProcessor,
174
+ "Service Definition": fileProcessor,
175
+ Shapefile: fileProcessor,
176
+ "Statistical Data Collection": fileProcessor,
177
+ Style: fileProcessor,
178
+ "Survey123 Add In": fileProcessor,
179
+ "Symbol Set": fileProcessor,
180
+ "Task File": fileProcessor,
181
+ "Tile Package": fileProcessor,
182
+ "Toolbox Package": fileProcessor,
183
+ "Vector Tile Package": fileProcessor,
184
+ "Viewer Configuration": fileProcessor,
185
+ "Visio Document": fileProcessor,
186
+ "Window Mobile Package": fileProcessor,
187
+ "Windows Mobile Package": fileProcessor,
188
+ "Windows Viewer Add In": fileProcessor,
189
+ "Windows Viewer Configuration": fileProcessor,
190
+ "Workflow Manager Package": fileProcessor,
191
+ ////////////////////////////////////////////////////////
192
+ // Testing "types"
193
+ Undefined: undefined,
194
+ Unsupported: exports.UNSUPPORTED
195
+ };
196
196
  //# sourceMappingURL=module-map.js.map