unlayer-types 1.470.0 → 1.471.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 +10 -4
- package/package.json +1 -1
package/embed.d.ts
CHANGED
|
@@ -2060,6 +2060,10 @@ declare module "packages/editor/src/engine/config/features" {
|
|
|
2060
2060
|
heading?: string;
|
|
2061
2061
|
body?: string;
|
|
2062
2062
|
};
|
|
2063
|
+
logos?: {
|
|
2064
|
+
primary?: string;
|
|
2065
|
+
secondary?: string;
|
|
2066
|
+
};
|
|
2063
2067
|
voice?: string;
|
|
2064
2068
|
guidelines?: string;
|
|
2065
2069
|
}
|
|
@@ -2226,9 +2230,10 @@ declare module "packages/editor/src/engine/config/features" {
|
|
|
2226
2230
|
/**
|
|
2227
2231
|
* Brand context applied to every AI Assistant text and design
|
|
2228
2232
|
* generation. Invalid colors are ignored. Company and font names
|
|
2229
|
-
* are capped at 200 characters; other text fields at 2,000.
|
|
2233
|
+
* are capped at 200 characters; other text fields at 2,000. Set to
|
|
2234
|
+
* `null` to explicitly disable the saved project Brand Context.
|
|
2230
2235
|
*/
|
|
2231
|
-
brand?: AIBrand;
|
|
2236
|
+
brand?: AIBrand | null;
|
|
2232
2237
|
/**
|
|
2233
2238
|
* Disable full-template, page, and body generation in the AI
|
|
2234
2239
|
* Assistant when set to `false` — usually for cost or latency
|
|
@@ -2436,9 +2441,10 @@ declare module "packages/editor/src/engine/config/features" {
|
|
|
2436
2441
|
/**
|
|
2437
2442
|
* Brand context applied to every AI Assistant text and design
|
|
2438
2443
|
* generation. Invalid colors are ignored. Company and font names
|
|
2439
|
-
* are capped at 200 characters; other text fields at 2,000.
|
|
2444
|
+
* are capped at 200 characters; other text fields at 2,000. Set to
|
|
2445
|
+
* `null` to explicitly disable the saved project Brand Context.
|
|
2440
2446
|
*/
|
|
2441
|
-
brand?: AIBrand;
|
|
2447
|
+
brand?: AIBrand | null;
|
|
2442
2448
|
/**
|
|
2443
2449
|
* Disable full-template, page, and body generation in the AI
|
|
2444
2450
|
* Assistant when set to `false` — usually for cost or latency
|
package/package.json
CHANGED