@@ -136,6 +136,28 @@ class Meta:
136
136
payload = Field (GenericScalar , required = True )
137
137
138
138
139
+ class ProposedChangeReviewRequestedEvent (ObjectType ):
140
+ class Meta :
141
+ interfaces = (EventNodeInterface ,)
142
+
143
+ requested_by_account_id = String (
144
+ required = True , description = "The ID of the user who requested the proposed change to be reviewed"
145
+ )
146
+ requested_by_account_name = String (
147
+ required = True , description = "The name of the user who requested the proposed change to be reviewed"
148
+ )
149
+ payload = Field (GenericScalar , required = True )
150
+
151
+
152
+ class ProposedChangeMergedEvent (ObjectType ):
153
+ class Meta :
154
+ interfaces = (EventNodeInterface ,)
155
+
156
+ merged_by_account_id = String (required = True , description = "The ID of the user who merged the proposed change" )
157
+ merged_by_account_name = String (required = True , description = "The name of the user who merged the proposed change" )
158
+ payload = Field (GenericScalar , required = True )
159
+
160
+
139
161
# ---------------------------------------
140
162
# Node/Object events
141
163
# ---------------------------------------
@@ -190,5 +212,7 @@ class Meta:
190
212
events .ProposedChangeApprovalRevokedEvent .event_name : ProposedChangeReviewRevokedEvent ,
191
213
events .ProposedChangeRejectedEvent .event_name : ProposedChangeReviewEvent ,
192
214
events .ProposedChangeRejectionRevokedEvent .event_name : ProposedChangeReviewRevokedEvent ,
215
+ events .ProposedChangeReviewRequestedEvent .event_name : ProposedChangeReviewRequestedEvent ,
216
+ events .ProposedChangeMergedEvent .event_name : ProposedChangeMergedEvent ,
193
217
"undefined" : StandardEvent ,
194
218
}
0 commit comments