@esri/solution-deployer 3.0.0 → 3.1.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 (43) hide show
  1. package/dist/esm/deploySolutionItems.js +1 -1
  2. package/dist/esm/deploySolutionItems.js.map +1 -1
  3. package/package.json +13 -13
  4. package/dist/node/deploySolutionFromTemplate.d.ts +0 -48
  5. package/dist/node/deploySolutionFromTemplate.js +0 -332
  6. package/dist/node/deploySolutionFromTemplate.js.map +0 -1
  7. package/dist/node/deploySolutionItems.d.ts +0 -224
  8. package/dist/node/deploySolutionItems.js +0 -850
  9. package/dist/node/deploySolutionItems.js.map +0 -1
  10. package/dist/node/deployer.d.ts +0 -34
  11. package/dist/node/deployer.js +0 -102
  12. package/dist/node/deployer.js.map +0 -1
  13. package/dist/node/deployerUtils.d.ts +0 -47
  14. package/dist/node/deployerUtils.js +0 -124
  15. package/dist/node/deployerUtils.js.map +0 -1
  16. package/dist/node/helpers/post-process.d.ts +0 -29
  17. package/dist/node/helpers/post-process.js +0 -62
  18. package/dist/node/helpers/post-process.js.map +0 -1
  19. package/dist/node/helpers/share-templates-to-groups.d.ts +0 -24
  20. package/dist/node/helpers/share-templates-to-groups.js +0 -65
  21. package/dist/node/helpers/share-templates-to-groups.js.map +0 -1
  22. package/dist/node/helpers/sortTemplates.d.ts +0 -23
  23. package/dist/node/helpers/sortTemplates.js +0 -15
  24. package/dist/node/helpers/sortTemplates.js.map +0 -1
  25. package/dist/node/index.d.ts +0 -24
  26. package/dist/node/index.js +0 -28
  27. package/dist/node/index.js.map +0 -1
  28. package/dist/node/module-map.d.ts +0 -23
  29. package/dist/node/module-map.js +0 -195
  30. package/dist/node/module-map.js.map +0 -1
  31. package/dist/umd/deployer/src/deploySolutionFromTemplate.d.ts +0 -48
  32. package/dist/umd/deployer/src/deploySolutionItems.d.ts +0 -224
  33. package/dist/umd/deployer/src/deployer.d.ts +0 -34
  34. package/dist/umd/deployer/src/deployerUtils.d.ts +0 -47
  35. package/dist/umd/deployer/src/helpers/post-process.d.ts +0 -29
  36. package/dist/umd/deployer/src/helpers/share-templates-to-groups.d.ts +0 -24
  37. package/dist/umd/deployer/src/helpers/sortTemplates.d.ts +0 -23
  38. package/dist/umd/deployer/src/index.d.ts +0 -24
  39. package/dist/umd/deployer/src/module-map.d.ts +0 -23
  40. package/dist/umd/deployer.umd.js +0 -1710
  41. package/dist/umd/deployer.umd.js.map +0 -1
  42. package/dist/umd/deployer.umd.min.js +0 -19
  43. package/dist/umd/deployer.umd.min.js.map +0 -1
@@ -1,24 +0,0 @@
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 { IItemTemplate, UserSession } from "@esri/solution-common";
17
- /**
18
- * Given the created templates
19
- *
20
- * @param templates
21
- * @param templateDictionary
22
- * @param authentication
23
- */
24
- export declare function shareTemplatesToGroups(templates: IItemTemplate[], templateDictionary: any, authentication: UserSession): Promise<any>;
@@ -1,23 +0,0 @@
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,24 +0,0 @@
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,23 +0,0 @@
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;