@esri/solution-creator 0.24.0 → 1.1.4
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/createItemTemplate.d.ts +5 -4
- package/dist/esm/createItemTemplate.js +89 -87
- package/dist/esm/createItemTemplate.js.map +1 -1
- package/dist/esm/creator.d.ts +10 -8
- package/dist/esm/creator.js +78 -72
- package/dist/esm/creator.js.map +1 -1
- package/dist/esm/helpers/add-content-to-solution.d.ts +5 -4
- package/dist/esm/helpers/add-content-to-solution.js +100 -92
- package/dist/esm/helpers/add-content-to-solution.js.map +1 -1
- package/dist/esm/module-map.js +7 -6
- package/dist/esm/module-map.js.map +1 -1
- package/dist/node/createItemTemplate.d.ts +5 -4
- package/dist/node/createItemTemplate.js +102 -100
- package/dist/node/createItemTemplate.js.map +1 -1
- package/dist/node/creator.d.ts +10 -8
- package/dist/node/creator.js +80 -74
- package/dist/node/creator.js.map +1 -1
- package/dist/node/helpers/add-content-to-solution.d.ts +5 -4
- package/dist/node/helpers/add-content-to-solution.js +112 -104
- package/dist/node/helpers/add-content-to-solution.js.map +1 -1
- package/dist/node/index.js +4 -4
- package/dist/node/index.js.map +1 -1
- package/dist/node/module-map.js +13 -12
- package/dist/node/module-map.js.map +1 -1
- package/dist/umd/createItemTemplate.d.ts +5 -4
- package/dist/umd/creator.d.ts +10 -8
- package/dist/umd/creator.umd.js +1240 -1271
- package/dist/umd/creator.umd.js.map +1 -1
- package/dist/umd/creator.umd.min.js +3 -3
- package/dist/umd/creator.umd.min.js.map +1 -1
- package/dist/umd/helpers/add-content-to-solution.d.ts +5 -4
- package/package.json +31 -30
|
@@ -18,19 +18,20 @@
|
|
|
18
18
|
*
|
|
19
19
|
* @module createItemTemplate
|
|
20
20
|
*/
|
|
21
|
-
import { IDatasourceInfo, IItemProgressCallback, IItemTemplate, UserSession } from "@esri/solution-common";
|
|
21
|
+
import { IDatasourceInfo, IItemProgressCallback, IItemTemplate, ISourceFile, UserSession } from "@esri/solution-common";
|
|
22
22
|
/**
|
|
23
23
|
* Creates template for an AGO item and its dependencies
|
|
24
24
|
*
|
|
25
25
|
* @param solutionItemId The solution to contain the item
|
|
26
26
|
* @param itemId AGO id string
|
|
27
27
|
* @param templateDictionary Hash of facts
|
|
28
|
-
* @param
|
|
28
|
+
* @param srcAuthentication Credentials for requests to source items
|
|
29
|
+
* @param destAuthentication Authentication for requesting information from AGO about items to be included in solution item
|
|
29
30
|
* @param existingTemplates A collection of AGO item templates that can be referenced by newly-created templates
|
|
30
|
-
* @return A promise
|
|
31
|
+
* @return A promise which resolves with an array of resources for the item and its dependencies
|
|
31
32
|
* @protected
|
|
32
33
|
*/
|
|
33
|
-
export declare function createItemTemplate(solutionItemId: string, itemId: string, templateDictionary: any,
|
|
34
|
+
export declare function createItemTemplate(solutionItemId: string, itemId: string, templateDictionary: any, srcAuthentication: UserSession, destAuthentication: UserSession, existingTemplates: IItemTemplate[], itemProgressCallback: IItemProgressCallback): Promise<ISourceFile[]>;
|
|
34
35
|
/**
|
|
35
36
|
* Templatizes field references within specific template types.
|
|
36
37
|
* Currently only handles web applications
|
|
@@ -13,13 +13,12 @@
|
|
|
13
13
|
* See the License for the specific language governing permissions and
|
|
14
14
|
* limitations under the License.
|
|
15
15
|
*/
|
|
16
|
-
import { __assign } from "tslib";
|
|
17
16
|
/**
|
|
18
17
|
* Manages creation of the template of a Solution item via the REST API.
|
|
19
18
|
*
|
|
20
19
|
* @module createItemTemplate
|
|
21
20
|
*/
|
|
22
|
-
import { cleanLayerBasedItemId, createPlaceholderTemplate, EItemProgressStatus, SolutionTemplateFormatVersion, findTemplateInList, getGroupBase, getItemBase, hasDatasource, replaceTemplate, sanitizeJSONAndReportChanges,
|
|
21
|
+
import { cleanLayerBasedItemId, createPlaceholderTemplate, EItemProgressStatus, SolutionTemplateFormatVersion, findTemplateInList, getGroupBase, getItemBase, hasDatasource, getItemResourcesFilesFromPaths, getItemResourcesPaths, replaceTemplate, sanitizeJSONAndReportChanges, fail } from "@esri/solution-common";
|
|
23
22
|
import { getProp } from "@esri/hub-common";
|
|
24
23
|
import { moduleMap, UNSUPPORTED } from "./module-map";
|
|
25
24
|
// ------------------------------------------------------------------------------------------------------------------ //
|
|
@@ -29,53 +28,50 @@ import { moduleMap, UNSUPPORTED } from "./module-map";
|
|
|
29
28
|
* @param solutionItemId The solution to contain the item
|
|
30
29
|
* @param itemId AGO id string
|
|
31
30
|
* @param templateDictionary Hash of facts
|
|
32
|
-
* @param
|
|
31
|
+
* @param srcAuthentication Credentials for requests to source items
|
|
32
|
+
* @param destAuthentication Authentication for requesting information from AGO about items to be included in solution item
|
|
33
33
|
* @param existingTemplates A collection of AGO item templates that can be referenced by newly-created templates
|
|
34
|
-
* @return A promise
|
|
34
|
+
* @return A promise which resolves with an array of resources for the item and its dependencies
|
|
35
35
|
* @protected
|
|
36
36
|
*/
|
|
37
|
-
export function createItemTemplate(solutionItemId, itemId, templateDictionary,
|
|
38
|
-
return new Promise(
|
|
37
|
+
export function createItemTemplate(solutionItemId, itemId, templateDictionary, srcAuthentication, destAuthentication, existingTemplates, itemProgressCallback) {
|
|
38
|
+
return new Promise(resolve => {
|
|
39
39
|
// Check if item and its dependents are already in list or are queued
|
|
40
40
|
if (findTemplateInList(existingTemplates, itemId)) {
|
|
41
|
-
resolve(
|
|
41
|
+
resolve([]);
|
|
42
42
|
}
|
|
43
43
|
else {
|
|
44
44
|
// Add the id as a placeholder to show that it is being fetched
|
|
45
45
|
existingTemplates.push(createPlaceholderTemplate(itemId));
|
|
46
46
|
itemProgressCallback(itemId, EItemProgressStatus.Started, 0);
|
|
47
47
|
// Fetch the item
|
|
48
|
-
getItemBase(itemId,
|
|
49
|
-
.catch(
|
|
48
|
+
getItemBase(itemId, srcAuthentication)
|
|
49
|
+
.catch(() => {
|
|
50
50
|
// If item query fails, try fetching item as a group
|
|
51
51
|
// Change its placeholder from an empty type to the Group type so that we can later distinguish
|
|
52
52
|
// between items and groups (the base info for a group doesn't include a type property)
|
|
53
53
|
replaceTemplate(existingTemplates, itemId, createPlaceholderTemplate(itemId, "Group"));
|
|
54
|
-
return getGroupBase(itemId,
|
|
54
|
+
return getGroupBase(itemId, srcAuthentication);
|
|
55
55
|
})
|
|
56
|
-
.then(
|
|
56
|
+
.then(itemInfo => {
|
|
57
57
|
itemInfo = sanitizeJSONAndReportChanges(itemInfo);
|
|
58
58
|
// Save the URL as a symbol
|
|
59
59
|
if (itemInfo.url) {
|
|
60
60
|
templateDictionary[itemInfo.url] = "{{" + itemInfo.id + ".url}}";
|
|
61
61
|
itemInfo.origUrl = itemInfo.url;
|
|
62
62
|
}
|
|
63
|
-
|
|
63
|
+
const idTest = /^source-[0-9A-F]{32}/i;
|
|
64
64
|
// Remove any source-itemId type keywords
|
|
65
65
|
if (Array.isArray(itemInfo.typeKeywords)) {
|
|
66
|
-
itemInfo.typeKeywords = itemInfo.typeKeywords.filter(
|
|
67
|
-
return idTest.test(v) ? false : true;
|
|
68
|
-
});
|
|
66
|
+
itemInfo.typeKeywords = itemInfo.typeKeywords.filter(v => idTest.test(v) ? false : true);
|
|
69
67
|
}
|
|
70
68
|
// Remove any source-itemId tags
|
|
71
69
|
/* istanbul ignore else */
|
|
72
70
|
if (Array.isArray(itemInfo.tags)) {
|
|
73
|
-
itemInfo.tags = itemInfo.tags.filter(
|
|
74
|
-
return idTest.test(v) ? false : true;
|
|
75
|
-
});
|
|
71
|
+
itemInfo.tags = itemInfo.tags.filter(v => idTest.test(v) ? false : true);
|
|
76
72
|
}
|
|
77
|
-
|
|
78
|
-
|
|
73
|
+
const placeholder = findTemplateInList(existingTemplates, itemId);
|
|
74
|
+
let itemType = placeholder.type;
|
|
79
75
|
if (!itemType) {
|
|
80
76
|
// Groups have this defined when their placeholder is created
|
|
81
77
|
itemType = itemInfo.type;
|
|
@@ -84,18 +80,20 @@ export function createItemTemplate(solutionItemId, itemId, templateDictionary, a
|
|
|
84
80
|
if (!itemInfo.type) {
|
|
85
81
|
itemInfo.type = itemType; // Groups don't have this property, so we'll patch it in
|
|
86
82
|
}
|
|
87
|
-
placeholder.item =
|
|
83
|
+
placeholder.item = {
|
|
84
|
+
...itemInfo
|
|
85
|
+
};
|
|
88
86
|
// Interrupt process if progress callback returns `false`
|
|
89
87
|
if (!itemProgressCallback(itemId, EItemProgressStatus.Created, 1)) {
|
|
90
88
|
itemProgressCallback(itemId, EItemProgressStatus.Cancelled, 1);
|
|
91
89
|
resolve(fail("Cancelled"));
|
|
92
90
|
return;
|
|
93
91
|
}
|
|
94
|
-
|
|
92
|
+
const itemHandler = moduleMap[itemType];
|
|
95
93
|
if (!itemHandler || itemHandler === UNSUPPORTED) {
|
|
96
94
|
if (itemHandler === UNSUPPORTED) {
|
|
97
95
|
itemProgressCallback(itemId, EItemProgressStatus.Ignored, 1);
|
|
98
|
-
resolve(
|
|
96
|
+
resolve([]);
|
|
99
97
|
}
|
|
100
98
|
else {
|
|
101
99
|
itemProgressCallback(itemId, EItemProgressStatus.Failed, 1);
|
|
@@ -117,50 +115,54 @@ export function createItemTemplate(solutionItemId, itemId, templateDictionary, a
|
|
|
117
115
|
} */
|
|
118
116
|
// Delegate the creation of the item to the handler
|
|
119
117
|
itemHandler
|
|
120
|
-
.convertItemToTemplate(solutionItemId, itemInfo,
|
|
121
|
-
.then(
|
|
118
|
+
.convertItemToTemplate(solutionItemId, itemInfo, destAuthentication, templateDictionary)
|
|
119
|
+
.then(itemTemplate => {
|
|
122
120
|
// eslint-disable-next-line @typescript-eslint/no-floating-promises
|
|
123
|
-
|
|
124
|
-
//
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
}
|
|
134
|
-
else {
|
|
135
|
-
// Get its dependencies, asking each to get its dependents via
|
|
136
|
-
// recursive calls to this function
|
|
137
|
-
var dependentDfds_1 = [];
|
|
138
|
-
itemTemplate.dependencies.forEach(function (dependentId) {
|
|
139
|
-
if (!findTemplateInList(existingTemplates, dependentId)) {
|
|
140
|
-
dependentDfds_1.push(createItemTemplate(solutionItemId, dependentId, templateDictionary, authentication, existingTemplates, itemProgressCallback));
|
|
141
|
-
}
|
|
142
|
-
});
|
|
143
|
-
// eslint-disable-next-line @typescript-eslint/no-floating-promises
|
|
144
|
-
Promise.all(dependentDfds_1).then(function () {
|
|
145
|
-
// Templatization of item and its dependencies done
|
|
121
|
+
getItemResourcesPaths(itemTemplate, solutionItemId, srcAuthentication, SolutionTemplateFormatVersion).then((resourceItemFilePaths) => {
|
|
122
|
+
itemTemplate.item.thumbnail = null; // not needed in this property; handled as a resource
|
|
123
|
+
// eslint-disable-next-line @typescript-eslint/no-floating-promises
|
|
124
|
+
getItemResourcesFilesFromPaths(resourceItemFilePaths, srcAuthentication).then((resourceItemFiles) => {
|
|
125
|
+
// update the template's resources
|
|
126
|
+
itemTemplate.resources = itemTemplate.resources.concat(resourceItemFiles.map((file) => file.folder + "/" + file.filename));
|
|
127
|
+
// Set the value keyed by the id to the created template, replacing the placeholder template
|
|
128
|
+
replaceTemplate(existingTemplates, itemTemplate.itemId, itemTemplate);
|
|
129
|
+
// Trace item dependencies
|
|
130
|
+
if (itemTemplate.dependencies.length === 0) {
|
|
146
131
|
itemProgressCallback(itemId, EItemProgressStatus.Finished, 1);
|
|
147
|
-
resolve(
|
|
148
|
-
}
|
|
149
|
-
|
|
132
|
+
resolve(resourceItemFiles);
|
|
133
|
+
}
|
|
134
|
+
else {
|
|
135
|
+
// Get its dependencies, asking each to get its dependents via
|
|
136
|
+
// recursive calls to this function
|
|
137
|
+
const dependentDfds = [];
|
|
138
|
+
itemTemplate.dependencies.forEach(dependentId => {
|
|
139
|
+
if (!findTemplateInList(existingTemplates, dependentId)) {
|
|
140
|
+
dependentDfds.push(createItemTemplate(solutionItemId, dependentId, templateDictionary, srcAuthentication, destAuthentication, existingTemplates, itemProgressCallback));
|
|
141
|
+
}
|
|
142
|
+
});
|
|
143
|
+
// eslint-disable-next-line @typescript-eslint/no-floating-promises
|
|
144
|
+
Promise.all(dependentDfds).then((dependentResourceItemFiles) => {
|
|
145
|
+
// Templatization of item and its dependencies done
|
|
146
|
+
itemProgressCallback(itemId, EItemProgressStatus.Finished, 1);
|
|
147
|
+
resourceItemFiles = dependentResourceItemFiles.reduce((accumulator, currentValue) => accumulator.concat(currentValue), resourceItemFiles);
|
|
148
|
+
resolve(resourceItemFiles);
|
|
149
|
+
});
|
|
150
|
+
}
|
|
151
|
+
});
|
|
150
152
|
});
|
|
151
|
-
},
|
|
153
|
+
}, error => {
|
|
152
154
|
placeholder.properties["error"] = JSON.stringify(error);
|
|
153
155
|
replaceTemplate(existingTemplates, itemId, placeholder);
|
|
154
156
|
itemProgressCallback(itemId, EItemProgressStatus.Failed, 1);
|
|
155
|
-
resolve(
|
|
157
|
+
resolve([]);
|
|
156
158
|
});
|
|
157
159
|
}
|
|
158
160
|
},
|
|
159
161
|
// Id not found or item is not accessible
|
|
160
|
-
|
|
162
|
+
() => {
|
|
161
163
|
itemProgressCallback(itemId, EItemProgressStatus.Failed, 1);
|
|
162
164
|
itemProgressCallback(itemId, EItemProgressStatus.Failed, 1);
|
|
163
|
-
resolve(
|
|
165
|
+
resolve([]);
|
|
164
166
|
});
|
|
165
167
|
}
|
|
166
168
|
});
|
|
@@ -173,20 +175,20 @@ export function createItemTemplate(solutionItemId, itemId, templateDictionary, a
|
|
|
173
175
|
* @return A list of templates that have templatized field references
|
|
174
176
|
*/
|
|
175
177
|
export function postProcessFieldReferences(templates) {
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
return templates.map(
|
|
178
|
+
const datasourceInfos = _getDatasourceInfos(templates);
|
|
179
|
+
const templateTypeHash = _getTemplateTypeHash(templates);
|
|
180
|
+
return templates.map(template => {
|
|
179
181
|
/* istanbul ignore else */
|
|
180
182
|
if (template.type === "Web Mapping Application" ||
|
|
181
183
|
template.type === "Dashboard" ||
|
|
182
184
|
template.type === "Web Map") {
|
|
183
|
-
|
|
184
|
-
|
|
185
|
+
const webMapFSDependencies = _getWebMapFSDependencies(template, templateTypeHash);
|
|
186
|
+
const itemHandler = moduleMap[template.item.type];
|
|
185
187
|
/* istanbul ignore else */
|
|
186
188
|
if (itemHandler) {
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
if (
|
|
189
|
+
const dependencies = webMapFSDependencies.concat(template.dependencies);
|
|
190
|
+
let dependantDatasources = datasourceInfos.filter(ds => {
|
|
191
|
+
if (dependencies.indexOf(ds.itemId) > -1) {
|
|
190
192
|
return ds;
|
|
191
193
|
}
|
|
192
194
|
});
|
|
@@ -207,13 +209,13 @@ export function postProcessFieldReferences(templates) {
|
|
|
207
209
|
* @return A list of IDataSourceInfo objects with key properties
|
|
208
210
|
*/
|
|
209
211
|
export function _getDatasourceInfos(templates) {
|
|
210
|
-
|
|
211
|
-
templates.forEach(
|
|
212
|
+
const datasourceInfos = [];
|
|
213
|
+
templates.forEach(t => {
|
|
212
214
|
if (t.type === "Feature Service") {
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
layersAndTables.forEach(
|
|
215
|
+
const layers = getProp(t, "properties.layers") || [];
|
|
216
|
+
const tables = getProp(t, "properties.tables") || [];
|
|
217
|
+
const layersAndTables = layers.concat(tables);
|
|
218
|
+
layersAndTables.forEach(obj => {
|
|
217
219
|
/* istanbul ignore else */
|
|
218
220
|
if (!hasDatasource(datasourceInfos, t.itemId, obj.id)) {
|
|
219
221
|
datasourceInfos.push({
|
|
@@ -240,8 +242,8 @@ export function _getDatasourceInfos(templates) {
|
|
|
240
242
|
* @return The lookup object with type, dependencies, and webmap layer info
|
|
241
243
|
*/
|
|
242
244
|
export function _getTemplateTypeHash(templates) {
|
|
243
|
-
|
|
244
|
-
templates.forEach(
|
|
245
|
+
const templateTypeHash = {};
|
|
246
|
+
templates.forEach(template => {
|
|
245
247
|
templateTypeHash[template.itemId] = {
|
|
246
248
|
type: template.type,
|
|
247
249
|
dependencies: template.dependencies
|
|
@@ -260,14 +262,14 @@ export function _getTemplateTypeHash(templates) {
|
|
|
260
262
|
* @return The lookup object with webmap layer info added
|
|
261
263
|
*/
|
|
262
264
|
export function _updateWebMapHashInfo(template, hashItem) {
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
265
|
+
const operationalLayers = getProp(template, "data.operationalLayers") || [];
|
|
266
|
+
const tables = getProp(template, "data.tables") || [];
|
|
267
|
+
const layersAndTables = operationalLayers.concat(tables);
|
|
266
268
|
if (layersAndTables && layersAndTables.length > 0) {
|
|
267
269
|
hashItem.layersAndTables = [];
|
|
268
|
-
layersAndTables.forEach(
|
|
269
|
-
|
|
270
|
-
|
|
270
|
+
layersAndTables.forEach(layer => {
|
|
271
|
+
const obj = {};
|
|
272
|
+
let itemId;
|
|
271
273
|
/* istanbul ignore else */
|
|
272
274
|
if (layer.itemId) {
|
|
273
275
|
itemId = layer.itemId;
|
|
@@ -304,16 +306,16 @@ export function _addLayerIdToDatasourceUrl(datasourceUrl, layerId) {
|
|
|
304
306
|
* @return The updated datasource infos
|
|
305
307
|
*/
|
|
306
308
|
export function _addMapLayerIds(datasourceInfos, templateTypeHash) {
|
|
307
|
-
|
|
309
|
+
const webMapIds = Object.keys(templateTypeHash).filter(k => {
|
|
308
310
|
if (templateTypeHash[k].type === "Web Map") {
|
|
309
311
|
return templateTypeHash[k];
|
|
310
312
|
}
|
|
311
313
|
});
|
|
312
|
-
return datasourceInfos.map(
|
|
313
|
-
webMapIds.forEach(
|
|
314
|
-
templateTypeHash[webMapId].layersAndTables.forEach(
|
|
315
|
-
|
|
316
|
-
|
|
314
|
+
return datasourceInfos.map(ds => {
|
|
315
|
+
webMapIds.forEach(webMapId => {
|
|
316
|
+
templateTypeHash[webMapId].layersAndTables.forEach((opLayer) => {
|
|
317
|
+
const opLayerInfo = opLayer[ds.itemId];
|
|
318
|
+
const url = _addLayerIdToDatasourceUrl(ds.url, ds.layerId);
|
|
317
319
|
if (opLayerInfo &&
|
|
318
320
|
url === opLayerInfo.url &&
|
|
319
321
|
ds.ids.indexOf(opLayerInfo.id) < 0) {
|
|
@@ -333,11 +335,11 @@ export function _addMapLayerIds(datasourceInfos, templateTypeHash) {
|
|
|
333
335
|
* @return A lsit of feature service item IDs
|
|
334
336
|
*/
|
|
335
337
|
export function _getWebMapFSDependencies(template, templateTypeHash) {
|
|
336
|
-
|
|
337
|
-
template.dependencies.forEach(
|
|
338
|
-
|
|
338
|
+
const webMapFSDependencies = [];
|
|
339
|
+
template.dependencies.forEach(dep => {
|
|
340
|
+
const depObj = templateTypeHash[dep];
|
|
339
341
|
if (depObj.type === "Web Map") {
|
|
340
|
-
depObj.dependencies.forEach(
|
|
342
|
+
depObj.dependencies.forEach((depObjDependency) => {
|
|
341
343
|
/* istanbul ignore else */
|
|
342
344
|
if (templateTypeHash[depObjDependency].type === "Feature Service") {
|
|
343
345
|
webMapFSDependencies.push(depObjDependency);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"createItemTemplate.js","sourceRoot":"","sources":["../../src/createItemTemplate.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;GAcG
|
|
1
|
+
{"version":3,"file":"createItemTemplate.js","sourceRoot":"","sources":["../../src/createItemTemplate.ts"],"names":[],"mappings":"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"}
|
package/dist/esm/creator.d.ts
CHANGED
|
@@ -24,11 +24,12 @@ import { IModel } from "@esri/hub-common";
|
|
|
24
24
|
* Creates a solution item.
|
|
25
25
|
*
|
|
26
26
|
* @param sourceId AGO id of group whose contents are to be added to solution or of an item to convert into a solution
|
|
27
|
-
* @param
|
|
27
|
+
* @param srcAuthentication Credentials for requests to source items
|
|
28
|
+
* @param destAuthentication Credentials for the requests to destination solution
|
|
28
29
|
* @param options Customizations for creating the solution
|
|
29
30
|
* @return A promise that resolves with the AGO id of the new solution
|
|
30
31
|
*/
|
|
31
|
-
export declare function createSolution(sourceId: string,
|
|
32
|
+
export declare function createSolution(sourceId: string, srcAuthentication: UserSession, destAuthentication: UserSession, options?: ICreateSolutionOptions): Promise<string>;
|
|
32
33
|
/**
|
|
33
34
|
* Update the createOptions with the group properties
|
|
34
35
|
*
|
|
@@ -38,25 +39,26 @@ export declare function createSolution(sourceId: string, authentication: UserSes
|
|
|
38
39
|
* @param isGroup Boolean to indicate if the files are associated with a group or item
|
|
39
40
|
* @internal
|
|
40
41
|
*/
|
|
41
|
-
export declare function _applySourceToCreateOptions(createOptions: ICreateSolutionOptions, sourceInfo: IGroup | IItem,
|
|
42
|
+
export declare function _applySourceToCreateOptions(createOptions: ICreateSolutionOptions, sourceInfo: IGroup | IItem, srcAuthentication: UserSession, isGroup?: boolean): ICreateSolutionOptions;
|
|
42
43
|
/**
|
|
43
44
|
* Update the createOptions with the thumbnail file
|
|
44
45
|
*
|
|
45
46
|
* @param createOptions
|
|
46
|
-
* @param
|
|
47
|
+
* @param srcAuthentication
|
|
47
48
|
* @internal
|
|
48
49
|
*/
|
|
49
|
-
export declare function _addThumbnailFileToCreateOptions(createOptions: ICreateSolutionOptions,
|
|
50
|
+
export declare function _addThumbnailFileToCreateOptions(createOptions: ICreateSolutionOptions, srcAuthentication: UserSession): Promise<ICreateSolutionOptions>;
|
|
50
51
|
/**
|
|
51
52
|
* Creates a solution item using a list of AGO item ids.
|
|
52
53
|
*
|
|
53
54
|
* @param options Customizations for creating the solution
|
|
54
|
-
* @param
|
|
55
|
+
* @param srcAuthentication Credentials for requests to source items
|
|
56
|
+
* @param destAuthentication Credentials for the requests to destination solution
|
|
55
57
|
* @return A promise that resolves with the AGO id of the new solution; solution item is deleted if its
|
|
56
58
|
* there is a problem updating it
|
|
57
59
|
* @internal
|
|
58
60
|
*/
|
|
59
|
-
export declare function _createSolutionFromItemIds(options: ICreateSolutionOptions,
|
|
61
|
+
export declare function _createSolutionFromItemIds(options: ICreateSolutionOptions, srcAuthentication: UserSession, destAuthentication: UserSession): Promise<string>;
|
|
60
62
|
/**
|
|
61
63
|
* Creates an empty solution item.
|
|
62
64
|
*
|
|
@@ -79,7 +81,7 @@ export declare function _createSolutionItemModel(options: any): IModel;
|
|
|
79
81
|
* Gets the deploy.id and deploy.version tag values.
|
|
80
82
|
*
|
|
81
83
|
* @param tags A list of item tags
|
|
82
|
-
* @return A list
|
|
84
|
+
* @return A list containing the two values found in the tags, or defaulting to a new GUID and "1.0", respectively,
|
|
83
85
|
* as needed
|
|
84
86
|
* @internal
|
|
85
87
|
*/
|