@@ -210,6 +210,8 @@ export const RELEASE_PLAN_TEMPLATE_UPDATED =
210
210
'release-plan-template-updated' as const ;
211
211
export const RELEASE_PLAN_TEMPLATE_DELETED =
212
212
'release-plan-template-deleted' as const ;
213
+ export const RELEASE_PLAN_TEMPLATE_ARCHIVED =
214
+ 'release-plan-template-archived' as const ;
213
215
214
216
export const RELEASE_PLAN_ADDED = 'release-plan-added' as const ;
215
217
export const RELEASE_PLAN_REMOVED = 'release-plan-removed' as const ;
@@ -370,6 +372,7 @@ export const IEventTypes = [
370
372
RELEASE_PLAN_TEMPLATE_CREATED ,
371
373
RELEASE_PLAN_TEMPLATE_UPDATED ,
372
374
RELEASE_PLAN_TEMPLATE_DELETED ,
375
+ RELEASE_PLAN_TEMPLATE_ARCHIVED ,
373
376
RELEASE_PLAN_ADDED ,
374
377
RELEASE_PLAN_REMOVED ,
375
378
RELEASE_PLAN_MILESTONE_STARTED ,
@@ -2094,6 +2097,20 @@ export class ReleasePlanTemplateDeletedEvent extends BaseEvent {
2094
2097
}
2095
2098
}
2096
2099
2100
+ export class ReleasePlanTemplateArchivedEvent extends BaseEvent {
2101
+ readonly preData : any ;
2102
+ readonly data : any ;
2103
+ constructor ( eventData : {
2104
+ data : any ;
2105
+ preData : any ;
2106
+ auditUser : IAuditUser ;
2107
+ } ) {
2108
+ super ( RELEASE_PLAN_TEMPLATE_ARCHIVED , eventData . auditUser ) ;
2109
+ this . data = eventData . data ;
2110
+ this . preData = eventData . preData ;
2111
+ }
2112
+ }
2113
+
2097
2114
export class ReleasePlanAddedEvent extends BaseEvent {
2098
2115
readonly project : string ;
2099
2116
readonly featureName : string ;
0 commit comments