ng-pli-commons 1.0.148 → 1.0.149-dev.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.
@@ -8358,6 +8358,21 @@ class TagManagementService {
8358
8358
  removeTags(idApp, idTags) {
8359
8359
  return this.httpClient.post(this.environment.host.backend.configuration + this.serviceName + '/remove-tags', idTags, { params: new HttpParams().set('idApp', idApp) });
8360
8360
  }
8361
+ clearTagsCommittee(idApps) {
8362
+ return this.httpClient.post(this.environment.host.backend.configuration +
8363
+ this.serviceName +
8364
+ '/clear-tags-committee', idApps);
8365
+ }
8366
+ removeTagsByCategory(idApps, idTag, categoryId) {
8367
+ const requestBody = {
8368
+ categoryId: categoryId,
8369
+ name: idTag,
8370
+ applicationIds: idApps
8371
+ };
8372
+ return this.httpClient.post(this.environment.host.backend.configuration +
8373
+ this.serviceName +
8374
+ '/clear-tags-by-category', requestBody);
8375
+ }
8361
8376
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: TagManagementService, deps: [{ token: 'environment' }, { token: i1.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable }); }
8362
8377
  static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: TagManagementService, providedIn: 'root' }); }
8363
8378
  }
@@ -16757,28 +16772,31 @@ class CustomValidator {
16757
16772
  /* tslint:disable */
16758
16773
  const VERSION = {
16759
16774
  "dirty": true,
16760
- "raw": "v1.0.148-0-g85ec7944-dirty",
16761
- "hash": "g85ec7944",
16775
+ "raw": "v1.0.149-dev.0-0-g54a49471-dirty",
16776
+ "hash": "g54a49471",
16762
16777
  "distance": 0,
16763
- "tag": "v1.0.148",
16778
+ "tag": "v1.0.149-dev.0",
16764
16779
  "semver": {
16765
16780
  "options": {
16766
16781
  "loose": false,
16767
16782
  "includePrerelease": false
16768
16783
  },
16769
16784
  "loose": false,
16770
- "raw": "v1.0.148",
16785
+ "raw": "v1.0.149-dev.0",
16771
16786
  "major": 1,
16772
16787
  "minor": 0,
16773
- "patch": 148,
16774
- "prerelease": [],
16788
+ "patch": 149,
16789
+ "prerelease": [
16790
+ "dev",
16791
+ 0
16792
+ ],
16775
16793
  "build": [],
16776
- "version": "1.0.148"
16794
+ "version": "1.0.149-dev.0"
16777
16795
  },
16778
- "suffix": "0-g85ec7944-dirty",
16779
- "semverString": "1.0.148",
16780
- "version": "1.0.148",
16781
- "buildTimestamp": "2026-09-02T16:12:39.617Z"
16796
+ "suffix": "0-g54a49471-dirty",
16797
+ "semverString": "1.0.149-dev.0",
16798
+ "version": "1.0.149-dev.0",
16799
+ "buildTimestamp": "2026-09-09T03:54:43.904Z"
16782
16800
  };
16783
16801
  /* tslint:enable */
16784
16802