File tree 3 files changed +5
-0
lines changed
3 files changed +5
-0
lines changed Original file line number Diff line number Diff line change @@ -24,4 +24,5 @@ export interface EntitySys extends BaseSys {
24
24
locale ?: string
25
25
contentSourceMaps ?: CPAContentSourceMaps
26
26
contentSourceMapsLookup ?: ContentSourceMapsLookup
27
+ publishedVersion : number
27
28
}
Original file line number Diff line number Diff line change @@ -65,6 +65,7 @@ export const entrySys: EntrySys = {
65
65
updatedAt : dateValue ,
66
66
id : stringValue ,
67
67
createdAt : dateValue ,
68
+ publishedVersion : numberValue ,
68
69
}
69
70
70
71
export const entryBasics = {
@@ -117,6 +118,7 @@ export const assetSys: AssetSys = {
117
118
updatedAt : dateValue ,
118
119
id : stringValue ,
119
120
createdAt : dateValue ,
121
+ publishedVersion : numberValue ,
120
122
}
121
123
122
124
export const assetBasics = {
Original file line number Diff line number Diff line change @@ -66,6 +66,7 @@ const tagSysMock: TagSys = {
66
66
updatedBy : { sys : copy ( userLinkMock ) } ,
67
67
space : { sys : copy ( spaceLinkMock ) } ,
68
68
environment : { sys : copy ( environmentLinkMock ) } ,
69
+ publishedVersion : 1 ,
69
70
}
70
71
71
72
const sysMock : EntrySys = {
@@ -78,6 +79,7 @@ const sysMock: EntrySys = {
78
79
space : { sys : copy ( spaceLinkMock ) } ,
79
80
contentType : { sys : copy ( contentTypeLinkMock ) } ,
80
81
environment : { sys : copy ( environmentLinkMock ) } ,
82
+ publishedVersion : 1 ,
81
83
}
82
84
83
85
const contentTypeMock : ContentType = {
You can’t perform that action at this time.
0 commit comments