File tree Expand file tree Collapse file tree 3 files changed +21
-2
lines changed Expand file tree Collapse file tree 3 files changed +21
-2
lines changed Original file line number Diff line number Diff line change 1
1
{
2
- "version" : " 0.8.4 " ,
2
+ "version" : " 0.8.5 " ,
3
3
"license" : " MIT" ,
4
4
"main" : " dist/index.js" ,
5
5
"typings" : " dist/index.d.ts" ,
Original file line number Diff line number Diff line change @@ -679,6 +679,9 @@ export const UPDATE_ATTRIBUTES = gql`
679
679
id
680
680
value
681
681
}
682
+ attribute_type {
683
+ name
684
+ }
682
685
created_at
683
686
}
684
687
}
Original file line number Diff line number Diff line change @@ -30,6 +30,7 @@ export interface StatusInterface {
30
30
id : string ;
31
31
name : string ;
32
32
is_default ?: boolean ;
33
+ is_published ?: boolean ;
33
34
slug : string ;
34
35
}
35
36
@@ -47,7 +48,14 @@ export interface AttributesInterface {
47
48
companies : ProductCompany [ ] ;
48
49
is_visible : boolean ;
49
50
is_searchable : boolean ;
50
- is_filterable : boolean ;
51
+ is_filtrable : boolean ;
52
+ slug : string ;
53
+ attribute_type : {
54
+ id : number ;
55
+ name : string ;
56
+ is_defaault : boolean ;
57
+ slug : string ;
58
+ } ;
51
59
values : {
52
60
id : string ;
53
61
value : string | number ;
@@ -77,6 +85,11 @@ export interface RegionsInterface {
77
85
short_slug : string ;
78
86
settings : string ;
79
87
is_default : boolean ;
88
+ currencies : {
89
+ code : string ;
90
+ currency : string ;
91
+ id : number ;
92
+ } ;
80
93
company : ProductCompany ;
81
94
}
82
95
@@ -128,6 +141,9 @@ export interface VariantInterface {
128
141
name : string ;
129
142
} ;
130
143
} [ ] ;
144
+ files : {
145
+ data : FilesystemInterface [ ] ;
146
+ } ;
131
147
attributes ?: ProductAttributes [ ] ;
132
148
product : ProductInterface ;
133
149
}
You can’t perform that action at this time.
0 commit comments