diff --git a/apps/checkout-js/src/__tests__/__snapshots__/exports.spec.ts.snap b/apps/checkout-js/src/__tests__/__snapshots__/exports.spec.ts.snap index 6e2b23e58..ab5b27cbc 100644 --- a/apps/checkout-js/src/__tests__/__snapshots__/exports.spec.ts.snap +++ b/apps/checkout-js/src/__tests__/__snapshots__/exports.spec.ts.snap @@ -2,6 +2,8 @@ exports[`exports > exports from index.ts 1`] = ` [ + "AddressField", + "AddressType", "DeliveryOptionsMode", "EVENT_HIDE_DELIVERY_OPTIONS", "EVENT_SHOW_DELIVERY_OPTIONS", @@ -11,6 +13,8 @@ exports[`exports > exports from index.ts 1`] = ` "EVENT_UPDATE_DELIVERY_OPTIONS", "FrontendEndpoint", "PdkDeliveryOptionsEvent", + "PdkEvent", + "PdkField", "StoreListener", "Util", "createPdkCheckout", diff --git a/apps/checkout/src/__tests__/__snapshots__/exports.spec.ts.snap b/apps/checkout/src/__tests__/__snapshots__/exports.spec.ts.snap index 6e2b23e58..ab5b27cbc 100644 --- a/apps/checkout/src/__tests__/__snapshots__/exports.spec.ts.snap +++ b/apps/checkout/src/__tests__/__snapshots__/exports.spec.ts.snap @@ -2,6 +2,8 @@ exports[`exports > exports from index.ts 1`] = ` [ + "AddressField", + "AddressType", "DeliveryOptionsMode", "EVENT_HIDE_DELIVERY_OPTIONS", "EVENT_SHOW_DELIVERY_OPTIONS", @@ -11,6 +13,8 @@ exports[`exports > exports from index.ts 1`] = ` "EVENT_UPDATE_DELIVERY_OPTIONS", "FrontendEndpoint", "PdkDeliveryOptionsEvent", + "PdkEvent", + "PdkField", "StoreListener", "Util", "createPdkCheckout", diff --git a/apps/checkout/src/index.ts b/apps/checkout/src/index.ts index 78e60f50b..f3600c531 100644 --- a/apps/checkout/src/index.ts +++ b/apps/checkout/src/index.ts @@ -25,7 +25,14 @@ export type { StoreCallbackUpdate, } from '@myparcel-pdk/checkout-core'; -export {DeliveryOptionsMode} from '@myparcel-pdk/checkout-delivery-options'; +export {AddressField, AddressType, FrontendEndpoint, PdkEvent, PdkField} from '@myparcel-pdk/checkout-common'; + +export { + DeliveryOptionsMode, + PdkDeliveryOptionsEvent, + initializeCheckoutDeliveryOptions, + useDeliveryOptionsStore, +} from '@myparcel-pdk/checkout-delivery-options'; export { EVENT_HIDE_DELIVERY_OPTIONS, @@ -36,14 +43,6 @@ export { EVENT_UPDATE_DELIVERY_OPTIONS, } from '@myparcel-pdk/delivery-options'; -export {FrontendEndpoint} from '@myparcel-pdk/checkout-common'; - -export { - PdkDeliveryOptionsEvent, - initializeCheckoutDeliveryOptions, - useDeliveryOptionsStore, -} from '@myparcel-pdk/checkout-delivery-options'; - export { StoreListener, Util,