@@ -147,10 +147,8 @@ export namespace ExtensionConfig {
147147 min_selections ?: number ;
148148
149149 /**
150- * Array of possible tag values. The combined length of all strings must not exceed
151- * 500 characters, and values cannot include the `%` character. When providing
152- * large vocabularies (more than 30 items), the AI may not follow the list
153- * strictly.
150+ * Array of possible tag values. Combined length of all strings must not exceed 500
151+ * characters. Cannot contain the `%` character.
154152 */
155153 vocabulary ?: Array < string > ;
156154 }
@@ -183,10 +181,7 @@ export namespace ExtensionConfig {
183181 min_selections ?: number ;
184182
185183 /**
186- * An array of possible values matching the custom metadata field type. If not
187- * provided for SingleSelect or MultiSelect field types, all values from the custom
188- * metadata field definition will be used. When providing large vocabularies (above
189- * 30 items), the AI may not strictly adhere to the list.
184+ * Array of possible values matching the custom metadata field type.
190185 */
191186 vocabulary ?: Array < string | number | boolean > ;
192187 }
@@ -473,10 +468,8 @@ export namespace Extensions {
473468 min_selections ?: number ;
474469
475470 /**
476- * Array of possible tag values. The combined length of all strings must not exceed
477- * 500 characters, and values cannot include the `%` character. When providing
478- * large vocabularies (more than 30 items), the AI may not follow the list
479- * strictly.
471+ * Array of possible tag values. Combined length of all strings must not exceed 500
472+ * characters. Cannot contain the `%` character.
480473 */
481474 vocabulary ?: Array < string > ;
482475 }
@@ -509,10 +502,7 @@ export namespace Extensions {
509502 min_selections ?: number ;
510503
511504 /**
512- * An array of possible values matching the custom metadata field type. If not
513- * provided for SingleSelect or MultiSelect field types, all values from the custom
514- * metadata field definition will be used. When providing large vocabularies (above
515- * 30 items), the AI may not strictly adhere to the list.
505+ * Array of possible values matching the custom metadata field type.
516506 */
517507 vocabulary ?: Array < string | number | boolean > ;
518508 }
@@ -792,25 +782,8 @@ export type Overlay = TextOverlay | ImageOverlay | VideoOverlay | SubtitleOverla
792782
793783export interface OverlayPosition {
794784 /**
795- * Sets the anchor point on the base asset from which the overlay offset is
796- * calculated. The default value is `top_left`. Maps to `lap` in the URL. Can only
797- * be used with one or more of `x`, `y`, `xCenter`, or `yCenter`.
798- */
799- anchorPoint ?:
800- | 'top'
801- | 'left'
802- | 'right'
803- | 'bottom'
804- | 'top_left'
805- | 'top_right'
806- | 'bottom_left'
807- | 'bottom_right'
808- | 'center' ;
809-
810- /**
811- * Specifies the position of the overlay relative to the parent image or video. If
812- * one or more of `x`, `y`, `xCenter`, or `yCenter` parameters are specified, this
813- * parameter is ignored. Maps to `lfo` in the URL.
785+ * Specifies the position of the overlay relative to the parent image or video.
786+ * Maps to `lfo` in the URL.
814787 */
815788 focus ?:
816789 | 'center'
@@ -832,15 +805,6 @@ export interface OverlayPosition {
832805 */
833806 x ?: number | string ;
834807
835- /**
836- * Specifies the x-coordinate on the base asset where the overlay's center will be
837- * positioned. It also accepts arithmetic expressions such as `bw_mul_0.4` or
838- * `bw_sub_cw`. Maps to `lxc` in the URL. Cannot be used together with `x`, but can
839- * be used with `y`. Learn about
840- * [Arithmetic expressions](https://imagekit.io/docs/arithmetic-expressions-in-transformations).
841- */
842- xCenter ?: number | string ;
843-
844808 /**
845809 * Specifies the y-coordinate of the top-left corner of the base asset where the
846810 * overlay's top-left corner will be positioned. It also accepts arithmetic
@@ -849,15 +813,6 @@ export interface OverlayPosition {
849813 * [Arithmetic expressions](https://imagekit.io/docs/arithmetic-expressions-in-transformations).
850814 */
851815 y ?: number | string ;
852-
853- /**
854- * Specifies the y-coordinate on the base asset where the overlay's center will be
855- * positioned. It also accepts arithmetic expressions such as `bh_mul_0.4` or
856- * `bh_sub_ch`. Maps to `lyc` in the URL. Cannot be used together with `y`, but can
857- * be used with `x`. Learn about
858- * [Arithmetic expressions](https://imagekit.io/docs/arithmetic-expressions-in-transformations).
859- */
860- yCenter ?: number | string ;
861816}
862817
863818export interface OverlayTiming {
0 commit comments