@esri/solution-simple-types 4.1.2 → 5.0.1

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 (69) hide show
  1. package/dist/cjs/dashboard.d.ts +93 -93
  2. package/dist/cjs/dashboard.js +352 -352
  3. package/dist/cjs/helpers/convert-item-to-template.d.ts +46 -46
  4. package/dist/cjs/helpers/convert-item-to-template.js +235 -209
  5. package/dist/cjs/helpers/convert-item-to-template.js.map +1 -1
  6. package/dist/cjs/helpers/create-item-from-template.d.ts +17 -17
  7. package/dist/cjs/helpers/create-item-from-template.js +153 -138
  8. package/dist/cjs/helpers/create-item-from-template.js.map +1 -1
  9. package/dist/cjs/helpers/notebook-helpers.d.ts +19 -19
  10. package/dist/cjs/helpers/notebook-helpers.js +24 -24
  11. package/dist/cjs/helpers/quickcapture-helpers.d.ts +18 -18
  12. package/dist/cjs/helpers/quickcapture-helpers.js +22 -22
  13. package/dist/cjs/helpers/simple-type-helpers.d.ts +18 -18
  14. package/dist/cjs/helpers/simple-type-helpers.js +22 -22
  15. package/dist/cjs/helpers/update-notebook-data.d.ts +17 -17
  16. package/dist/cjs/helpers/update-notebook-data.js +27 -27
  17. package/dist/cjs/index.d.ts +27 -27
  18. package/dist/cjs/index.js +36 -36
  19. package/dist/cjs/notebook.d.ts +66 -66
  20. package/dist/cjs/notebook.js +133 -133
  21. package/dist/cjs/oic.d.ts +53 -53
  22. package/dist/cjs/oic.js +170 -170
  23. package/dist/cjs/quickcapture.d.ts +76 -87
  24. package/dist/cjs/quickcapture.js +143 -192
  25. package/dist/cjs/quickcapture.js.map +1 -1
  26. package/dist/cjs/simple-types.d.ts +57 -57
  27. package/dist/cjs/simple-types.js +94 -94
  28. package/dist/cjs/webmap.d.ts +102 -102
  29. package/dist/cjs/webmap.js +325 -325
  30. package/dist/cjs/webmappingapplication.d.ts +176 -176
  31. package/dist/cjs/webmappingapplication.js +674 -674
  32. package/dist/cjs/webmappingapplication.js.map +1 -1
  33. package/dist/cjs/workforce.d.ts +34 -34
  34. package/dist/cjs/workforce.js +44 -44
  35. package/dist/esm/dashboard.d.ts +93 -93
  36. package/dist/esm/dashboard.js +339 -339
  37. package/dist/esm/helpers/convert-item-to-template.d.ts +46 -46
  38. package/dist/esm/helpers/convert-item-to-template.js +228 -202
  39. package/dist/esm/helpers/convert-item-to-template.js.map +1 -1
  40. package/dist/esm/helpers/create-item-from-template.d.ts +17 -17
  41. package/dist/esm/helpers/create-item-from-template.js +148 -133
  42. package/dist/esm/helpers/create-item-from-template.js.map +1 -1
  43. package/dist/esm/helpers/notebook-helpers.d.ts +19 -19
  44. package/dist/esm/helpers/notebook-helpers.js +20 -20
  45. package/dist/esm/helpers/quickcapture-helpers.d.ts +18 -18
  46. package/dist/esm/helpers/quickcapture-helpers.js +19 -19
  47. package/dist/esm/helpers/simple-type-helpers.d.ts +18 -18
  48. package/dist/esm/helpers/simple-type-helpers.js +19 -19
  49. package/dist/esm/helpers/update-notebook-data.d.ts +17 -17
  50. package/dist/esm/helpers/update-notebook-data.js +23 -23
  51. package/dist/esm/index.d.ts +27 -27
  52. package/dist/esm/index.js +27 -27
  53. package/dist/esm/notebook.d.ts +66 -66
  54. package/dist/esm/notebook.js +123 -123
  55. package/dist/esm/oic.d.ts +53 -53
  56. package/dist/esm/oic.js +162 -162
  57. package/dist/esm/quickcapture.d.ts +76 -87
  58. package/dist/esm/quickcapture.js +131 -179
  59. package/dist/esm/quickcapture.js.map +1 -1
  60. package/dist/esm/simple-types.d.ts +57 -57
  61. package/dist/esm/simple-types.js +86 -86
  62. package/dist/esm/webmap.d.ts +102 -102
  63. package/dist/esm/webmap.js +312 -312
  64. package/dist/esm/webmappingapplication.d.ts +176 -176
  65. package/dist/esm/webmappingapplication.js +648 -648
  66. package/dist/esm/webmappingapplication.js.map +1 -1
  67. package/dist/esm/workforce.d.ts +34 -34
  68. package/dist/esm/workforce.js +38 -38
  69. package/package.json +7 -7
@@ -1,134 +1,149 @@
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 * as common from "@esri/solution-common";
17
- import * as notebook from "../notebook";
18
- import * as webmappingapplication from "../webmappingapplication";
19
- import * as workforce from "../workforce";
20
- export function createItemFromTemplate(template, templateDictionary, destinationAuthentication, itemProgressCallback) {
21
- return new Promise(resolve => {
22
- // Interrupt process if progress callback returns `false`
23
- if (!itemProgressCallback(template.itemId, common.EItemProgressStatus.Started, 0)) {
24
- itemProgressCallback(template.itemId, common.EItemProgressStatus.Ignored, 0);
25
- resolve(common.generateEmptyCreationResponse(template.type));
26
- }
27
- else {
28
- // Replace the templatized symbols in a copy of the template
29
- let newItemTemplate = common.cloneObject(template);
30
- newItemTemplate = common.replaceInTemplate(newItemTemplate, templateDictionary);
31
- // Create the item, then update its URL with its new id
32
- // some fieldnames are used as keys for objects
33
- // when we templatize field references for web applications we first stringify the components of the
34
- // web application that could contain field references and then serach for them with a regular expression.
35
- // We also need to stringify the web application when de-templatizing so it will find all of these occurrences as well.
36
- if (template.type === "Web Mapping Application" && template.data) {
37
- newItemTemplate = JSON.parse(common.replaceInTemplate(JSON.stringify(newItemTemplate), templateDictionary));
38
- }
39
- if (template.item.thumbnail) {
40
- newItemTemplate.item.thumbnail = template.item.thumbnail; // make sure that our File is still there
41
- }
42
- common
43
- .createItemWithData(newItemTemplate.item, newItemTemplate.data, destinationAuthentication, templateDictionary.folderId)
44
- .then(createResponse => {
45
- // Interrupt process if progress callback returns `false`
46
- if (!itemProgressCallback(template.itemId, common.EItemProgressStatus.Created, template.estimatedDeploymentCostFactor / 2, createResponse.id)) {
47
- itemProgressCallback(template.itemId, common.EItemProgressStatus.Cancelled, 0);
48
- common
49
- .removeItem(createResponse.id, destinationAuthentication)
50
- .then(() => resolve(common.generateEmptyCreationResponse(template.type)), () => resolve(common.generateEmptyCreationResponse(template.type)));
51
- }
52
- else {
53
- // Add the new item to the settings
54
- templateDictionary[template.itemId] = {
55
- itemId: createResponse.id,
56
- itemUrl: templateDictionary["portalBaseUrl"] + "/sharing/rest/content/items/" + createResponse.id
57
- };
58
- newItemTemplate.itemId = createResponse.id;
59
- // Set the appItemId manually to get around cases where the path was incorrectly set
60
- // in legacy deployments
61
- if (newItemTemplate.type === "Web Mapping Application" &&
62
- template.data) {
63
- common.setProp(newItemTemplate, "data.appItemId", createResponse.id);
64
- }
65
- const postProcess = common.hasUnresolvedVariables(newItemTemplate.data);
66
- // Update the template again now that we have the new item id
67
- const originalURL = newItemTemplate.item.url;
68
- newItemTemplate = common.replaceInTemplate(newItemTemplate, templateDictionary);
69
- // Update relationships
70
- let relationshipsDef = Promise.resolve([]);
71
- if (newItemTemplate.relatedItems) {
72
- // Templatize references in relationships obj
73
- const updatedRelatedItems = common.replaceInTemplate(common.templatizeIds(newItemTemplate.relatedItems), templateDictionary);
74
- // Add the relationships
75
- relationshipsDef = common.addForwardItemRelationships(newItemTemplate.itemId, updatedRelatedItems, destinationAuthentication);
76
- }
77
- // Check for extra processing for web mapping application et al.
78
- let customProcDef;
79
- if (template.type === "Web Mapping Application" &&
80
- template.data &&
81
- common.hasAnyKeyword(template, [
82
- "WAB2D",
83
- "WAB3D",
84
- "Web AppBuilder"
85
- ])) {
86
- // If this is a Web AppBuilder application, we will create a Code Attachment for downloading
87
- customProcDef = webmappingapplication.fineTuneCreatedItem(template, newItemTemplate, templateDictionary, destinationAuthentication);
88
- }
89
- else if (template.type === "Workforce Project") {
90
- customProcDef = workforce.fineTuneCreatedItem(newItemTemplate, destinationAuthentication, templateDictionary);
91
- }
92
- else if (template.type === "Notebook") {
93
- customProcDef = notebook.fineTuneCreatedItem(template, newItemTemplate, templateDictionary, destinationAuthentication);
94
- }
95
- else if (originalURL !== newItemTemplate.item.url) {
96
- // For web mapping applications that are not Web AppBuilder apps
97
- customProcDef = new Promise((resolve2, reject2) => {
98
- common
99
- .updateItemURL(createResponse.id, newItemTemplate.item.url, destinationAuthentication)
100
- .then(() => resolve2(), reject2);
101
- });
102
- }
103
- else {
104
- customProcDef = Promise.resolve(null);
105
- }
106
- Promise.all([relationshipsDef, customProcDef]).then(() => {
107
- // Interrupt process if progress callback returns `false`
108
- if (!itemProgressCallback(template.itemId, common.EItemProgressStatus.Finished, template.estimatedDeploymentCostFactor / 2, createResponse.id)) {
109
- itemProgressCallback(template.itemId, common.EItemProgressStatus.Cancelled, 0);
110
- common
111
- .removeItem(createResponse.id, destinationAuthentication)
112
- .then(() => resolve(common.generateEmptyCreationResponse(template.type)), () => resolve(common.generateEmptyCreationResponse(template.type)));
113
- }
114
- else {
115
- resolve({
116
- item: newItemTemplate,
117
- id: createResponse.id,
118
- type: newItemTemplate.type,
119
- postProcess: postProcess
120
- });
121
- }
122
- }, () => {
123
- itemProgressCallback(template.itemId, common.EItemProgressStatus.Failed, 0);
124
- resolve(common.generateEmptyCreationResponse(template.type)); // fails to deploy all resources to the item
125
- });
126
- }
127
- }, () => {
128
- itemProgressCallback(template.itemId, common.EItemProgressStatus.Failed, 0);
129
- resolve(common.generateEmptyCreationResponse(template.type)); // fails to create item
130
- });
131
- }
132
- });
133
- }
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 * as common from "@esri/solution-common";
17
+ import * as notebook from "../notebook";
18
+ import * as webmappingapplication from "../webmappingapplication";
19
+ import * as workforce from "../workforce";
20
+ export function createItemFromTemplate(template, templateDictionary, destinationAuthentication, itemProgressCallback) {
21
+ return new Promise(resolve => {
22
+ // Interrupt process if progress callback returns `false`
23
+ if (!itemProgressCallback(template.itemId, common.EItemProgressStatus.Started, 0)) {
24
+ itemProgressCallback(template.itemId, common.EItemProgressStatus.Ignored, 0);
25
+ resolve(common.generateEmptyCreationResponse(template.type));
26
+ }
27
+ else {
28
+ // Replace the templatized symbols in a copy of the template
29
+ let newItemTemplate = common.cloneObject(template);
30
+ newItemTemplate = common.replaceInTemplate(newItemTemplate, templateDictionary);
31
+ let qcProjectFileContents;
32
+ // Create the item, then update its URL with its new id
33
+ // some fieldnames are used as keys for objects
34
+ // when we templatize field references for web applications we first stringify the components of the
35
+ // web application that could contain field references and then search for them with a regular expression.
36
+ // We also need to stringify the web application when de-templatizing so it will find all of these occurrences as well.
37
+ if (template.type === "Web Mapping Application" && template.data) {
38
+ newItemTemplate = JSON.parse(common.replaceInTemplate(JSON.stringify(newItemTemplate), templateDictionary));
39
+ }
40
+ else if (template.type === "QuickCapture Project" && template.data) {
41
+ // Save the data section for creating the qc.project.json later
42
+ qcProjectFileContents = JSON.stringify(newItemTemplate.data.application);
43
+ // Delete the data section
44
+ delete newItemTemplate.data;
45
+ }
46
+ if (template.item.thumbnail) {
47
+ newItemTemplate.item.thumbnail = template.item.thumbnail; // make sure that our File is still there
48
+ }
49
+ common
50
+ .createItemWithData(newItemTemplate.item, newItemTemplate.data, destinationAuthentication, templateDictionary.folderId)
51
+ .then(createResponse => {
52
+ // Interrupt process if progress callback returns `false`
53
+ if (!itemProgressCallback(template.itemId, common.EItemProgressStatus.Created, template.estimatedDeploymentCostFactor / 2, createResponse.id)) {
54
+ itemProgressCallback(template.itemId, common.EItemProgressStatus.Cancelled, 0);
55
+ common
56
+ .removeItem(createResponse.id, destinationAuthentication)
57
+ .then(() => resolve(common.generateEmptyCreationResponse(template.type)), () => resolve(common.generateEmptyCreationResponse(template.type)));
58
+ }
59
+ else {
60
+ // Add the new item to the settings
61
+ templateDictionary[template.itemId] = {
62
+ itemId: createResponse.id,
63
+ itemUrl: templateDictionary["portalBaseUrl"] + "/sharing/rest/content/items/" + createResponse.id
64
+ };
65
+ newItemTemplate.itemId = createResponse.id;
66
+ // Set the appItemId manually to get around cases where the path was incorrectly set
67
+ // in legacy deployments
68
+ if (newItemTemplate.type === "Web Mapping Application" &&
69
+ template.data) {
70
+ common.setProp(newItemTemplate, "data.appItemId", createResponse.id);
71
+ }
72
+ const postProcess = common.hasUnresolvedVariables(newItemTemplate.data);
73
+ // Update the template again now that we have the new item id
74
+ const originalURL = newItemTemplate.item.url;
75
+ newItemTemplate = common.replaceInTemplate(newItemTemplate, templateDictionary);
76
+ // Update relationships
77
+ let relationshipsDef = Promise.resolve([]);
78
+ if (newItemTemplate.relatedItems) {
79
+ // Templatize references in relationships obj
80
+ const updatedRelatedItems = common.replaceInTemplate(common.templatizeIds(newItemTemplate.relatedItems), templateDictionary);
81
+ // Add the relationships
82
+ relationshipsDef = common.addForwardItemRelationships(newItemTemplate.itemId, updatedRelatedItems, destinationAuthentication);
83
+ }
84
+ // Check for extra processing for web mapping application et al.
85
+ let customProcDef;
86
+ if (template.type === "Web Mapping Application" &&
87
+ template.data &&
88
+ common.hasAnyKeyword(template, [
89
+ "WAB2D",
90
+ "WAB3D",
91
+ "Web AppBuilder"
92
+ ])) {
93
+ // If this is a Web AppBuilder application, we will create a Code Attachment for downloading
94
+ customProcDef = webmappingapplication.fineTuneCreatedItem(template, newItemTemplate, templateDictionary, destinationAuthentication);
95
+ }
96
+ else if (template.type === "Workforce Project") {
97
+ customProcDef = workforce.fineTuneCreatedItem(newItemTemplate, destinationAuthentication, templateDictionary);
98
+ }
99
+ else if (template.type === "QuickCapture Project") {
100
+ if (qcProjectFileContents) {
101
+ // Generate the qc.project.json file resource from the data section after handling templatized variables
102
+ const qcProjectFile = common.jsonToFile(common.replaceInTemplate(JSON.parse(qcProjectFileContents), templateDictionary), "qc.project.json");
103
+ // Send the created qc.project.json file to the item
104
+ customProcDef = common.addResourceFromBlob(qcProjectFile, newItemTemplate.itemId, "", qcProjectFile.name, destinationAuthentication);
105
+ }
106
+ }
107
+ else if (template.type === "Notebook") {
108
+ customProcDef = notebook.fineTuneCreatedItem(template, newItemTemplate, templateDictionary, destinationAuthentication);
109
+ }
110
+ else if (originalURL !== newItemTemplate.item.url) {
111
+ // For web mapping applications that are not Web AppBuilder apps
112
+ customProcDef = new Promise((resolve2, reject2) => {
113
+ common
114
+ .updateItemURL(createResponse.id, newItemTemplate.item.url, destinationAuthentication)
115
+ .then(() => resolve2(), reject2);
116
+ });
117
+ }
118
+ else {
119
+ customProcDef = Promise.resolve(null);
120
+ }
121
+ Promise.all([relationshipsDef, customProcDef]).then(() => {
122
+ // Interrupt process if progress callback returns `false`
123
+ if (!itemProgressCallback(template.itemId, common.EItemProgressStatus.Finished, template.estimatedDeploymentCostFactor / 2, createResponse.id)) {
124
+ itemProgressCallback(template.itemId, common.EItemProgressStatus.Cancelled, 0);
125
+ common
126
+ .removeItem(createResponse.id, destinationAuthentication)
127
+ .then(() => resolve(common.generateEmptyCreationResponse(template.type)), () => resolve(common.generateEmptyCreationResponse(template.type)));
128
+ }
129
+ else {
130
+ resolve({
131
+ item: newItemTemplate,
132
+ id: createResponse.id,
133
+ type: newItemTemplate.type,
134
+ postProcess: postProcess
135
+ });
136
+ }
137
+ }, () => {
138
+ itemProgressCallback(template.itemId, common.EItemProgressStatus.Failed, 0);
139
+ resolve(common.generateEmptyCreationResponse(template.type)); // fails to deploy all resources to the item
140
+ });
141
+ }
142
+ }, () => {
143
+ itemProgressCallback(template.itemId, common.EItemProgressStatus.Failed, 0);
144
+ resolve(common.generateEmptyCreationResponse(template.type)); // fails to create item
145
+ });
146
+ }
147
+ });
148
+ }
134
149
  //# sourceMappingURL=create-item-from-template.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"create-item-from-template.js","sourceRoot":"","sources":["../../../src/helpers/create-item-from-template.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"create-item-from-template.js","sourceRoot":"","sources":["../../../src/helpers/create-item-from-template.ts"],"names":[],"mappings":"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"}
@@ -1,19 +1,19 @@
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 { convertItemToTemplate } from "./convert-item-to-template";
17
- import { createItemFromTemplate } from "./create-item-from-template";
18
- import { updateNotebookData } from "./update-notebook-data";
19
- export { createItemFromTemplate, convertItemToTemplate, updateNotebookData };
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 { convertItemToTemplate } from "./convert-item-to-template";
17
+ import { createItemFromTemplate } from "./create-item-from-template";
18
+ import { updateNotebookData } from "./update-notebook-data";
19
+ export { createItemFromTemplate, convertItemToTemplate, updateNotebookData };
@@ -1,21 +1,21 @@
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 { convertItemToTemplate } from "./convert-item-to-template";
17
- import { createItemFromTemplate } from "./create-item-from-template";
18
- import { updateNotebookData } from "./update-notebook-data";
19
- // Export the Notebook Helper module
20
- export { createItemFromTemplate, convertItemToTemplate, updateNotebookData };
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 { convertItemToTemplate } from "./convert-item-to-template";
17
+ import { createItemFromTemplate } from "./create-item-from-template";
18
+ import { updateNotebookData } from "./update-notebook-data";
19
+ // Export the Notebook Helper module
20
+ export { createItemFromTemplate, convertItemToTemplate, updateNotebookData };
21
21
  //# sourceMappingURL=notebook-helpers.js.map
@@ -1,18 +1,18 @@
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 { convertItemToTemplate } from "./convert-item-to-template";
17
- import { createItemFromTemplate } from "./create-item-from-template";
18
- export { createItemFromTemplate, convertItemToTemplate };
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 { convertItemToTemplate } from "./convert-item-to-template";
17
+ import { createItemFromTemplate } from "./create-item-from-template";
18
+ export { createItemFromTemplate, convertItemToTemplate };
@@ -1,20 +1,20 @@
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 { convertItemToTemplate } from "./convert-item-to-template";
17
- import { createItemFromTemplate } from "./create-item-from-template";
18
- // Export the QuickCapture Helper module
19
- export { createItemFromTemplate, convertItemToTemplate };
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 { convertItemToTemplate } from "./convert-item-to-template";
17
+ import { createItemFromTemplate } from "./create-item-from-template";
18
+ // Export the QuickCapture Helper module
19
+ export { createItemFromTemplate, convertItemToTemplate };
20
20
  //# sourceMappingURL=quickcapture-helpers.js.map
@@ -1,18 +1,18 @@
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 { convertItemToTemplate } from "./convert-item-to-template";
17
- import { createItemFromTemplate } from "./create-item-from-template";
18
- export { createItemFromTemplate, convertItemToTemplate };
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 { convertItemToTemplate } from "./convert-item-to-template";
17
+ import { createItemFromTemplate } from "./create-item-from-template";
18
+ export { createItemFromTemplate, convertItemToTemplate };
@@ -1,20 +1,20 @@
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 { convertItemToTemplate } from "./convert-item-to-template";
17
- import { createItemFromTemplate } from "./create-item-from-template";
18
- // Export the simpleTypesHelper module
19
- export { createItemFromTemplate, convertItemToTemplate };
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 { convertItemToTemplate } from "./convert-item-to-template";
17
+ import { createItemFromTemplate } from "./create-item-from-template";
18
+ // Export the simpleTypesHelper module
19
+ export { createItemFromTemplate, convertItemToTemplate };
20
20
  //# sourceMappingURL=simple-type-helpers.js.map
@@ -1,17 +1,17 @@
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 { UserSession } from "@esri/solution-common";
17
- export declare function updateNotebookData(itemId: string, data: any, authentication: UserSession): Promise<any>;
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 { UserSession } from "@esri/solution-common";
17
+ export declare function updateNotebookData(itemId: string, data: any, authentication: UserSession): Promise<any>;