@experteam-mx/ngx-services 20.0.13 → 20.0.14

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.
@@ -2478,7 +2478,7 @@ class ApiDiscountsService {
2478
2478
  * @return {Observable<LoyaltyRuleOut>} An observable that emits the updated loyalty rule details.
2479
2479
  */
2480
2480
  postLoyaltyRule(body) {
2481
- return this.http.put(`${this.url}/loyalty-rules`, body)
2481
+ return this.http.post(`${this.url}/loyalty-rules`, body)
2482
2482
  .pipe(map(({ data }) => data));
2483
2483
  }
2484
2484
  /**