@infrab4a/connect-angular 5.7.5-beta.1 → 5.7.5-beta.3

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@infrab4a/connect-angular",
3
- "version": "5.7.5-beta.1",
3
+ "version": "5.7.5-beta.3",
4
4
  "publishConfig": {
5
5
  "registry": "https://registry.npmjs.org"
6
6
  },
@@ -12,7 +12,7 @@
12
12
  "@angular/common": ">=21.0.0 <22.0.0",
13
13
  "@angular/core": ">=21.0.0 <22.0.0",
14
14
  "@angular/fire": ">=21.0.0-rc.0 <22.0.0",
15
- "@infrab4a/connect": "5.5.6-beta.4",
15
+ "@infrab4a/connect": "5.5.6-beta.6",
16
16
  "class-transformer": "^0.5.1",
17
17
  "js-cookie": "^3.0.1",
18
18
  "rxjs": "^7.5.0",
@@ -178,6 +178,8 @@ declare class CheckoutService {
178
178
  resetCheckoutValues(): Observable<Checkout>;
179
179
  applyCouponDiscount(nickname: string, checkoutType: CheckoutTypes): Observable<Coupon>;
180
180
  removeCouponDiscount(): Observable<Checkout>;
181
+ applyPointsDiscount(points: number): Observable<Checkout>;
182
+ removePointsDiscount(): Observable<Checkout>;
181
183
  validateStockProducts(): Observable<CheckoutStockValidation>;
182
184
  selectShippingAddress(address: UserAddress): Observable<Checkout>;
183
185
  private formatZip;