@arsedizioni/ars-utils 21.2.181 → 21.2.184
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/fesm2022/arsedizioni-ars-utils-clipper.common.mjs.map +1 -1
- package/fesm2022/arsedizioni-ars-utils-clipper.ui.mjs +4 -4
- package/fesm2022/arsedizioni-ars-utils-clipper.ui.mjs.map +1 -1
- package/package.json +1 -1
- package/types/arsedizioni-ars-utils-clipper.common.d.ts +2 -1
- package/types/arsedizioni-ars-utils-clipper.ui.d.ts +2 -2
package/package.json
CHANGED
|
@@ -341,7 +341,7 @@ interface ClipperDocumentPropertyTracking {
|
|
|
341
341
|
}
|
|
342
342
|
interface ClipperDocumentProperty {
|
|
343
343
|
id?: number;
|
|
344
|
-
teamId?:
|
|
344
|
+
teamId?: string;
|
|
345
345
|
teamTitle?: string;
|
|
346
346
|
color?: string;
|
|
347
347
|
name?: string;
|
|
@@ -354,6 +354,7 @@ interface ClipperDocumentProperty {
|
|
|
354
354
|
interface ClipperPropertiesSearchParams extends QueryModel {
|
|
355
355
|
documentId?: string;
|
|
356
356
|
teamId?: string;
|
|
357
|
+
teamTitle?: string;
|
|
357
358
|
color?: string;
|
|
358
359
|
note?: string;
|
|
359
360
|
showShared?: boolean;
|
|
@@ -109,7 +109,7 @@ declare class ClipperDocumentManager {
|
|
|
109
109
|
*/
|
|
110
110
|
addItemsToWorkingDocuments(items: ClipperDocumentInfo[]): void;
|
|
111
111
|
/**
|
|
112
|
-
* Add a list of items to
|
|
112
|
+
* Add a list of items to bag
|
|
113
113
|
* @param items : the item list
|
|
114
114
|
*/
|
|
115
115
|
addItemsToBag(items: ClipperDocumentInfo[]): void;
|
|
@@ -117,7 +117,7 @@ declare class ClipperDocumentManager {
|
|
|
117
117
|
* Add properties to documents
|
|
118
118
|
* @param items : the item list
|
|
119
119
|
*/
|
|
120
|
-
|
|
120
|
+
addPropertyToDocuments(items: ClipperDocumentInfo[]): void;
|
|
121
121
|
/**
|
|
122
122
|
* Copy metadata to clipboard
|
|
123
123
|
* @param item : the item to copy
|