@rolatech/angular-services 20.1.3-beta.3 → 20.1.6-beta.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.
@@ -1846,6 +1846,16 @@ class PropertyService extends BaseService {
1846
1846
  withCredentials: true,
1847
1847
  });
1848
1848
  }
1849
+ referencesAccept(id) {
1850
+ return this.http.post(`${this.actionUrl}/offers/${id}/references/accept`, {}, {
1851
+ withCredentials: true,
1852
+ });
1853
+ }
1854
+ referencesReject(id, data) {
1855
+ return this.http.post(`${this.actionUrl}/offers/${id}/references/reject`, data, {
1856
+ withCredentials: true,
1857
+ });
1858
+ }
1849
1859
  createHoldingDepositCheckout(offerId, data) {
1850
1860
  return this.http.post(`${this.actionUrl}/offers/${offerId}/pay/holding-deposit`, data, {
1851
1861
  withCredentials: true,