Skip to content

Commit 9202426

Browse files
authored
Merge pull request #365 from convertcom/fix/experience-types
fix: add a/b_fullstack and feature_rollout to ExperienceTypes
2 parents ce110f0 + 1d9556a commit 9202426

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

packages/types/src/config/types.gen.ts

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1899,15 +1899,17 @@ export const ExperienceStatuses = {
18991899
SCHEDULED: 'scheduled'
19001900
} as const;
19011901

1902-
export type ExperienceTypes = 'a/b' | 'a/a' | 'mvt' | 'split_url' | 'multipage' | 'deploy';
1902+
export type ExperienceTypes = 'a/b' | 'a/a' | 'mvt' | 'split_url' | 'multipage' | 'deploy' | 'a/b_fullstack' | 'feature_rollout';
19031903

19041904
export const ExperienceTypes = {
19051905
A_B: 'a/b',
19061906
A_A: 'a/a',
19071907
MVT: 'mvt',
19081908
SPLIT_URL: 'split_url',
19091909
MULTIPAGE: 'multipage',
1910-
DEPLOY: 'deploy'
1910+
DEPLOY: 'deploy',
1911+
A_B_FULLSTACK: 'a/b_fullstack',
1912+
FEATURE_ROLLOUT: 'feature_rollout'
19111913
} as const;
19121914

19131915
/**

0 commit comments

Comments
 (0)