ov25-setup 0.2.9 → 0.2.10
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/components/ConfiguratorSetup/index.d.ts +4 -1
- package/dist/components/ConfiguratorSetup/preview-config-serializable.d.ts +13 -0
- package/dist/components/ConfiguratorSetup/types.d.ts +12 -0
- package/dist/components/ConfiguratorSetup/useConfiguratorSetup.d.ts +12 -0
- package/dist/index.css +1 -1
- package/dist/index.js +4281 -4130
- package/dist/index.js.map +1 -1
- package/dist/lib/config/preview-config.d.ts +3 -1
- package/package.json +1 -1
|
@@ -1,5 +1,7 @@
|
|
|
1
|
-
export type LayoutType = 'standard' | 'snap2';
|
|
1
|
+
export type LayoutType = 'standard' | 'snap2' | 'bedConfigurator';
|
|
2
2
|
export type PreviewLayoutType = LayoutType;
|
|
3
|
+
export declare const CONFIGURATOR_PREVIEW_PRODUCTION_BASE_URL = "https://app.ov25.ai/configurator-preview";
|
|
4
|
+
export declare const CONFIGURATOR_PREVIEW_LOCAL_BASE_URL = "http://app.localhost:3000/configurator-preview";
|
|
3
5
|
export declare const PREVIEW_PRODUCT_LINKS: Record<LayoutType, string>;
|
|
4
6
|
export declare const DEFAULT_PREVIEW_API_KEY = "15-5f9c5d4197f8b45ee615ac2476e8354a160f384f01c72cd7f2638f41e164c21d";
|
|
5
7
|
export declare const SNAP2_PREVIEW_STARTING_CONFIG_UUID = "e7c2e5a0-1234-5678-9abc-def012345678";
|