Compare commits
2 commits
a3753d0929
...
ef8334b93c
| Author | SHA1 | Date | |
|---|---|---|---|
| ef8334b93c | |||
| 794650afc6 |
4 changed files with 5 additions and 3 deletions
|
|
@ -271,7 +271,7 @@ actives[].functions (array, pick applicable):
|
|||
"humectant" | "emollient" | "occlusive" | "exfoliant_aha" | "exfoliant_bha" | \
|
||||
"exfoliant_pha" | "retinoid" | "antioxidant" | "soothing" | "barrier_support" | \
|
||||
"brightening" | "anti_acne" | "ceramide" | "niacinamide" | "sunscreen" | "peptide" | \
|
||||
"hair_growth_stimulant" | "prebiotic" | "vitamin_c"
|
||||
"hair_growth_stimulant" | "prebiotic" | "vitamin_c" | "anti_aging"
|
||||
|
||||
actives[].strength_level: 1 (low) | 2 (medium) | 3 (high)
|
||||
actives[].irritation_potential: 1 (low) | 2 (medium) | 3 (high)
|
||||
|
|
|
|||
|
|
@ -93,6 +93,7 @@ class IngredientFunction(str, Enum):
|
|||
HAIR_GROWTH_STIMULANT = "hair_growth_stimulant"
|
||||
PREBIOTIC = "prebiotic"
|
||||
VITAMIN_C = "vitamin_c"
|
||||
ANTI_AGING = "anti_aging"
|
||||
|
||||
|
||||
class TextureType(str, Enum):
|
||||
|
|
|
|||
|
|
@ -35,7 +35,7 @@
|
|||
'exfoliant_aha', 'exfoliant_bha', 'exfoliant_pha',
|
||||
'retinoid', 'antioxidant', 'soothing', 'barrier_support',
|
||||
'brightening', 'anti_acne', 'ceramide', 'niacinamide',
|
||||
'sunscreen', 'peptide', 'hair_growth_stimulant', 'prebiotic', 'vitamin_c'
|
||||
'sunscreen', 'peptide', 'hair_growth_stimulant', 'prebiotic', 'vitamin_c', 'anti_aging'
|
||||
];
|
||||
const interactionScopes: InteractionScope[] = ['same_step', 'same_day', 'same_period'];
|
||||
const tristate = [
|
||||
|
|
|
|||
|
|
@ -23,7 +23,8 @@ export type IngredientFunction =
|
|||
| 'peptide'
|
||||
| 'hair_growth_stimulant'
|
||||
| 'prebiotic'
|
||||
| 'vitamin_c';
|
||||
| 'vitamin_c'
|
||||
| 'anti_aging';
|
||||
export type InteractionScope = 'same_step' | 'same_day' | 'same_period';
|
||||
export type MedicationKind = 'prescription' | 'otc' | 'supplement' | 'herbal' | 'other';
|
||||
export type OverallSkinState = 'excellent' | 'good' | 'fair' | 'poor';
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue