Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 10 additions & 2 deletions packages/types/src/config/types.gen.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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<RuleElementAudience>;
}>;
Expand Down Expand Up @@ -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
*/
Expand Down Expand Up @@ -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.<key>)
*/
global_javascript_placeholders?: Array<(string)>;
} & ConfigProjectMinimalSettings);
};

Expand Down