@esri/solution-deployer 6.6.1-next.8 → 6.6.1-next.81

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.
@@ -177,6 +177,10 @@ async function deploySolutionFromTemplate(templateSolutionId, solutionTemplateBa
177
177
  if (iTemplateKeyword >= 0) {
178
178
  solutionTemplateBase.typeKeywords.splice(iTemplateKeyword, 1);
179
179
  }
180
+ const iBuildKeyword = solutionTemplateBase.typeKeywords.indexOf("Build");
181
+ if (iBuildKeyword >= 0) {
182
+ solutionTemplateBase.typeKeywords.splice(iBuildKeyword, 1);
183
+ }
180
184
  solutionTemplateData.templates = solutionTemplateData.templates.map((itemTemplate) => _purgeTemplateProperties(itemTemplate));
181
185
  _handleWorkflowManagedTemplates(preProcessResponse, solutionTemplateData);
182
186
  solutionTemplateData.templates = _updateGroupReferences(solutionTemplateData.templates, templateDictionary);
@@ -136,7 +136,7 @@ function deploySolutionItems(portalSharingUrl, storageItemId, templates, storage
136
136
  // eslint-disable-next-line @typescript-eslint/no-floating-promises
137
137
  useExistingItemsDef.then(() => {
138
138
  checkCancelled();
139
- templates = common.setNamesAndTitles(templates);
139
+ templates = common.setNamesAndTitles(templates, templateDictionary);
140
140
  buildOrder.forEach((id) => {
141
141
  // Get the item's template out of the list of templates
142
142
  const template = common.findTemplateInList(templates, id);
@@ -173,6 +173,10 @@ export async function deploySolutionFromTemplate(templateSolutionId, solutionTem
173
173
  if (iTemplateKeyword >= 0) {
174
174
  solutionTemplateBase.typeKeywords.splice(iTemplateKeyword, 1);
175
175
  }
176
+ const iBuildKeyword = solutionTemplateBase.typeKeywords.indexOf("Build");
177
+ if (iBuildKeyword >= 0) {
178
+ solutionTemplateBase.typeKeywords.splice(iBuildKeyword, 1);
179
+ }
176
180
  solutionTemplateData.templates = solutionTemplateData.templates.map((itemTemplate) => _purgeTemplateProperties(itemTemplate));
177
181
  _handleWorkflowManagedTemplates(preProcessResponse, solutionTemplateData);
178
182
  solutionTemplateData.templates = _updateGroupReferences(solutionTemplateData.templates, templateDictionary);
@@ -132,7 +132,7 @@ export function deploySolutionItems(portalSharingUrl, storageItemId, templates,
132
132
  // eslint-disable-next-line @typescript-eslint/no-floating-promises
133
133
  useExistingItemsDef.then(() => {
134
134
  checkCancelled();
135
- templates = common.setNamesAndTitles(templates);
135
+ templates = common.setNamesAndTitles(templates, templateDictionary);
136
136
  buildOrder.forEach((id) => {
137
137
  // Get the item's template out of the list of templates
138
138
  const template = common.findTemplateInList(templates, id);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@esri/solution-deployer",
3
- "version": "6.6.1-next.8",
3
+ "version": "6.6.1-next.81",
4
4
  "description": "Manages the deployment of a Solution for @esri/solution.js.",
5
5
  "main": "dist/cjs/index.js",
6
6
  "module": "dist/esm/index.js",
@@ -24,18 +24,18 @@
24
24
  },
25
25
  "dependencies": {
26
26
  "@esri/hub-common": "^17.0.2",
27
- "@esri/solution-common": "^6.6.1-next.8",
28
- "@esri/solution-feature-layer": "^6.6.1-next.8",
29
- "@esri/solution-file": "^6.6.1-next.8",
30
- "@esri/solution-form": "^6.6.1-next.8",
31
- "@esri/solution-group": "^6.6.1-next.8",
32
- "@esri/solution-hub-types": "^6.6.1-next.8",
33
- "@esri/solution-simple-types": "^6.6.1-next.8",
34
- "@esri/solution-storymap": "^6.6.1-next.8",
35
- "@esri/solution-velocity": "^6.6.1-next.8",
36
- "@esri/solution-web-experience": "^6.6.1-next.8",
37
- "@esri/solution-web-tool": "^6.6.1-next.8",
38
- "@esri/solution-workflow": "^6.6.1-next.8",
27
+ "@esri/solution-common": "^6.6.1-next.81",
28
+ "@esri/solution-feature-layer": "^6.6.1-next.81",
29
+ "@esri/solution-file": "^6.6.1-next.81",
30
+ "@esri/solution-form": "^6.6.1-next.81",
31
+ "@esri/solution-group": "^6.6.1-next.81",
32
+ "@esri/solution-hub-types": "^6.6.1-next.81",
33
+ "@esri/solution-simple-types": "^6.6.1-next.81",
34
+ "@esri/solution-storymap": "^6.6.1-next.81",
35
+ "@esri/solution-velocity": "^6.6.1-next.81",
36
+ "@esri/solution-web-experience": "^6.6.1-next.81",
37
+ "@esri/solution-web-tool": "^6.6.1-next.81",
38
+ "@esri/solution-workflow": "^6.6.1-next.81",
39
39
  "tslib": "1.14.1"
40
40
  },
41
41
  "scripts": {
@@ -90,5 +90,5 @@
90
90
  "esri",
91
91
  "ES6"
92
92
  ],
93
- "gitHead": "8814f2ac401b02f60559d7007e180cc17c321473"
93
+ "gitHead": "8bce353fe3c3c3286c3d17f2c47ad0608160e78a"
94
94
  }