@esri/solution-common 1.5.3 → 1.6.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/featureServiceHelpers.js +2 -0
- package/dist/esm/featureServiceHelpers.js.map +1 -1
- package/dist/esm/interfaces.d.ts +14 -0
- package/dist/esm/interfaces.js.map +1 -1
- package/dist/node/featureServiceHelpers.js +2 -0
- package/dist/node/featureServiceHelpers.js.map +1 -1
- package/dist/node/interfaces.d.ts +14 -0
- package/dist/node/interfaces.js.map +1 -1
- package/dist/umd/common.umd.js +4 -2
- package/dist/umd/common.umd.js.map +1 -1
- package/dist/umd/common.umd.min.js +3 -3
- package/dist/umd/common.umd.min.js.map +1 -1
- package/dist/umd/src/interfaces.d.ts +14 -0
- package/package.json +2 -2
|
@@ -552,6 +552,20 @@ export interface IFileMimeTyped {
|
|
|
552
552
|
mimeType: string;
|
|
553
553
|
blob: Blob;
|
|
554
554
|
}
|
|
555
|
+
/**
|
|
556
|
+
* Existing Items promises, associated item Ids and types
|
|
557
|
+
*/
|
|
558
|
+
export interface IFindExistingItemsResponse {
|
|
559
|
+
existingItemsDefs: Array<Promise<any>>;
|
|
560
|
+
existingItemInfos: IFindExistingItemInfos[];
|
|
561
|
+
}
|
|
562
|
+
/**
|
|
563
|
+
* Item Id and item type
|
|
564
|
+
*/
|
|
565
|
+
export interface IFindExistingItemInfos {
|
|
566
|
+
itemId: string;
|
|
567
|
+
type: string;
|
|
568
|
+
}
|
|
555
569
|
/**
|
|
556
570
|
* Response from removing a folder.
|
|
557
571
|
*/
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@esri/solution-common",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.6.0",
|
|
4
4
|
"description": "Provides general helper functions for @esri/solution.js.",
|
|
5
5
|
"main": "dist/node/index.js",
|
|
6
6
|
"unpkg": "dist/umd/common.umd.min.js",
|
|
@@ -96,5 +96,5 @@
|
|
|
96
96
|
"esri",
|
|
97
97
|
"ES6"
|
|
98
98
|
],
|
|
99
|
-
"gitHead": "
|
|
99
|
+
"gitHead": "7ccd27f453382dfa7c83630b2f43f474d0e62b1d"
|
|
100
100
|
}
|