@lookiero/checkout 9.13.0 → 9.14.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.
package/dist/src/Expo.js CHANGED
@@ -1,4 +1,6 @@
1
1
  import { registerRootComponent } from "expo";
2
+ import { enableLegacyWebImplementation } from "react-native-gesture-handler";
2
3
  import "react-native-get-random-values";
3
4
  import { ExpoRoot } from "./ExpoRoot";
5
+ enableLegacyWebImplementation(true);
4
6
  registerRootComponent(ExpoRoot);
@@ -25,7 +25,7 @@ const order = {
25
25
  coupon: "MYLOOKIERO",
26
26
  };
27
27
  const customer = {
28
- customerId: "cc6dcaf3-9ec6-4b1e-bfbb-1ac404c6c162",
28
+ customerId: "a4355713-469b-4684-bf90-3215702dfb1c",
29
29
  country: Country.ES,
30
30
  segment: Segment.WOMEN,
31
31
  };
@@ -40,7 +40,7 @@ const apiUrl = Platform.OS !== "web"
40
40
  : __DEV__
41
41
  ? "/local-to-dev"
42
42
  : "/checkout/api";
43
- const authToken = "eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOjU2NDg3OTAsImV4cCI6MTc0NDQ0MzcwMiwiZGlzcGxheU5hbWUiOiJUZXN0aW5nIiwiY291bnRyeV9jb2RlIjoiRVMiLCJhY2Nlc3NWaWEiOiJlbWFpbCIsInN1YnNjcmlwdGlvblN0YXJ0aW5nRGF0ZSI6IjIwMjQtMTEtMDgiLCJpbXBlcnNvbmF0ZWQiOmZhbHNlLCJ1dWlkIjoiNzRjYjRmNzYtM2YxNC00OTgzLTgxYTYtMmVlMmE5YTI3NWQ0IiwiaWF0IjoxNzQxNzY1MzAyfQ.VrfjWZlhuG8dhDSFTbyGyClRFGbhdx9SglkE8rEEJyE";
43
+ const authToken = "eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOjU2ODkxMDAsImV4cCI6MTc0NjI3ODQwMiwiZGlzcGxheU5hbWUiOiJUZXN0aW5nIiwiY291bnRyeV9jb2RlIjoiRVMiLCJhY2Nlc3NWaWEiOiJlbWFpbCIsInN1YnNjcmlwdGlvblN0YXJ0aW5nRGF0ZSI6IjIwMjUtMDQtMDMiLCJpbXBlcnNvbmF0ZWQiOmZhbHNlLCJ1dWlkIjoiYTQzNTU3MTMtNDY5Yi00Njg0LWJmOTAtMzIxNTcwMmRmYjFjIiwiaWF0IjoxNzQzNjg2NDAyfQ.pmqFo-4s0USFpzCnijRt78bWuBdu2Q7f4L9UtOkfAwo";
44
44
  const getAuthToken = () => Promise.resolve(authToken);
45
45
  const externalTranslationsUrl = Platform.OS !== "web"
46
46
  ? "https://backend-for-user.dev.envs.lookiero.tech/api/v2/translations"
@@ -1 +1 @@
1
- export declare const VERSION = "9.13.0";
1
+ export declare const VERSION = "9.14.0";
@@ -1 +1 @@
1
- export const VERSION = "9.13.0";
1
+ export const VERSION = "9.14.0";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lookiero/checkout",
3
- "version": "9.13.0",
3
+ "version": "9.14.0",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "sideEffects": "false",
@@ -36,7 +36,6 @@
36
36
  "@lookiero/sty-psp-ui-settings": "^0.2",
37
37
  "@lookiero/sty-psp-units": "^0.1",
38
38
  "@lookiero/sty-psp-uuid": "^0.2",
39
- "@react-native-async-storage/async-storage": "1.23.1",
40
39
  "react-native-keyboard-aware-scroll-view": "^0.9.5",
41
40
  "react-native-svg": "15.2.0",
42
41
  "tiny-invariant": "^1.3.1"
@@ -51,6 +50,7 @@
51
50
  "@lookiero/sty-psp-prettier-config": "*",
52
51
  "@lookiero/sty-psp-scripts": "*",
53
52
  "@lookiero/sty-psp-typescript": "*",
53
+ "@react-native-async-storage/async-storage": "1.23.1",
54
54
  "@remix-run/router": ">=1.10",
55
55
  "@testing-library/react-native": ">=12",
56
56
  "@types/jest-when": ">=3",
@@ -81,6 +81,7 @@
81
81
  "expo-font": ">=12",
82
82
  "react": ">=18",
83
83
  "react-native": ">=0.74",
84
+ "react-native-gesture-handler": "~2.16.1",
84
85
  "react-native-get-random-values": ">=1.11",
85
86
  "react-native-reanimated": "~3.10.1",
86
87
  "react-native-safe-area-context": ">=4.10",
package/src/Expo.tsx CHANGED
@@ -1,5 +1,8 @@
1
1
  import { registerRootComponent } from "expo";
2
+ import { enableLegacyWebImplementation } from "react-native-gesture-handler";
2
3
  import "react-native-get-random-values";
3
4
  import { ExpoRoot } from "./ExpoRoot";
4
5
 
6
+ enableLegacyWebImplementation(true);
7
+
5
8
  registerRootComponent(ExpoRoot);
package/src/ExpoRoot.tsx CHANGED
@@ -33,7 +33,7 @@ const order: Order = {
33
33
  };
34
34
 
35
35
  const customer: Customer = {
36
- customerId: "cc6dcaf3-9ec6-4b1e-bfbb-1ac404c6c162",
36
+ customerId: "a4355713-469b-4684-bf90-3215702dfb1c",
37
37
  country: Country.ES,
38
38
  segment: Segment.WOMEN,
39
39
  };
@@ -52,7 +52,7 @@ const apiUrl =
52
52
  ? "/local-to-dev"
53
53
  : "/checkout/api";
54
54
  const authToken =
55
- "eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOjU2NDg3OTAsImV4cCI6MTc0NDQ0MzcwMiwiZGlzcGxheU5hbWUiOiJUZXN0aW5nIiwiY291bnRyeV9jb2RlIjoiRVMiLCJhY2Nlc3NWaWEiOiJlbWFpbCIsInN1YnNjcmlwdGlvblN0YXJ0aW5nRGF0ZSI6IjIwMjQtMTEtMDgiLCJpbXBlcnNvbmF0ZWQiOmZhbHNlLCJ1dWlkIjoiNzRjYjRmNzYtM2YxNC00OTgzLTgxYTYtMmVlMmE5YTI3NWQ0IiwiaWF0IjoxNzQxNzY1MzAyfQ.VrfjWZlhuG8dhDSFTbyGyClRFGbhdx9SglkE8rEEJyE";
55
+ "eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOjU2ODkxMDAsImV4cCI6MTc0NjI3ODQwMiwiZGlzcGxheU5hbWUiOiJUZXN0aW5nIiwiY291bnRyeV9jb2RlIjoiRVMiLCJhY2Nlc3NWaWEiOiJlbWFpbCIsInN1YnNjcmlwdGlvblN0YXJ0aW5nRGF0ZSI6IjIwMjUtMDQtMDMiLCJpbXBlcnNvbmF0ZWQiOmZhbHNlLCJ1dWlkIjoiYTQzNTU3MTMtNDY5Yi00Njg0LWJmOTAtMzIxNTcwMmRmYjFjIiwiaWF0IjoxNzQzNjg2NDAyfQ.pmqFo-4s0USFpzCnijRt78bWuBdu2Q7f4L9UtOkfAwo";
56
56
  const getAuthToken = () => Promise.resolve(authToken);
57
57
 
58
58
  const externalTranslationsUrl =