@lookiero/checkout 12.24.1 → 12.26.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/ExpoRoot.js +5 -4
- package/dist/src/version.d.ts +2 -2
- package/dist/src/version.js +2 -2
- package/package.json +8 -8
- package/src/ExpoRoot.tsx +5 -4
package/dist/src/ExpoRoot.js
CHANGED
|
@@ -17,7 +17,7 @@ import { bootstrap as checkoutMockBootstrap } from "./infrastructure/delivery/bo
|
|
|
17
17
|
import { root } from "./infrastructure/ui/Root";
|
|
18
18
|
import { DOMAIN } from "./infrastructure/ui/i18n/i18n";
|
|
19
19
|
import { Router } from "./infrastructure/ui/routing/router/Router";
|
|
20
|
-
import {
|
|
20
|
+
import { RELEASE } from "./version";
|
|
21
21
|
const tradename = Tradename.OUTFITTERY;
|
|
22
22
|
const theme = themeByTradename({ tradename });
|
|
23
23
|
const locale = Locale.es_ES;
|
|
@@ -36,9 +36,10 @@ const customer = {
|
|
|
36
36
|
};
|
|
37
37
|
const sentryConfig = {
|
|
38
38
|
publicKey: "66cadf9444db4ea5945670f12ec08ae7",
|
|
39
|
-
release:
|
|
39
|
+
release: RELEASE,
|
|
40
40
|
project: "4504400729276416",
|
|
41
|
-
environment:
|
|
41
|
+
environment: "development",
|
|
42
|
+
dist: "web-standalone",
|
|
42
43
|
};
|
|
43
44
|
const apiUrl = Platform.OS !== "web"
|
|
44
45
|
? "https://web2.sp.dev.aws.lookiero.es/checkout/api"
|
|
@@ -83,7 +84,7 @@ setPaymentsBridge({
|
|
|
83
84
|
emitTrackingEvent: (e) => {
|
|
84
85
|
console.log("Tracking Payment event", e);
|
|
85
86
|
},
|
|
86
|
-
appVersion:
|
|
87
|
+
appVersion: RELEASE,
|
|
87
88
|
graphqlUri: "/graphql",
|
|
88
89
|
useFeatureFlags: () => ({}),
|
|
89
90
|
locale: () => "es-ES",
|
package/dist/src/version.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VERSION = "12.
|
|
2
|
-
export declare const RELEASE = "checkout@12.
|
|
1
|
+
export declare const VERSION = "12.26.0";
|
|
2
|
+
export declare const RELEASE = "checkout@12.26.0";
|
package/dist/src/version.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export const VERSION = "12.
|
|
2
|
-
export const RELEASE = "checkout@12.
|
|
1
|
+
export const VERSION = "12.26.0";
|
|
2
|
+
export const RELEASE = "checkout@12.26.0";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lookiero/checkout",
|
|
3
|
-
"version": "12.
|
|
3
|
+
"version": "12.26.0",
|
|
4
4
|
"main": "dist/index.js",
|
|
5
5
|
"types": "dist/index.d.ts",
|
|
6
6
|
"sideEffects": "false",
|
|
@@ -21,18 +21,18 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@lookiero/messaging": "^8.1.1",
|
|
23
23
|
"@lookiero/messaging-react": "^8.1.1",
|
|
24
|
-
"@lookiero/sty-psp-ab-testing": "^0.
|
|
24
|
+
"@lookiero/sty-psp-ab-testing": "^0.4",
|
|
25
25
|
"@lookiero/sty-psp-expo-config": "^1.1",
|
|
26
26
|
"@lookiero/sty-psp-http": "^2.1",
|
|
27
|
-
"@lookiero/sty-psp-i18n": "^1.
|
|
28
|
-
"@lookiero/sty-psp-locale": "^2.
|
|
29
|
-
"@lookiero/sty-psp-logging": "^2.
|
|
30
|
-
"@lookiero/sty-psp-notifications": "^2.
|
|
27
|
+
"@lookiero/sty-psp-i18n": "^1.5",
|
|
28
|
+
"@lookiero/sty-psp-locale": "^2.1",
|
|
29
|
+
"@lookiero/sty-psp-logging": "^2.1",
|
|
30
|
+
"@lookiero/sty-psp-notifications": "^2.12",
|
|
31
31
|
"@lookiero/sty-psp-react-native": "^1.0",
|
|
32
32
|
"@lookiero/sty-psp-segment": "^0.1",
|
|
33
33
|
"@lookiero/sty-psp-storage": "^0.2",
|
|
34
|
-
"@lookiero/sty-psp-tracking": "^2.
|
|
35
|
-
"@lookiero/sty-psp-ui-settings": "^1.
|
|
34
|
+
"@lookiero/sty-psp-tracking": "^2.3",
|
|
35
|
+
"@lookiero/sty-psp-ui-settings": "^1.3",
|
|
36
36
|
"@lookiero/sty-psp-ui": "^3.2",
|
|
37
37
|
"@lookiero/sty-psp-units": "^0.1",
|
|
38
38
|
"@lookiero/sty-psp-uuid": "^0.2",
|
package/src/ExpoRoot.tsx
CHANGED
|
@@ -23,7 +23,7 @@ import { Router } from "./infrastructure/ui/routing/router/Router";
|
|
|
23
23
|
import { Customer } from "./projection/customer/customer";
|
|
24
24
|
import { OrderProjection } from "./projection/order/order";
|
|
25
25
|
import { SubscriptionProjection } from "./projection/subscription/subscription";
|
|
26
|
-
import {
|
|
26
|
+
import { RELEASE } from "./version";
|
|
27
27
|
|
|
28
28
|
const tradename = Tradename.OUTFITTERY;
|
|
29
29
|
const theme = themeByTradename({ tradename });
|
|
@@ -46,9 +46,10 @@ const customer: Customer = {
|
|
|
46
46
|
|
|
47
47
|
const sentryConfig: SentryEnvironment = {
|
|
48
48
|
publicKey: "66cadf9444db4ea5945670f12ec08ae7",
|
|
49
|
-
release:
|
|
49
|
+
release: RELEASE,
|
|
50
50
|
project: "4504400729276416",
|
|
51
|
-
environment:
|
|
51
|
+
environment: "development",
|
|
52
|
+
dist: "web-standalone",
|
|
52
53
|
};
|
|
53
54
|
|
|
54
55
|
const apiUrl =
|
|
@@ -102,7 +103,7 @@ setPaymentsBridge({
|
|
|
102
103
|
emitTrackingEvent: (e) => {
|
|
103
104
|
console.log("Tracking Payment event", e);
|
|
104
105
|
},
|
|
105
|
-
appVersion:
|
|
106
|
+
appVersion: RELEASE,
|
|
106
107
|
graphqlUri: "/graphql",
|
|
107
108
|
useFeatureFlags: () => ({}) as Record<FeatureFlags, boolean>,
|
|
108
109
|
locale: () => "es-ES",
|