@esri/solution-deployer 1.1.3 → 1.3.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/deploySolutionFromTemplate.d.ts +7 -0
- package/dist/esm/deploySolutionFromTemplate.js +18 -16
- package/dist/esm/deploySolutionFromTemplate.js.map +1 -1
- package/dist/esm/deploySolutionItems.js +1 -1
- package/dist/esm/deploySolutionItems.js.map +1 -1
- package/dist/node/deploySolutionFromTemplate.d.ts +7 -0
- package/dist/node/deploySolutionFromTemplate.js +24 -20
- package/dist/node/deploySolutionFromTemplate.js.map +1 -1
- package/dist/node/deploySolutionItems.js +3 -2
- package/dist/node/deploySolutionItems.js.map +1 -1
- package/dist/node/deployer.js +2 -1
- package/dist/node/deployer.js.map +1 -1
- package/dist/node/deployerUtils.js +2 -1
- package/dist/node/deployerUtils.js.map +1 -1
- package/dist/node/module-map.js +5 -4
- package/dist/node/module-map.js.map +1 -1
- package/dist/umd/deploySolutionFromTemplate.d.ts +7 -0
- package/dist/umd/deployer.umd.js +240 -212
- package/dist/umd/deployer.umd.js.map +1 -1
- package/dist/umd/deployer.umd.min.js +4 -4
- package/dist/umd/deployer.umd.min.js.map +1 -1
- package/package.json +32 -33
|
@@ -15,6 +15,13 @@
|
|
|
15
15
|
*/
|
|
16
16
|
import * as common from "@esri/solution-common";
|
|
17
17
|
export declare function deploySolutionFromTemplate(templateSolutionId: string, solutionTemplateBase: any, solutionTemplateData: any, authentication: common.UserSession, options: common.IDeploySolutionOptions): Promise<string>;
|
|
18
|
+
/**
|
|
19
|
+
* Add source-id to items/groups typeKeywords
|
|
20
|
+
*
|
|
21
|
+
* @param template the array of solution data templates
|
|
22
|
+
* @internal
|
|
23
|
+
*/
|
|
24
|
+
export declare function _addSourceId(templates: common.IItemTemplate[]): common.IItemTemplate[];
|
|
18
25
|
/**
|
|
19
26
|
* Update the deployOptions with the group properties
|
|
20
27
|
*
|