|
49 | 49 | from .create import Create as Create |
50 | 50 | from .custom_property_created import CustomPropertyCreated as CustomPropertyCreated |
51 | 51 | from .custom_property_deleted import CustomPropertyDeleted as CustomPropertyDeleted |
| 52 | + from .custom_property_promote_to_enterprise import ( |
| 53 | + CustomPropertyPromotedToEnterprise as CustomPropertyPromotedToEnterprise, |
| 54 | + ) |
52 | 55 | from .custom_property_updated import CustomPropertyUpdated as CustomPropertyUpdated |
53 | 56 | from .custom_property_values import ( |
54 | 57 | CustomPropertyValuesUpdated as CustomPropertyValuesUpdated, |
|
139 | 142 | from .issue_comment_created import IssueCommentCreated as IssueCommentCreated |
140 | 143 | from .issue_comment_deleted import IssueCommentDeleted as IssueCommentDeleted |
141 | 144 | from .issue_comment_edited import IssueCommentEdited as IssueCommentEdited |
| 145 | + from .issue_dependencies_blocked_by_added import ( |
| 146 | + IssueDependenciesBlockedByAdded as IssueDependenciesBlockedByAdded, |
| 147 | + ) |
| 148 | + from .issue_dependencies_blocked_by_removed import ( |
| 149 | + IssueDependenciesBlockedByRemoved as IssueDependenciesBlockedByRemoved, |
| 150 | + ) |
| 151 | + from .issue_dependencies_blocking_added import ( |
| 152 | + IssueDependenciesBlockingAdded as IssueDependenciesBlockingAdded, |
| 153 | + ) |
| 154 | + from .issue_dependencies_blocking_removed import ( |
| 155 | + IssueDependenciesBlockingRemoved as IssueDependenciesBlockingRemoved, |
| 156 | + ) |
142 | 157 | from .issues_assigned import IssuesAssigned as IssuesAssigned |
143 | 158 | from .issues_closed import IssuesClosed as IssuesClosed |
144 | 159 | from .issues_deleted import IssuesDeleted as IssuesDeleted |
|
151 | 166 | from .issues_pinned import IssuesPinned as IssuesPinned |
152 | 167 | from .issues_reopened import IssuesReopened as IssuesReopened |
153 | 168 | from .issues_transferred import IssuesTransferred as IssuesTransferred |
| 169 | + from .issues_typed import IssuesTyped as IssuesTyped |
154 | 170 | from .issues_unassigned import IssuesUnassigned as IssuesUnassigned |
155 | 171 | from .issues_unlabeled import IssuesUnlabeled as IssuesUnlabeled |
156 | 172 | from .issues_unlocked import IssuesUnlocked as IssuesUnlocked |
157 | 173 | from .issues_unpinned import IssuesUnpinned as IssuesUnpinned |
| 174 | + from .issues_untyped import IssuesUntyped as IssuesUntyped |
158 | 175 | from .label_created import LabelCreated as LabelCreated |
159 | 176 | from .label_deleted import LabelDeleted as LabelDeleted |
160 | 177 | from .label_edited import LabelEdited as LabelEdited |
|
382 | 399 | from .repository_vulnerability_alert_resolve import ( |
383 | 400 | RepositoryVulnerabilityAlertResolve as RepositoryVulnerabilityAlertResolve, |
384 | 401 | ) |
| 402 | + from .secret_scanning_alert_assigned import ( |
| 403 | + SecretScanningAlertAssigned as SecretScanningAlertAssigned, |
| 404 | + ) |
385 | 405 | from .secret_scanning_alert_created import ( |
386 | 406 | SecretScanningAlertCreated as SecretScanningAlertCreated, |
387 | 407 | ) |
|
397 | 417 | from .secret_scanning_alert_resolved import ( |
398 | 418 | SecretScanningAlertResolved as SecretScanningAlertResolved, |
399 | 419 | ) |
| 420 | + from .secret_scanning_alert_unassigned import ( |
| 421 | + SecretScanningAlertUnassigned as SecretScanningAlertUnassigned, |
| 422 | + ) |
400 | 423 | from .secret_scanning_alert_validated import ( |
401 | 424 | SecretScanningAlertValidated as SecretScanningAlertValidated, |
402 | 425 | ) |
|
489 | 512 | ".create": ("Create",), |
490 | 513 | ".custom_property_created": ("CustomPropertyCreated",), |
491 | 514 | ".custom_property_deleted": ("CustomPropertyDeleted",), |
| 515 | + ".custom_property_promote_to_enterprise": ( |
| 516 | + "CustomPropertyPromotedToEnterprise", |
| 517 | + ), |
492 | 518 | ".custom_property_updated": ("CustomPropertyUpdated",), |
493 | 519 | ".custom_property_values": ("CustomPropertyValuesUpdated",), |
494 | 520 | ".delete": ("Delete",), |
|
541 | 567 | ".issue_comment_created": ("IssueCommentCreated",), |
542 | 568 | ".issue_comment_deleted": ("IssueCommentDeleted",), |
543 | 569 | ".issue_comment_edited": ("IssueCommentEdited",), |
| 570 | + ".issue_dependencies_blocked_by_added": ("IssueDependenciesBlockedByAdded",), |
| 571 | + ".issue_dependencies_blocked_by_removed": ( |
| 572 | + "IssueDependenciesBlockedByRemoved", |
| 573 | + ), |
| 574 | + ".issue_dependencies_blocking_added": ("IssueDependenciesBlockingAdded",), |
| 575 | + ".issue_dependencies_blocking_removed": ("IssueDependenciesBlockingRemoved",), |
544 | 576 | ".issues_assigned": ("IssuesAssigned",), |
545 | 577 | ".issues_closed": ("IssuesClosed",), |
546 | 578 | ".issues_deleted": ("IssuesDeleted",), |
|
553 | 585 | ".issues_pinned": ("IssuesPinned",), |
554 | 586 | ".issues_reopened": ("IssuesReopened",), |
555 | 587 | ".issues_transferred": ("IssuesTransferred",), |
| 588 | + ".issues_typed": ("IssuesTyped",), |
556 | 589 | ".issues_unassigned": ("IssuesUnassigned",), |
557 | 590 | ".issues_unlabeled": ("IssuesUnlabeled",), |
558 | 591 | ".issues_unlocked": ("IssuesUnlocked",), |
559 | 592 | ".issues_unpinned": ("IssuesUnpinned",), |
| 593 | + ".issues_untyped": ("IssuesUntyped",), |
560 | 594 | ".label_created": ("LabelCreated",), |
561 | 595 | ".label_deleted": ("LabelDeleted",), |
562 | 596 | ".label_edited": ("LabelEdited",), |
|
700 | 734 | ".repository_vulnerability_alert_resolve": ( |
701 | 735 | "RepositoryVulnerabilityAlertResolve", |
702 | 736 | ), |
| 737 | + ".secret_scanning_alert_assigned": ("SecretScanningAlertAssigned",), |
703 | 738 | ".secret_scanning_alert_created": ("SecretScanningAlertCreated",), |
704 | 739 | ".secret_scanning_alert_publicly_leaked": ( |
705 | 740 | "SecretScanningAlertPubliclyLeaked", |
706 | 741 | ), |
707 | 742 | ".secret_scanning_alert_reopened": ("SecretScanningAlertReopened",), |
708 | 743 | ".secret_scanning_alert_resolved": ("SecretScanningAlertResolved",), |
| 744 | + ".secret_scanning_alert_unassigned": ("SecretScanningAlertUnassigned",), |
709 | 745 | ".secret_scanning_alert_validated": ("SecretScanningAlertValidated",), |
710 | 746 | ".secret_scanning_alert_location": ("SecretScanningAlertLocationCreated",), |
711 | 747 | ".secret_scanning_scan": ("SecretScanningScanCompleted",), |
|
0 commit comments