|
1 | 1 | # import some commonly used models to ensure they are available |
2 | 2 |
|
3 | 3 | # SimpleUser |
| 4 | +# backport |
| 5 | +from githubkit.versions.ghec_v2022_11_28.models import ( # noqa: F401 |
| 6 | + SimpleUser as BackportSimpleUserGhecV2022_11_28, |
| 7 | +) |
| 8 | +from githubkit.versions.ghec_v2026_03_10.models import ( # noqa: F401 |
| 9 | + SimpleUser as BackportSimpleUserGhecV2026_03_10, |
| 10 | +) |
| 11 | +from githubkit.versions.latest.models import ( # noqa: F401 |
| 12 | + SimpleUser as BackportSimpleUserLatest, |
| 13 | +) |
| 14 | +from githubkit.versions.v2022_11_28.models import ( # noqa: F401 |
| 15 | + SimpleUser as BackportSimpleUserV2022_11_28, |
| 16 | +) |
| 17 | +from githubkit.versions.v2026_03_10.models import ( # noqa: F401 |
| 18 | + SimpleUser as BackportSimpleUserV2026_03_10, |
| 19 | +) |
| 20 | + |
| 21 | +# direct |
4 | 22 | from githubkit_schemas.ghec_v2022_11_28.models import ( # noqa: F401 |
5 | 23 | SimpleUser as SimpleUserGhecV2022_11_28, |
6 | 24 | ) |
|
20 | 38 | # isort: split |
21 | 39 |
|
22 | 40 | # Repository |
| 41 | +# backport |
| 42 | +from githubkit.versions.ghec_v2022_11_28.models import ( # noqa: F401 |
| 43 | + Repository as BackportRepositoryGhecV2022_11_28, |
| 44 | +) |
| 45 | +from githubkit.versions.ghec_v2026_03_10.models import ( # noqa: F401 |
| 46 | + Repository as BackportRepositoryGhecV2026_03_10, |
| 47 | +) |
| 48 | +from githubkit.versions.latest.models import ( # noqa: F401 |
| 49 | + Repository as BackportRepositoryLatest, |
| 50 | +) |
| 51 | +from githubkit.versions.v2022_11_28.models import ( # noqa: F401 |
| 52 | + Repository as BackportRepositoryV2022_11_28, |
| 53 | +) |
| 54 | +from githubkit.versions.v2026_03_10.models import ( # noqa: F401 |
| 55 | + Repository as BackportRepositoryV2026_03_10, |
| 56 | +) |
| 57 | + |
| 58 | +# direct |
23 | 59 | from githubkit_schemas.ghec_v2022_11_28.models import ( # noqa: F401 |
24 | 60 | Repository as RepositoryGhecV2022_11_28, |
25 | 61 | ) |
|
39 | 75 | # isort: split |
40 | 76 |
|
41 | 77 | # OrganizationFull |
| 78 | +# backport |
| 79 | +from githubkit.versions.ghec_v2022_11_28.models import ( # noqa: F401 |
| 80 | + OrganizationFull as BackportOrganizationFullGhecV2022_11_28, |
| 81 | +) |
| 82 | +from githubkit.versions.ghec_v2026_03_10.models import ( # noqa: F401 |
| 83 | + OrganizationFull as BackportOrganizationFullGhecV2026_03_10, |
| 84 | +) |
| 85 | +from githubkit.versions.latest.models import ( # noqa: F401 |
| 86 | + OrganizationFull as BackportOrganizationFullLatest, |
| 87 | +) |
| 88 | +from githubkit.versions.v2022_11_28.models import ( # noqa: F401 |
| 89 | + OrganizationFull as BackportOrganizationFullV2022_11_28, |
| 90 | +) |
| 91 | +from githubkit.versions.v2026_03_10.models import ( # noqa: F401 |
| 92 | + OrganizationFull as BackportOrganizationFullV2026_03_10, |
| 93 | +) |
| 94 | + |
| 95 | +# direct |
42 | 96 | from githubkit_schemas.ghec_v2022_11_28.models import ( # noqa: F401 |
43 | 97 | OrganizationFull as OrganizationFullGhecV2022_11_28, |
44 | 98 | ) |
|
58 | 112 | # isort: split |
59 | 113 |
|
60 | 114 | # CustomProperty |
| 115 | +# backport |
| 116 | +from githubkit.versions.ghec_v2022_11_28.models import ( # noqa: F401 |
| 117 | + CustomProperty as BackportCustomPropertyGhecV2022_11_28, |
| 118 | +) |
| 119 | +from githubkit.versions.ghec_v2026_03_10.models import ( # noqa: F401 |
| 120 | + CustomProperty as BackportCustomPropertyGhecV2026_03_10, |
| 121 | +) |
| 122 | +from githubkit.versions.latest.models import ( # noqa: F401 |
| 123 | + CustomProperty as BackportCustomPropertyLatest, |
| 124 | +) |
| 125 | +from githubkit.versions.v2022_11_28.models import ( # noqa: F401 |
| 126 | + CustomProperty as BackportCustomPropertyV2022_11_28, |
| 127 | +) |
| 128 | +from githubkit.versions.v2026_03_10.models import ( # noqa: F401 |
| 129 | + CustomProperty as BackportCustomPropertyV2026_03_10, |
| 130 | +) |
| 131 | + |
| 132 | +# direct |
61 | 133 | from githubkit_schemas.ghec_v2022_11_28.models import ( # noqa: F401 |
62 | 134 | CustomProperty as CustomPropertyGhecV2022_11_28, |
63 | 135 | ) |
|
0 commit comments