@arsedizioni/ars-utils 21.2.178 → 21.2.181
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 +23 -0
- package/fesm2022/arsedizioni-ars-utils-clipper.common.mjs.map +1 -1
- package/fesm2022/arsedizioni-ars-utils-ui.application.mjs +2 -2
- package/fesm2022/arsedizioni-ars-utils-ui.application.mjs.map +1 -1
- package/package.json +1 -1
- package/types/arsedizioni-ars-utils-clipper.common.d.ts +31 -4
- package/types/arsedizioni-ars-utils-clipper.ui.d.ts +1 -1
- package/types/arsedizioni-ars-utils-ui.application.d.ts +1 -1
|
@@ -3277,6 +3277,29 @@ class ClipperService {
|
|
|
3277
3277
|
saveContact(item) {
|
|
3278
3278
|
return this.httpClient.post(this._serviceUri + '/account/contacts/save', item);
|
|
3279
3279
|
}
|
|
3280
|
+
///
|
|
3281
|
+
// PROPERTIES
|
|
3282
|
+
///
|
|
3283
|
+
/**
|
|
3284
|
+
* Retrieve properties
|
|
3285
|
+
*/
|
|
3286
|
+
queryProperties(params) {
|
|
3287
|
+
return this.httpClient.post(this._serviceUri + '/account/properties', params);
|
|
3288
|
+
}
|
|
3289
|
+
/**
|
|
3290
|
+
* Delete properties
|
|
3291
|
+
* @param ids: the id list to delete
|
|
3292
|
+
*/
|
|
3293
|
+
deleteProperties(ids) {
|
|
3294
|
+
return this.httpClient.post(this._serviceUri + '/account/properties/delete', { ids: ids });
|
|
3295
|
+
}
|
|
3296
|
+
/**
|
|
3297
|
+
* Save property
|
|
3298
|
+
* @param item: the item to save
|
|
3299
|
+
*/
|
|
3300
|
+
saveProperty(item) {
|
|
3301
|
+
return this.httpClient.post(this._serviceUri + '/account/properties/save', item);
|
|
3302
|
+
}
|
|
3280
3303
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: ClipperService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
3281
3304
|
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: ClipperService, providedIn: 'root' }); }
|
|
3282
3305
|
}
|