-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdvcVariableTypes.ts
More file actions
183 lines (154 loc) · 3.64 KB
/
dvcVariableTypes.ts
File metadata and controls
183 lines (154 loc) · 3.64 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
import { DevCycleJSON } from "@devcycle/js-client-sdk"
declare module "@devcycle/types" {
interface CustomVariableDefinitions extends DVCVariableTypes {
// Marker property to satisfy lint rule requiring a non-empty interface
__dvc_non_empty__?: never
}
}
export type CustomData = {
"is-premium-user"?: boolean
email?: string
has_awards?: boolean
}
export type DVCVariableTypes = {
/**
* key: saleprice
* created by: Parth Suthar
* created on: 2025-09-05
*/
saleprice: number
/**
* key: banner-props
* created by: Parth Suthar
* created on: 2025-07-03
*/
"banner-props": DevCycleJSON
/**
* key: show-canada-day-banner
* created by: Parth Suthar
* created on: 2025-07-03
*/
"show-canada-day-banner": boolean
/**
* key: new-flow
* created by: Parth Suthar
* created on: 2025-06-20
*/
"new-flow": boolean
/**
* key: use-neon
* created by: Parth Suthar
* created on: 2025-06-20
*/
"use-neon": boolean
/**
* key: free-shipping
* created by: Parth Suthar
* created on: 2025-06-19
*/
"free-shipping": boolean
/**
* key: example-text
* created by: Parth Suthar
* created on: 2024-11-08
*/
"example-text": string
/**
* key: togglebot-speed
* created by: Parth Suthar
* created on: 2024-11-08
*/
"togglebot-speed": string
/**
* key: togglebot-wink
* created by: Parth Suthar
* created on: 2024-11-08
*/
"togglebot-wink": boolean
/**
* key: feature-to-test
* created by: Parth Suthar
* created on: 2023-09-25
*/
"feature-to-test": string
}
/**
* key: show-popular-product-border
* description: Whether to render the highlighted border around the Popular Products section.
* created by: Parth Suthar
* created on: 2025-09-05
* @deprecated This variable is part of complete feature "Popular Products" and should be cleaned up.
*/
/**
* key: show-popular-products
* description: Whether to render the Popular Products section.
* created by: Parth Suthar
* created on: 2025-09-05
* @deprecated This variable is part of complete feature "Popular Products" and should be cleaned up.
*/
/**
* key: saleprice
* created by: Parth Suthar
* created on: 2025-09-05
*/
export const SALEPRICE = "saleprice" as const
/**
* key: banner-props
* created by: Parth Suthar
* created on: 2025-07-03
*/
export const BANNER_PROPS = "banner-props" as const
/**
* key: show-canada-day-banner
* created by: Parth Suthar
* created on: 2025-07-03
*/
export const SHOW_CANADA_DAY_BANNER = "show-canada-day-banner" as const
/**
* key: new-flow
* created by: Parth Suthar
* created on: 2025-06-20
*/
export const NEW_FLOW = "new-flow" as const
/**
* key: use-neon
* created by: Parth Suthar
* created on: 2025-06-20
*/
export const USE_NEON = "use-neon" as const
/**
* key: free-shipping
* created by: Parth Suthar
* created on: 2025-06-19
*/
export const FREE_SHIPPING = "free-shipping" as const
/**
* key: complete
* created by: Parth Suthar
* created on: 2025-06-05
* @deprecated This variable is part of complete feature "complete" and should be cleaned up.
*/
/**
* key: example-text
* created by: Parth Suthar
* created on: 2024-11-08
*/
export const EXAMPLE_TEXT = "example-text" as const
/**
* key: togglebot-speed
* created by: Parth Suthar
* created on: 2024-11-08
*/
export const TOGGLEBOT_SPEED = "togglebot-speed" as const
/**
* key: togglebot-wink
* created by: Parth Suthar
* created on: 2024-11-08
*/
export const TOGGLEBOT_WINK = "togglebot-wink" as const
/**
* key: feature-to-test
* created by: Parth Suthar
* created on: 2023-09-25
*/
export const FEATURE_TO_TEST = "feature-to-test" as const