File tree Expand file tree Collapse file tree 1 file changed +7
-3
lines changed Expand file tree Collapse file tree 1 file changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ export interface ProjectUpdatesStreamCommit {
2323 projectId : string ;
2424 pageId : string ;
2525 userId : string ;
26- changes : ( Change [ ] | [ Delete ] ) ;
26+ changes : Change [ ] | [ Delete ] ;
2727 cursor : null ;
2828 freeze : true ;
2929}
@@ -55,7 +55,7 @@ export interface CommitNotification {
5555 projectId : string ;
5656 pageId : string ;
5757 userId : string ;
58- changes : ( Change [ ] | [ Pin ] | [ Delete ] ) ;
58+ changes : Change [ ] | [ Pin ] | [ Delete ] ;
5959 cursor : null ;
6060 freeze : true ;
6161}
@@ -118,6 +118,7 @@ export type Change =
118118 | UpdateCommit
119119 | DeleteCommit
120120 | LinksCommit
121+ | ProjectLinksCommit
121122 | DescriptionsCommit
122123 | ImageCommit
123124 | TitleCommit ;
@@ -141,11 +142,14 @@ export interface DeleteCommit {
141142export interface LinksCommit {
142143 links : string [ ] ;
143144}
145+ export interface ProjectLinksCommit {
146+ projectLinks : string [ ] ;
147+ }
144148export interface DescriptionsCommit {
145149 descriptions : string [ ] ;
146150}
147151export interface ImageCommit {
148- image : string ;
152+ image : string | null ;
149153}
150154export interface TitleCommit {
151155 title : string ;
You can’t perform that action at this time.
0 commit comments