@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.
- package/dist/esm/deploySolutionItems.js +1 -1
- package/dist/esm/deploySolutionItems.js.map +1 -1
- package/package.json +13 -13
- package/dist/node/deploySolutionFromTemplate.d.ts +0 -48
- package/dist/node/deploySolutionFromTemplate.js +0 -332
- package/dist/node/deploySolutionFromTemplate.js.map +0 -1
- package/dist/node/deploySolutionItems.d.ts +0 -224
- package/dist/node/deploySolutionItems.js +0 -850
- package/dist/node/deploySolutionItems.js.map +0 -1
- package/dist/node/deployer.d.ts +0 -34
- package/dist/node/deployer.js +0 -102
- package/dist/node/deployer.js.map +0 -1
- package/dist/node/deployerUtils.d.ts +0 -47
- package/dist/node/deployerUtils.js +0 -124
- package/dist/node/deployerUtils.js.map +0 -1
- package/dist/node/helpers/post-process.d.ts +0 -29
- package/dist/node/helpers/post-process.js +0 -62
- package/dist/node/helpers/post-process.js.map +0 -1
- package/dist/node/helpers/share-templates-to-groups.d.ts +0 -24
- package/dist/node/helpers/share-templates-to-groups.js +0 -65
- package/dist/node/helpers/share-templates-to-groups.js.map +0 -1
- package/dist/node/helpers/sortTemplates.d.ts +0 -23
- package/dist/node/helpers/sortTemplates.js +0 -15
- package/dist/node/helpers/sortTemplates.js.map +0 -1
- package/dist/node/index.d.ts +0 -24
- package/dist/node/index.js +0 -28
- package/dist/node/index.js.map +0 -1
- package/dist/node/module-map.d.ts +0 -23
- package/dist/node/module-map.js +0 -195
- package/dist/node/module-map.js.map +0 -1
- package/dist/umd/deployer/src/deploySolutionFromTemplate.d.ts +0 -48
- package/dist/umd/deployer/src/deploySolutionItems.d.ts +0 -224
- package/dist/umd/deployer/src/deployer.d.ts +0 -34
- package/dist/umd/deployer/src/deployerUtils.d.ts +0 -47
- package/dist/umd/deployer/src/helpers/post-process.d.ts +0 -29
- package/dist/umd/deployer/src/helpers/share-templates-to-groups.d.ts +0 -24
- package/dist/umd/deployer/src/helpers/sortTemplates.d.ts +0 -23
- package/dist/umd/deployer/src/index.d.ts +0 -24
- package/dist/umd/deployer/src/module-map.d.ts +0 -23
- package/dist/umd/deployer.umd.js +0 -1710
- package/dist/umd/deployer.umd.js.map +0 -1
- package/dist/umd/deployer.umd.min.js +0 -19
- 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;
|