@@ -4,66 +4,74 @@ hide methods
44enum EventSubscriptionResourceTypeId {
55 IMPORT_API
66}
7- interface Event [[Event . svg ]] {
7+ interface BaseEvent [[BaseEvent . svg ]] {
88 id : String
99 notificationType : String
1010 resourceType : [[EventSubscriptionResourceTypeId . svg EventSubscriptionResourceTypeId ]]
1111 type : [[EventType . svg EventType ]]
1212 data : [[Object . svg Object ]]
1313 createdAt : DateTime
1414}
15+ interface Event [[Event . svg ]] {
16+ id : String
17+ notificationType : String
18+ resourceType : [[EventSubscriptionResourceTypeId . svg EventSubscriptionResourceTypeId ]]
19+ type : [[EventType . svg EventType ]]
20+ createdAt : DateTime
21+ }
1522interface ImportContainerCreatedEvent [[ImportContainerCreatedEvent . svg ]] {
1623 id : String
1724 notificationType : String
1825 resourceType : [[EventSubscriptionResourceTypeId . svg EventSubscriptionResourceTypeId ]]
1926 type : [[EventType . svg EventType ]]
20- data : [[ImportContainerCreatedEventData . svg ImportContainerCreatedEventData ]]
2127 createdAt : DateTime
28+ data : [[ImportContainerCreatedEventData . svg ImportContainerCreatedEventData ]]
2229}
2330interface ImportContainerDeletedEvent [[ImportContainerDeletedEvent . svg ]] {
2431 id : String
2532 notificationType : String
2633 resourceType : [[EventSubscriptionResourceTypeId . svg EventSubscriptionResourceTypeId ]]
2734 type : [[EventType . svg EventType ]]
28- data : [[ImportContainerDeletedEventData . svg ImportContainerDeletedEventData ]]
2935 createdAt : DateTime
36+ data : [[ImportContainerDeletedEventData . svg ImportContainerDeletedEventData ]]
3037}
3138interface ImportOperationRejectedEvent [[ImportOperationRejectedEvent . svg ]] {
3239 id : String
3340 notificationType : String
3441 resourceType : [[EventSubscriptionResourceTypeId . svg EventSubscriptionResourceTypeId ]]
3542 type : [[EventType . svg EventType ]]
36- data : [[ImportOperationRejectedEventData . svg ImportOperationRejectedEventData ]]
3743 createdAt : DateTime
44+ data : [[ImportOperationRejectedEventData . svg ImportOperationRejectedEventData ]]
3845}
3946interface ImportUnresolvedEvent [[ImportUnresolvedEvent . svg ]] {
4047 id : String
4148 notificationType : String
4249 resourceType : [[EventSubscriptionResourceTypeId . svg EventSubscriptionResourceTypeId ]]
4350 type : [[EventType . svg EventType ]]
44- data : [[ImportUnresolvedEventData . svg ImportUnresolvedEventData ]]
4551 createdAt : DateTime
52+ data : [[ImportUnresolvedEventData . svg ImportUnresolvedEventData ]]
4653}
4754interface ImportValidationFailedEvent [[ImportValidationFailedEvent . svg ]] {
4855 id : String
4956 notificationType : String
5057 resourceType : [[EventSubscriptionResourceTypeId . svg EventSubscriptionResourceTypeId ]]
5158 type : [[EventType . svg EventType ]]
52- data : [[ImportValidationFailedEventData . svg ImportValidationFailedEventData ]]
5359 createdAt : DateTime
60+ data : [[ImportValidationFailedEventData . svg ImportValidationFailedEventData ]]
5461}
5562interface ImportWaitForMasterVariantEvent [[ImportWaitForMasterVariantEvent . svg ]] {
5663 id : String
5764 notificationType : String
5865 resourceType : [[EventSubscriptionResourceTypeId . svg EventSubscriptionResourceTypeId ]]
5966 type : [[EventType . svg EventType ]]
60- data : [[ImportWaitForMasterVariantEventData . svg ImportWaitForMasterVariantEventData ]]
6167 createdAt : DateTime
68+ data : [[ImportWaitForMasterVariantEventData . svg ImportWaitForMasterVariantEventData ]]
6269}
6370interface EventSubscription [[EventSubscription . svg ]] {
6471 resourceTypeId : [[EventSubscriptionResourceTypeId . svg EventSubscriptionResourceTypeId ]]
6572 types : [[EventType . svg List <EventType >]]
6673}
74+ EventSubscriptionResourceTypeId --> BaseEvent #green ;text :green : "resourceType"
6775EventSubscriptionResourceTypeId --> Event #green ;text :green : "resourceType"
6876EventSubscriptionResourceTypeId --> ImportContainerCreatedEvent #green ;text :green : "resourceType"
6977EventSubscriptionResourceTypeId --> ImportContainerDeletedEvent #green ;text :green : "resourceType"
0 commit comments