File tree Expand file tree Collapse file tree 1 file changed +10
-1
lines changed
Expand file tree Collapse file tree 1 file changed +10
-1
lines changed Original file line number Diff line number Diff line change @@ -73,13 +73,15 @@ export type ActivityUpdate =
7373 | ActivityTypeUpdate
7474 | ActivityCollaboratorsUpdate
7575 | ActivityProcess
76+ | ActivityCollaborativeChange
7677
7778export enum ActivityUpdateType {
7879 Attribute = 'attribute' ,
7980 Tag = 'tag' ,
8081 Collaborators = 'collaborators' ,
8182 Type = 'type' ,
82- Process = 'process'
83+ Process = 'process' ,
84+ CollaborativeChange = 'collaborativeChange'
8385}
8486
8587export interface ActivityProcess {
@@ -106,6 +108,13 @@ export interface ActivityTypeUpdate {
106108 newType : CardType
107109}
108110
111+ export interface ActivityCollaborativeChange {
112+ type : ActivityUpdateType . CollaborativeChange
113+ attrKey : string
114+ value : string
115+ prevValue : string
116+ }
117+
109118type AttributeValue = string | number | null
110119
111120export interface ActivityAttributeUpdate {
You can’t perform that action at this time.
0 commit comments