@lookiero/checkout 14.8.0-beta.1 → 14.8.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.
@@ -1,6 +1,6 @@
1
- import { PricingProjection } from "../../src/projection/pricing/pricing";
1
+ import { CheckoutPricingProjection } from "../../src/projection/pricing/pricing";
2
2
 
3
- const interceptViewPricingByCheckoutId = (response: PricingProjection) =>
4
- cy.intercept({ method: "POST", url: "/local-to-dev/view-pricing-by-checkout-id" }, { body: { result: response } });
3
+ const interceptViewPricingByCheckoutId = (response: CheckoutPricingProjection) =>
4
+ cy.intercept({ method: "POST", url: "/local-to-dev/view-checkout-pricing-by-checkout-id" }, { body: response });
5
5
 
6
6
  export { interceptViewPricingByCheckoutId };
@@ -1,3 +1,4 @@
1
1
  import { CheckoutPricingProjection } from "../../../projection/pricing/pricing";
2
2
  declare const mockCheckoutPricingProjection: CheckoutPricingProjection;
3
- export { mockCheckoutPricingProjection };
3
+ declare const pricing: () => CheckoutPricingProjection;
4
+ export { mockCheckoutPricingProjection, pricing };
@@ -26,4 +26,5 @@ const mockCheckoutPricingProjection = {
26
26
  },
27
27
  ],
28
28
  };
29
- export { mockCheckoutPricingProjection };
29
+ const pricing = () => mockCheckoutPricingProjection;
30
+ export { mockCheckoutPricingProjection, pricing };
@@ -1,2 +1,2 @@
1
- export declare const VERSION = "14.8.0-beta.1";
2
- export declare const RELEASE = "checkout@14.8.0-beta.1";
1
+ export declare const VERSION = "14.8.0";
2
+ export declare const RELEASE = "checkout@14.8.0";
@@ -1,2 +1,2 @@
1
- export const VERSION = "14.8.0-beta.1";
2
- export const RELEASE = "checkout@14.8.0-beta.1";
1
+ export const VERSION = "14.8.0";
2
+ export const RELEASE = "checkout@14.8.0";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lookiero/checkout",
3
- "version": "14.8.0-beta.1",
3
+ "version": "14.8.0",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "sideEffects": "false",
@@ -32,4 +32,6 @@ const mockCheckoutPricingProjection: CheckoutPricingProjection = {
32
32
  ],
33
33
  };
34
34
 
35
- export { mockCheckoutPricingProjection };
35
+ const pricing = (): CheckoutPricingProjection => mockCheckoutPricingProjection;
36
+
37
+ export { mockCheckoutPricingProjection, pricing };
Binary file
@@ -1 +0,0 @@
1
- export {};