Skip to content

Commit

Permalink
Add product status field (#57)
Browse files Browse the repository at this point in the history
  • Loading branch information
robwittman authored Mar 7, 2021
1 parent 7554e22 commit d2867b2
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/Enum/Fields/ProductFields.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ class ProductFields extends AbstractObjectEnum
const PRODUCT_TYPE = 'product_type';
const PUBLISHED_AT = 'published_at';
const PUBLISHED_SCOPE = 'published_scope';
const STATUS = 'status';
const TAGS = 'tags';
const TEMPLATE_SUFFIX = 'template_suffix';
const TITLE = 'title';
Expand All @@ -35,6 +36,7 @@ public function getFieldTypes()
'product_type' => 'string',
'published_at' => 'DateTime',
'published_scope' => 'string',
'status' => 'string',
'tags' => 'string',
'template_suffix' => 'string',
'title' => 'string',
Expand Down

0 comments on commit d2867b2

Please sign in to comment.