@getcommunity/gc-validators 0.0.82 → 0.0.84
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +8 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +8 -8
- package/dist/index.d.ts +8 -8
- package/dist/index.js +8 -2
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -176,7 +176,12 @@ var ClientProjectPhaseSelectOptions = [
|
|
|
176
176
|
{
|
|
177
177
|
label: "Phase 5",
|
|
178
178
|
value: "p5",
|
|
179
|
-
description: "
|
|
179
|
+
description: "Final sale"
|
|
180
|
+
},
|
|
181
|
+
{
|
|
182
|
+
label: "Closed",
|
|
183
|
+
value: "closed",
|
|
184
|
+
description: "Sold out, no longer available"
|
|
180
185
|
}
|
|
181
186
|
];
|
|
182
187
|
var ClientProjectPhaseOptions = [
|
|
@@ -185,7 +190,8 @@ var ClientProjectPhaseOptions = [
|
|
|
185
190
|
"p2",
|
|
186
191
|
"p3",
|
|
187
192
|
"p4",
|
|
188
|
-
"p5"
|
|
193
|
+
"p5",
|
|
194
|
+
"closed"
|
|
189
195
|
];
|
|
190
196
|
|
|
191
197
|
// src/validators/validators-client-projects.ts
|