@lookiero/checkout 10.0.0 → 10.0.1
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/index.d.ts +2 -2
- package/dist/index.js +2 -1
- package/dist/src/version.d.ts +1 -1
- package/dist/src/version.js +1 -1
- package/index.ts +2 -2
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -33,5 +33,5 @@ interface BootstrapFunction {
|
|
|
33
33
|
(args: BootstrapFunctionArgs): BootstrapFunctionReturn;
|
|
34
34
|
}
|
|
35
35
|
declare const bootstrap: BootstrapFunction;
|
|
36
|
-
export { bootstrap, translationEndpoint, translationExternalEndpoint, Country, Segment, CheckoutStatus };
|
|
37
|
-
export type { SentryEnvironment, KameleoonEnvironment, Customer, Subscription, Order, Locale
|
|
36
|
+
export { bootstrap, translationEndpoint, translationExternalEndpoint, Country, Segment, CheckoutStatus, Tradename };
|
|
37
|
+
export type { SentryEnvironment, KameleoonEnvironment, Customer, Subscription, Order, Locale };
|
package/dist/index.js
CHANGED
|
@@ -2,6 +2,7 @@ import { i18n } from "@lookiero/i18n-react";
|
|
|
2
2
|
import { fetchTranslations, translationEndpoint, translationExternalEndpoint } from "@lookiero/sty-psp-i18n";
|
|
3
3
|
import { Country } from "@lookiero/sty-psp-locale";
|
|
4
4
|
import { Segment } from "@lookiero/sty-psp-segment";
|
|
5
|
+
import { Tradename } from "@lookiero/sty-sp-tradename";
|
|
5
6
|
import { CheckoutStatus } from "./src/domain/checkout/model/checkout";
|
|
6
7
|
import { bootstrap as checkoutBootstrap } from "./src/infrastructure/delivery/bootstrap";
|
|
7
8
|
import { root } from "./src/infrastructure/ui/Root";
|
|
@@ -19,4 +20,4 @@ const bootstrap = ({ apiUrl, getAuthToken, translations, sentry, kameleoon }) =>
|
|
|
19
20
|
firstAvailableCheckoutByCustomerId,
|
|
20
21
|
};
|
|
21
22
|
};
|
|
22
|
-
export { bootstrap, translationEndpoint, translationExternalEndpoint, Country, Segment, CheckoutStatus };
|
|
23
|
+
export { bootstrap, translationEndpoint, translationExternalEndpoint, Country, Segment, CheckoutStatus, Tradename };
|
package/dist/src/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const VERSION = "10.0.
|
|
1
|
+
export declare const VERSION = "10.0.1";
|
package/dist/src/version.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const VERSION = "10.0.
|
|
1
|
+
export const VERSION = "10.0.1";
|
package/index.ts
CHANGED
|
@@ -58,5 +58,5 @@ const bootstrap: BootstrapFunction = ({ apiUrl, getAuthToken, translations, sent
|
|
|
58
58
|
};
|
|
59
59
|
};
|
|
60
60
|
|
|
61
|
-
export { bootstrap, translationEndpoint, translationExternalEndpoint, Country, Segment, CheckoutStatus };
|
|
62
|
-
export type { SentryEnvironment, KameleoonEnvironment, Customer, Subscription, Order, Locale
|
|
61
|
+
export { bootstrap, translationEndpoint, translationExternalEndpoint, Country, Segment, CheckoutStatus, Tradename };
|
|
62
|
+
export type { SentryEnvironment, KameleoonEnvironment, Customer, Subscription, Order, Locale };
|