@experteam-mx/ngx-services 20.0.29 → 20.0.31

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.
@@ -3024,21 +3024,21 @@ class ApiInventoriesService {
3024
3024
  * Fetches the missing package details based on query parameters.
3025
3025
  *
3026
3026
  * @param {QueryParams} params - The query parameters for filtering the missing package details.
3027
- * @return {Observable<PackageReEntryMissingOut>} An observable that emits the detail missing package data.
3027
+ * @return {Observable<ReEntryOfMissingPackageOut>} An observable that emits the detail missing package data.
3028
3028
  */
3029
- getPackageReEntryMissing(params) {
3030
- return this.http.get(`${this.url}/package-re-entry-missing`, {
3029
+ getReEntryOfMissingPackages(params) {
3030
+ return this.http.get(`${this.url}/re-entry-of-missing-packages`, {
3031
3031
  params
3032
3032
  }).pipe(map(({ data }) => data));
3033
3033
  }
3034
3034
  /**
3035
3035
  * Re-entry missing packages
3036
3036
  *
3037
- * @param {IncidentIn} body - The missing packages data to be re-entry.
3038
- * @returns {Observable<PackageReEntryMissingsOut>} An observable detail of the updated incident reason complement.
3037
+ * @param {ReEntryOfMissingPackagesIn} body - The missing packages data to be re-entry.
3038
+ * @returns {Observable<ReEntryOfMissingPackagesOut>} An observable detail of the updated incident reason complement.
3039
3039
  */
3040
- putPackageReEntryMissing(body) {
3041
- return this.http.put(`${this.url}/package-re-entry-missing`, body).pipe(map(({ data }) => data));
3040
+ putReEntryOfMissingPackages(body) {
3041
+ return this.http.put(`${this.url}/re-entry-of-missing-packages`, body).pipe(map(({ data }) => data));
3042
3042
  }
3043
3043
  static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: ApiInventoriesService, deps: [{ token: 'env' }, { token: i1.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable });
3044
3044
  static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: ApiInventoriesService, providedIn: 'root' });