unlayer-types 1.235.0 → 1.239.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/embed.d.ts +2 -1
- package/package.json +1 -1
package/embed.d.ts
CHANGED
@@ -1826,7 +1826,7 @@ declare module "embed/Config" {
|
|
1826
1826
|
designId?: string;
|
1827
1827
|
designMode?: string;
|
1828
1828
|
displayMode?: DisplayMode;
|
1829
|
-
env?: Record<'API_V1_BASE_URL' | 'API_V2_BASE_URL' | 'EVENTS_API_BASE_URL' | 'TOOLS_API_V1_BASE_URL' | 'TOOLS_CDN_BASE_URL' | 'CONSOLE_BASE_URL', string | undefined>;
|
1829
|
+
env?: Record<'API_V1_BASE_URL' | 'API_V2_BASE_URL' | 'API_V3_BASE_URL' | 'EVENTS_API_BASE_URL' | 'TOOLS_API_V1_BASE_URL' | 'TOOLS_CDN_BASE_URL' | 'CONSOLE_BASE_URL', string | undefined>;
|
1830
1830
|
projectId?: number | null;
|
1831
1831
|
user?: User;
|
1832
1832
|
templateId?: number;
|
@@ -2450,6 +2450,7 @@ declare module "engine/config/env" {
|
|
2450
2450
|
export const env: {
|
2451
2451
|
API_V1_BASE_URL: string;
|
2452
2452
|
API_V2_BASE_URL: string;
|
2453
|
+
API_V3_BASE_URL: string;
|
2453
2454
|
EVENTS_API_BASE_URL: string;
|
2454
2455
|
TOOLS_API_V1_BASE_URL: string;
|
2455
2456
|
TOOLS_CDN_BASE_URL: string;
|
package/package.json
CHANGED