diff --git a/packages/types/src/config/types.gen.ts b/packages/types/src/config/types.gen.ts index 486eb9db..2dc05254 100644 --- a/packages/types/src/config/types.gen.ts +++ b/packages/types/src/config/types.gen.ts @@ -778,11 +778,11 @@ export type RuleObjectAudience = { */ OR?: Array<{ /** - * An array of OR_WHEN-blocks. + * This describes a colections of logical blocks which are evaluated using AND's between them */ AND?: Array<{ /** - * An array of individual rule elements that do not involve URL matching. + * This describes a colections of logical blocks which are evaluated using OR's between them */ OR_WHEN?: Array; }>; @@ -1816,6 +1816,10 @@ export type ConfigExperience = { */ products_ordered_count?: (NumericOutlier); }; + /** + * List of placeholders used by this experience (from changes, global_js, and global_css) + */ + placeholders?: Array<(string)>; /** * A couple of settings only applicable to Split URL experiments */ @@ -2485,6 +2489,10 @@ export type ConfigProject = { * List of active placeholders which are used in experiences for the project */ placeholders?: Array<(string)>; + /** + * List of placeholders used in project's Global JavaScript (convertPlaceholders.) + */ + global_javascript_placeholders?: Array<(string)>; } & ConfigProjectMinimalSettings); };