20: printproduct group mutation (#21)

* Finished the mutation for productGroups

* Fixes after CR

* added enums for typeid
This commit is contained in:
Arwid Thornström
2021-09-03 15:11:06 +02:00
committed by GitHub
parent a4b847c7be
commit 8d83205747
5 changed files with 146 additions and 1 deletions
+15
View File
@@ -51,6 +51,21 @@ export enum ProductGroup {
UNKNOWN = 9,
}
export enum ProductMaterials {
STANDARD_WALLPAPER = 1,
SELF_ADHESIVE_WALLPAPER = 2,
STANDARD_CANVAS = 3,
PREMIUM_WALLPAPER = 4,
PREMIUM_POSTER = 5,
PREMIUM_FRAMED_PRINT = 6,
}
export enum ProductSizeTypes {
SCALING = 1,
FIXED = 2,
TILING = 3,
}
export enum ProductType {
UNKNOWN = 0,
PHOTO = 1,