diff --git a/githubkit/__init__.py b/githubkit/__init__.py index 0a5b367984..91a60d316b 100644 --- a/githubkit/__init__.py +++ b/githubkit/__init__.py @@ -1,4 +1,6 @@ -from . import lazy_module +from .module_hooks import alias_module, lazy_module + +alias_module.apply() if not lazy_module.is_lazy_disabled(): lazy_module.apply() diff --git a/githubkit/module_hooks/alias_module.py b/githubkit/module_hooks/alias_module.py new file mode 100644 index 0000000000..a277f85d85 --- /dev/null +++ b/githubkit/module_hooks/alias_module.py @@ -0,0 +1,94 @@ +from collections.abc import Sequence +from importlib.machinery import ModuleSpec, PathFinder, SourceFileLoader +import importlib.util +import re +import sys +from types import ModuleType +from typing import Any, Optional +import warnings + +ALIAS_MODULES = { + r"^githubkit\.versions\.(.+)": r"githubkit_schemas.\1", +} +WARNING_PATTERN = r"^githubkit\.versions\.([^.]+)$" + + +class AliasModule(ModuleType): + __alias_fullname__: str + __alias_module__: ModuleType + + @property + def __all__(self) -> tuple[str, ...]: + return getattr(self.__alias_module__, "__all__", ()) + + def __dir__(self): + result = list(super().__dir__()) + for attr in self.__all__: + if attr not in result: + result.append(attr) + return result + + def __getattr__(self, name: str) -> Any: + return getattr(self.__alias_module__, name) + + def __reduce__(self): + return ( + self.__class__, + (self.__name__, self.__file__, getattr(self, "__alias_fullname__", None)), + ) + + +class AliasModuleLoader(SourceFileLoader): + def __init__(self, fullname: str, path: str, alias_fullname: str) -> None: + super().__init__(fullname, path) + + self.alias_fullname = alias_fullname + + def create_module(self, spec: ModuleSpec) -> Optional[ModuleType]: + if self.name in sys.modules: + return sys.modules[self.name] + + alias_module = importlib.import_module(self.alias_fullname) + module = AliasModule(self.name) + module.__alias_fullname__ = self.alias_fullname + module.__alias_module__ = alias_module + return module + + +class AliasModuleFinder(PathFinder): + @classmethod + def find_spec( + cls, + fullname: str, + path: Optional[Sequence[str]] = None, + target: Optional[ModuleType] = None, + ) -> Optional[ModuleSpec]: + # match if the module should be aliased + for pattern, replacement in ALIAS_MODULES.items(): + alias_fullname, count = re.subn(pattern, replacement, fullname, count=1) + if count > 0: + # find the alias module spec + alias_spec = importlib.util.find_spec(alias_fullname) + # do nothing if alias spec is not found + if not alias_spec or not alias_spec.origin: + return + + # modify the alias spec to load as current module instead + alias_spec.name = fullname + alias_spec.loader = AliasModuleLoader( + fullname, alias_spec.origin, alias_fullname + ) + + if re.match(WARNING_PATTERN, fullname): + warnings.warn( + f"Importing '{fullname}' is deprecated, " + f"use '{alias_fullname}' instead.", + DeprecationWarning, + stacklevel=2, + ) + + return alias_spec + + +def apply(): + sys.meta_path.insert(0, AliasModuleFinder()) diff --git a/githubkit/lazy_module.py b/githubkit/module_hooks/lazy_module.py similarity index 93% rename from githubkit/lazy_module.py rename to githubkit/module_hooks/lazy_module.py index 92f0d6a2b3..9d2366a98e 100644 --- a/githubkit/lazy_module.py +++ b/githubkit/module_hooks/lazy_module.py @@ -12,10 +12,13 @@ GITHUBKIT_LAZY_DISABLE_FLAG = "GITHUBKIT_LAZY_DISABLE_FLAG" LAZY_MODULES = ( - r"^githubkit\.rest$", - r"^githubkit\.versions\.[^.]+\.models$", - r"^githubkit\.versions\.[^.]+\.types$", - r"^githubkit\.versions\.[^.]+\.webhooks$", + # r"^githubkit\.rest$", + # r"^githubkit\.versions\.[^.]+\.models$", + # r"^githubkit\.versions\.[^.]+\.types$", + # r"^githubkit\.versions\.[^.]+\.webhooks$", + r"^githubkit_schemas\.(?!core\.)[^.]+\.models$", + r"^githubkit_schemas\.(?!core\.)[^.]+\.types$", + r"^githubkit_schemas\.(?!core\.)[^.]+\.webhooks$", # r"^githubkit\.versions\.latest\.models$", # r"^githubkit\.versions\.latest\.types$", # r"^githubkit\.versions\.latest\.webhooks$", diff --git a/githubkit/rest/__init__.py b/githubkit/rest/__init__.py index 99215f02b9..e69de29bb2 100644 --- a/githubkit/rest/__init__.py +++ b/githubkit/rest/__init__.py @@ -1,14105 +0,0 @@ -"""DO NOT EDIT THIS FILE! - -This file is automatically @generated by githubkit using the follow command: - -bash ./scripts/run-codegen.sh - -See https://github.com/github/rest-api-description for more information. -""" - -from typing import TYPE_CHECKING - -from githubkit.lazy_module import is_lazy_disabled - -if TYPE_CHECKING or is_lazy_disabled(): - from githubkit.versions.v2026_03_10.models import ( - ActionsArtifactAndLogRetention as ActionsArtifactAndLogRetention, - ) - from githubkit.versions.v2026_03_10.models import ( - ActionsArtifactAndLogRetentionResponse as ActionsArtifactAndLogRetentionResponse, - ) - from githubkit.versions.v2026_03_10.models import ( - ActionsCacheList as ActionsCacheList, - ) - from githubkit.versions.v2026_03_10.models import ( - ActionsCacheListPropActionsCachesItems as ActionsCacheListPropActionsCachesItems, - ) - from githubkit.versions.v2026_03_10.models import ( - ActionsCacheRetentionLimitForEnterprise as ActionsCacheRetentionLimitForEnterprise, - ) - from githubkit.versions.v2026_03_10.models import ( - ActionsCacheRetentionLimitForOrganization as ActionsCacheRetentionLimitForOrganization, - ) - from githubkit.versions.v2026_03_10.models import ( - ActionsCacheRetentionLimitForRepository as ActionsCacheRetentionLimitForRepository, - ) - from githubkit.versions.v2026_03_10.models import ( - ActionsCacheStorageLimitForEnterprise as ActionsCacheStorageLimitForEnterprise, - ) - from githubkit.versions.v2026_03_10.models import ( - ActionsCacheStorageLimitForOrganization as ActionsCacheStorageLimitForOrganization, - ) - from githubkit.versions.v2026_03_10.models import ( - ActionsCacheStorageLimitForRepository as ActionsCacheStorageLimitForRepository, - ) - from githubkit.versions.v2026_03_10.models import ( - ActionsCacheUsageByRepository as ActionsCacheUsageByRepository, - ) - from githubkit.versions.v2026_03_10.models import ( - ActionsCacheUsageOrgEnterprise as ActionsCacheUsageOrgEnterprise, - ) - from githubkit.versions.v2026_03_10.models import ( - ActionsForkPrContributorApproval as ActionsForkPrContributorApproval, - ) - from githubkit.versions.v2026_03_10.models import ( - ActionsForkPrWorkflowsPrivateRepos as ActionsForkPrWorkflowsPrivateRepos, - ) - from githubkit.versions.v2026_03_10.models import ( - ActionsForkPrWorkflowsPrivateReposRequest as ActionsForkPrWorkflowsPrivateReposRequest, - ) - from githubkit.versions.v2026_03_10.models import ( - ActionsGetDefaultWorkflowPermissions as ActionsGetDefaultWorkflowPermissions, - ) - from githubkit.versions.v2026_03_10.models import ( - ActionsHostedRunner as ActionsHostedRunner, - ) - from githubkit.versions.v2026_03_10.models import ( - ActionsHostedRunnerCuratedImage as ActionsHostedRunnerCuratedImage, - ) - from githubkit.versions.v2026_03_10.models import ( - ActionsHostedRunnerCustomImage as ActionsHostedRunnerCustomImage, - ) - from githubkit.versions.v2026_03_10.models import ( - ActionsHostedRunnerCustomImageVersion as ActionsHostedRunnerCustomImageVersion, - ) - from githubkit.versions.v2026_03_10.models import ( - ActionsHostedRunnerLimits as ActionsHostedRunnerLimits, - ) - from githubkit.versions.v2026_03_10.models import ( - ActionsHostedRunnerLimitsPropPublicIps as ActionsHostedRunnerLimitsPropPublicIps, - ) - from githubkit.versions.v2026_03_10.models import ( - ActionsHostedRunnerMachineSpec as ActionsHostedRunnerMachineSpec, - ) - from githubkit.versions.v2026_03_10.models import ( - ActionsHostedRunnerPoolImage as ActionsHostedRunnerPoolImage, - ) - from githubkit.versions.v2026_03_10.models import ( - ActionsOrganizationPermissions as ActionsOrganizationPermissions, - ) - from githubkit.versions.v2026_03_10.models import ( - ActionsPublicKey as ActionsPublicKey, - ) - from githubkit.versions.v2026_03_10.models import ( - ActionsRepositoryPermissions as ActionsRepositoryPermissions, - ) - from githubkit.versions.v2026_03_10.models import ActionsSecret as ActionsSecret - from githubkit.versions.v2026_03_10.models import ( - ActionsSetDefaultWorkflowPermissions as ActionsSetDefaultWorkflowPermissions, - ) - from githubkit.versions.v2026_03_10.models import ActionsVariable as ActionsVariable - from githubkit.versions.v2026_03_10.models import ( - ActionsWorkflowAccessToRepository as ActionsWorkflowAccessToRepository, - ) - from githubkit.versions.v2026_03_10.models import Activity as Activity - from githubkit.versions.v2026_03_10.models import Actor as Actor - from githubkit.versions.v2026_03_10.models import ( - AddedToProjectIssueEvent as AddedToProjectIssueEvent, - ) - from githubkit.versions.v2026_03_10.models import ( - AddedToProjectIssueEventPropProjectCard as AddedToProjectIssueEventPropProjectCard, - ) - from githubkit.versions.v2026_03_10.models import ( - ApiInsightsRouteStatsItems as ApiInsightsRouteStatsItems, - ) - from githubkit.versions.v2026_03_10.models import ( - ApiInsightsSubjectStatsItems as ApiInsightsSubjectStatsItems, - ) - from githubkit.versions.v2026_03_10.models import ( - ApiInsightsSummaryStats as ApiInsightsSummaryStats, - ) - from githubkit.versions.v2026_03_10.models import ( - ApiInsightsTimeStatsItems as ApiInsightsTimeStatsItems, - ) - from githubkit.versions.v2026_03_10.models import ( - ApiInsightsUserStatsItems as ApiInsightsUserStatsItems, - ) - from githubkit.versions.v2026_03_10.models import ApiOverview as ApiOverview - from githubkit.versions.v2026_03_10.models import ( - ApiOverviewPropDomains as ApiOverviewPropDomains, - ) - from githubkit.versions.v2026_03_10.models import ( - ApiOverviewPropDomainsPropActionsInbound as ApiOverviewPropDomainsPropActionsInbound, - ) - from githubkit.versions.v2026_03_10.models import ( - ApiOverviewPropDomainsPropArtifactAttestations as ApiOverviewPropDomainsPropArtifactAttestations, - ) - from githubkit.versions.v2026_03_10.models import ( - ApiOverviewPropSshKeyFingerprints as ApiOverviewPropSshKeyFingerprints, - ) - from githubkit.versions.v2026_03_10.models import ( - AppHookConfigPatchBody as AppHookConfigPatchBody, - ) - from githubkit.versions.v2026_03_10.models import ( - AppHookDeliveriesDeliveryIdAttemptsPostResponse202 as AppHookDeliveriesDeliveryIdAttemptsPostResponse202, - ) - from githubkit.versions.v2026_03_10.models import ( - AppInstallationsInstallationIdAccessTokensPostBody as AppInstallationsInstallationIdAccessTokensPostBody, - ) - from githubkit.versions.v2026_03_10.models import ( - ApplicationsClientIdGrantDeleteBody as ApplicationsClientIdGrantDeleteBody, - ) - from githubkit.versions.v2026_03_10.models import ( - ApplicationsClientIdTokenDeleteBody as ApplicationsClientIdTokenDeleteBody, - ) - from githubkit.versions.v2026_03_10.models import ( - ApplicationsClientIdTokenPatchBody as ApplicationsClientIdTokenPatchBody, - ) - from githubkit.versions.v2026_03_10.models import ( - ApplicationsClientIdTokenPostBody as ApplicationsClientIdTokenPostBody, - ) - from githubkit.versions.v2026_03_10.models import ( - ApplicationsClientIdTokenScopedPostBody as ApplicationsClientIdTokenScopedPostBody, - ) - from githubkit.versions.v2026_03_10.models import ( - AppManifestsCodeConversionsPostResponse201 as AppManifestsCodeConversionsPostResponse201, - ) - from githubkit.versions.v2026_03_10.models import ( - AppManifestsCodeConversionsPostResponse201Allof1 as AppManifestsCodeConversionsPostResponse201Allof1, - ) - from githubkit.versions.v2026_03_10.models import AppPermissions as AppPermissions - from githubkit.versions.v2026_03_10.models import Artifact as Artifact - from githubkit.versions.v2026_03_10.models import ( - ArtifactDeploymentRecord as ArtifactDeploymentRecord, - ) - from githubkit.versions.v2026_03_10.models import ( - ArtifactDeploymentRecordPropTags as ArtifactDeploymentRecordPropTags, - ) - from githubkit.versions.v2026_03_10.models import ( - ArtifactPropWorkflowRun as ArtifactPropWorkflowRun, - ) - from githubkit.versions.v2026_03_10.models import ( - AssignedIssueEvent as AssignedIssueEvent, - ) - from githubkit.versions.v2026_03_10.models import ( - AuthenticationToken as AuthenticationToken, - ) - from githubkit.versions.v2026_03_10.models import ( - AuthenticationTokenPropPermissions as AuthenticationTokenPropPermissions, - ) - from githubkit.versions.v2026_03_10.models import Authorization as Authorization - from githubkit.versions.v2026_03_10.models import ( - AuthorizationPropApp as AuthorizationPropApp, - ) - from githubkit.versions.v2026_03_10.models import Autolink as Autolink - from githubkit.versions.v2026_03_10.models import AutoMerge as AutoMerge - from githubkit.versions.v2026_03_10.models import BaseGist as BaseGist - from githubkit.versions.v2026_03_10.models import ( - BaseGistPropFiles as BaseGistPropFiles, - ) - from githubkit.versions.v2026_03_10.models import BasicError as BasicError - from githubkit.versions.v2026_03_10.models import ( - BillingPremiumRequestUsageReportOrg as BillingPremiumRequestUsageReportOrg, - ) - from githubkit.versions.v2026_03_10.models import ( - BillingPremiumRequestUsageReportOrgPropTimePeriod as BillingPremiumRequestUsageReportOrgPropTimePeriod, - ) - from githubkit.versions.v2026_03_10.models import ( - BillingPremiumRequestUsageReportOrgPropUsageItemsItems as BillingPremiumRequestUsageReportOrgPropUsageItemsItems, - ) - from githubkit.versions.v2026_03_10.models import ( - BillingPremiumRequestUsageReportUser as BillingPremiumRequestUsageReportUser, - ) - from githubkit.versions.v2026_03_10.models import ( - BillingPremiumRequestUsageReportUserPropTimePeriod as BillingPremiumRequestUsageReportUserPropTimePeriod, - ) - from githubkit.versions.v2026_03_10.models import ( - BillingPremiumRequestUsageReportUserPropUsageItemsItems as BillingPremiumRequestUsageReportUserPropUsageItemsItems, - ) - from githubkit.versions.v2026_03_10.models import ( - BillingUsageReport as BillingUsageReport, - ) - from githubkit.versions.v2026_03_10.models import ( - BillingUsageReportPropUsageItemsItems as BillingUsageReportPropUsageItemsItems, - ) - from githubkit.versions.v2026_03_10.models import ( - BillingUsageReportUser as BillingUsageReportUser, - ) - from githubkit.versions.v2026_03_10.models import ( - BillingUsageReportUserPropUsageItemsItems as BillingUsageReportUserPropUsageItemsItems, - ) - from githubkit.versions.v2026_03_10.models import ( - BillingUsageSummaryReportOrg as BillingUsageSummaryReportOrg, - ) - from githubkit.versions.v2026_03_10.models import ( - BillingUsageSummaryReportOrgPropTimePeriod as BillingUsageSummaryReportOrgPropTimePeriod, - ) - from githubkit.versions.v2026_03_10.models import ( - BillingUsageSummaryReportOrgPropUsageItemsItems as BillingUsageSummaryReportOrgPropUsageItemsItems, - ) - from githubkit.versions.v2026_03_10.models import ( - BillingUsageSummaryReportUser as BillingUsageSummaryReportUser, - ) - from githubkit.versions.v2026_03_10.models import ( - BillingUsageSummaryReportUserPropTimePeriod as BillingUsageSummaryReportUserPropTimePeriod, - ) - from githubkit.versions.v2026_03_10.models import ( - BillingUsageSummaryReportUserPropUsageItemsItems as BillingUsageSummaryReportUserPropUsageItemsItems, - ) - from githubkit.versions.v2026_03_10.models import Blob as Blob - from githubkit.versions.v2026_03_10.models import ( - BranchProtection as BranchProtection, - ) - from githubkit.versions.v2026_03_10.models import ( - BranchProtectionPropAllowDeletions as BranchProtectionPropAllowDeletions, - ) - from githubkit.versions.v2026_03_10.models import ( - BranchProtectionPropAllowForcePushes as BranchProtectionPropAllowForcePushes, - ) - from githubkit.versions.v2026_03_10.models import ( - BranchProtectionPropAllowForkSyncing as BranchProtectionPropAllowForkSyncing, - ) - from githubkit.versions.v2026_03_10.models import ( - BranchProtectionPropBlockCreations as BranchProtectionPropBlockCreations, - ) - from githubkit.versions.v2026_03_10.models import ( - BranchProtectionPropLockBranch as BranchProtectionPropLockBranch, - ) - from githubkit.versions.v2026_03_10.models import ( - BranchProtectionPropRequiredConversationResolution as BranchProtectionPropRequiredConversationResolution, - ) - from githubkit.versions.v2026_03_10.models import ( - BranchProtectionPropRequiredLinearHistory as BranchProtectionPropRequiredLinearHistory, - ) - from githubkit.versions.v2026_03_10.models import ( - BranchProtectionPropRequiredSignatures as BranchProtectionPropRequiredSignatures, - ) - from githubkit.versions.v2026_03_10.models import ( - BranchRestrictionPolicy as BranchRestrictionPolicy, - ) - from githubkit.versions.v2026_03_10.models import ( - BranchRestrictionPolicyPropAppsItems as BranchRestrictionPolicyPropAppsItems, - ) - from githubkit.versions.v2026_03_10.models import ( - BranchRestrictionPolicyPropAppsItemsPropOwner as BranchRestrictionPolicyPropAppsItemsPropOwner, - ) - from githubkit.versions.v2026_03_10.models import ( - BranchRestrictionPolicyPropAppsItemsPropPermissions as BranchRestrictionPolicyPropAppsItemsPropPermissions, - ) - from githubkit.versions.v2026_03_10.models import ( - BranchRestrictionPolicyPropUsersItems as BranchRestrictionPolicyPropUsersItems, - ) - from githubkit.versions.v2026_03_10.models import BranchShort as BranchShort - from githubkit.versions.v2026_03_10.models import ( - BranchShortPropCommit as BranchShortPropCommit, - ) - from githubkit.versions.v2026_03_10.models import ( - BranchWithProtection as BranchWithProtection, - ) - from githubkit.versions.v2026_03_10.models import ( - BranchWithProtectionPropLinks as BranchWithProtectionPropLinks, - ) - from githubkit.versions.v2026_03_10.models import Budget as Budget - from githubkit.versions.v2026_03_10.models import ( - BudgetPropBudgetAlerting as BudgetPropBudgetAlerting, - ) - from githubkit.versions.v2026_03_10.models import CampaignSummary as CampaignSummary - from githubkit.versions.v2026_03_10.models import ( - CampaignSummaryPropAlertStats as CampaignSummaryPropAlertStats, - ) - from githubkit.versions.v2026_03_10.models import CheckAnnotation as CheckAnnotation - from githubkit.versions.v2026_03_10.models import ( - CheckAutomatedSecurityFixes as CheckAutomatedSecurityFixes, - ) - from githubkit.versions.v2026_03_10.models import ( - CheckImmutableReleases as CheckImmutableReleases, - ) - from githubkit.versions.v2026_03_10.models import CheckRun as CheckRun - from githubkit.versions.v2026_03_10.models import ( - CheckRunPropCheckSuite as CheckRunPropCheckSuite, - ) - from githubkit.versions.v2026_03_10.models import ( - CheckRunPropOutput as CheckRunPropOutput, - ) - from githubkit.versions.v2026_03_10.models import ( - CheckRunWithSimpleCheckSuite as CheckRunWithSimpleCheckSuite, - ) - from githubkit.versions.v2026_03_10.models import ( - CheckRunWithSimpleCheckSuitePropOutput as CheckRunWithSimpleCheckSuitePropOutput, - ) - from githubkit.versions.v2026_03_10.models import CheckSuite as CheckSuite - from githubkit.versions.v2026_03_10.models import ( - CheckSuitePreference as CheckSuitePreference, - ) - from githubkit.versions.v2026_03_10.models import ( - CheckSuitePreferencePropPreferences as CheckSuitePreferencePropPreferences, - ) - from githubkit.versions.v2026_03_10.models import ( - CheckSuitePreferencePropPreferencesPropAutoTriggerChecksItems as CheckSuitePreferencePropPreferencesPropAutoTriggerChecksItems, - ) - from githubkit.versions.v2026_03_10.models import Classroom as Classroom - from githubkit.versions.v2026_03_10.models import ( - ClassroomAcceptedAssignment as ClassroomAcceptedAssignment, - ) - from githubkit.versions.v2026_03_10.models import ( - ClassroomAssignment as ClassroomAssignment, - ) - from githubkit.versions.v2026_03_10.models import ( - ClassroomAssignmentGrade as ClassroomAssignmentGrade, - ) - from githubkit.versions.v2026_03_10.models import CloneTraffic as CloneTraffic - from githubkit.versions.v2026_03_10.models import CodeOfConduct as CodeOfConduct - from githubkit.versions.v2026_03_10.models import ( - CodeOfConductSimple as CodeOfConductSimple, - ) - from githubkit.versions.v2026_03_10.models import ( - CodeownersErrors as CodeownersErrors, - ) - from githubkit.versions.v2026_03_10.models import ( - CodeownersErrorsPropErrorsItems as CodeownersErrorsPropErrorsItems, - ) - from githubkit.versions.v2026_03_10.models import ( - CodeScanningAlert as CodeScanningAlert, - ) - from githubkit.versions.v2026_03_10.models import ( - CodeScanningAlertInstance as CodeScanningAlertInstance, - ) - from githubkit.versions.v2026_03_10.models import ( - CodeScanningAlertInstanceList as CodeScanningAlertInstanceList, - ) - from githubkit.versions.v2026_03_10.models import ( - CodeScanningAlertInstanceListPropMessage as CodeScanningAlertInstanceListPropMessage, - ) - from githubkit.versions.v2026_03_10.models import ( - CodeScanningAlertInstancePropMessage as CodeScanningAlertInstancePropMessage, - ) - from githubkit.versions.v2026_03_10.models import ( - CodeScanningAlertItems as CodeScanningAlertItems, - ) - from githubkit.versions.v2026_03_10.models import ( - CodeScanningAlertLocation as CodeScanningAlertLocation, - ) - from githubkit.versions.v2026_03_10.models import ( - CodeScanningAlertRule as CodeScanningAlertRule, - ) - from githubkit.versions.v2026_03_10.models import ( - CodeScanningAlertRuleSummary as CodeScanningAlertRuleSummary, - ) - from githubkit.versions.v2026_03_10.models import ( - CodeScanningAnalysis as CodeScanningAnalysis, - ) - from githubkit.versions.v2026_03_10.models import ( - CodeScanningAnalysisDeletion as CodeScanningAnalysisDeletion, - ) - from githubkit.versions.v2026_03_10.models import ( - CodeScanningAnalysisTool as CodeScanningAnalysisTool, - ) - from githubkit.versions.v2026_03_10.models import ( - CodeScanningAutofix as CodeScanningAutofix, - ) - from githubkit.versions.v2026_03_10.models import ( - CodeScanningAutofixCommits as CodeScanningAutofixCommits, - ) - from githubkit.versions.v2026_03_10.models import ( - CodeScanningAutofixCommitsResponse as CodeScanningAutofixCommitsResponse, - ) - from githubkit.versions.v2026_03_10.models import ( - CodeScanningCodeqlDatabase as CodeScanningCodeqlDatabase, - ) - from githubkit.versions.v2026_03_10.models import ( - CodeScanningDefaultSetup as CodeScanningDefaultSetup, - ) - from githubkit.versions.v2026_03_10.models import ( - CodeScanningDefaultSetupOptions as CodeScanningDefaultSetupOptions, - ) - from githubkit.versions.v2026_03_10.models import ( - CodeScanningDefaultSetupUpdate as CodeScanningDefaultSetupUpdate, - ) - from githubkit.versions.v2026_03_10.models import ( - CodeScanningDefaultSetupUpdateResponse as CodeScanningDefaultSetupUpdateResponse, - ) - from githubkit.versions.v2026_03_10.models import ( - CodeScanningOptions as CodeScanningOptions, - ) - from githubkit.versions.v2026_03_10.models import ( - CodeScanningOrganizationAlertItems as CodeScanningOrganizationAlertItems, - ) - from githubkit.versions.v2026_03_10.models import ( - CodeScanningSarifsReceipt as CodeScanningSarifsReceipt, - ) - from githubkit.versions.v2026_03_10.models import ( - CodeScanningSarifsStatus as CodeScanningSarifsStatus, - ) - from githubkit.versions.v2026_03_10.models import ( - CodeScanningVariantAnalysis as CodeScanningVariantAnalysis, - ) - from githubkit.versions.v2026_03_10.models import ( - CodeScanningVariantAnalysisPropScannedRepositoriesItems as CodeScanningVariantAnalysisPropScannedRepositoriesItems, - ) - from githubkit.versions.v2026_03_10.models import ( - CodeScanningVariantAnalysisPropSkippedRepositories as CodeScanningVariantAnalysisPropSkippedRepositories, - ) - from githubkit.versions.v2026_03_10.models import ( - CodeScanningVariantAnalysisPropSkippedRepositoriesPropNotFoundRepos as CodeScanningVariantAnalysisPropSkippedRepositoriesPropNotFoundRepos, - ) - from githubkit.versions.v2026_03_10.models import ( - CodeScanningVariantAnalysisRepository as CodeScanningVariantAnalysisRepository, - ) - from githubkit.versions.v2026_03_10.models import ( - CodeScanningVariantAnalysisRepoTask as CodeScanningVariantAnalysisRepoTask, - ) - from githubkit.versions.v2026_03_10.models import ( - CodeScanningVariantAnalysisSkippedRepoGroup as CodeScanningVariantAnalysisSkippedRepoGroup, - ) - from githubkit.versions.v2026_03_10.models import ( - CodeSearchResultItem as CodeSearchResultItem, - ) - from githubkit.versions.v2026_03_10.models import ( - CodeSecurityConfiguration as CodeSecurityConfiguration, - ) - from githubkit.versions.v2026_03_10.models import ( - CodeSecurityConfigurationForRepository as CodeSecurityConfigurationForRepository, - ) - from githubkit.versions.v2026_03_10.models import ( - CodeSecurityConfigurationPropCodeScanningDefaultSetupOptions as CodeSecurityConfigurationPropCodeScanningDefaultSetupOptions, - ) - from githubkit.versions.v2026_03_10.models import ( - CodeSecurityConfigurationPropCodeScanningOptions as CodeSecurityConfigurationPropCodeScanningOptions, - ) - from githubkit.versions.v2026_03_10.models import ( - CodeSecurityConfigurationPropDependencyGraphAutosubmitActionOptions as CodeSecurityConfigurationPropDependencyGraphAutosubmitActionOptions, - ) - from githubkit.versions.v2026_03_10.models import ( - CodeSecurityConfigurationPropSecretScanningDelegatedBypassOptions as CodeSecurityConfigurationPropSecretScanningDelegatedBypassOptions, - ) - from githubkit.versions.v2026_03_10.models import ( - CodeSecurityConfigurationPropSecretScanningDelegatedBypassOptionsPropReviewersItems as CodeSecurityConfigurationPropSecretScanningDelegatedBypassOptionsPropReviewersItems, - ) - from githubkit.versions.v2026_03_10.models import ( - CodeSecurityConfigurationRepositories as CodeSecurityConfigurationRepositories, - ) - from githubkit.versions.v2026_03_10.models import ( - CodeSecurityDefaultConfigurationsItems as CodeSecurityDefaultConfigurationsItems, - ) - from githubkit.versions.v2026_03_10.models import Codespace as Codespace - from githubkit.versions.v2026_03_10.models import ( - CodespaceExportDetails as CodespaceExportDetails, - ) - from githubkit.versions.v2026_03_10.models import ( - CodespaceMachine as CodespaceMachine, - ) - from githubkit.versions.v2026_03_10.models import ( - CodespacePropGitStatus as CodespacePropGitStatus, - ) - from githubkit.versions.v2026_03_10.models import ( - CodespacePropRuntimeConstraints as CodespacePropRuntimeConstraints, - ) - from githubkit.versions.v2026_03_10.models import ( - CodespacesOrgSecret as CodespacesOrgSecret, - ) - from githubkit.versions.v2026_03_10.models import ( - CodespacesPermissionsCheckForDevcontainer as CodespacesPermissionsCheckForDevcontainer, - ) - from githubkit.versions.v2026_03_10.models import ( - CodespacesPublicKey as CodespacesPublicKey, - ) - from githubkit.versions.v2026_03_10.models import ( - CodespacesSecret as CodespacesSecret, - ) - from githubkit.versions.v2026_03_10.models import ( - CodespacesUserPublicKey as CodespacesUserPublicKey, - ) - from githubkit.versions.v2026_03_10.models import ( - CodespaceWithFullRepository as CodespaceWithFullRepository, - ) - from githubkit.versions.v2026_03_10.models import ( - CodespaceWithFullRepositoryPropGitStatus as CodespaceWithFullRepositoryPropGitStatus, - ) - from githubkit.versions.v2026_03_10.models import ( - CodespaceWithFullRepositoryPropRuntimeConstraints as CodespaceWithFullRepositoryPropRuntimeConstraints, - ) - from githubkit.versions.v2026_03_10.models import Collaborator as Collaborator - from githubkit.versions.v2026_03_10.models import ( - CollaboratorPropPermissions as CollaboratorPropPermissions, - ) - from githubkit.versions.v2026_03_10.models import ( - CombinedCommitStatus as CombinedCommitStatus, - ) - from githubkit.versions.v2026_03_10.models import Commit as Commit - from githubkit.versions.v2026_03_10.models import CommitActivity as CommitActivity - from githubkit.versions.v2026_03_10.models import CommitComment as CommitComment - from githubkit.versions.v2026_03_10.models import ( - CommitCommentEvent as CommitCommentEvent, - ) - from githubkit.versions.v2026_03_10.models import ( - CommitCommentEventPropComment as CommitCommentEventPropComment, - ) - from githubkit.versions.v2026_03_10.models import ( - CommitComparison as CommitComparison, - ) - from githubkit.versions.v2026_03_10.models import ( - CommitPropCommit as CommitPropCommit, - ) - from githubkit.versions.v2026_03_10.models import ( - CommitPropCommitPropTree as CommitPropCommitPropTree, - ) - from githubkit.versions.v2026_03_10.models import ( - CommitPropParentsItems as CommitPropParentsItems, - ) - from githubkit.versions.v2026_03_10.models import CommitPropStats as CommitPropStats - from githubkit.versions.v2026_03_10.models import ( - CommitSearchResultItem as CommitSearchResultItem, - ) - from githubkit.versions.v2026_03_10.models import ( - CommitSearchResultItemPropCommit as CommitSearchResultItemPropCommit, - ) - from githubkit.versions.v2026_03_10.models import ( - CommitSearchResultItemPropCommitPropAuthor as CommitSearchResultItemPropCommitPropAuthor, - ) - from githubkit.versions.v2026_03_10.models import ( - CommitSearchResultItemPropCommitPropTree as CommitSearchResultItemPropCommitPropTree, - ) - from githubkit.versions.v2026_03_10.models import ( - CommitSearchResultItemPropParentsItems as CommitSearchResultItemPropParentsItems, - ) - from githubkit.versions.v2026_03_10.models import ( - CommunityHealthFile as CommunityHealthFile, - ) - from githubkit.versions.v2026_03_10.models import ( - CommunityProfile as CommunityProfile, - ) - from githubkit.versions.v2026_03_10.models import ( - CommunityProfilePropFiles as CommunityProfilePropFiles, - ) - from githubkit.versions.v2026_03_10.models import ( - ContentDirectoryItems as ContentDirectoryItems, - ) - from githubkit.versions.v2026_03_10.models import ( - ContentDirectoryItemsPropLinks as ContentDirectoryItemsPropLinks, - ) - from githubkit.versions.v2026_03_10.models import ContentFile as ContentFile - from githubkit.versions.v2026_03_10.models import ( - ContentFilePropLinks as ContentFilePropLinks, - ) - from githubkit.versions.v2026_03_10.models import ( - ContentSubmodule as ContentSubmodule, - ) - from githubkit.versions.v2026_03_10.models import ( - ContentSubmodulePropLinks as ContentSubmodulePropLinks, - ) - from githubkit.versions.v2026_03_10.models import ContentSymlink as ContentSymlink - from githubkit.versions.v2026_03_10.models import ( - ContentSymlinkPropLinks as ContentSymlinkPropLinks, - ) - from githubkit.versions.v2026_03_10.models import ContentTraffic as ContentTraffic - from githubkit.versions.v2026_03_10.models import ContentTree as ContentTree - from githubkit.versions.v2026_03_10.models import ( - ContentTreePropEntriesItems as ContentTreePropEntriesItems, - ) - from githubkit.versions.v2026_03_10.models import ( - ContentTreePropEntriesItemsPropLinks as ContentTreePropEntriesItemsPropLinks, - ) - from githubkit.versions.v2026_03_10.models import ( - ContentTreePropLinks as ContentTreePropLinks, - ) - from githubkit.versions.v2026_03_10.models import Contributor as Contributor - from githubkit.versions.v2026_03_10.models import ( - ContributorActivity as ContributorActivity, - ) - from githubkit.versions.v2026_03_10.models import ( - ContributorActivityPropWeeksItems as ContributorActivityPropWeeksItems, - ) - from githubkit.versions.v2026_03_10.models import ( - ConvertedNoteToIssueIssueEvent as ConvertedNoteToIssueIssueEvent, - ) - from githubkit.versions.v2026_03_10.models import ( - ConvertedNoteToIssueIssueEventPropProjectCard as ConvertedNoteToIssueIssueEventPropProjectCard, - ) - from githubkit.versions.v2026_03_10.models import ( - CopilotDotcomChat as CopilotDotcomChat, - ) - from githubkit.versions.v2026_03_10.models import ( - CopilotDotcomChatPropModelsItems as CopilotDotcomChatPropModelsItems, - ) - from githubkit.versions.v2026_03_10.models import ( - CopilotDotcomPullRequests as CopilotDotcomPullRequests, - ) - from githubkit.versions.v2026_03_10.models import ( - CopilotDotcomPullRequestsPropRepositoriesItems as CopilotDotcomPullRequestsPropRepositoriesItems, - ) - from githubkit.versions.v2026_03_10.models import ( - CopilotDotcomPullRequestsPropRepositoriesItemsPropModelsItems as CopilotDotcomPullRequestsPropRepositoriesItemsPropModelsItems, - ) - from githubkit.versions.v2026_03_10.models import CopilotIdeChat as CopilotIdeChat - from githubkit.versions.v2026_03_10.models import ( - CopilotIdeChatPropEditorsItems as CopilotIdeChatPropEditorsItems, - ) - from githubkit.versions.v2026_03_10.models import ( - CopilotIdeChatPropEditorsItemsPropModelsItems as CopilotIdeChatPropEditorsItemsPropModelsItems, - ) - from githubkit.versions.v2026_03_10.models import ( - CopilotIdeCodeCompletions as CopilotIdeCodeCompletions, - ) - from githubkit.versions.v2026_03_10.models import ( - CopilotIdeCodeCompletionsPropEditorsItems as CopilotIdeCodeCompletionsPropEditorsItems, - ) - from githubkit.versions.v2026_03_10.models import ( - CopilotIdeCodeCompletionsPropEditorsItemsPropModelsItems as CopilotIdeCodeCompletionsPropEditorsItemsPropModelsItems, - ) - from githubkit.versions.v2026_03_10.models import ( - CopilotIdeCodeCompletionsPropEditorsItemsPropModelsItemsPropLanguagesItems as CopilotIdeCodeCompletionsPropEditorsItemsPropModelsItemsPropLanguagesItems, - ) - from githubkit.versions.v2026_03_10.models import ( - CopilotIdeCodeCompletionsPropLanguagesItems as CopilotIdeCodeCompletionsPropLanguagesItems, - ) - from githubkit.versions.v2026_03_10.models import ( - CopilotOrganizationContentExclusionDetails as CopilotOrganizationContentExclusionDetails, - ) - from githubkit.versions.v2026_03_10.models import ( - CopilotOrganizationDetails as CopilotOrganizationDetails, - ) - from githubkit.versions.v2026_03_10.models import ( - CopilotOrganizationSeatBreakdown as CopilotOrganizationSeatBreakdown, - ) - from githubkit.versions.v2026_03_10.models import ( - CopilotSeatDetails as CopilotSeatDetails, - ) - from githubkit.versions.v2026_03_10.models import CopilotSpace as CopilotSpace - from githubkit.versions.v2026_03_10.models import ( - CopilotSpaceCollaboratorAnyof0 as CopilotSpaceCollaboratorAnyof0, - ) - from githubkit.versions.v2026_03_10.models import ( - CopilotSpaceCollaboratorAnyof0Allof1 as CopilotSpaceCollaboratorAnyof0Allof1, - ) - from githubkit.versions.v2026_03_10.models import ( - CopilotSpaceCollaboratorAnyof1 as CopilotSpaceCollaboratorAnyof1, - ) - from githubkit.versions.v2026_03_10.models import ( - CopilotSpacePropResourcesAttributesItems as CopilotSpacePropResourcesAttributesItems, - ) - from githubkit.versions.v2026_03_10.models import ( - CopilotSpacePropResourcesAttributesItemsPropMetadata as CopilotSpacePropResourcesAttributesItemsPropMetadata, - ) - from githubkit.versions.v2026_03_10.models import ( - CopilotSpaceResource as CopilotSpaceResource, - ) - from githubkit.versions.v2026_03_10.models import ( - CopilotSpaceResourcePropMetadata as CopilotSpaceResourcePropMetadata, - ) - from githubkit.versions.v2026_03_10.models import ( - CopilotUsageMetrics1DayReport as CopilotUsageMetrics1DayReport, - ) - from githubkit.versions.v2026_03_10.models import ( - CopilotUsageMetrics28DayReport as CopilotUsageMetrics28DayReport, - ) - from githubkit.versions.v2026_03_10.models import ( - CopilotUsageMetricsDay as CopilotUsageMetricsDay, - ) - from githubkit.versions.v2026_03_10.models import CreateEvent as CreateEvent - from githubkit.versions.v2026_03_10.models import ( - CredentialsRevokePostBody as CredentialsRevokePostBody, - ) - from githubkit.versions.v2026_03_10.models import ( - CustomDeploymentRuleApp as CustomDeploymentRuleApp, - ) - from githubkit.versions.v2026_03_10.models import CustomProperty as CustomProperty - from githubkit.versions.v2026_03_10.models import ( - CustomPropertySetPayload as CustomPropertySetPayload, - ) - from githubkit.versions.v2026_03_10.models import ( - CustomPropertyValue as CustomPropertyValue, - ) - from githubkit.versions.v2026_03_10.models import CvssSeverities as CvssSeverities - from githubkit.versions.v2026_03_10.models import ( - CvssSeveritiesPropCvssV3 as CvssSeveritiesPropCvssV3, - ) - from githubkit.versions.v2026_03_10.models import ( - CvssSeveritiesPropCvssV4 as CvssSeveritiesPropCvssV4, - ) - from githubkit.versions.v2026_03_10.models import DeleteBudget as DeleteBudget - from githubkit.versions.v2026_03_10.models import DeleteEvent as DeleteEvent - from githubkit.versions.v2026_03_10.models import ( - DemilestonedIssueEvent as DemilestonedIssueEvent, - ) - from githubkit.versions.v2026_03_10.models import ( - DemilestonedIssueEventPropMilestone as DemilestonedIssueEventPropMilestone, - ) - from githubkit.versions.v2026_03_10.models import DependabotAlert as DependabotAlert - from githubkit.versions.v2026_03_10.models import ( - DependabotAlertDismissalRequestSimple as DependabotAlertDismissalRequestSimple, - ) - from githubkit.versions.v2026_03_10.models import ( - DependabotAlertDismissalRequestSimplePropRequester as DependabotAlertDismissalRequestSimplePropRequester, - ) - from githubkit.versions.v2026_03_10.models import ( - DependabotAlertPackage as DependabotAlertPackage, - ) - from githubkit.versions.v2026_03_10.models import ( - DependabotAlertPropDependency as DependabotAlertPropDependency, - ) - from githubkit.versions.v2026_03_10.models import ( - DependabotAlertSecurityAdvisory as DependabotAlertSecurityAdvisory, - ) - from githubkit.versions.v2026_03_10.models import ( - DependabotAlertSecurityAdvisoryPropCwesItems as DependabotAlertSecurityAdvisoryPropCwesItems, - ) - from githubkit.versions.v2026_03_10.models import ( - DependabotAlertSecurityAdvisoryPropIdentifiersItems as DependabotAlertSecurityAdvisoryPropIdentifiersItems, - ) - from githubkit.versions.v2026_03_10.models import ( - DependabotAlertSecurityAdvisoryPropReferencesItems as DependabotAlertSecurityAdvisoryPropReferencesItems, - ) - from githubkit.versions.v2026_03_10.models import ( - DependabotAlertSecurityVulnerability as DependabotAlertSecurityVulnerability, - ) - from githubkit.versions.v2026_03_10.models import ( - DependabotAlertSecurityVulnerabilityPropFirstPatchedVersion as DependabotAlertSecurityVulnerabilityPropFirstPatchedVersion, - ) - from githubkit.versions.v2026_03_10.models import ( - DependabotAlertWithRepository as DependabotAlertWithRepository, - ) - from githubkit.versions.v2026_03_10.models import ( - DependabotAlertWithRepositoryPropDependency as DependabotAlertWithRepositoryPropDependency, - ) - from githubkit.versions.v2026_03_10.models import ( - DependabotPublicKey as DependabotPublicKey, - ) - from githubkit.versions.v2026_03_10.models import ( - DependabotRepositoryAccessDetails as DependabotRepositoryAccessDetails, - ) - from githubkit.versions.v2026_03_10.models import ( - DependabotSecret as DependabotSecret, - ) - from githubkit.versions.v2026_03_10.models import Dependency as Dependency - from githubkit.versions.v2026_03_10.models import ( - DependencyGraphDiffItems as DependencyGraphDiffItems, - ) - from githubkit.versions.v2026_03_10.models import ( - DependencyGraphDiffItemsPropVulnerabilitiesItems as DependencyGraphDiffItemsPropVulnerabilitiesItems, - ) - from githubkit.versions.v2026_03_10.models import ( - DependencyGraphSpdxSbom as DependencyGraphSpdxSbom, - ) - from githubkit.versions.v2026_03_10.models import ( - DependencyGraphSpdxSbomPropSbom as DependencyGraphSpdxSbomPropSbom, - ) - from githubkit.versions.v2026_03_10.models import ( - DependencyGraphSpdxSbomPropSbomPropCreationInfo as DependencyGraphSpdxSbomPropSbomPropCreationInfo, - ) - from githubkit.versions.v2026_03_10.models import ( - DependencyGraphSpdxSbomPropSbomPropPackagesItems as DependencyGraphSpdxSbomPropSbomPropPackagesItems, - ) - from githubkit.versions.v2026_03_10.models import ( - DependencyGraphSpdxSbomPropSbomPropPackagesItemsPropExternalRefsItems as DependencyGraphSpdxSbomPropSbomPropPackagesItemsPropExternalRefsItems, - ) - from githubkit.versions.v2026_03_10.models import ( - DependencyGraphSpdxSbomPropSbomPropRelationshipsItems as DependencyGraphSpdxSbomPropSbomPropRelationshipsItems, - ) - from githubkit.versions.v2026_03_10.models import DeployKey as DeployKey - from githubkit.versions.v2026_03_10.models import Deployment as Deployment - from githubkit.versions.v2026_03_10.models import ( - DeploymentBranchPolicy as DeploymentBranchPolicy, - ) - from githubkit.versions.v2026_03_10.models import ( - DeploymentBranchPolicyNamePattern as DeploymentBranchPolicyNamePattern, - ) - from githubkit.versions.v2026_03_10.models import ( - DeploymentBranchPolicyNamePatternWithType as DeploymentBranchPolicyNamePatternWithType, - ) - from githubkit.versions.v2026_03_10.models import ( - DeploymentBranchPolicySettings as DeploymentBranchPolicySettings, - ) - from githubkit.versions.v2026_03_10.models import ( - DeploymentPropPayloadOneof0 as DeploymentPropPayloadOneof0, - ) - from githubkit.versions.v2026_03_10.models import ( - DeploymentProtectionRule as DeploymentProtectionRule, - ) - from githubkit.versions.v2026_03_10.models import ( - DeploymentSimple as DeploymentSimple, - ) - from githubkit.versions.v2026_03_10.models import ( - DeploymentStatus as DeploymentStatus, - ) - from githubkit.versions.v2026_03_10.models import DiffEntry as DiffEntry - from githubkit.versions.v2026_03_10.models import Discussion as Discussion - from githubkit.versions.v2026_03_10.models import DiscussionEvent as DiscussionEvent - from githubkit.versions.v2026_03_10.models import ( - DiscussionPropAnswerChosenBy as DiscussionPropAnswerChosenBy, - ) - from githubkit.versions.v2026_03_10.models import ( - DiscussionPropCategory as DiscussionPropCategory, - ) - from githubkit.versions.v2026_03_10.models import ( - DiscussionPropReactions as DiscussionPropReactions, - ) - from githubkit.versions.v2026_03_10.models import ( - DiscussionPropUser as DiscussionPropUser, - ) - from githubkit.versions.v2026_03_10.models import Email as Email - from githubkit.versions.v2026_03_10.models import ( - EmojisGetResponse200 as EmojisGetResponse200, - ) - from githubkit.versions.v2026_03_10.models import EmptyObject as EmptyObject - from githubkit.versions.v2026_03_10.models import Enterprise as Enterprise - from githubkit.versions.v2026_03_10.models import ( - EnterprisesEnterpriseCodeSecurityConfigurationsConfigurationIdAttachPostBody as EnterprisesEnterpriseCodeSecurityConfigurationsConfigurationIdAttachPostBody, - ) - from githubkit.versions.v2026_03_10.models import ( - EnterprisesEnterpriseCodeSecurityConfigurationsConfigurationIdDefaultsPutBody as EnterprisesEnterpriseCodeSecurityConfigurationsConfigurationIdDefaultsPutBody, - ) - from githubkit.versions.v2026_03_10.models import ( - EnterprisesEnterpriseCodeSecurityConfigurationsConfigurationIdDefaultsPutResponse200 as EnterprisesEnterpriseCodeSecurityConfigurationsConfigurationIdDefaultsPutResponse200, - ) - from githubkit.versions.v2026_03_10.models import ( - EnterprisesEnterpriseCodeSecurityConfigurationsConfigurationIdPatchBody as EnterprisesEnterpriseCodeSecurityConfigurationsConfigurationIdPatchBody, - ) - from githubkit.versions.v2026_03_10.models import ( - EnterprisesEnterpriseCodeSecurityConfigurationsConfigurationIdPatchBodyPropDependencyGraphAutosubmitActionOptions as EnterprisesEnterpriseCodeSecurityConfigurationsConfigurationIdPatchBodyPropDependencyGraphAutosubmitActionOptions, - ) - from githubkit.versions.v2026_03_10.models import ( - EnterprisesEnterpriseCodeSecurityConfigurationsPostBody as EnterprisesEnterpriseCodeSecurityConfigurationsPostBody, - ) - from githubkit.versions.v2026_03_10.models import ( - EnterprisesEnterpriseCodeSecurityConfigurationsPostBodyPropDependencyGraphAutosubmitActionOptions as EnterprisesEnterpriseCodeSecurityConfigurationsPostBodyPropDependencyGraphAutosubmitActionOptions, - ) - from githubkit.versions.v2026_03_10.models import ( - EnterprisesEnterpriseCopilotPoliciesCodingAgentOrganizationsDeleteBody as EnterprisesEnterpriseCopilotPoliciesCodingAgentOrganizationsDeleteBody, - ) - from githubkit.versions.v2026_03_10.models import ( - EnterprisesEnterpriseCopilotPoliciesCodingAgentOrganizationsDeleteBodyPropCustomPropertiesItems as EnterprisesEnterpriseCopilotPoliciesCodingAgentOrganizationsDeleteBodyPropCustomPropertiesItems, - ) - from githubkit.versions.v2026_03_10.models import ( - EnterprisesEnterpriseCopilotPoliciesCodingAgentOrganizationsPostBody as EnterprisesEnterpriseCopilotPoliciesCodingAgentOrganizationsPostBody, - ) - from githubkit.versions.v2026_03_10.models import ( - EnterprisesEnterpriseCopilotPoliciesCodingAgentOrganizationsPostBodyPropCustomPropertiesItems as EnterprisesEnterpriseCopilotPoliciesCodingAgentOrganizationsPostBodyPropCustomPropertiesItems, - ) - from githubkit.versions.v2026_03_10.models import ( - EnterprisesEnterpriseCopilotPoliciesCodingAgentPutBody as EnterprisesEnterpriseCopilotPoliciesCodingAgentPutBody, - ) - from githubkit.versions.v2026_03_10.models import ( - EnterprisesEnterpriseDependabotRepositoryAccessDefaultLevelPutBody as EnterprisesEnterpriseDependabotRepositoryAccessDefaultLevelPutBody, - ) - from githubkit.versions.v2026_03_10.models import ( - EnterprisesEnterpriseDependabotRepositoryAccessPatchBody as EnterprisesEnterpriseDependabotRepositoryAccessPatchBody, - ) - from githubkit.versions.v2026_03_10.models import ( - EnterprisesEnterpriseTeamsEnterpriseTeamMembershipsAddPostBody as EnterprisesEnterpriseTeamsEnterpriseTeamMembershipsAddPostBody, - ) - from githubkit.versions.v2026_03_10.models import ( - EnterprisesEnterpriseTeamsEnterpriseTeamMembershipsRemovePostBody as EnterprisesEnterpriseTeamsEnterpriseTeamMembershipsRemovePostBody, - ) - from githubkit.versions.v2026_03_10.models import ( - EnterprisesEnterpriseTeamsEnterpriseTeamOrganizationsAddPostBody as EnterprisesEnterpriseTeamsEnterpriseTeamOrganizationsAddPostBody, - ) - from githubkit.versions.v2026_03_10.models import ( - EnterprisesEnterpriseTeamsEnterpriseTeamOrganizationsRemovePostBody as EnterprisesEnterpriseTeamsEnterpriseTeamOrganizationsRemovePostBody, - ) - from githubkit.versions.v2026_03_10.models import ( - EnterprisesEnterpriseTeamsPostBody as EnterprisesEnterpriseTeamsPostBody, - ) - from githubkit.versions.v2026_03_10.models import ( - EnterprisesEnterpriseTeamsTeamSlugPatchBody as EnterprisesEnterpriseTeamsTeamSlugPatchBody, - ) - from githubkit.versions.v2026_03_10.models import EnterpriseTeam as EnterpriseTeam - from githubkit.versions.v2026_03_10.models import ( - EnterpriseWebhooks as EnterpriseWebhooks, - ) - from githubkit.versions.v2026_03_10.models import Environment as Environment - from githubkit.versions.v2026_03_10.models import ( - EnvironmentApprovals as EnvironmentApprovals, - ) - from githubkit.versions.v2026_03_10.models import ( - EnvironmentApprovalsPropEnvironmentsItems as EnvironmentApprovalsPropEnvironmentsItems, - ) - from githubkit.versions.v2026_03_10.models import ( - EnvironmentPropProtectionRulesItemsAnyof0 as EnvironmentPropProtectionRulesItemsAnyof0, - ) - from githubkit.versions.v2026_03_10.models import ( - EnvironmentPropProtectionRulesItemsAnyof1 as EnvironmentPropProtectionRulesItemsAnyof1, - ) - from githubkit.versions.v2026_03_10.models import ( - EnvironmentPropProtectionRulesItemsAnyof1PropReviewersItems as EnvironmentPropProtectionRulesItemsAnyof1PropReviewersItems, - ) - from githubkit.versions.v2026_03_10.models import ( - EnvironmentPropProtectionRulesItemsAnyof2 as EnvironmentPropProtectionRulesItemsAnyof2, - ) - from githubkit.versions.v2026_03_10.models import Event as Event - from githubkit.versions.v2026_03_10.models import EventPropRepo as EventPropRepo - from githubkit.versions.v2026_03_10.models import ( - EventsGetResponse503 as EventsGetResponse503, - ) - from githubkit.versions.v2026_03_10.models import Feed as Feed - from githubkit.versions.v2026_03_10.models import FeedPropLinks as FeedPropLinks - from githubkit.versions.v2026_03_10.models import FileCommit as FileCommit - from githubkit.versions.v2026_03_10.models import ( - FileCommitPropCommit as FileCommitPropCommit, - ) - from githubkit.versions.v2026_03_10.models import ( - FileCommitPropCommitPropAuthor as FileCommitPropCommitPropAuthor, - ) - from githubkit.versions.v2026_03_10.models import ( - FileCommitPropCommitPropCommitter as FileCommitPropCommitPropCommitter, - ) - from githubkit.versions.v2026_03_10.models import ( - FileCommitPropCommitPropParentsItems as FileCommitPropCommitPropParentsItems, - ) - from githubkit.versions.v2026_03_10.models import ( - FileCommitPropCommitPropTree as FileCommitPropCommitPropTree, - ) - from githubkit.versions.v2026_03_10.models import ( - FileCommitPropCommitPropVerification as FileCommitPropCommitPropVerification, - ) - from githubkit.versions.v2026_03_10.models import ( - FileCommitPropContent as FileCommitPropContent, - ) - from githubkit.versions.v2026_03_10.models import ( - FileCommitPropContentPropLinks as FileCommitPropContentPropLinks, - ) - from githubkit.versions.v2026_03_10.models import ForkEvent as ForkEvent - from githubkit.versions.v2026_03_10.models import ( - ForkEventPropForkee as ForkEventPropForkee, - ) - from githubkit.versions.v2026_03_10.models import FullRepository as FullRepository - from githubkit.versions.v2026_03_10.models import ( - FullRepositoryPropCustomProperties as FullRepositoryPropCustomProperties, - ) - from githubkit.versions.v2026_03_10.models import ( - FullRepositoryPropPermissions as FullRepositoryPropPermissions, - ) - from githubkit.versions.v2026_03_10.models import GetAllBudgets as GetAllBudgets - from githubkit.versions.v2026_03_10.models import GetBudget as GetBudget - from githubkit.versions.v2026_03_10.models import ( - GetBudgetPropBudgetAlerting as GetBudgetPropBudgetAlerting, - ) - from githubkit.versions.v2026_03_10.models import GistComment as GistComment - from githubkit.versions.v2026_03_10.models import GistCommit as GistCommit - from githubkit.versions.v2026_03_10.models import ( - GistCommitPropChangeStatus as GistCommitPropChangeStatus, - ) - from githubkit.versions.v2026_03_10.models import ( - GistsGistIdCommentsCommentIdPatchBody as GistsGistIdCommentsCommentIdPatchBody, - ) - from githubkit.versions.v2026_03_10.models import ( - GistsGistIdCommentsPostBody as GistsGistIdCommentsPostBody, - ) - from githubkit.versions.v2026_03_10.models import ( - GistsGistIdGetResponse403 as GistsGistIdGetResponse403, - ) - from githubkit.versions.v2026_03_10.models import ( - GistsGistIdGetResponse403PropBlock as GistsGistIdGetResponse403PropBlock, - ) - from githubkit.versions.v2026_03_10.models import ( - GistsGistIdPatchBody as GistsGistIdPatchBody, - ) - from githubkit.versions.v2026_03_10.models import ( - GistsGistIdPatchBodyPropFiles as GistsGistIdPatchBodyPropFiles, - ) - from githubkit.versions.v2026_03_10.models import ( - GistsGistIdStarGetResponse404 as GistsGistIdStarGetResponse404, - ) - from githubkit.versions.v2026_03_10.models import GistSimple as GistSimple - from githubkit.versions.v2026_03_10.models import ( - GistSimplePropFiles as GistSimplePropFiles, - ) - from githubkit.versions.v2026_03_10.models import ( - GistSimplePropForkOf as GistSimplePropForkOf, - ) - from githubkit.versions.v2026_03_10.models import ( - GistSimplePropForkOfPropFiles as GistSimplePropForkOfPropFiles, - ) - from githubkit.versions.v2026_03_10.models import GistsPostBody as GistsPostBody - from githubkit.versions.v2026_03_10.models import ( - GistsPostBodyPropFiles as GistsPostBodyPropFiles, - ) - from githubkit.versions.v2026_03_10.models import GitCommit as GitCommit - from githubkit.versions.v2026_03_10.models import ( - GitCommitPropAuthor as GitCommitPropAuthor, - ) - from githubkit.versions.v2026_03_10.models import ( - GitCommitPropCommitter as GitCommitPropCommitter, - ) - from githubkit.versions.v2026_03_10.models import ( - GitCommitPropParentsItems as GitCommitPropParentsItems, - ) - from githubkit.versions.v2026_03_10.models import ( - GitCommitPropTree as GitCommitPropTree, - ) - from githubkit.versions.v2026_03_10.models import ( - GitCommitPropVerification as GitCommitPropVerification, - ) - from githubkit.versions.v2026_03_10.models import ( - GitignoreTemplate as GitignoreTemplate, - ) - from githubkit.versions.v2026_03_10.models import GitRef as GitRef - from githubkit.versions.v2026_03_10.models import ( - GitRefPropObject as GitRefPropObject, - ) - from githubkit.versions.v2026_03_10.models import GitTag as GitTag - from githubkit.versions.v2026_03_10.models import ( - GitTagPropObject as GitTagPropObject, - ) - from githubkit.versions.v2026_03_10.models import ( - GitTagPropTagger as GitTagPropTagger, - ) - from githubkit.versions.v2026_03_10.models import GitTree as GitTree - from githubkit.versions.v2026_03_10.models import ( - GitTreePropTreeItems as GitTreePropTreeItems, - ) - from githubkit.versions.v2026_03_10.models import GitUser as GitUser - from githubkit.versions.v2026_03_10.models import GlobalAdvisory as GlobalAdvisory - from githubkit.versions.v2026_03_10.models import ( - GlobalAdvisoryPropCreditsItems as GlobalAdvisoryPropCreditsItems, - ) - from githubkit.versions.v2026_03_10.models import ( - GlobalAdvisoryPropCwesItems as GlobalAdvisoryPropCwesItems, - ) - from githubkit.versions.v2026_03_10.models import ( - GlobalAdvisoryPropIdentifiersItems as GlobalAdvisoryPropIdentifiersItems, - ) - from githubkit.versions.v2026_03_10.models import GollumEvent as GollumEvent - from githubkit.versions.v2026_03_10.models import ( - GollumEventPropPagesItems as GollumEventPropPagesItems, - ) - from githubkit.versions.v2026_03_10.models import GpgKey as GpgKey - from githubkit.versions.v2026_03_10.models import ( - GpgKeyPropEmailsItems as GpgKeyPropEmailsItems, - ) - from githubkit.versions.v2026_03_10.models import ( - GpgKeyPropSubkeysItems as GpgKeyPropSubkeysItems, - ) - from githubkit.versions.v2026_03_10.models import ( - GpgKeyPropSubkeysItemsPropEmailsItems as GpgKeyPropSubkeysItemsPropEmailsItems, - ) - from githubkit.versions.v2026_03_10.models import Hook as Hook - from githubkit.versions.v2026_03_10.models import HookDelivery as HookDelivery - from githubkit.versions.v2026_03_10.models import ( - HookDeliveryItem as HookDeliveryItem, - ) - from githubkit.versions.v2026_03_10.models import ( - HookDeliveryPropRequest as HookDeliveryPropRequest, - ) - from githubkit.versions.v2026_03_10.models import ( - HookDeliveryPropRequestPropHeaders as HookDeliveryPropRequestPropHeaders, - ) - from githubkit.versions.v2026_03_10.models import ( - HookDeliveryPropRequestPropPayload as HookDeliveryPropRequestPropPayload, - ) - from githubkit.versions.v2026_03_10.models import ( - HookDeliveryPropResponse as HookDeliveryPropResponse, - ) - from githubkit.versions.v2026_03_10.models import ( - HookDeliveryPropResponsePropHeaders as HookDeliveryPropResponsePropHeaders, - ) - from githubkit.versions.v2026_03_10.models import HookResponse as HookResponse - from githubkit.versions.v2026_03_10.models import Hovercard as Hovercard - from githubkit.versions.v2026_03_10.models import ( - HovercardPropContextsItems as HovercardPropContextsItems, - ) - from githubkit.versions.v2026_03_10.models import ( - ImmutableReleasesOrganizationSettings as ImmutableReleasesOrganizationSettings, - ) - from githubkit.versions.v2026_03_10.models import Import as Import - from githubkit.versions.v2026_03_10.models import ( - ImportPropProjectChoicesItems as ImportPropProjectChoicesItems, - ) - from githubkit.versions.v2026_03_10.models import Installation as Installation - from githubkit.versions.v2026_03_10.models import ( - InstallationRepositoriesGetResponse200 as InstallationRepositoriesGetResponse200, - ) - from githubkit.versions.v2026_03_10.models import ( - InstallationRepositoriesGetResponse200PropRepositoriesItems as InstallationRepositoriesGetResponse200PropRepositoriesItems, - ) - from githubkit.versions.v2026_03_10.models import ( - InstallationToken as InstallationToken, - ) - from githubkit.versions.v2026_03_10.models import Integration as Integration - from githubkit.versions.v2026_03_10.models import ( - IntegrationInstallationRequest as IntegrationInstallationRequest, - ) - from githubkit.versions.v2026_03_10.models import ( - IntegrationPropPermissions as IntegrationPropPermissions, - ) - from githubkit.versions.v2026_03_10.models import ( - InteractionLimit as InteractionLimit, - ) - from githubkit.versions.v2026_03_10.models import ( - InteractionLimitResponse as InteractionLimitResponse, - ) - from githubkit.versions.v2026_03_10.models import Issue as Issue - from githubkit.versions.v2026_03_10.models import IssueComment as IssueComment - from githubkit.versions.v2026_03_10.models import ( - IssueCommentEvent as IssueCommentEvent, - ) - from githubkit.versions.v2026_03_10.models import ( - IssueDependenciesSummary as IssueDependenciesSummary, - ) - from githubkit.versions.v2026_03_10.models import IssueEvent as IssueEvent - from githubkit.versions.v2026_03_10.models import ( - IssueEventDismissedReview as IssueEventDismissedReview, - ) - from githubkit.versions.v2026_03_10.models import IssueEventLabel as IssueEventLabel - from githubkit.versions.v2026_03_10.models import ( - IssueEventMilestone as IssueEventMilestone, - ) - from githubkit.versions.v2026_03_10.models import ( - IssueEventProjectCard as IssueEventProjectCard, - ) - from githubkit.versions.v2026_03_10.models import ( - IssueEventRename as IssueEventRename, - ) - from githubkit.versions.v2026_03_10.models import IssueField as IssueField - from githubkit.versions.v2026_03_10.models import ( - IssueFieldPropOptionsItems as IssueFieldPropOptionsItems, - ) - from githubkit.versions.v2026_03_10.models import IssueFieldValue as IssueFieldValue - from githubkit.versions.v2026_03_10.models import ( - IssueFieldValuePropSingleSelectOption as IssueFieldValuePropSingleSelectOption, - ) - from githubkit.versions.v2026_03_10.models import ( - IssuePropLabelsItemsOneof1 as IssuePropLabelsItemsOneof1, - ) - from githubkit.versions.v2026_03_10.models import ( - IssuePropPullRequest as IssuePropPullRequest, - ) - from githubkit.versions.v2026_03_10.models import ( - IssueSearchResultItem as IssueSearchResultItem, - ) - from githubkit.versions.v2026_03_10.models import ( - IssueSearchResultItemPropLabelsItems as IssueSearchResultItemPropLabelsItems, - ) - from githubkit.versions.v2026_03_10.models import ( - IssueSearchResultItemPropPullRequest as IssueSearchResultItemPropPullRequest, - ) - from githubkit.versions.v2026_03_10.models import IssuesEvent as IssuesEvent - from githubkit.versions.v2026_03_10.models import IssueType as IssueType - from githubkit.versions.v2026_03_10.models import Job as Job - from githubkit.versions.v2026_03_10.models import ( - JobPropStepsItems as JobPropStepsItems, - ) - from githubkit.versions.v2026_03_10.models import Key as Key - from githubkit.versions.v2026_03_10.models import KeySimple as KeySimple - from githubkit.versions.v2026_03_10.models import Label as Label - from githubkit.versions.v2026_03_10.models import ( - LabeledIssueEvent as LabeledIssueEvent, - ) - from githubkit.versions.v2026_03_10.models import ( - LabeledIssueEventPropLabel as LabeledIssueEventPropLabel, - ) - from githubkit.versions.v2026_03_10.models import ( - LabelSearchResultItem as LabelSearchResultItem, - ) - from githubkit.versions.v2026_03_10.models import Language as Language - from githubkit.versions.v2026_03_10.models import License as License - from githubkit.versions.v2026_03_10.models import LicenseContent as LicenseContent - from githubkit.versions.v2026_03_10.models import ( - LicenseContentPropLinks as LicenseContentPropLinks, - ) - from githubkit.versions.v2026_03_10.models import LicenseSimple as LicenseSimple - from githubkit.versions.v2026_03_10.models import Link as Link - from githubkit.versions.v2026_03_10.models import LinkWithType as LinkWithType - from githubkit.versions.v2026_03_10.models import ( - LockedIssueEvent as LockedIssueEvent, - ) - from githubkit.versions.v2026_03_10.models import Manifest as Manifest - from githubkit.versions.v2026_03_10.models import ( - ManifestPropFile as ManifestPropFile, - ) - from githubkit.versions.v2026_03_10.models import ( - ManifestPropResolved as ManifestPropResolved, - ) - from githubkit.versions.v2026_03_10.models import ( - MarkdownPostBody as MarkdownPostBody, - ) - from githubkit.versions.v2026_03_10.models import ( - MarketplaceAccount as MarketplaceAccount, - ) - from githubkit.versions.v2026_03_10.models import ( - MarketplaceListingPlan as MarketplaceListingPlan, - ) - from githubkit.versions.v2026_03_10.models import ( - MarketplacePurchase as MarketplacePurchase, - ) - from githubkit.versions.v2026_03_10.models import ( - MarketplacePurchasePropMarketplacePendingChange as MarketplacePurchasePropMarketplacePendingChange, - ) - from githubkit.versions.v2026_03_10.models import ( - MarketplacePurchasePropMarketplacePurchase as MarketplacePurchasePropMarketplacePurchase, - ) - from githubkit.versions.v2026_03_10.models import MemberEvent as MemberEvent - from githubkit.versions.v2026_03_10.models import MergedUpstream as MergedUpstream - from githubkit.versions.v2026_03_10.models import MergeGroup as MergeGroup - from githubkit.versions.v2026_03_10.models import Metadata as Metadata - from githubkit.versions.v2026_03_10.models import Migration as Migration - from githubkit.versions.v2026_03_10.models import Milestone as Milestone - from githubkit.versions.v2026_03_10.models import ( - MilestonedIssueEvent as MilestonedIssueEvent, - ) - from githubkit.versions.v2026_03_10.models import ( - MilestonedIssueEventPropMilestone as MilestonedIssueEventPropMilestone, - ) - from githubkit.versions.v2026_03_10.models import ( - MinimalRepository as MinimalRepository, - ) - from githubkit.versions.v2026_03_10.models import ( - MinimalRepositoryPropCustomProperties as MinimalRepositoryPropCustomProperties, - ) - from githubkit.versions.v2026_03_10.models import ( - MinimalRepositoryPropLicense as MinimalRepositoryPropLicense, - ) - from githubkit.versions.v2026_03_10.models import ( - MinimalRepositoryPropPermissions as MinimalRepositoryPropPermissions, - ) - from githubkit.versions.v2026_03_10.models import ( - MovedColumnInProjectIssueEvent as MovedColumnInProjectIssueEvent, - ) - from githubkit.versions.v2026_03_10.models import ( - MovedColumnInProjectIssueEventPropProjectCard as MovedColumnInProjectIssueEventPropProjectCard, - ) - from githubkit.versions.v2026_03_10.models import ( - NetworkConfiguration as NetworkConfiguration, - ) - from githubkit.versions.v2026_03_10.models import NetworkSettings as NetworkSettings - from githubkit.versions.v2026_03_10.models import ( - NotificationsPutBody as NotificationsPutBody, - ) - from githubkit.versions.v2026_03_10.models import ( - NotificationsPutResponse202 as NotificationsPutResponse202, - ) - from githubkit.versions.v2026_03_10.models import ( - NotificationsThreadsThreadIdSubscriptionPutBody as NotificationsThreadsThreadIdSubscriptionPutBody, - ) - from githubkit.versions.v2026_03_10.models import ( - OidcCustomPropertyInclusion as OidcCustomPropertyInclusion, - ) - from githubkit.versions.v2026_03_10.models import ( - OidcCustomPropertyInclusionInput as OidcCustomPropertyInclusionInput, - ) - from githubkit.versions.v2026_03_10.models import OidcCustomSub as OidcCustomSub - from githubkit.versions.v2026_03_10.models import ( - OidcCustomSubRepo as OidcCustomSubRepo, - ) - from githubkit.versions.v2026_03_10.models import ( - OrganizationActionsSecret as OrganizationActionsSecret, - ) - from githubkit.versions.v2026_03_10.models import ( - OrganizationActionsVariable as OrganizationActionsVariable, - ) - from githubkit.versions.v2026_03_10.models import ( - OrganizationCreateIssueField as OrganizationCreateIssueField, - ) - from githubkit.versions.v2026_03_10.models import ( - OrganizationCreateIssueFieldPropOptionsItems as OrganizationCreateIssueFieldPropOptionsItems, - ) - from githubkit.versions.v2026_03_10.models import ( - OrganizationCreateIssueType as OrganizationCreateIssueType, - ) - from githubkit.versions.v2026_03_10.models import ( - OrganizationDependabotSecret as OrganizationDependabotSecret, - ) - from githubkit.versions.v2026_03_10.models import ( - OrganizationFull as OrganizationFull, - ) - from githubkit.versions.v2026_03_10.models import ( - OrganizationFullPropPlan as OrganizationFullPropPlan, - ) - from githubkit.versions.v2026_03_10.models import ( - OrganizationInvitation as OrganizationInvitation, - ) - from githubkit.versions.v2026_03_10.models import ( - OrganizationProgrammaticAccessGrant as OrganizationProgrammaticAccessGrant, - ) - from githubkit.versions.v2026_03_10.models import ( - OrganizationProgrammaticAccessGrantPropPermissions as OrganizationProgrammaticAccessGrantPropPermissions, - ) - from githubkit.versions.v2026_03_10.models import ( - OrganizationProgrammaticAccessGrantPropPermissionsPropOrganization as OrganizationProgrammaticAccessGrantPropPermissionsPropOrganization, - ) - from githubkit.versions.v2026_03_10.models import ( - OrganizationProgrammaticAccessGrantPropPermissionsPropOther as OrganizationProgrammaticAccessGrantPropPermissionsPropOther, - ) - from githubkit.versions.v2026_03_10.models import ( - OrganizationProgrammaticAccessGrantPropPermissionsPropRepository as OrganizationProgrammaticAccessGrantPropPermissionsPropRepository, - ) - from githubkit.versions.v2026_03_10.models import ( - OrganizationProgrammaticAccessGrantRequest as OrganizationProgrammaticAccessGrantRequest, - ) - from githubkit.versions.v2026_03_10.models import ( - OrganizationProgrammaticAccessGrantRequestPropPermissions as OrganizationProgrammaticAccessGrantRequestPropPermissions, - ) - from githubkit.versions.v2026_03_10.models import ( - OrganizationProgrammaticAccessGrantRequestPropPermissionsPropOrganization as OrganizationProgrammaticAccessGrantRequestPropPermissionsPropOrganization, - ) - from githubkit.versions.v2026_03_10.models import ( - OrganizationProgrammaticAccessGrantRequestPropPermissionsPropOther as OrganizationProgrammaticAccessGrantRequestPropPermissionsPropOther, - ) - from githubkit.versions.v2026_03_10.models import ( - OrganizationProgrammaticAccessGrantRequestPropPermissionsPropRepository as OrganizationProgrammaticAccessGrantRequestPropPermissionsPropRepository, - ) - from githubkit.versions.v2026_03_10.models import ( - OrganizationRole as OrganizationRole, - ) - from githubkit.versions.v2026_03_10.models import ( - OrganizationSecretScanningAlert as OrganizationSecretScanningAlert, - ) - from githubkit.versions.v2026_03_10.models import ( - OrganizationSimple as OrganizationSimple, - ) - from githubkit.versions.v2026_03_10.models import ( - OrganizationSimpleWebhooks as OrganizationSimpleWebhooks, - ) - from githubkit.versions.v2026_03_10.models import ( - OrganizationsOrgSettingsBillingBudgetsBudgetIdPatchBody as OrganizationsOrgSettingsBillingBudgetsBudgetIdPatchBody, - ) - from githubkit.versions.v2026_03_10.models import ( - OrganizationsOrgSettingsBillingBudgetsBudgetIdPatchBodyPropBudgetAlerting as OrganizationsOrgSettingsBillingBudgetsBudgetIdPatchBodyPropBudgetAlerting, - ) - from githubkit.versions.v2026_03_10.models import ( - OrganizationsOrgSettingsBillingBudgetsBudgetIdPatchResponse200 as OrganizationsOrgSettingsBillingBudgetsBudgetIdPatchResponse200, - ) - from githubkit.versions.v2026_03_10.models import ( - OrganizationsOrgSettingsBillingBudgetsBudgetIdPatchResponse200PropBudget as OrganizationsOrgSettingsBillingBudgetsBudgetIdPatchResponse200PropBudget, - ) - from githubkit.versions.v2026_03_10.models import ( - OrganizationsOrgSettingsBillingBudgetsBudgetIdPatchResponse200PropBudgetPropBudgetAlerting as OrganizationsOrgSettingsBillingBudgetsBudgetIdPatchResponse200PropBudgetPropBudgetAlerting, - ) - from githubkit.versions.v2026_03_10.models import ( - OrganizationUpdateIssueField as OrganizationUpdateIssueField, - ) - from githubkit.versions.v2026_03_10.models import ( - OrganizationUpdateIssueFieldPropOptionsItems as OrganizationUpdateIssueFieldPropOptionsItems, - ) - from githubkit.versions.v2026_03_10.models import ( - OrganizationUpdateIssueType as OrganizationUpdateIssueType, - ) - from githubkit.versions.v2026_03_10.models import OrgHook as OrgHook - from githubkit.versions.v2026_03_10.models import ( - OrgHookPropConfig as OrgHookPropConfig, - ) - from githubkit.versions.v2026_03_10.models import OrgMembership as OrgMembership - from githubkit.versions.v2026_03_10.models import ( - OrgMembershipPropPermissions as OrgMembershipPropPermissions, - ) - from githubkit.versions.v2026_03_10.models import ( - OrgPrivateRegistryConfiguration as OrgPrivateRegistryConfiguration, - ) - from githubkit.versions.v2026_03_10.models import ( - OrgPrivateRegistryConfigurationWithSelectedRepositories as OrgPrivateRegistryConfigurationWithSelectedRepositories, - ) - from githubkit.versions.v2026_03_10.models import ( - OrgRepoCustomPropertyValues as OrgRepoCustomPropertyValues, - ) - from githubkit.versions.v2026_03_10.models import ( - OrgRulesetConditionsOneof0 as OrgRulesetConditionsOneof0, - ) - from githubkit.versions.v2026_03_10.models import ( - OrgRulesetConditionsOneof1 as OrgRulesetConditionsOneof1, - ) - from githubkit.versions.v2026_03_10.models import ( - OrgRulesetConditionsOneof2 as OrgRulesetConditionsOneof2, - ) - from githubkit.versions.v2026_03_10.models import ( - OrgsOrgActionsCacheUsageByRepositoryGetResponse200 as OrgsOrgActionsCacheUsageByRepositoryGetResponse200, - ) - from githubkit.versions.v2026_03_10.models import ( - OrgsOrgActionsHostedRunnersGetResponse200 as OrgsOrgActionsHostedRunnersGetResponse200, - ) - from githubkit.versions.v2026_03_10.models import ( - OrgsOrgActionsHostedRunnersHostedRunnerIdPatchBody as OrgsOrgActionsHostedRunnersHostedRunnerIdPatchBody, - ) - from githubkit.versions.v2026_03_10.models import ( - OrgsOrgActionsHostedRunnersImagesCustomGetResponse200 as OrgsOrgActionsHostedRunnersImagesCustomGetResponse200, - ) - from githubkit.versions.v2026_03_10.models import ( - OrgsOrgActionsHostedRunnersImagesCustomImageDefinitionIdVersionsGetResponse200 as OrgsOrgActionsHostedRunnersImagesCustomImageDefinitionIdVersionsGetResponse200, - ) - from githubkit.versions.v2026_03_10.models import ( - OrgsOrgActionsHostedRunnersImagesGithubOwnedGetResponse200 as OrgsOrgActionsHostedRunnersImagesGithubOwnedGetResponse200, - ) - from githubkit.versions.v2026_03_10.models import ( - OrgsOrgActionsHostedRunnersImagesPartnerGetResponse200 as OrgsOrgActionsHostedRunnersImagesPartnerGetResponse200, - ) - from githubkit.versions.v2026_03_10.models import ( - OrgsOrgActionsHostedRunnersMachineSizesGetResponse200 as OrgsOrgActionsHostedRunnersMachineSizesGetResponse200, - ) - from githubkit.versions.v2026_03_10.models import ( - OrgsOrgActionsHostedRunnersPlatformsGetResponse200 as OrgsOrgActionsHostedRunnersPlatformsGetResponse200, - ) - from githubkit.versions.v2026_03_10.models import ( - OrgsOrgActionsHostedRunnersPostBody as OrgsOrgActionsHostedRunnersPostBody, - ) - from githubkit.versions.v2026_03_10.models import ( - OrgsOrgActionsHostedRunnersPostBodyPropImage as OrgsOrgActionsHostedRunnersPostBodyPropImage, - ) - from githubkit.versions.v2026_03_10.models import ( - OrgsOrgActionsOidcCustomizationSubPutBody as OrgsOrgActionsOidcCustomizationSubPutBody, - ) - from githubkit.versions.v2026_03_10.models import ( - OrgsOrgActionsPermissionsPutBody as OrgsOrgActionsPermissionsPutBody, - ) - from githubkit.versions.v2026_03_10.models import ( - OrgsOrgActionsPermissionsRepositoriesGetResponse200 as OrgsOrgActionsPermissionsRepositoriesGetResponse200, - ) - from githubkit.versions.v2026_03_10.models import ( - OrgsOrgActionsPermissionsRepositoriesPutBody as OrgsOrgActionsPermissionsRepositoriesPutBody, - ) - from githubkit.versions.v2026_03_10.models import ( - OrgsOrgActionsPermissionsSelfHostedRunnersPutBody as OrgsOrgActionsPermissionsSelfHostedRunnersPutBody, - ) - from githubkit.versions.v2026_03_10.models import ( - OrgsOrgActionsPermissionsSelfHostedRunnersRepositoriesGetResponse200 as OrgsOrgActionsPermissionsSelfHostedRunnersRepositoriesGetResponse200, - ) - from githubkit.versions.v2026_03_10.models import ( - OrgsOrgActionsPermissionsSelfHostedRunnersRepositoriesPutBody as OrgsOrgActionsPermissionsSelfHostedRunnersRepositoriesPutBody, - ) - from githubkit.versions.v2026_03_10.models import ( - OrgsOrgActionsRunnerGroupsGetResponse200 as OrgsOrgActionsRunnerGroupsGetResponse200, - ) - from githubkit.versions.v2026_03_10.models import ( - OrgsOrgActionsRunnerGroupsPostBody as OrgsOrgActionsRunnerGroupsPostBody, - ) - from githubkit.versions.v2026_03_10.models import ( - OrgsOrgActionsRunnerGroupsRunnerGroupIdHostedRunnersGetResponse200 as OrgsOrgActionsRunnerGroupsRunnerGroupIdHostedRunnersGetResponse200, - ) - from githubkit.versions.v2026_03_10.models import ( - OrgsOrgActionsRunnerGroupsRunnerGroupIdPatchBody as OrgsOrgActionsRunnerGroupsRunnerGroupIdPatchBody, - ) - from githubkit.versions.v2026_03_10.models import ( - OrgsOrgActionsRunnerGroupsRunnerGroupIdRepositoriesGetResponse200 as OrgsOrgActionsRunnerGroupsRunnerGroupIdRepositoriesGetResponse200, - ) - from githubkit.versions.v2026_03_10.models import ( - OrgsOrgActionsRunnerGroupsRunnerGroupIdRepositoriesPutBody as OrgsOrgActionsRunnerGroupsRunnerGroupIdRepositoriesPutBody, - ) - from githubkit.versions.v2026_03_10.models import ( - OrgsOrgActionsRunnerGroupsRunnerGroupIdRunnersGetResponse200 as OrgsOrgActionsRunnerGroupsRunnerGroupIdRunnersGetResponse200, - ) - from githubkit.versions.v2026_03_10.models import ( - OrgsOrgActionsRunnerGroupsRunnerGroupIdRunnersPutBody as OrgsOrgActionsRunnerGroupsRunnerGroupIdRunnersPutBody, - ) - from githubkit.versions.v2026_03_10.models import ( - OrgsOrgActionsRunnersGenerateJitconfigPostBody as OrgsOrgActionsRunnersGenerateJitconfigPostBody, - ) - from githubkit.versions.v2026_03_10.models import ( - OrgsOrgActionsRunnersGenerateJitconfigPostResponse201 as OrgsOrgActionsRunnersGenerateJitconfigPostResponse201, - ) - from githubkit.versions.v2026_03_10.models import ( - OrgsOrgActionsRunnersGetResponse200 as OrgsOrgActionsRunnersGetResponse200, - ) - from githubkit.versions.v2026_03_10.models import ( - OrgsOrgActionsRunnersRunnerIdLabelsDeleteResponse200 as OrgsOrgActionsRunnersRunnerIdLabelsDeleteResponse200, - ) - from githubkit.versions.v2026_03_10.models import ( - OrgsOrgActionsRunnersRunnerIdLabelsGetResponse200 as OrgsOrgActionsRunnersRunnerIdLabelsGetResponse200, - ) - from githubkit.versions.v2026_03_10.models import ( - OrgsOrgActionsRunnersRunnerIdLabelsPostBody as OrgsOrgActionsRunnersRunnerIdLabelsPostBody, - ) - from githubkit.versions.v2026_03_10.models import ( - OrgsOrgActionsRunnersRunnerIdLabelsPutBody as OrgsOrgActionsRunnersRunnerIdLabelsPutBody, - ) - from githubkit.versions.v2026_03_10.models import ( - OrgsOrgActionsSecretsGetResponse200 as OrgsOrgActionsSecretsGetResponse200, - ) - from githubkit.versions.v2026_03_10.models import ( - OrgsOrgActionsSecretsSecretNamePutBody as OrgsOrgActionsSecretsSecretNamePutBody, - ) - from githubkit.versions.v2026_03_10.models import ( - OrgsOrgActionsSecretsSecretNameRepositoriesGetResponse200 as OrgsOrgActionsSecretsSecretNameRepositoriesGetResponse200, - ) - from githubkit.versions.v2026_03_10.models import ( - OrgsOrgActionsSecretsSecretNameRepositoriesPutBody as OrgsOrgActionsSecretsSecretNameRepositoriesPutBody, - ) - from githubkit.versions.v2026_03_10.models import ( - OrgsOrgActionsVariablesGetResponse200 as OrgsOrgActionsVariablesGetResponse200, - ) - from githubkit.versions.v2026_03_10.models import ( - OrgsOrgActionsVariablesNamePatchBody as OrgsOrgActionsVariablesNamePatchBody, - ) - from githubkit.versions.v2026_03_10.models import ( - OrgsOrgActionsVariablesNameRepositoriesGetResponse200 as OrgsOrgActionsVariablesNameRepositoriesGetResponse200, - ) - from githubkit.versions.v2026_03_10.models import ( - OrgsOrgActionsVariablesNameRepositoriesPutBody as OrgsOrgActionsVariablesNameRepositoriesPutBody, - ) - from githubkit.versions.v2026_03_10.models import ( - OrgsOrgActionsVariablesPostBody as OrgsOrgActionsVariablesPostBody, - ) - from githubkit.versions.v2026_03_10.models import ( - OrgsOrgArtifactsMetadataDeploymentRecordClusterClusterPostBody as OrgsOrgArtifactsMetadataDeploymentRecordClusterClusterPostBody, - ) - from githubkit.versions.v2026_03_10.models import ( - OrgsOrgArtifactsMetadataDeploymentRecordClusterClusterPostBodyPropDeploymentsItems as OrgsOrgArtifactsMetadataDeploymentRecordClusterClusterPostBodyPropDeploymentsItems, - ) - from githubkit.versions.v2026_03_10.models import ( - OrgsOrgArtifactsMetadataDeploymentRecordClusterClusterPostBodyPropDeploymentsItemsPropTags as OrgsOrgArtifactsMetadataDeploymentRecordClusterClusterPostBodyPropDeploymentsItemsPropTags, - ) - from githubkit.versions.v2026_03_10.models import ( - OrgsOrgArtifactsMetadataDeploymentRecordClusterClusterPostResponse200 as OrgsOrgArtifactsMetadataDeploymentRecordClusterClusterPostResponse200, - ) - from githubkit.versions.v2026_03_10.models import ( - OrgsOrgArtifactsMetadataDeploymentRecordPostBody as OrgsOrgArtifactsMetadataDeploymentRecordPostBody, - ) - from githubkit.versions.v2026_03_10.models import ( - OrgsOrgArtifactsMetadataDeploymentRecordPostBodyPropTags as OrgsOrgArtifactsMetadataDeploymentRecordPostBodyPropTags, - ) - from githubkit.versions.v2026_03_10.models import ( - OrgsOrgArtifactsMetadataDeploymentRecordPostResponse200 as OrgsOrgArtifactsMetadataDeploymentRecordPostResponse200, - ) - from githubkit.versions.v2026_03_10.models import ( - OrgsOrgArtifactsMetadataStorageRecordPostBody as OrgsOrgArtifactsMetadataStorageRecordPostBody, - ) - from githubkit.versions.v2026_03_10.models import ( - OrgsOrgArtifactsMetadataStorageRecordPostResponse200 as OrgsOrgArtifactsMetadataStorageRecordPostResponse200, - ) - from githubkit.versions.v2026_03_10.models import ( - OrgsOrgArtifactsMetadataStorageRecordPostResponse200PropStorageRecordsItems as OrgsOrgArtifactsMetadataStorageRecordPostResponse200PropStorageRecordsItems, - ) - from githubkit.versions.v2026_03_10.models import ( - OrgsOrgArtifactsSubjectDigestMetadataDeploymentRecordsGetResponse200 as OrgsOrgArtifactsSubjectDigestMetadataDeploymentRecordsGetResponse200, - ) - from githubkit.versions.v2026_03_10.models import ( - OrgsOrgArtifactsSubjectDigestMetadataStorageRecordsGetResponse200 as OrgsOrgArtifactsSubjectDigestMetadataStorageRecordsGetResponse200, - ) - from githubkit.versions.v2026_03_10.models import ( - OrgsOrgArtifactsSubjectDigestMetadataStorageRecordsGetResponse200PropStorageRecordsItems as OrgsOrgArtifactsSubjectDigestMetadataStorageRecordsGetResponse200PropStorageRecordsItems, - ) - from githubkit.versions.v2026_03_10.models import ( - OrgsOrgAttestationsBulkListPostBody as OrgsOrgAttestationsBulkListPostBody, - ) - from githubkit.versions.v2026_03_10.models import ( - OrgsOrgAttestationsBulkListPostResponse200 as OrgsOrgAttestationsBulkListPostResponse200, - ) - from githubkit.versions.v2026_03_10.models import ( - OrgsOrgAttestationsBulkListPostResponse200PropAttestationsSubjectDigests as OrgsOrgAttestationsBulkListPostResponse200PropAttestationsSubjectDigests, - ) - from githubkit.versions.v2026_03_10.models import ( - OrgsOrgAttestationsBulkListPostResponse200PropPageInfo as OrgsOrgAttestationsBulkListPostResponse200PropPageInfo, - ) - from githubkit.versions.v2026_03_10.models import ( - OrgsOrgAttestationsDeleteRequestPostBodyOneof0 as OrgsOrgAttestationsDeleteRequestPostBodyOneof0, - ) - from githubkit.versions.v2026_03_10.models import ( - OrgsOrgAttestationsDeleteRequestPostBodyOneof1 as OrgsOrgAttestationsDeleteRequestPostBodyOneof1, - ) - from githubkit.versions.v2026_03_10.models import ( - OrgsOrgAttestationsRepositoriesGetResponse200Items as OrgsOrgAttestationsRepositoriesGetResponse200Items, - ) - from githubkit.versions.v2026_03_10.models import ( - OrgsOrgAttestationsSubjectDigestGetResponse200 as OrgsOrgAttestationsSubjectDigestGetResponse200, - ) - from githubkit.versions.v2026_03_10.models import ( - OrgsOrgAttestationsSubjectDigestGetResponse200PropAttestationsItems as OrgsOrgAttestationsSubjectDigestGetResponse200PropAttestationsItems, - ) - from githubkit.versions.v2026_03_10.models import ( - OrgsOrgCampaignsCampaignNumberPatchBody as OrgsOrgCampaignsCampaignNumberPatchBody, - ) - from githubkit.versions.v2026_03_10.models import ( - OrgsOrgCampaignsPostBodyOneof0 as OrgsOrgCampaignsPostBodyOneof0, - ) - from githubkit.versions.v2026_03_10.models import ( - OrgsOrgCampaignsPostBodyOneof1 as OrgsOrgCampaignsPostBodyOneof1, - ) - from githubkit.versions.v2026_03_10.models import ( - OrgsOrgCampaignsPostBodyPropCodeScanningAlertsItems as OrgsOrgCampaignsPostBodyPropCodeScanningAlertsItems, - ) - from githubkit.versions.v2026_03_10.models import ( - OrgsOrgCodeSecurityConfigurationsConfigurationIdAttachPostBody as OrgsOrgCodeSecurityConfigurationsConfigurationIdAttachPostBody, - ) - from githubkit.versions.v2026_03_10.models import ( - OrgsOrgCodeSecurityConfigurationsConfigurationIdDefaultsPutBody as OrgsOrgCodeSecurityConfigurationsConfigurationIdDefaultsPutBody, - ) - from githubkit.versions.v2026_03_10.models import ( - OrgsOrgCodeSecurityConfigurationsConfigurationIdDefaultsPutResponse200 as OrgsOrgCodeSecurityConfigurationsConfigurationIdDefaultsPutResponse200, - ) - from githubkit.versions.v2026_03_10.models import ( - OrgsOrgCodeSecurityConfigurationsConfigurationIdPatchBody as OrgsOrgCodeSecurityConfigurationsConfigurationIdPatchBody, - ) - from githubkit.versions.v2026_03_10.models import ( - OrgsOrgCodeSecurityConfigurationsConfigurationIdPatchBodyPropDependencyGraphAutosubmitActionOptions as OrgsOrgCodeSecurityConfigurationsConfigurationIdPatchBodyPropDependencyGraphAutosubmitActionOptions, - ) - from githubkit.versions.v2026_03_10.models import ( - OrgsOrgCodeSecurityConfigurationsConfigurationIdPatchBodyPropSecretScanningDelegatedBypassOptions as OrgsOrgCodeSecurityConfigurationsConfigurationIdPatchBodyPropSecretScanningDelegatedBypassOptions, - ) - from githubkit.versions.v2026_03_10.models import ( - OrgsOrgCodeSecurityConfigurationsConfigurationIdPatchBodyPropSecretScanningDelegatedBypassOptionsPropReviewersItems as OrgsOrgCodeSecurityConfigurationsConfigurationIdPatchBodyPropSecretScanningDelegatedBypassOptionsPropReviewersItems, - ) - from githubkit.versions.v2026_03_10.models import ( - OrgsOrgCodeSecurityConfigurationsDetachDeleteBody as OrgsOrgCodeSecurityConfigurationsDetachDeleteBody, - ) - from githubkit.versions.v2026_03_10.models import ( - OrgsOrgCodeSecurityConfigurationsPostBody as OrgsOrgCodeSecurityConfigurationsPostBody, - ) - from githubkit.versions.v2026_03_10.models import ( - OrgsOrgCodeSecurityConfigurationsPostBodyPropDependencyGraphAutosubmitActionOptions as OrgsOrgCodeSecurityConfigurationsPostBodyPropDependencyGraphAutosubmitActionOptions, - ) - from githubkit.versions.v2026_03_10.models import ( - OrgsOrgCodeSecurityConfigurationsPostBodyPropSecretScanningDelegatedBypassOptions as OrgsOrgCodeSecurityConfigurationsPostBodyPropSecretScanningDelegatedBypassOptions, - ) - from githubkit.versions.v2026_03_10.models import ( - OrgsOrgCodeSecurityConfigurationsPostBodyPropSecretScanningDelegatedBypassOptionsPropReviewersItems as OrgsOrgCodeSecurityConfigurationsPostBodyPropSecretScanningDelegatedBypassOptionsPropReviewersItems, - ) - from githubkit.versions.v2026_03_10.models import ( - OrgsOrgCodespacesAccessPutBody as OrgsOrgCodespacesAccessPutBody, - ) - from githubkit.versions.v2026_03_10.models import ( - OrgsOrgCodespacesAccessSelectedUsersDeleteBody as OrgsOrgCodespacesAccessSelectedUsersDeleteBody, - ) - from githubkit.versions.v2026_03_10.models import ( - OrgsOrgCodespacesAccessSelectedUsersPostBody as OrgsOrgCodespacesAccessSelectedUsersPostBody, - ) - from githubkit.versions.v2026_03_10.models import ( - OrgsOrgCodespacesGetResponse200 as OrgsOrgCodespacesGetResponse200, - ) - from githubkit.versions.v2026_03_10.models import ( - OrgsOrgCodespacesSecretsGetResponse200 as OrgsOrgCodespacesSecretsGetResponse200, - ) - from githubkit.versions.v2026_03_10.models import ( - OrgsOrgCodespacesSecretsSecretNamePutBody as OrgsOrgCodespacesSecretsSecretNamePutBody, - ) - from githubkit.versions.v2026_03_10.models import ( - OrgsOrgCodespacesSecretsSecretNameRepositoriesGetResponse200 as OrgsOrgCodespacesSecretsSecretNameRepositoriesGetResponse200, - ) - from githubkit.versions.v2026_03_10.models import ( - OrgsOrgCodespacesSecretsSecretNameRepositoriesPutBody as OrgsOrgCodespacesSecretsSecretNameRepositoriesPutBody, - ) - from githubkit.versions.v2026_03_10.models import ( - OrgsOrgCopilotBillingSeatsGetResponse200 as OrgsOrgCopilotBillingSeatsGetResponse200, - ) - from githubkit.versions.v2026_03_10.models import ( - OrgsOrgCopilotBillingSelectedTeamsDeleteBody as OrgsOrgCopilotBillingSelectedTeamsDeleteBody, - ) - from githubkit.versions.v2026_03_10.models import ( - OrgsOrgCopilotBillingSelectedTeamsDeleteResponse200 as OrgsOrgCopilotBillingSelectedTeamsDeleteResponse200, - ) - from githubkit.versions.v2026_03_10.models import ( - OrgsOrgCopilotBillingSelectedTeamsPostBody as OrgsOrgCopilotBillingSelectedTeamsPostBody, - ) - from githubkit.versions.v2026_03_10.models import ( - OrgsOrgCopilotBillingSelectedTeamsPostResponse201 as OrgsOrgCopilotBillingSelectedTeamsPostResponse201, - ) - from githubkit.versions.v2026_03_10.models import ( - OrgsOrgCopilotBillingSelectedUsersDeleteBody as OrgsOrgCopilotBillingSelectedUsersDeleteBody, - ) - from githubkit.versions.v2026_03_10.models import ( - OrgsOrgCopilotBillingSelectedUsersDeleteResponse200 as OrgsOrgCopilotBillingSelectedUsersDeleteResponse200, - ) - from githubkit.versions.v2026_03_10.models import ( - OrgsOrgCopilotBillingSelectedUsersPostBody as OrgsOrgCopilotBillingSelectedUsersPostBody, - ) - from githubkit.versions.v2026_03_10.models import ( - OrgsOrgCopilotBillingSelectedUsersPostResponse201 as OrgsOrgCopilotBillingSelectedUsersPostResponse201, - ) - from githubkit.versions.v2026_03_10.models import ( - OrgsOrgCopilotCodingAgentPermissionsGetResponse200 as OrgsOrgCopilotCodingAgentPermissionsGetResponse200, - ) - from githubkit.versions.v2026_03_10.models import ( - OrgsOrgCopilotCodingAgentPermissionsPutBody as OrgsOrgCopilotCodingAgentPermissionsPutBody, - ) - from githubkit.versions.v2026_03_10.models import ( - OrgsOrgCopilotCodingAgentPermissionsRepositoriesGetResponse200 as OrgsOrgCopilotCodingAgentPermissionsRepositoriesGetResponse200, - ) - from githubkit.versions.v2026_03_10.models import ( - OrgsOrgCopilotCodingAgentPermissionsRepositoriesPutBody as OrgsOrgCopilotCodingAgentPermissionsRepositoriesPutBody, - ) - from githubkit.versions.v2026_03_10.models import ( - OrgsOrgCopilotContentExclusionPutBody as OrgsOrgCopilotContentExclusionPutBody, - ) - from githubkit.versions.v2026_03_10.models import ( - OrgsOrgCopilotContentExclusionPutResponse200 as OrgsOrgCopilotContentExclusionPutResponse200, - ) - from githubkit.versions.v2026_03_10.models import ( - OrgsOrgCopilotSpacesGetResponse200 as OrgsOrgCopilotSpacesGetResponse200, - ) - from githubkit.versions.v2026_03_10.models import ( - OrgsOrgCopilotSpacesPostBody as OrgsOrgCopilotSpacesPostBody, - ) - from githubkit.versions.v2026_03_10.models import ( - OrgsOrgCopilotSpacesPostBodyPropResourcesAttributesItems as OrgsOrgCopilotSpacesPostBodyPropResourcesAttributesItems, - ) - from githubkit.versions.v2026_03_10.models import ( - OrgsOrgCopilotSpacesPostBodyPropResourcesAttributesItemsPropMetadata as OrgsOrgCopilotSpacesPostBodyPropResourcesAttributesItemsPropMetadata, - ) - from githubkit.versions.v2026_03_10.models import ( - OrgsOrgCopilotSpacesSpaceNumberCollaboratorsActorTypeActorIdentifierPutBody as OrgsOrgCopilotSpacesSpaceNumberCollaboratorsActorTypeActorIdentifierPutBody, - ) - from githubkit.versions.v2026_03_10.models import ( - OrgsOrgCopilotSpacesSpaceNumberCollaboratorsGetResponse200 as OrgsOrgCopilotSpacesSpaceNumberCollaboratorsGetResponse200, - ) - from githubkit.versions.v2026_03_10.models import ( - OrgsOrgCopilotSpacesSpaceNumberCollaboratorsPostBody as OrgsOrgCopilotSpacesSpaceNumberCollaboratorsPostBody, - ) - from githubkit.versions.v2026_03_10.models import ( - OrgsOrgCopilotSpacesSpaceNumberPutBody as OrgsOrgCopilotSpacesSpaceNumberPutBody, - ) - from githubkit.versions.v2026_03_10.models import ( - OrgsOrgCopilotSpacesSpaceNumberPutBodyPropResourcesAttributesItems as OrgsOrgCopilotSpacesSpaceNumberPutBodyPropResourcesAttributesItems, - ) - from githubkit.versions.v2026_03_10.models import ( - OrgsOrgCopilotSpacesSpaceNumberPutBodyPropResourcesAttributesItemsPropMetadata as OrgsOrgCopilotSpacesSpaceNumberPutBodyPropResourcesAttributesItemsPropMetadata, - ) - from githubkit.versions.v2026_03_10.models import ( - OrgsOrgCopilotSpacesSpaceNumberResourcesGetResponse200 as OrgsOrgCopilotSpacesSpaceNumberResourcesGetResponse200, - ) - from githubkit.versions.v2026_03_10.models import ( - OrgsOrgCopilotSpacesSpaceNumberResourcesPostBody as OrgsOrgCopilotSpacesSpaceNumberResourcesPostBody, - ) - from githubkit.versions.v2026_03_10.models import ( - OrgsOrgCopilotSpacesSpaceNumberResourcesPostBodyPropMetadata as OrgsOrgCopilotSpacesSpaceNumberResourcesPostBodyPropMetadata, - ) - from githubkit.versions.v2026_03_10.models import ( - OrgsOrgCopilotSpacesSpaceNumberResourcesSpaceResourceIdPutBody as OrgsOrgCopilotSpacesSpaceNumberResourcesSpaceResourceIdPutBody, - ) - from githubkit.versions.v2026_03_10.models import ( - OrgsOrgCopilotSpacesSpaceNumberResourcesSpaceResourceIdPutBodyPropMetadata as OrgsOrgCopilotSpacesSpaceNumberResourcesSpaceResourceIdPutBodyPropMetadata, - ) - from githubkit.versions.v2026_03_10.models import ( - OrgsOrgDependabotRepositoryAccessDefaultLevelPutBody as OrgsOrgDependabotRepositoryAccessDefaultLevelPutBody, - ) - from githubkit.versions.v2026_03_10.models import ( - OrgsOrgDependabotRepositoryAccessPatchBody as OrgsOrgDependabotRepositoryAccessPatchBody, - ) - from githubkit.versions.v2026_03_10.models import ( - OrgsOrgDependabotSecretsGetResponse200 as OrgsOrgDependabotSecretsGetResponse200, - ) - from githubkit.versions.v2026_03_10.models import ( - OrgsOrgDependabotSecretsSecretNamePutBody as OrgsOrgDependabotSecretsSecretNamePutBody, - ) - from githubkit.versions.v2026_03_10.models import ( - OrgsOrgDependabotSecretsSecretNameRepositoriesGetResponse200 as OrgsOrgDependabotSecretsSecretNameRepositoriesGetResponse200, - ) - from githubkit.versions.v2026_03_10.models import ( - OrgsOrgDependabotSecretsSecretNameRepositoriesPutBody as OrgsOrgDependabotSecretsSecretNameRepositoriesPutBody, - ) - from githubkit.versions.v2026_03_10.models import ( - OrgsOrgHooksHookIdConfigPatchBody as OrgsOrgHooksHookIdConfigPatchBody, - ) - from githubkit.versions.v2026_03_10.models import ( - OrgsOrgHooksHookIdPatchBody as OrgsOrgHooksHookIdPatchBody, - ) - from githubkit.versions.v2026_03_10.models import ( - OrgsOrgHooksHookIdPatchBodyPropConfig as OrgsOrgHooksHookIdPatchBodyPropConfig, - ) - from githubkit.versions.v2026_03_10.models import ( - OrgsOrgHooksPostBody as OrgsOrgHooksPostBody, - ) - from githubkit.versions.v2026_03_10.models import ( - OrgsOrgHooksPostBodyPropConfig as OrgsOrgHooksPostBodyPropConfig, - ) - from githubkit.versions.v2026_03_10.models import ( - OrgsOrgInstallationsGetResponse200 as OrgsOrgInstallationsGetResponse200, - ) - from githubkit.versions.v2026_03_10.models import ( - OrgsOrgInteractionLimitsGetResponse200Anyof1 as OrgsOrgInteractionLimitsGetResponse200Anyof1, - ) - from githubkit.versions.v2026_03_10.models import ( - OrgsOrgInvitationsPostBody as OrgsOrgInvitationsPostBody, - ) - from githubkit.versions.v2026_03_10.models import ( - OrgsOrgMembershipsUsernamePutBody as OrgsOrgMembershipsUsernamePutBody, - ) - from githubkit.versions.v2026_03_10.models import ( - OrgsOrgMembersUsernameCodespacesGetResponse200 as OrgsOrgMembersUsernameCodespacesGetResponse200, - ) - from githubkit.versions.v2026_03_10.models import ( - OrgsOrgMigrationsPostBody as OrgsOrgMigrationsPostBody, - ) - from githubkit.versions.v2026_03_10.models import ( - OrgsOrgOrganizationRolesGetResponse200 as OrgsOrgOrganizationRolesGetResponse200, - ) - from githubkit.versions.v2026_03_10.models import ( - OrgsOrgOutsideCollaboratorsUsernameDeleteResponse422 as OrgsOrgOutsideCollaboratorsUsernameDeleteResponse422, - ) - from githubkit.versions.v2026_03_10.models import ( - OrgsOrgOutsideCollaboratorsUsernamePutBody as OrgsOrgOutsideCollaboratorsUsernamePutBody, - ) - from githubkit.versions.v2026_03_10.models import ( - OrgsOrgOutsideCollaboratorsUsernamePutResponse202 as OrgsOrgOutsideCollaboratorsUsernamePutResponse202, - ) - from githubkit.versions.v2026_03_10.models import ( - OrgsOrgPatchBody as OrgsOrgPatchBody, - ) - from githubkit.versions.v2026_03_10.models import ( - OrgsOrgPersonalAccessTokenRequestsPatRequestIdPostBody as OrgsOrgPersonalAccessTokenRequestsPatRequestIdPostBody, - ) - from githubkit.versions.v2026_03_10.models import ( - OrgsOrgPersonalAccessTokenRequestsPostBody as OrgsOrgPersonalAccessTokenRequestsPostBody, - ) - from githubkit.versions.v2026_03_10.models import ( - OrgsOrgPersonalAccessTokensPatIdPostBody as OrgsOrgPersonalAccessTokensPatIdPostBody, - ) - from githubkit.versions.v2026_03_10.models import ( - OrgsOrgPersonalAccessTokensPostBody as OrgsOrgPersonalAccessTokensPostBody, - ) - from githubkit.versions.v2026_03_10.models import ( - OrgsOrgPrivateRegistriesGetResponse200 as OrgsOrgPrivateRegistriesGetResponse200, - ) - from githubkit.versions.v2026_03_10.models import ( - OrgsOrgPrivateRegistriesPostBody as OrgsOrgPrivateRegistriesPostBody, - ) - from githubkit.versions.v2026_03_10.models import ( - OrgsOrgPrivateRegistriesPublicKeyGetResponse200 as OrgsOrgPrivateRegistriesPublicKeyGetResponse200, - ) - from githubkit.versions.v2026_03_10.models import ( - OrgsOrgPrivateRegistriesSecretNamePatchBody as OrgsOrgPrivateRegistriesSecretNamePatchBody, - ) - from githubkit.versions.v2026_03_10.models import ( - OrgsOrgProjectsV2ProjectNumberDraftsPostBody as OrgsOrgProjectsV2ProjectNumberDraftsPostBody, - ) - from githubkit.versions.v2026_03_10.models import ( - OrgsOrgProjectsV2ProjectNumberFieldsPostBodyOneof0 as OrgsOrgProjectsV2ProjectNumberFieldsPostBodyOneof0, - ) - from githubkit.versions.v2026_03_10.models import ( - OrgsOrgProjectsV2ProjectNumberFieldsPostBodyOneof1 as OrgsOrgProjectsV2ProjectNumberFieldsPostBodyOneof1, - ) - from githubkit.versions.v2026_03_10.models import ( - OrgsOrgProjectsV2ProjectNumberFieldsPostBodyOneof2 as OrgsOrgProjectsV2ProjectNumberFieldsPostBodyOneof2, - ) - from githubkit.versions.v2026_03_10.models import ( - OrgsOrgProjectsV2ProjectNumberFieldsPostBodyOneof3 as OrgsOrgProjectsV2ProjectNumberFieldsPostBodyOneof3, - ) - from githubkit.versions.v2026_03_10.models import ( - OrgsOrgProjectsV2ProjectNumberItemsItemIdPatchBody as OrgsOrgProjectsV2ProjectNumberItemsItemIdPatchBody, - ) - from githubkit.versions.v2026_03_10.models import ( - OrgsOrgProjectsV2ProjectNumberItemsItemIdPatchBodyPropFieldsItems as OrgsOrgProjectsV2ProjectNumberItemsItemIdPatchBodyPropFieldsItems, - ) - from githubkit.versions.v2026_03_10.models import ( - OrgsOrgProjectsV2ProjectNumberItemsPostBodyOneof0 as OrgsOrgProjectsV2ProjectNumberItemsPostBodyOneof0, - ) - from githubkit.versions.v2026_03_10.models import ( - OrgsOrgProjectsV2ProjectNumberItemsPostBodyOneof1 as OrgsOrgProjectsV2ProjectNumberItemsPostBodyOneof1, - ) - from githubkit.versions.v2026_03_10.models import ( - OrgsOrgProjectsV2ProjectNumberViewsPostBody as OrgsOrgProjectsV2ProjectNumberViewsPostBody, - ) - from githubkit.versions.v2026_03_10.models import ( - OrgsOrgPropertiesSchemaPatchBody as OrgsOrgPropertiesSchemaPatchBody, - ) - from githubkit.versions.v2026_03_10.models import ( - OrgsOrgPropertiesValuesPatchBody as OrgsOrgPropertiesValuesPatchBody, - ) - from githubkit.versions.v2026_03_10.models import ( - OrgsOrgReposPostBody as OrgsOrgReposPostBody, - ) - from githubkit.versions.v2026_03_10.models import ( - OrgsOrgReposPostBodyPropCustomProperties as OrgsOrgReposPostBodyPropCustomProperties, - ) - from githubkit.versions.v2026_03_10.models import ( - OrgsOrgRulesetsPostBody as OrgsOrgRulesetsPostBody, - ) - from githubkit.versions.v2026_03_10.models import ( - OrgsOrgRulesetsRulesetIdPutBody as OrgsOrgRulesetsRulesetIdPutBody, - ) - from githubkit.versions.v2026_03_10.models import ( - OrgsOrgSecretScanningPatternConfigurationsPatchBody as OrgsOrgSecretScanningPatternConfigurationsPatchBody, - ) - from githubkit.versions.v2026_03_10.models import ( - OrgsOrgSecretScanningPatternConfigurationsPatchBodyPropCustomPatternSettingsItems as OrgsOrgSecretScanningPatternConfigurationsPatchBodyPropCustomPatternSettingsItems, - ) - from githubkit.versions.v2026_03_10.models import ( - OrgsOrgSecretScanningPatternConfigurationsPatchBodyPropProviderPatternSettingsItems as OrgsOrgSecretScanningPatternConfigurationsPatchBodyPropProviderPatternSettingsItems, - ) - from githubkit.versions.v2026_03_10.models import ( - OrgsOrgSecretScanningPatternConfigurationsPatchResponse200 as OrgsOrgSecretScanningPatternConfigurationsPatchResponse200, - ) - from githubkit.versions.v2026_03_10.models import ( - OrgsOrgSecurityProductEnablementPostBody as OrgsOrgSecurityProductEnablementPostBody, - ) - from githubkit.versions.v2026_03_10.models import ( - OrgsOrgSettingsImmutableReleasesPutBody as OrgsOrgSettingsImmutableReleasesPutBody, - ) - from githubkit.versions.v2026_03_10.models import ( - OrgsOrgSettingsImmutableReleasesRepositoriesGetResponse200 as OrgsOrgSettingsImmutableReleasesRepositoriesGetResponse200, - ) - from githubkit.versions.v2026_03_10.models import ( - OrgsOrgSettingsImmutableReleasesRepositoriesPutBody as OrgsOrgSettingsImmutableReleasesRepositoriesPutBody, - ) - from githubkit.versions.v2026_03_10.models import ( - OrgsOrgSettingsNetworkConfigurationsGetResponse200 as OrgsOrgSettingsNetworkConfigurationsGetResponse200, - ) - from githubkit.versions.v2026_03_10.models import ( - OrgsOrgSettingsNetworkConfigurationsNetworkConfigurationIdPatchBody as OrgsOrgSettingsNetworkConfigurationsNetworkConfigurationIdPatchBody, - ) - from githubkit.versions.v2026_03_10.models import ( - OrgsOrgSettingsNetworkConfigurationsPostBody as OrgsOrgSettingsNetworkConfigurationsPostBody, - ) - from githubkit.versions.v2026_03_10.models import ( - OrgsOrgTeamsPostBody as OrgsOrgTeamsPostBody, - ) - from githubkit.versions.v2026_03_10.models import ( - OrgsOrgTeamsTeamSlugMembershipsUsernamePutBody as OrgsOrgTeamsTeamSlugMembershipsUsernamePutBody, - ) - from githubkit.versions.v2026_03_10.models import ( - OrgsOrgTeamsTeamSlugPatchBody as OrgsOrgTeamsTeamSlugPatchBody, - ) - from githubkit.versions.v2026_03_10.models import ( - OrgsOrgTeamsTeamSlugReposOwnerRepoPutBody as OrgsOrgTeamsTeamSlugReposOwnerRepoPutBody, - ) - from githubkit.versions.v2026_03_10.models import Package as Package - from githubkit.versions.v2026_03_10.models import PackageVersion as PackageVersion - from githubkit.versions.v2026_03_10.models import ( - PackageVersionPropMetadata as PackageVersionPropMetadata, - ) - from githubkit.versions.v2026_03_10.models import ( - PackageVersionPropMetadataPropContainer as PackageVersionPropMetadataPropContainer, - ) - from githubkit.versions.v2026_03_10.models import ( - PackageVersionPropMetadataPropDocker as PackageVersionPropMetadataPropDocker, - ) - from githubkit.versions.v2026_03_10.models import Page as Page - from githubkit.versions.v2026_03_10.models import PageBuild as PageBuild - from githubkit.versions.v2026_03_10.models import ( - PageBuildPropError as PageBuildPropError, - ) - from githubkit.versions.v2026_03_10.models import PageBuildStatus as PageBuildStatus - from githubkit.versions.v2026_03_10.models import PageDeployment as PageDeployment - from githubkit.versions.v2026_03_10.models import ( - PagesDeploymentStatus as PagesDeploymentStatus, - ) - from githubkit.versions.v2026_03_10.models import ( - PagesHealthCheck as PagesHealthCheck, - ) - from githubkit.versions.v2026_03_10.models import ( - PagesHealthCheckPropAltDomain as PagesHealthCheckPropAltDomain, - ) - from githubkit.versions.v2026_03_10.models import ( - PagesHealthCheckPropDomain as PagesHealthCheckPropDomain, - ) - from githubkit.versions.v2026_03_10.models import ( - PagesHttpsCertificate as PagesHttpsCertificate, - ) - from githubkit.versions.v2026_03_10.models import PagesSourceHash as PagesSourceHash - from githubkit.versions.v2026_03_10.models import ( - ParticipationStats as ParticipationStats, - ) - from githubkit.versions.v2026_03_10.models import ( - PendingDeployment as PendingDeployment, - ) - from githubkit.versions.v2026_03_10.models import ( - PendingDeploymentPropEnvironment as PendingDeploymentPropEnvironment, - ) - from githubkit.versions.v2026_03_10.models import ( - PendingDeploymentPropReviewersItems as PendingDeploymentPropReviewersItems, - ) - from githubkit.versions.v2026_03_10.models import ( - PersonalAccessTokenRequest as PersonalAccessTokenRequest, - ) - from githubkit.versions.v2026_03_10.models import ( - PersonalAccessTokenRequestPropPermissionsAdded as PersonalAccessTokenRequestPropPermissionsAdded, - ) - from githubkit.versions.v2026_03_10.models import ( - PersonalAccessTokenRequestPropPermissionsAddedPropOrganization as PersonalAccessTokenRequestPropPermissionsAddedPropOrganization, - ) - from githubkit.versions.v2026_03_10.models import ( - PersonalAccessTokenRequestPropPermissionsAddedPropOther as PersonalAccessTokenRequestPropPermissionsAddedPropOther, - ) - from githubkit.versions.v2026_03_10.models import ( - PersonalAccessTokenRequestPropPermissionsAddedPropRepository as PersonalAccessTokenRequestPropPermissionsAddedPropRepository, - ) - from githubkit.versions.v2026_03_10.models import ( - PersonalAccessTokenRequestPropPermissionsResult as PersonalAccessTokenRequestPropPermissionsResult, - ) - from githubkit.versions.v2026_03_10.models import ( - PersonalAccessTokenRequestPropPermissionsResultPropOrganization as PersonalAccessTokenRequestPropPermissionsResultPropOrganization, - ) - from githubkit.versions.v2026_03_10.models import ( - PersonalAccessTokenRequestPropPermissionsResultPropOther as PersonalAccessTokenRequestPropPermissionsResultPropOther, - ) - from githubkit.versions.v2026_03_10.models import ( - PersonalAccessTokenRequestPropPermissionsResultPropRepository as PersonalAccessTokenRequestPropPermissionsResultPropRepository, - ) - from githubkit.versions.v2026_03_10.models import ( - PersonalAccessTokenRequestPropPermissionsUpgraded as PersonalAccessTokenRequestPropPermissionsUpgraded, - ) - from githubkit.versions.v2026_03_10.models import ( - PersonalAccessTokenRequestPropPermissionsUpgradedPropOrganization as PersonalAccessTokenRequestPropPermissionsUpgradedPropOrganization, - ) - from githubkit.versions.v2026_03_10.models import ( - PersonalAccessTokenRequestPropPermissionsUpgradedPropOther as PersonalAccessTokenRequestPropPermissionsUpgradedPropOther, - ) - from githubkit.versions.v2026_03_10.models import ( - PersonalAccessTokenRequestPropPermissionsUpgradedPropRepository as PersonalAccessTokenRequestPropPermissionsUpgradedPropRepository, - ) - from githubkit.versions.v2026_03_10.models import ( - PersonalAccessTokenRequestPropRepositoriesItems as PersonalAccessTokenRequestPropRepositoriesItems, - ) - from githubkit.versions.v2026_03_10.models import ( - PinnedIssueComment as PinnedIssueComment, - ) - from githubkit.versions.v2026_03_10.models import PorterAuthor as PorterAuthor - from githubkit.versions.v2026_03_10.models import PorterLargeFile as PorterLargeFile - from githubkit.versions.v2026_03_10.models import PrivateUser as PrivateUser - from githubkit.versions.v2026_03_10.models import ( - PrivateUserPropPlan as PrivateUserPropPlan, - ) - from githubkit.versions.v2026_03_10.models import ( - PrivateVulnerabilityReportCreate as PrivateVulnerabilityReportCreate, - ) - from githubkit.versions.v2026_03_10.models import ( - PrivateVulnerabilityReportCreatePropVulnerabilitiesItems as PrivateVulnerabilityReportCreatePropVulnerabilitiesItems, - ) - from githubkit.versions.v2026_03_10.models import ( - PrivateVulnerabilityReportCreatePropVulnerabilitiesItemsPropPackage as PrivateVulnerabilityReportCreatePropVulnerabilitiesItemsPropPackage, - ) - from githubkit.versions.v2026_03_10.models import ProjectsV2 as ProjectsV2 - from githubkit.versions.v2026_03_10.models import ( - ProjectsV2DraftIssue as ProjectsV2DraftIssue, - ) - from githubkit.versions.v2026_03_10.models import ProjectsV2Field as ProjectsV2Field - from githubkit.versions.v2026_03_10.models import ( - ProjectsV2FieldIterationConfiguration as ProjectsV2FieldIterationConfiguration, - ) - from githubkit.versions.v2026_03_10.models import ( - ProjectsV2FieldIterationConfigurationPropIterationsItems as ProjectsV2FieldIterationConfigurationPropIterationsItems, - ) - from githubkit.versions.v2026_03_10.models import ( - ProjectsV2FieldPropConfiguration as ProjectsV2FieldPropConfiguration, - ) - from githubkit.versions.v2026_03_10.models import ( - ProjectsV2FieldSingleSelectOption as ProjectsV2FieldSingleSelectOption, - ) - from githubkit.versions.v2026_03_10.models import ProjectsV2Item as ProjectsV2Item - from githubkit.versions.v2026_03_10.models import ( - ProjectsV2ItemSimple as ProjectsV2ItemSimple, - ) - from githubkit.versions.v2026_03_10.models import ( - ProjectsV2ItemWithContent as ProjectsV2ItemWithContent, - ) - from githubkit.versions.v2026_03_10.models import ( - ProjectsV2ItemWithContentPropContent as ProjectsV2ItemWithContentPropContent, - ) - from githubkit.versions.v2026_03_10.models import ( - ProjectsV2ItemWithContentPropFieldsItems as ProjectsV2ItemWithContentPropFieldsItems, - ) - from githubkit.versions.v2026_03_10.models import ( - ProjectsV2IterationSetting as ProjectsV2IterationSetting, - ) - from githubkit.versions.v2026_03_10.models import ( - ProjectsV2IterationSettings as ProjectsV2IterationSettings, - ) - from githubkit.versions.v2026_03_10.models import ( - ProjectsV2IterationSettingsPropTitle as ProjectsV2IterationSettingsPropTitle, - ) - from githubkit.versions.v2026_03_10.models import ( - ProjectsV2SingleSelectOption as ProjectsV2SingleSelectOption, - ) - from githubkit.versions.v2026_03_10.models import ( - ProjectsV2SingleSelectOptions as ProjectsV2SingleSelectOptions, - ) - from githubkit.versions.v2026_03_10.models import ( - ProjectsV2SingleSelectOptionsPropDescription as ProjectsV2SingleSelectOptionsPropDescription, - ) - from githubkit.versions.v2026_03_10.models import ( - ProjectsV2SingleSelectOptionsPropName as ProjectsV2SingleSelectOptionsPropName, - ) - from githubkit.versions.v2026_03_10.models import ( - ProjectsV2StatusUpdate as ProjectsV2StatusUpdate, - ) - from githubkit.versions.v2026_03_10.models import ProjectsV2View as ProjectsV2View - from githubkit.versions.v2026_03_10.models import ( - ProjectsV2ViewPropCreator as ProjectsV2ViewPropCreator, - ) - from githubkit.versions.v2026_03_10.models import ProtectedBranch as ProtectedBranch - from githubkit.versions.v2026_03_10.models import ( - ProtectedBranchAdminEnforced as ProtectedBranchAdminEnforced, - ) - from githubkit.versions.v2026_03_10.models import ( - ProtectedBranchPropAllowDeletions as ProtectedBranchPropAllowDeletions, - ) - from githubkit.versions.v2026_03_10.models import ( - ProtectedBranchPropAllowForcePushes as ProtectedBranchPropAllowForcePushes, - ) - from githubkit.versions.v2026_03_10.models import ( - ProtectedBranchPropAllowForkSyncing as ProtectedBranchPropAllowForkSyncing, - ) - from githubkit.versions.v2026_03_10.models import ( - ProtectedBranchPropBlockCreations as ProtectedBranchPropBlockCreations, - ) - from githubkit.versions.v2026_03_10.models import ( - ProtectedBranchPropEnforceAdmins as ProtectedBranchPropEnforceAdmins, - ) - from githubkit.versions.v2026_03_10.models import ( - ProtectedBranchPropLockBranch as ProtectedBranchPropLockBranch, - ) - from githubkit.versions.v2026_03_10.models import ( - ProtectedBranchPropRequiredConversationResolution as ProtectedBranchPropRequiredConversationResolution, - ) - from githubkit.versions.v2026_03_10.models import ( - ProtectedBranchPropRequiredLinearHistory as ProtectedBranchPropRequiredLinearHistory, - ) - from githubkit.versions.v2026_03_10.models import ( - ProtectedBranchPropRequiredPullRequestReviews as ProtectedBranchPropRequiredPullRequestReviews, - ) - from githubkit.versions.v2026_03_10.models import ( - ProtectedBranchPropRequiredPullRequestReviewsPropBypassPullRequestAllowances as ProtectedBranchPropRequiredPullRequestReviewsPropBypassPullRequestAllowances, - ) - from githubkit.versions.v2026_03_10.models import ( - ProtectedBranchPropRequiredPullRequestReviewsPropDismissalRestrictions as ProtectedBranchPropRequiredPullRequestReviewsPropDismissalRestrictions, - ) - from githubkit.versions.v2026_03_10.models import ( - ProtectedBranchPropRequiredSignatures as ProtectedBranchPropRequiredSignatures, - ) - from githubkit.versions.v2026_03_10.models import ( - ProtectedBranchPullRequestReview as ProtectedBranchPullRequestReview, - ) - from githubkit.versions.v2026_03_10.models import ( - ProtectedBranchPullRequestReviewPropBypassPullRequestAllowances as ProtectedBranchPullRequestReviewPropBypassPullRequestAllowances, - ) - from githubkit.versions.v2026_03_10.models import ( - ProtectedBranchPullRequestReviewPropDismissalRestrictions as ProtectedBranchPullRequestReviewPropDismissalRestrictions, - ) - from githubkit.versions.v2026_03_10.models import ( - ProtectedBranchRequiredStatusCheck as ProtectedBranchRequiredStatusCheck, - ) - from githubkit.versions.v2026_03_10.models import ( - ProtectedBranchRequiredStatusCheckPropChecksItems as ProtectedBranchRequiredStatusCheckPropChecksItems, - ) - from githubkit.versions.v2026_03_10.models import PublicEvent as PublicEvent - from githubkit.versions.v2026_03_10.models import PublicIp as PublicIp - from githubkit.versions.v2026_03_10.models import PublicUser as PublicUser - from githubkit.versions.v2026_03_10.models import ( - PublicUserPropPlan as PublicUserPropPlan, - ) - from githubkit.versions.v2026_03_10.models import PullRequest as PullRequest - from githubkit.versions.v2026_03_10.models import ( - PullRequestEvent as PullRequestEvent, - ) - from githubkit.versions.v2026_03_10.models import ( - PullRequestMergeResult as PullRequestMergeResult, - ) - from githubkit.versions.v2026_03_10.models import ( - PullRequestMinimal as PullRequestMinimal, - ) - from githubkit.versions.v2026_03_10.models import ( - PullRequestMinimalPropBase as PullRequestMinimalPropBase, - ) - from githubkit.versions.v2026_03_10.models import ( - PullRequestMinimalPropBasePropRepo as PullRequestMinimalPropBasePropRepo, - ) - from githubkit.versions.v2026_03_10.models import ( - PullRequestMinimalPropHead as PullRequestMinimalPropHead, - ) - from githubkit.versions.v2026_03_10.models import ( - PullRequestMinimalPropHeadPropRepo as PullRequestMinimalPropHeadPropRepo, - ) - from githubkit.versions.v2026_03_10.models import ( - PullRequestPropBase as PullRequestPropBase, - ) - from githubkit.versions.v2026_03_10.models import ( - PullRequestPropHead as PullRequestPropHead, - ) - from githubkit.versions.v2026_03_10.models import ( - PullRequestPropLabelsItems as PullRequestPropLabelsItems, - ) - from githubkit.versions.v2026_03_10.models import ( - PullRequestPropLinks as PullRequestPropLinks, - ) - from githubkit.versions.v2026_03_10.models import ( - PullRequestReview as PullRequestReview, - ) - from githubkit.versions.v2026_03_10.models import ( - PullRequestReviewComment as PullRequestReviewComment, - ) - from githubkit.versions.v2026_03_10.models import ( - PullRequestReviewCommentEvent as PullRequestReviewCommentEvent, - ) - from githubkit.versions.v2026_03_10.models import ( - PullRequestReviewCommentEventPropComment as PullRequestReviewCommentEventPropComment, - ) - from githubkit.versions.v2026_03_10.models import ( - PullRequestReviewCommentEventPropCommentPropLinks as PullRequestReviewCommentEventPropCommentPropLinks, - ) - from githubkit.versions.v2026_03_10.models import ( - PullRequestReviewCommentEventPropCommentPropLinksPropHtml as PullRequestReviewCommentEventPropCommentPropLinksPropHtml, - ) - from githubkit.versions.v2026_03_10.models import ( - PullRequestReviewCommentEventPropCommentPropLinksPropPullRequest as PullRequestReviewCommentEventPropCommentPropLinksPropPullRequest, - ) - from githubkit.versions.v2026_03_10.models import ( - PullRequestReviewCommentEventPropCommentPropLinksPropSelf as PullRequestReviewCommentEventPropCommentPropLinksPropSelf, - ) - from githubkit.versions.v2026_03_10.models import ( - PullRequestReviewCommentEventPropCommentPropReactions as PullRequestReviewCommentEventPropCommentPropReactions, - ) - from githubkit.versions.v2026_03_10.models import ( - PullRequestReviewCommentEventPropCommentPropUser as PullRequestReviewCommentEventPropCommentPropUser, - ) - from githubkit.versions.v2026_03_10.models import ( - PullRequestReviewCommentPropLinks as PullRequestReviewCommentPropLinks, - ) - from githubkit.versions.v2026_03_10.models import ( - PullRequestReviewCommentPropLinksPropHtml as PullRequestReviewCommentPropLinksPropHtml, - ) - from githubkit.versions.v2026_03_10.models import ( - PullRequestReviewCommentPropLinksPropPullRequest as PullRequestReviewCommentPropLinksPropPullRequest, - ) - from githubkit.versions.v2026_03_10.models import ( - PullRequestReviewCommentPropLinksPropSelf as PullRequestReviewCommentPropLinksPropSelf, - ) - from githubkit.versions.v2026_03_10.models import ( - PullRequestReviewEvent as PullRequestReviewEvent, - ) - from githubkit.versions.v2026_03_10.models import ( - PullRequestReviewEventPropReview as PullRequestReviewEventPropReview, - ) - from githubkit.versions.v2026_03_10.models import ( - PullRequestReviewEventPropReviewPropLinks as PullRequestReviewEventPropReviewPropLinks, - ) - from githubkit.versions.v2026_03_10.models import ( - PullRequestReviewEventPropReviewPropLinksPropHtml as PullRequestReviewEventPropReviewPropLinksPropHtml, - ) - from githubkit.versions.v2026_03_10.models import ( - PullRequestReviewEventPropReviewPropLinksPropPullRequest as PullRequestReviewEventPropReviewPropLinksPropPullRequest, - ) - from githubkit.versions.v2026_03_10.models import ( - PullRequestReviewPropLinks as PullRequestReviewPropLinks, - ) - from githubkit.versions.v2026_03_10.models import ( - PullRequestReviewPropLinksPropHtml as PullRequestReviewPropLinksPropHtml, - ) - from githubkit.versions.v2026_03_10.models import ( - PullRequestReviewPropLinksPropPullRequest as PullRequestReviewPropLinksPropPullRequest, - ) - from githubkit.versions.v2026_03_10.models import ( - PullRequestReviewRequest as PullRequestReviewRequest, - ) - from githubkit.versions.v2026_03_10.models import ( - PullRequestSimple as PullRequestSimple, - ) - from githubkit.versions.v2026_03_10.models import ( - PullRequestSimplePropBase as PullRequestSimplePropBase, - ) - from githubkit.versions.v2026_03_10.models import ( - PullRequestSimplePropHead as PullRequestSimplePropHead, - ) - from githubkit.versions.v2026_03_10.models import ( - PullRequestSimplePropLabelsItems as PullRequestSimplePropLabelsItems, - ) - from githubkit.versions.v2026_03_10.models import ( - PullRequestSimplePropLinks as PullRequestSimplePropLinks, - ) - from githubkit.versions.v2026_03_10.models import ( - PullRequestWebhook as PullRequestWebhook, - ) - from githubkit.versions.v2026_03_10.models import ( - PullRequestWebhookAllof1 as PullRequestWebhookAllof1, - ) - from githubkit.versions.v2026_03_10.models import PushEvent as PushEvent - from githubkit.versions.v2026_03_10.models import RateLimit as RateLimit - from githubkit.versions.v2026_03_10.models import ( - RateLimitOverview as RateLimitOverview, - ) - from githubkit.versions.v2026_03_10.models import ( - RateLimitOverviewPropResources as RateLimitOverviewPropResources, - ) - from githubkit.versions.v2026_03_10.models import Reaction as Reaction - from githubkit.versions.v2026_03_10.models import ReactionRollup as ReactionRollup - from githubkit.versions.v2026_03_10.models import ( - ReferencedWorkflow as ReferencedWorkflow, - ) - from githubkit.versions.v2026_03_10.models import ReferrerTraffic as ReferrerTraffic - from githubkit.versions.v2026_03_10.models import Release as Release - from githubkit.versions.v2026_03_10.models import ReleaseAsset as ReleaseAsset - from githubkit.versions.v2026_03_10.models import ReleaseEvent as ReleaseEvent - from githubkit.versions.v2026_03_10.models import ( - ReleaseEventPropRelease as ReleaseEventPropRelease, - ) - from githubkit.versions.v2026_03_10.models import ( - ReleaseEventPropReleaseAllof1 as ReleaseEventPropReleaseAllof1, - ) - from githubkit.versions.v2026_03_10.models import ( - ReleaseNotesContent as ReleaseNotesContent, - ) - from githubkit.versions.v2026_03_10.models import ( - RemovedFromProjectIssueEvent as RemovedFromProjectIssueEvent, - ) - from githubkit.versions.v2026_03_10.models import ( - RemovedFromProjectIssueEventPropProjectCard as RemovedFromProjectIssueEventPropProjectCard, - ) - from githubkit.versions.v2026_03_10.models import ( - RenamedIssueEvent as RenamedIssueEvent, - ) - from githubkit.versions.v2026_03_10.models import ( - RenamedIssueEventPropRename as RenamedIssueEventPropRename, - ) - from githubkit.versions.v2026_03_10.models import ( - RepoCodespacesSecret as RepoCodespacesSecret, - ) - from githubkit.versions.v2026_03_10.models import ( - RepoSearchResultItem as RepoSearchResultItem, - ) - from githubkit.versions.v2026_03_10.models import ( - RepoSearchResultItemPropPermissions as RepoSearchResultItemPropPermissions, - ) - from githubkit.versions.v2026_03_10.models import Repository as Repository - from githubkit.versions.v2026_03_10.models import ( - RepositoryAdvisory as RepositoryAdvisory, - ) - from githubkit.versions.v2026_03_10.models import ( - RepositoryAdvisoryCreate as RepositoryAdvisoryCreate, - ) - from githubkit.versions.v2026_03_10.models import ( - RepositoryAdvisoryCreatePropCreditsItems as RepositoryAdvisoryCreatePropCreditsItems, - ) - from githubkit.versions.v2026_03_10.models import ( - RepositoryAdvisoryCreatePropVulnerabilitiesItems as RepositoryAdvisoryCreatePropVulnerabilitiesItems, - ) - from githubkit.versions.v2026_03_10.models import ( - RepositoryAdvisoryCreatePropVulnerabilitiesItemsPropPackage as RepositoryAdvisoryCreatePropVulnerabilitiesItemsPropPackage, - ) - from githubkit.versions.v2026_03_10.models import ( - RepositoryAdvisoryCredit as RepositoryAdvisoryCredit, - ) - from githubkit.versions.v2026_03_10.models import ( - RepositoryAdvisoryPropCreditsItems as RepositoryAdvisoryPropCreditsItems, - ) - from githubkit.versions.v2026_03_10.models import ( - RepositoryAdvisoryPropCwesItems as RepositoryAdvisoryPropCwesItems, - ) - from githubkit.versions.v2026_03_10.models import ( - RepositoryAdvisoryPropIdentifiersItems as RepositoryAdvisoryPropIdentifiersItems, - ) - from githubkit.versions.v2026_03_10.models import ( - RepositoryAdvisoryPropSubmission as RepositoryAdvisoryPropSubmission, - ) - from githubkit.versions.v2026_03_10.models import ( - RepositoryAdvisoryUpdate as RepositoryAdvisoryUpdate, - ) - from githubkit.versions.v2026_03_10.models import ( - RepositoryAdvisoryUpdatePropCreditsItems as RepositoryAdvisoryUpdatePropCreditsItems, - ) - from githubkit.versions.v2026_03_10.models import ( - RepositoryAdvisoryUpdatePropVulnerabilitiesItems as RepositoryAdvisoryUpdatePropVulnerabilitiesItems, - ) - from githubkit.versions.v2026_03_10.models import ( - RepositoryAdvisoryUpdatePropVulnerabilitiesItemsPropPackage as RepositoryAdvisoryUpdatePropVulnerabilitiesItemsPropPackage, - ) - from githubkit.versions.v2026_03_10.models import ( - RepositoryAdvisoryVulnerability as RepositoryAdvisoryVulnerability, - ) - from githubkit.versions.v2026_03_10.models import ( - RepositoryAdvisoryVulnerabilityPropPackage as RepositoryAdvisoryVulnerabilityPropPackage, - ) - from githubkit.versions.v2026_03_10.models import ( - RepositoryCollaboratorPermission as RepositoryCollaboratorPermission, - ) - from githubkit.versions.v2026_03_10.models import ( - RepositoryInvitation as RepositoryInvitation, - ) - from githubkit.versions.v2026_03_10.models import ( - RepositoryPropCodeSearchIndexStatus as RepositoryPropCodeSearchIndexStatus, - ) - from githubkit.versions.v2026_03_10.models import ( - RepositoryPropPermissions as RepositoryPropPermissions, - ) - from githubkit.versions.v2026_03_10.models import ( - RepositoryRuleBranchNamePattern as RepositoryRuleBranchNamePattern, - ) - from githubkit.versions.v2026_03_10.models import ( - RepositoryRuleBranchNamePatternPropParameters as RepositoryRuleBranchNamePatternPropParameters, - ) - from githubkit.versions.v2026_03_10.models import ( - RepositoryRuleCodeScanning as RepositoryRuleCodeScanning, - ) - from githubkit.versions.v2026_03_10.models import ( - RepositoryRuleCodeScanningPropParameters as RepositoryRuleCodeScanningPropParameters, - ) - from githubkit.versions.v2026_03_10.models import ( - RepositoryRuleCommitAuthorEmailPattern as RepositoryRuleCommitAuthorEmailPattern, - ) - from githubkit.versions.v2026_03_10.models import ( - RepositoryRuleCommitAuthorEmailPatternPropParameters as RepositoryRuleCommitAuthorEmailPatternPropParameters, - ) - from githubkit.versions.v2026_03_10.models import ( - RepositoryRuleCommitMessagePattern as RepositoryRuleCommitMessagePattern, - ) - from githubkit.versions.v2026_03_10.models import ( - RepositoryRuleCommitMessagePatternPropParameters as RepositoryRuleCommitMessagePatternPropParameters, - ) - from githubkit.versions.v2026_03_10.models import ( - RepositoryRuleCommitterEmailPattern as RepositoryRuleCommitterEmailPattern, - ) - from githubkit.versions.v2026_03_10.models import ( - RepositoryRuleCommitterEmailPatternPropParameters as RepositoryRuleCommitterEmailPatternPropParameters, - ) - from githubkit.versions.v2026_03_10.models import ( - RepositoryRuleCopilotCodeReview as RepositoryRuleCopilotCodeReview, - ) - from githubkit.versions.v2026_03_10.models import ( - RepositoryRuleCopilotCodeReviewPropParameters as RepositoryRuleCopilotCodeReviewPropParameters, - ) - from githubkit.versions.v2026_03_10.models import ( - RepositoryRuleCreation as RepositoryRuleCreation, - ) - from githubkit.versions.v2026_03_10.models import ( - RepositoryRuleDeletion as RepositoryRuleDeletion, - ) - from githubkit.versions.v2026_03_10.models import ( - RepositoryRuleDetailedOneof0 as RepositoryRuleDetailedOneof0, - ) - from githubkit.versions.v2026_03_10.models import ( - RepositoryRuleDetailedOneof1 as RepositoryRuleDetailedOneof1, - ) - from githubkit.versions.v2026_03_10.models import ( - RepositoryRuleDetailedOneof2 as RepositoryRuleDetailedOneof2, - ) - from githubkit.versions.v2026_03_10.models import ( - RepositoryRuleDetailedOneof3 as RepositoryRuleDetailedOneof3, - ) - from githubkit.versions.v2026_03_10.models import ( - RepositoryRuleDetailedOneof4 as RepositoryRuleDetailedOneof4, - ) - from githubkit.versions.v2026_03_10.models import ( - RepositoryRuleDetailedOneof5 as RepositoryRuleDetailedOneof5, - ) - from githubkit.versions.v2026_03_10.models import ( - RepositoryRuleDetailedOneof6 as RepositoryRuleDetailedOneof6, - ) - from githubkit.versions.v2026_03_10.models import ( - RepositoryRuleDetailedOneof7 as RepositoryRuleDetailedOneof7, - ) - from githubkit.versions.v2026_03_10.models import ( - RepositoryRuleDetailedOneof8 as RepositoryRuleDetailedOneof8, - ) - from githubkit.versions.v2026_03_10.models import ( - RepositoryRuleDetailedOneof9 as RepositoryRuleDetailedOneof9, - ) - from githubkit.versions.v2026_03_10.models import ( - RepositoryRuleDetailedOneof10 as RepositoryRuleDetailedOneof10, - ) - from githubkit.versions.v2026_03_10.models import ( - RepositoryRuleDetailedOneof11 as RepositoryRuleDetailedOneof11, - ) - from githubkit.versions.v2026_03_10.models import ( - RepositoryRuleDetailedOneof12 as RepositoryRuleDetailedOneof12, - ) - from githubkit.versions.v2026_03_10.models import ( - RepositoryRuleDetailedOneof13 as RepositoryRuleDetailedOneof13, - ) - from githubkit.versions.v2026_03_10.models import ( - RepositoryRuleDetailedOneof14 as RepositoryRuleDetailedOneof14, - ) - from githubkit.versions.v2026_03_10.models import ( - RepositoryRuleDetailedOneof15 as RepositoryRuleDetailedOneof15, - ) - from githubkit.versions.v2026_03_10.models import ( - RepositoryRuleDetailedOneof16 as RepositoryRuleDetailedOneof16, - ) - from githubkit.versions.v2026_03_10.models import ( - RepositoryRuleDetailedOneof17 as RepositoryRuleDetailedOneof17, - ) - from githubkit.versions.v2026_03_10.models import ( - RepositoryRuleDetailedOneof18 as RepositoryRuleDetailedOneof18, - ) - from githubkit.versions.v2026_03_10.models import ( - RepositoryRuleDetailedOneof19 as RepositoryRuleDetailedOneof19, - ) - from githubkit.versions.v2026_03_10.models import ( - RepositoryRuleDetailedOneof20 as RepositoryRuleDetailedOneof20, - ) - from githubkit.versions.v2026_03_10.models import ( - RepositoryRuleDetailedOneof21 as RepositoryRuleDetailedOneof21, - ) - from githubkit.versions.v2026_03_10.models import ( - RepositoryRuleFileExtensionRestriction as RepositoryRuleFileExtensionRestriction, - ) - from githubkit.versions.v2026_03_10.models import ( - RepositoryRuleFileExtensionRestrictionPropParameters as RepositoryRuleFileExtensionRestrictionPropParameters, - ) - from githubkit.versions.v2026_03_10.models import ( - RepositoryRuleFilePathRestriction as RepositoryRuleFilePathRestriction, - ) - from githubkit.versions.v2026_03_10.models import ( - RepositoryRuleFilePathRestrictionPropParameters as RepositoryRuleFilePathRestrictionPropParameters, - ) - from githubkit.versions.v2026_03_10.models import ( - RepositoryRuleMaxFilePathLength as RepositoryRuleMaxFilePathLength, - ) - from githubkit.versions.v2026_03_10.models import ( - RepositoryRuleMaxFilePathLengthPropParameters as RepositoryRuleMaxFilePathLengthPropParameters, - ) - from githubkit.versions.v2026_03_10.models import ( - RepositoryRuleMaxFileSize as RepositoryRuleMaxFileSize, - ) - from githubkit.versions.v2026_03_10.models import ( - RepositoryRuleMaxFileSizePropParameters as RepositoryRuleMaxFileSizePropParameters, - ) - from githubkit.versions.v2026_03_10.models import ( - RepositoryRuleMergeQueue as RepositoryRuleMergeQueue, - ) - from githubkit.versions.v2026_03_10.models import ( - RepositoryRuleMergeQueuePropParameters as RepositoryRuleMergeQueuePropParameters, - ) - from githubkit.versions.v2026_03_10.models import ( - RepositoryRuleNonFastForward as RepositoryRuleNonFastForward, - ) - from githubkit.versions.v2026_03_10.models import ( - RepositoryRuleParamsCodeScanningTool as RepositoryRuleParamsCodeScanningTool, - ) - from githubkit.versions.v2026_03_10.models import ( - RepositoryRuleParamsRequiredReviewerConfiguration as RepositoryRuleParamsRequiredReviewerConfiguration, - ) - from githubkit.versions.v2026_03_10.models import ( - RepositoryRuleParamsRestrictedCommits as RepositoryRuleParamsRestrictedCommits, - ) - from githubkit.versions.v2026_03_10.models import ( - RepositoryRuleParamsReviewer as RepositoryRuleParamsReviewer, - ) - from githubkit.versions.v2026_03_10.models import ( - RepositoryRuleParamsStatusCheckConfiguration as RepositoryRuleParamsStatusCheckConfiguration, - ) - from githubkit.versions.v2026_03_10.models import ( - RepositoryRuleParamsWorkflowFileReference as RepositoryRuleParamsWorkflowFileReference, - ) - from githubkit.versions.v2026_03_10.models import ( - RepositoryRulePullRequest as RepositoryRulePullRequest, - ) - from githubkit.versions.v2026_03_10.models import ( - RepositoryRulePullRequestPropParameters as RepositoryRulePullRequestPropParameters, - ) - from githubkit.versions.v2026_03_10.models import ( - RepositoryRuleRequiredDeployments as RepositoryRuleRequiredDeployments, - ) - from githubkit.versions.v2026_03_10.models import ( - RepositoryRuleRequiredDeploymentsPropParameters as RepositoryRuleRequiredDeploymentsPropParameters, - ) - from githubkit.versions.v2026_03_10.models import ( - RepositoryRuleRequiredLinearHistory as RepositoryRuleRequiredLinearHistory, - ) - from githubkit.versions.v2026_03_10.models import ( - RepositoryRuleRequiredSignatures as RepositoryRuleRequiredSignatures, - ) - from githubkit.versions.v2026_03_10.models import ( - RepositoryRuleRequiredStatusChecks as RepositoryRuleRequiredStatusChecks, - ) - from githubkit.versions.v2026_03_10.models import ( - RepositoryRuleRequiredStatusChecksPropParameters as RepositoryRuleRequiredStatusChecksPropParameters, - ) - from githubkit.versions.v2026_03_10.models import ( - RepositoryRuleRulesetInfo as RepositoryRuleRulesetInfo, - ) - from githubkit.versions.v2026_03_10.models import ( - RepositoryRuleset as RepositoryRuleset, - ) - from githubkit.versions.v2026_03_10.models import ( - RepositoryRulesetBypassActor as RepositoryRulesetBypassActor, - ) - from githubkit.versions.v2026_03_10.models import ( - RepositoryRulesetConditions as RepositoryRulesetConditions, - ) - from githubkit.versions.v2026_03_10.models import ( - RepositoryRulesetConditionsPropRefName as RepositoryRulesetConditionsPropRefName, - ) - from githubkit.versions.v2026_03_10.models import ( - RepositoryRulesetConditionsRepositoryIdTarget as RepositoryRulesetConditionsRepositoryIdTarget, - ) - from githubkit.versions.v2026_03_10.models import ( - RepositoryRulesetConditionsRepositoryIdTargetPropRepositoryId as RepositoryRulesetConditionsRepositoryIdTargetPropRepositoryId, - ) - from githubkit.versions.v2026_03_10.models import ( - RepositoryRulesetConditionsRepositoryNameTarget as RepositoryRulesetConditionsRepositoryNameTarget, - ) - from githubkit.versions.v2026_03_10.models import ( - RepositoryRulesetConditionsRepositoryNameTargetPropRepositoryName as RepositoryRulesetConditionsRepositoryNameTargetPropRepositoryName, - ) - from githubkit.versions.v2026_03_10.models import ( - RepositoryRulesetConditionsRepositoryPropertySpec as RepositoryRulesetConditionsRepositoryPropertySpec, - ) - from githubkit.versions.v2026_03_10.models import ( - RepositoryRulesetConditionsRepositoryPropertyTarget as RepositoryRulesetConditionsRepositoryPropertyTarget, - ) - from githubkit.versions.v2026_03_10.models import ( - RepositoryRulesetConditionsRepositoryPropertyTargetPropRepositoryProperty as RepositoryRulesetConditionsRepositoryPropertyTargetPropRepositoryProperty, - ) - from githubkit.versions.v2026_03_10.models import ( - RepositoryRulesetPropLinks as RepositoryRulesetPropLinks, - ) - from githubkit.versions.v2026_03_10.models import ( - RepositoryRulesetPropLinksPropHtml as RepositoryRulesetPropLinksPropHtml, - ) - from githubkit.versions.v2026_03_10.models import ( - RepositoryRulesetPropLinksPropSelf as RepositoryRulesetPropLinksPropSelf, - ) - from githubkit.versions.v2026_03_10.models import ( - RepositoryRuleTagNamePattern as RepositoryRuleTagNamePattern, - ) - from githubkit.versions.v2026_03_10.models import ( - RepositoryRuleTagNamePatternPropParameters as RepositoryRuleTagNamePatternPropParameters, - ) - from githubkit.versions.v2026_03_10.models import ( - RepositoryRuleUpdate as RepositoryRuleUpdate, - ) - from githubkit.versions.v2026_03_10.models import ( - RepositoryRuleUpdatePropParameters as RepositoryRuleUpdatePropParameters, - ) - from githubkit.versions.v2026_03_10.models import ( - RepositoryRuleViolationError as RepositoryRuleViolationError, - ) - from githubkit.versions.v2026_03_10.models import ( - RepositoryRuleViolationErrorPropMetadata as RepositoryRuleViolationErrorPropMetadata, - ) - from githubkit.versions.v2026_03_10.models import ( - RepositoryRuleViolationErrorPropMetadataPropSecretScanning as RepositoryRuleViolationErrorPropMetadataPropSecretScanning, - ) - from githubkit.versions.v2026_03_10.models import ( - RepositoryRuleViolationErrorPropMetadataPropSecretScanningPropBypassPlaceholdersItems as RepositoryRuleViolationErrorPropMetadataPropSecretScanningPropBypassPlaceholdersItems, - ) - from githubkit.versions.v2026_03_10.models import ( - RepositoryRuleWorkflows as RepositoryRuleWorkflows, - ) - from githubkit.versions.v2026_03_10.models import ( - RepositoryRuleWorkflowsPropParameters as RepositoryRuleWorkflowsPropParameters, - ) - from githubkit.versions.v2026_03_10.models import ( - RepositorySubscription as RepositorySubscription, - ) - from githubkit.versions.v2026_03_10.models import ( - RepositoryWebhooks as RepositoryWebhooks, - ) - from githubkit.versions.v2026_03_10.models import ( - RepositoryWebhooksPropCustomProperties as RepositoryWebhooksPropCustomProperties, - ) - from githubkit.versions.v2026_03_10.models import ( - RepositoryWebhooksPropPermissions as RepositoryWebhooksPropPermissions, - ) - from githubkit.versions.v2026_03_10.models import ( - RepositoryWebhooksPropTemplateRepository as RepositoryWebhooksPropTemplateRepository, - ) - from githubkit.versions.v2026_03_10.models import ( - RepositoryWebhooksPropTemplateRepositoryPropOwner as RepositoryWebhooksPropTemplateRepositoryPropOwner, - ) - from githubkit.versions.v2026_03_10.models import ( - RepositoryWebhooksPropTemplateRepositoryPropPermissions as RepositoryWebhooksPropTemplateRepositoryPropPermissions, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoActionsArtifactsGetResponse200 as ReposOwnerRepoActionsArtifactsGetResponse200, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoActionsJobsJobIdRerunPostBody as ReposOwnerRepoActionsJobsJobIdRerunPostBody, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoActionsOidcCustomizationSubPutBody as ReposOwnerRepoActionsOidcCustomizationSubPutBody, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoActionsOrganizationSecretsGetResponse200 as ReposOwnerRepoActionsOrganizationSecretsGetResponse200, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoActionsOrganizationVariablesGetResponse200 as ReposOwnerRepoActionsOrganizationVariablesGetResponse200, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoActionsPermissionsPutBody as ReposOwnerRepoActionsPermissionsPutBody, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoActionsRunnersGenerateJitconfigPostBody as ReposOwnerRepoActionsRunnersGenerateJitconfigPostBody, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoActionsRunnersGetResponse200 as ReposOwnerRepoActionsRunnersGetResponse200, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoActionsRunnersRunnerIdLabelsPostBody as ReposOwnerRepoActionsRunnersRunnerIdLabelsPostBody, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoActionsRunnersRunnerIdLabelsPutBody as ReposOwnerRepoActionsRunnersRunnerIdLabelsPutBody, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoActionsRunsGetResponse200 as ReposOwnerRepoActionsRunsGetResponse200, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoActionsRunsRunIdArtifactsGetResponse200 as ReposOwnerRepoActionsRunsRunIdArtifactsGetResponse200, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoActionsRunsRunIdAttemptsAttemptNumberJobsGetResponse200 as ReposOwnerRepoActionsRunsRunIdAttemptsAttemptNumberJobsGetResponse200, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoActionsRunsRunIdJobsGetResponse200 as ReposOwnerRepoActionsRunsRunIdJobsGetResponse200, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoActionsRunsRunIdPendingDeploymentsPostBody as ReposOwnerRepoActionsRunsRunIdPendingDeploymentsPostBody, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoActionsRunsRunIdRerunFailedJobsPostBody as ReposOwnerRepoActionsRunsRunIdRerunFailedJobsPostBody, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoActionsRunsRunIdRerunPostBody as ReposOwnerRepoActionsRunsRunIdRerunPostBody, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoActionsSecretsGetResponse200 as ReposOwnerRepoActionsSecretsGetResponse200, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoActionsSecretsSecretNamePutBody as ReposOwnerRepoActionsSecretsSecretNamePutBody, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoActionsVariablesGetResponse200 as ReposOwnerRepoActionsVariablesGetResponse200, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoActionsVariablesNamePatchBody as ReposOwnerRepoActionsVariablesNamePatchBody, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoActionsVariablesPostBody as ReposOwnerRepoActionsVariablesPostBody, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoActionsWorkflowsGetResponse200 as ReposOwnerRepoActionsWorkflowsGetResponse200, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoActionsWorkflowsWorkflowIdDispatchesPostBody as ReposOwnerRepoActionsWorkflowsWorkflowIdDispatchesPostBody, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoActionsWorkflowsWorkflowIdDispatchesPostBodyPropInputs as ReposOwnerRepoActionsWorkflowsWorkflowIdDispatchesPostBodyPropInputs, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoActionsWorkflowsWorkflowIdRunsGetResponse200 as ReposOwnerRepoActionsWorkflowsWorkflowIdRunsGetResponse200, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoAttestationsPostBody as ReposOwnerRepoAttestationsPostBody, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoAttestationsPostBodyPropBundle as ReposOwnerRepoAttestationsPostBodyPropBundle, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoAttestationsPostBodyPropBundlePropDsseEnvelope as ReposOwnerRepoAttestationsPostBodyPropBundlePropDsseEnvelope, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoAttestationsPostBodyPropBundlePropVerificationMaterial as ReposOwnerRepoAttestationsPostBodyPropBundlePropVerificationMaterial, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoAttestationsPostResponse201 as ReposOwnerRepoAttestationsPostResponse201, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoAttestationsSubjectDigestGetResponse200 as ReposOwnerRepoAttestationsSubjectDigestGetResponse200, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoAttestationsSubjectDigestGetResponse200PropAttestationsItems as ReposOwnerRepoAttestationsSubjectDigestGetResponse200PropAttestationsItems, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoAutolinksPostBody as ReposOwnerRepoAutolinksPostBody, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoBranchesBranchProtectionPutBody as ReposOwnerRepoBranchesBranchProtectionPutBody, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoBranchesBranchProtectionPutBodyPropRequiredPullRequestReviews as ReposOwnerRepoBranchesBranchProtectionPutBodyPropRequiredPullRequestReviews, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoBranchesBranchProtectionPutBodyPropRequiredPullRequestReviewsPropBypassPullRequestAllowances as ReposOwnerRepoBranchesBranchProtectionPutBodyPropRequiredPullRequestReviewsPropBypassPullRequestAllowances, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoBranchesBranchProtectionPutBodyPropRequiredPullRequestReviewsPropDismissalRestrictions as ReposOwnerRepoBranchesBranchProtectionPutBodyPropRequiredPullRequestReviewsPropDismissalRestrictions, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoBranchesBranchProtectionPutBodyPropRequiredStatusChecks as ReposOwnerRepoBranchesBranchProtectionPutBodyPropRequiredStatusChecks, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoBranchesBranchProtectionPutBodyPropRequiredStatusChecksPropChecksItems as ReposOwnerRepoBranchesBranchProtectionPutBodyPropRequiredStatusChecksPropChecksItems, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoBranchesBranchProtectionPutBodyPropRestrictions as ReposOwnerRepoBranchesBranchProtectionPutBodyPropRestrictions, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoBranchesBranchProtectionRequiredPullRequestReviewsPatchBody as ReposOwnerRepoBranchesBranchProtectionRequiredPullRequestReviewsPatchBody, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoBranchesBranchProtectionRequiredPullRequestReviewsPatchBodyPropBypassPullRequestAllowances as ReposOwnerRepoBranchesBranchProtectionRequiredPullRequestReviewsPatchBodyPropBypassPullRequestAllowances, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoBranchesBranchProtectionRequiredPullRequestReviewsPatchBodyPropDismissalRestrictions as ReposOwnerRepoBranchesBranchProtectionRequiredPullRequestReviewsPatchBodyPropDismissalRestrictions, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoBranchesBranchProtectionRequiredStatusChecksContextsDeleteBodyOneof0 as ReposOwnerRepoBranchesBranchProtectionRequiredStatusChecksContextsDeleteBodyOneof0, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoBranchesBranchProtectionRequiredStatusChecksContextsPostBodyOneof0 as ReposOwnerRepoBranchesBranchProtectionRequiredStatusChecksContextsPostBodyOneof0, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoBranchesBranchProtectionRequiredStatusChecksContextsPutBodyOneof0 as ReposOwnerRepoBranchesBranchProtectionRequiredStatusChecksContextsPutBodyOneof0, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoBranchesBranchProtectionRequiredStatusChecksPatchBody as ReposOwnerRepoBranchesBranchProtectionRequiredStatusChecksPatchBody, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoBranchesBranchProtectionRequiredStatusChecksPatchBodyPropChecksItems as ReposOwnerRepoBranchesBranchProtectionRequiredStatusChecksPatchBodyPropChecksItems, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoBranchesBranchProtectionRestrictionsAppsDeleteBody as ReposOwnerRepoBranchesBranchProtectionRestrictionsAppsDeleteBody, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoBranchesBranchProtectionRestrictionsAppsPostBody as ReposOwnerRepoBranchesBranchProtectionRestrictionsAppsPostBody, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoBranchesBranchProtectionRestrictionsAppsPutBody as ReposOwnerRepoBranchesBranchProtectionRestrictionsAppsPutBody, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoBranchesBranchProtectionRestrictionsTeamsDeleteBodyOneof0 as ReposOwnerRepoBranchesBranchProtectionRestrictionsTeamsDeleteBodyOneof0, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoBranchesBranchProtectionRestrictionsTeamsPostBodyOneof0 as ReposOwnerRepoBranchesBranchProtectionRestrictionsTeamsPostBodyOneof0, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoBranchesBranchProtectionRestrictionsTeamsPutBodyOneof0 as ReposOwnerRepoBranchesBranchProtectionRestrictionsTeamsPutBodyOneof0, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoBranchesBranchProtectionRestrictionsUsersDeleteBody as ReposOwnerRepoBranchesBranchProtectionRestrictionsUsersDeleteBody, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoBranchesBranchProtectionRestrictionsUsersPostBody as ReposOwnerRepoBranchesBranchProtectionRestrictionsUsersPostBody, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoBranchesBranchProtectionRestrictionsUsersPutBody as ReposOwnerRepoBranchesBranchProtectionRestrictionsUsersPutBody, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoBranchesBranchRenamePostBody as ReposOwnerRepoBranchesBranchRenamePostBody, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoCheckRunsCheckRunIdPatchBodyAnyof0 as ReposOwnerRepoCheckRunsCheckRunIdPatchBodyAnyof0, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoCheckRunsCheckRunIdPatchBodyAnyof1 as ReposOwnerRepoCheckRunsCheckRunIdPatchBodyAnyof1, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoCheckRunsCheckRunIdPatchBodyPropActionsItems as ReposOwnerRepoCheckRunsCheckRunIdPatchBodyPropActionsItems, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoCheckRunsCheckRunIdPatchBodyPropOutput as ReposOwnerRepoCheckRunsCheckRunIdPatchBodyPropOutput, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoCheckRunsCheckRunIdPatchBodyPropOutputPropAnnotationsItems as ReposOwnerRepoCheckRunsCheckRunIdPatchBodyPropOutputPropAnnotationsItems, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoCheckRunsCheckRunIdPatchBodyPropOutputPropImagesItems as ReposOwnerRepoCheckRunsCheckRunIdPatchBodyPropOutputPropImagesItems, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoCheckRunsPostBodyOneof0 as ReposOwnerRepoCheckRunsPostBodyOneof0, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoCheckRunsPostBodyOneof1 as ReposOwnerRepoCheckRunsPostBodyOneof1, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoCheckRunsPostBodyPropActionsItems as ReposOwnerRepoCheckRunsPostBodyPropActionsItems, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoCheckRunsPostBodyPropOutput as ReposOwnerRepoCheckRunsPostBodyPropOutput, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoCheckRunsPostBodyPropOutputPropAnnotationsItems as ReposOwnerRepoCheckRunsPostBodyPropOutputPropAnnotationsItems, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoCheckRunsPostBodyPropOutputPropImagesItems as ReposOwnerRepoCheckRunsPostBodyPropOutputPropImagesItems, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoCheckSuitesCheckSuiteIdCheckRunsGetResponse200 as ReposOwnerRepoCheckSuitesCheckSuiteIdCheckRunsGetResponse200, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoCheckSuitesPostBody as ReposOwnerRepoCheckSuitesPostBody, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoCheckSuitesPreferencesPatchBody as ReposOwnerRepoCheckSuitesPreferencesPatchBody, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoCheckSuitesPreferencesPatchBodyPropAutoTriggerChecksItems as ReposOwnerRepoCheckSuitesPreferencesPatchBodyPropAutoTriggerChecksItems, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoCodeScanningAlertsAlertNumberPatchBodyAnyof0 as ReposOwnerRepoCodeScanningAlertsAlertNumberPatchBodyAnyof0, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoCodeScanningAlertsAlertNumberPatchBodyAnyof1 as ReposOwnerRepoCodeScanningAlertsAlertNumberPatchBodyAnyof1, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoCodeScanningCodeqlVariantAnalysesPostBodyOneof0 as ReposOwnerRepoCodeScanningCodeqlVariantAnalysesPostBodyOneof0, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoCodeScanningCodeqlVariantAnalysesPostBodyOneof1 as ReposOwnerRepoCodeScanningCodeqlVariantAnalysesPostBodyOneof1, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoCodeScanningCodeqlVariantAnalysesPostBodyOneof2 as ReposOwnerRepoCodeScanningCodeqlVariantAnalysesPostBodyOneof2, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoCodeScanningSarifsPostBody as ReposOwnerRepoCodeScanningSarifsPostBody, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoCodespacesDevcontainersGetResponse200 as ReposOwnerRepoCodespacesDevcontainersGetResponse200, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoCodespacesDevcontainersGetResponse200PropDevcontainersItems as ReposOwnerRepoCodespacesDevcontainersGetResponse200PropDevcontainersItems, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoCodespacesGetResponse200 as ReposOwnerRepoCodespacesGetResponse200, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoCodespacesMachinesGetResponse200 as ReposOwnerRepoCodespacesMachinesGetResponse200, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoCodespacesNewGetResponse200 as ReposOwnerRepoCodespacesNewGetResponse200, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoCodespacesNewGetResponse200PropDefaults as ReposOwnerRepoCodespacesNewGetResponse200PropDefaults, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoCodespacesPostBody as ReposOwnerRepoCodespacesPostBody, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoCodespacesSecretsGetResponse200 as ReposOwnerRepoCodespacesSecretsGetResponse200, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoCodespacesSecretsSecretNamePutBody as ReposOwnerRepoCodespacesSecretsSecretNamePutBody, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoCollaboratorsUsernamePutBody as ReposOwnerRepoCollaboratorsUsernamePutBody, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoCommentsCommentIdPatchBody as ReposOwnerRepoCommentsCommentIdPatchBody, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoCommentsCommentIdReactionsPostBody as ReposOwnerRepoCommentsCommentIdReactionsPostBody, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoCommitsCommitShaCommentsPostBody as ReposOwnerRepoCommitsCommitShaCommentsPostBody, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoCommitsRefCheckRunsGetResponse200 as ReposOwnerRepoCommitsRefCheckRunsGetResponse200, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoCommitsRefCheckSuitesGetResponse200 as ReposOwnerRepoCommitsRefCheckSuitesGetResponse200, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoContentsPathDeleteBody as ReposOwnerRepoContentsPathDeleteBody, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoContentsPathDeleteBodyPropAuthor as ReposOwnerRepoContentsPathDeleteBodyPropAuthor, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoContentsPathDeleteBodyPropCommitter as ReposOwnerRepoContentsPathDeleteBodyPropCommitter, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoContentsPathPutBody as ReposOwnerRepoContentsPathPutBody, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoContentsPathPutBodyPropAuthor as ReposOwnerRepoContentsPathPutBodyPropAuthor, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoContentsPathPutBodyPropCommitter as ReposOwnerRepoContentsPathPutBodyPropCommitter, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoDeleteResponse403 as ReposOwnerRepoDeleteResponse403, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoDependabotAlertsAlertNumberPatchBodyAnyof0 as ReposOwnerRepoDependabotAlertsAlertNumberPatchBodyAnyof0, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoDependabotAlertsAlertNumberPatchBodyAnyof1 as ReposOwnerRepoDependabotAlertsAlertNumberPatchBodyAnyof1, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoDependabotSecretsGetResponse200 as ReposOwnerRepoDependabotSecretsGetResponse200, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoDependabotSecretsSecretNamePutBody as ReposOwnerRepoDependabotSecretsSecretNamePutBody, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoDependencyGraphSbomGenerateReportGetResponse201 as ReposOwnerRepoDependencyGraphSbomGenerateReportGetResponse201, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoDependencyGraphSnapshotsPostResponse201 as ReposOwnerRepoDependencyGraphSnapshotsPostResponse201, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoDeploymentsDeploymentIdStatusesPostBody as ReposOwnerRepoDeploymentsDeploymentIdStatusesPostBody, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoDeploymentsPostBody as ReposOwnerRepoDeploymentsPostBody, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoDeploymentsPostBodyPropPayloadOneof0 as ReposOwnerRepoDeploymentsPostBodyPropPayloadOneof0, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoDeploymentsPostResponse202 as ReposOwnerRepoDeploymentsPostResponse202, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoDispatchesPostBody as ReposOwnerRepoDispatchesPostBody, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoDispatchesPostBodyPropClientPayload as ReposOwnerRepoDispatchesPostBodyPropClientPayload, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoEnvironmentsEnvironmentNameDeploymentBranchPoliciesGetResponse200 as ReposOwnerRepoEnvironmentsEnvironmentNameDeploymentBranchPoliciesGetResponse200, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoEnvironmentsEnvironmentNameDeploymentProtectionRulesAppsGetResponse200 as ReposOwnerRepoEnvironmentsEnvironmentNameDeploymentProtectionRulesAppsGetResponse200, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoEnvironmentsEnvironmentNameDeploymentProtectionRulesGetResponse200 as ReposOwnerRepoEnvironmentsEnvironmentNameDeploymentProtectionRulesGetResponse200, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoEnvironmentsEnvironmentNameDeploymentProtectionRulesPostBody as ReposOwnerRepoEnvironmentsEnvironmentNameDeploymentProtectionRulesPostBody, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoEnvironmentsEnvironmentNamePutBody as ReposOwnerRepoEnvironmentsEnvironmentNamePutBody, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoEnvironmentsEnvironmentNamePutBodyPropReviewersItems as ReposOwnerRepoEnvironmentsEnvironmentNamePutBodyPropReviewersItems, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoEnvironmentsEnvironmentNameSecretsGetResponse200 as ReposOwnerRepoEnvironmentsEnvironmentNameSecretsGetResponse200, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoEnvironmentsEnvironmentNameSecretsSecretNamePutBody as ReposOwnerRepoEnvironmentsEnvironmentNameSecretsSecretNamePutBody, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoEnvironmentsEnvironmentNameVariablesGetResponse200 as ReposOwnerRepoEnvironmentsEnvironmentNameVariablesGetResponse200, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoEnvironmentsEnvironmentNameVariablesNamePatchBody as ReposOwnerRepoEnvironmentsEnvironmentNameVariablesNamePatchBody, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoEnvironmentsEnvironmentNameVariablesPostBody as ReposOwnerRepoEnvironmentsEnvironmentNameVariablesPostBody, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoEnvironmentsGetResponse200 as ReposOwnerRepoEnvironmentsGetResponse200, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoForksPostBody as ReposOwnerRepoForksPostBody, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoGitBlobsPostBody as ReposOwnerRepoGitBlobsPostBody, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoGitCommitsPostBody as ReposOwnerRepoGitCommitsPostBody, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoGitCommitsPostBodyPropAuthor as ReposOwnerRepoGitCommitsPostBodyPropAuthor, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoGitCommitsPostBodyPropCommitter as ReposOwnerRepoGitCommitsPostBodyPropCommitter, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoGitRefsPostBody as ReposOwnerRepoGitRefsPostBody, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoGitRefsRefPatchBody as ReposOwnerRepoGitRefsRefPatchBody, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoGitTagsPostBody as ReposOwnerRepoGitTagsPostBody, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoGitTagsPostBodyPropTagger as ReposOwnerRepoGitTagsPostBodyPropTagger, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoGitTreesPostBody as ReposOwnerRepoGitTreesPostBody, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoGitTreesPostBodyPropTreeItems as ReposOwnerRepoGitTreesPostBodyPropTreeItems, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoHooksHookIdConfigPatchBody as ReposOwnerRepoHooksHookIdConfigPatchBody, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoHooksHookIdPatchBody as ReposOwnerRepoHooksHookIdPatchBody, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoHooksPostBody as ReposOwnerRepoHooksPostBody, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoHooksPostBodyPropConfig as ReposOwnerRepoHooksPostBodyPropConfig, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoImportAuthorsAuthorIdPatchBody as ReposOwnerRepoImportAuthorsAuthorIdPatchBody, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoImportLfsPatchBody as ReposOwnerRepoImportLfsPatchBody, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoImportPatchBody as ReposOwnerRepoImportPatchBody, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoImportPutBody as ReposOwnerRepoImportPutBody, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoInteractionLimitsGetResponse200Anyof1 as ReposOwnerRepoInteractionLimitsGetResponse200Anyof1, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoInvitationsInvitationIdPatchBody as ReposOwnerRepoInvitationsInvitationIdPatchBody, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoIssuesCommentsCommentIdPatchBody as ReposOwnerRepoIssuesCommentsCommentIdPatchBody, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoIssuesCommentsCommentIdReactionsPostBody as ReposOwnerRepoIssuesCommentsCommentIdReactionsPostBody, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoIssuesIssueNumberAssigneesDeleteBody as ReposOwnerRepoIssuesIssueNumberAssigneesDeleteBody, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoIssuesIssueNumberAssigneesPostBody as ReposOwnerRepoIssuesIssueNumberAssigneesPostBody, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoIssuesIssueNumberCommentsPostBody as ReposOwnerRepoIssuesIssueNumberCommentsPostBody, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoIssuesIssueNumberDependenciesBlockedByPostBody as ReposOwnerRepoIssuesIssueNumberDependenciesBlockedByPostBody, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoIssuesIssueNumberIssueFieldValuesPostBody as ReposOwnerRepoIssuesIssueNumberIssueFieldValuesPostBody, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoIssuesIssueNumberIssueFieldValuesPostBodyPropIssueFieldValuesItems as ReposOwnerRepoIssuesIssueNumberIssueFieldValuesPostBodyPropIssueFieldValuesItems, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoIssuesIssueNumberIssueFieldValuesPutBody as ReposOwnerRepoIssuesIssueNumberIssueFieldValuesPutBody, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoIssuesIssueNumberIssueFieldValuesPutBodyPropIssueFieldValuesItems as ReposOwnerRepoIssuesIssueNumberIssueFieldValuesPutBodyPropIssueFieldValuesItems, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoIssuesIssueNumberLabelsPostBodyOneof0 as ReposOwnerRepoIssuesIssueNumberLabelsPostBodyOneof0, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoIssuesIssueNumberLabelsPostBodyOneof2Items as ReposOwnerRepoIssuesIssueNumberLabelsPostBodyOneof2Items, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoIssuesIssueNumberLabelsPutBodyOneof0 as ReposOwnerRepoIssuesIssueNumberLabelsPutBodyOneof0, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoIssuesIssueNumberLabelsPutBodyOneof2 as ReposOwnerRepoIssuesIssueNumberLabelsPutBodyOneof2, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoIssuesIssueNumberLabelsPutBodyOneof2PropLabelsItems as ReposOwnerRepoIssuesIssueNumberLabelsPutBodyOneof2PropLabelsItems, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoIssuesIssueNumberLabelsPutBodyOneof3Items as ReposOwnerRepoIssuesIssueNumberLabelsPutBodyOneof3Items, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoIssuesIssueNumberLockPutBody as ReposOwnerRepoIssuesIssueNumberLockPutBody, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoIssuesIssueNumberPatchBody as ReposOwnerRepoIssuesIssueNumberPatchBody, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoIssuesIssueNumberPatchBodyPropIssueFieldValuesItems as ReposOwnerRepoIssuesIssueNumberPatchBodyPropIssueFieldValuesItems, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoIssuesIssueNumberPatchBodyPropLabelsItemsOneof1 as ReposOwnerRepoIssuesIssueNumberPatchBodyPropLabelsItemsOneof1, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoIssuesIssueNumberReactionsPostBody as ReposOwnerRepoIssuesIssueNumberReactionsPostBody, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoIssuesIssueNumberSubIssueDeleteBody as ReposOwnerRepoIssuesIssueNumberSubIssueDeleteBody, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoIssuesIssueNumberSubIssuesPostBody as ReposOwnerRepoIssuesIssueNumberSubIssuesPostBody, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoIssuesIssueNumberSubIssuesPriorityPatchBody as ReposOwnerRepoIssuesIssueNumberSubIssuesPriorityPatchBody, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoIssuesPostBody as ReposOwnerRepoIssuesPostBody, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoIssuesPostBodyPropLabelsItemsOneof1 as ReposOwnerRepoIssuesPostBodyPropLabelsItemsOneof1, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoKeysPostBody as ReposOwnerRepoKeysPostBody, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoLabelsNamePatchBody as ReposOwnerRepoLabelsNamePatchBody, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoLabelsPostBody as ReposOwnerRepoLabelsPostBody, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoMergesPostBody as ReposOwnerRepoMergesPostBody, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoMergeUpstreamPostBody as ReposOwnerRepoMergeUpstreamPostBody, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoMilestonesMilestoneNumberPatchBody as ReposOwnerRepoMilestonesMilestoneNumberPatchBody, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoMilestonesPostBody as ReposOwnerRepoMilestonesPostBody, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoNotificationsPutBody as ReposOwnerRepoNotificationsPutBody, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoNotificationsPutResponse202 as ReposOwnerRepoNotificationsPutResponse202, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoPagesDeploymentsPostBody as ReposOwnerRepoPagesDeploymentsPostBody, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoPagesPostBodyAnyof0 as ReposOwnerRepoPagesPostBodyAnyof0, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoPagesPostBodyAnyof1 as ReposOwnerRepoPagesPostBodyAnyof1, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoPagesPostBodyPropSource as ReposOwnerRepoPagesPostBodyPropSource, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoPagesPutBodyAnyof0 as ReposOwnerRepoPagesPutBodyAnyof0, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoPagesPutBodyAnyof1 as ReposOwnerRepoPagesPutBodyAnyof1, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoPagesPutBodyAnyof2 as ReposOwnerRepoPagesPutBodyAnyof2, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoPagesPutBodyAnyof3 as ReposOwnerRepoPagesPutBodyAnyof3, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoPagesPutBodyAnyof4 as ReposOwnerRepoPagesPutBodyAnyof4, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoPagesPutBodyPropSourceAnyof1 as ReposOwnerRepoPagesPutBodyPropSourceAnyof1, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoPatchBody as ReposOwnerRepoPatchBody, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoPatchBodyPropSecurityAndAnalysis as ReposOwnerRepoPatchBodyPropSecurityAndAnalysis, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoPatchBodyPropSecurityAndAnalysisPropAdvancedSecurity as ReposOwnerRepoPatchBodyPropSecurityAndAnalysisPropAdvancedSecurity, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoPatchBodyPropSecurityAndAnalysisPropCodeSecurity as ReposOwnerRepoPatchBodyPropSecurityAndAnalysisPropCodeSecurity, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoPatchBodyPropSecurityAndAnalysisPropSecretScanning as ReposOwnerRepoPatchBodyPropSecurityAndAnalysisPropSecretScanning, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoPatchBodyPropSecurityAndAnalysisPropSecretScanningAiDetection as ReposOwnerRepoPatchBodyPropSecurityAndAnalysisPropSecretScanningAiDetection, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoPatchBodyPropSecurityAndAnalysisPropSecretScanningDelegatedAlertDismissal as ReposOwnerRepoPatchBodyPropSecurityAndAnalysisPropSecretScanningDelegatedAlertDismissal, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoPatchBodyPropSecurityAndAnalysisPropSecretScanningDelegatedBypass as ReposOwnerRepoPatchBodyPropSecurityAndAnalysisPropSecretScanningDelegatedBypass, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoPatchBodyPropSecurityAndAnalysisPropSecretScanningDelegatedBypassOptions as ReposOwnerRepoPatchBodyPropSecurityAndAnalysisPropSecretScanningDelegatedBypassOptions, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoPatchBodyPropSecurityAndAnalysisPropSecretScanningDelegatedBypassOptionsPropReviewersItems as ReposOwnerRepoPatchBodyPropSecurityAndAnalysisPropSecretScanningDelegatedBypassOptionsPropReviewersItems, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoPatchBodyPropSecurityAndAnalysisPropSecretScanningNonProviderPatterns as ReposOwnerRepoPatchBodyPropSecurityAndAnalysisPropSecretScanningNonProviderPatterns, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoPatchBodyPropSecurityAndAnalysisPropSecretScanningPushProtection as ReposOwnerRepoPatchBodyPropSecurityAndAnalysisPropSecretScanningPushProtection, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoPrivateVulnerabilityReportingGetResponse200 as ReposOwnerRepoPrivateVulnerabilityReportingGetResponse200, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoPropertiesValuesPatchBody as ReposOwnerRepoPropertiesValuesPatchBody, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoPullsCommentsCommentIdPatchBody as ReposOwnerRepoPullsCommentsCommentIdPatchBody, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoPullsCommentsCommentIdReactionsPostBody as ReposOwnerRepoPullsCommentsCommentIdReactionsPostBody, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoPullsPostBody as ReposOwnerRepoPullsPostBody, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoPullsPullNumberCodespacesPostBody as ReposOwnerRepoPullsPullNumberCodespacesPostBody, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoPullsPullNumberCommentsCommentIdRepliesPostBody as ReposOwnerRepoPullsPullNumberCommentsCommentIdRepliesPostBody, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoPullsPullNumberCommentsPostBody as ReposOwnerRepoPullsPullNumberCommentsPostBody, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoPullsPullNumberMergePutBody as ReposOwnerRepoPullsPullNumberMergePutBody, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoPullsPullNumberMergePutResponse405 as ReposOwnerRepoPullsPullNumberMergePutResponse405, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoPullsPullNumberMergePutResponse409 as ReposOwnerRepoPullsPullNumberMergePutResponse409, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoPullsPullNumberPatchBody as ReposOwnerRepoPullsPullNumberPatchBody, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoPullsPullNumberRequestedReviewersDeleteBody as ReposOwnerRepoPullsPullNumberRequestedReviewersDeleteBody, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoPullsPullNumberRequestedReviewersPostBodyAnyof0 as ReposOwnerRepoPullsPullNumberRequestedReviewersPostBodyAnyof0, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoPullsPullNumberRequestedReviewersPostBodyAnyof1 as ReposOwnerRepoPullsPullNumberRequestedReviewersPostBodyAnyof1, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoPullsPullNumberReviewsPostBody as ReposOwnerRepoPullsPullNumberReviewsPostBody, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoPullsPullNumberReviewsPostBodyPropCommentsItems as ReposOwnerRepoPullsPullNumberReviewsPostBodyPropCommentsItems, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoPullsPullNumberReviewsReviewIdDismissalsPutBody as ReposOwnerRepoPullsPullNumberReviewsReviewIdDismissalsPutBody, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoPullsPullNumberReviewsReviewIdEventsPostBody as ReposOwnerRepoPullsPullNumberReviewsReviewIdEventsPostBody, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoPullsPullNumberReviewsReviewIdPutBody as ReposOwnerRepoPullsPullNumberReviewsReviewIdPutBody, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoPullsPullNumberUpdateBranchPutBody as ReposOwnerRepoPullsPullNumberUpdateBranchPutBody, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoPullsPullNumberUpdateBranchPutResponse202 as ReposOwnerRepoPullsPullNumberUpdateBranchPutResponse202, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoReleasesAssetsAssetIdPatchBody as ReposOwnerRepoReleasesAssetsAssetIdPatchBody, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoReleasesGenerateNotesPostBody as ReposOwnerRepoReleasesGenerateNotesPostBody, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoReleasesPostBody as ReposOwnerRepoReleasesPostBody, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoReleasesReleaseIdPatchBody as ReposOwnerRepoReleasesReleaseIdPatchBody, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoReleasesReleaseIdReactionsPostBody as ReposOwnerRepoReleasesReleaseIdReactionsPostBody, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoRulesetsPostBody as ReposOwnerRepoRulesetsPostBody, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoRulesetsRulesetIdPutBody as ReposOwnerRepoRulesetsRulesetIdPutBody, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoSecretScanningAlertsAlertNumberPatchBodyAnyof0 as ReposOwnerRepoSecretScanningAlertsAlertNumberPatchBodyAnyof0, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoSecretScanningAlertsAlertNumberPatchBodyAnyof1 as ReposOwnerRepoSecretScanningAlertsAlertNumberPatchBodyAnyof1, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoSecretScanningAlertsAlertNumberPatchBodyAnyof2 as ReposOwnerRepoSecretScanningAlertsAlertNumberPatchBodyAnyof2, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoSecretScanningPushProtectionBypassesPostBody as ReposOwnerRepoSecretScanningPushProtectionBypassesPostBody, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoStatusesShaPostBody as ReposOwnerRepoStatusesShaPostBody, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoSubscriptionPutBody as ReposOwnerRepoSubscriptionPutBody, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoTopicsPutBody as ReposOwnerRepoTopicsPutBody, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposOwnerRepoTransferPostBody as ReposOwnerRepoTransferPostBody, - ) - from githubkit.versions.v2026_03_10.models import ( - ReposTemplateOwnerTemplateRepoGeneratePostBody as ReposTemplateOwnerTemplateRepoGeneratePostBody, - ) - from githubkit.versions.v2026_03_10.models import ReviewComment as ReviewComment - from githubkit.versions.v2026_03_10.models import ( - ReviewCommentPropLinks as ReviewCommentPropLinks, - ) - from githubkit.versions.v2026_03_10.models import ( - ReviewCustomGatesCommentRequired as ReviewCustomGatesCommentRequired, - ) - from githubkit.versions.v2026_03_10.models import ( - ReviewCustomGatesStateRequired as ReviewCustomGatesStateRequired, - ) - from githubkit.versions.v2026_03_10.models import ( - ReviewDismissedIssueEvent as ReviewDismissedIssueEvent, - ) - from githubkit.versions.v2026_03_10.models import ( - ReviewDismissedIssueEventPropDismissedReview as ReviewDismissedIssueEventPropDismissedReview, - ) - from githubkit.versions.v2026_03_10.models import ( - ReviewRequestedIssueEvent as ReviewRequestedIssueEvent, - ) - from githubkit.versions.v2026_03_10.models import ( - ReviewRequestRemovedIssueEvent as ReviewRequestRemovedIssueEvent, - ) - from githubkit.versions.v2026_03_10.models import Root as Root - from githubkit.versions.v2026_03_10.models import RulesetVersion as RulesetVersion - from githubkit.versions.v2026_03_10.models import ( - RulesetVersionPropActor as RulesetVersionPropActor, - ) - from githubkit.versions.v2026_03_10.models import ( - RulesetVersionWithState as RulesetVersionWithState, - ) - from githubkit.versions.v2026_03_10.models import ( - RulesetVersionWithStateAllof1 as RulesetVersionWithStateAllof1, - ) - from githubkit.versions.v2026_03_10.models import ( - RulesetVersionWithStateAllof1PropState as RulesetVersionWithStateAllof1PropState, - ) - from githubkit.versions.v2026_03_10.models import RuleSuite as RuleSuite - from githubkit.versions.v2026_03_10.models import ( - RuleSuitePropRuleEvaluationsItems as RuleSuitePropRuleEvaluationsItems, - ) - from githubkit.versions.v2026_03_10.models import ( - RuleSuitePropRuleEvaluationsItemsPropRuleSource as RuleSuitePropRuleEvaluationsItemsPropRuleSource, - ) - from githubkit.versions.v2026_03_10.models import ( - RuleSuitePullRequest as RuleSuitePullRequest, - ) - from githubkit.versions.v2026_03_10.models import ( - RuleSuitePullRequestPropPullRequest as RuleSuitePullRequestPropPullRequest, - ) - from githubkit.versions.v2026_03_10.models import ( - RuleSuitePullRequestPropPullRequestPropReviewsItems as RuleSuitePullRequestPropPullRequestPropReviewsItems, - ) - from githubkit.versions.v2026_03_10.models import ( - RuleSuitePullRequestPropPullRequestPropReviewsItemsPropUser as RuleSuitePullRequestPropPullRequestPropReviewsItemsPropUser, - ) - from githubkit.versions.v2026_03_10.models import ( - RuleSuitePullRequestPropPullRequestPropUser as RuleSuitePullRequestPropPullRequestPropUser, - ) - from githubkit.versions.v2026_03_10.models import ( - RuleSuiteRequiredStatusChecks as RuleSuiteRequiredStatusChecks, - ) - from githubkit.versions.v2026_03_10.models import ( - RuleSuiteRequiredStatusChecksPropChecksItems as RuleSuiteRequiredStatusChecksPropChecksItems, - ) - from githubkit.versions.v2026_03_10.models import ( - RuleSuiteRequiredStatusChecksPropChecksItemsPropApp as RuleSuiteRequiredStatusChecksPropChecksItemsPropApp, - ) - from githubkit.versions.v2026_03_10.models import RuleSuitesItems as RuleSuitesItems - from githubkit.versions.v2026_03_10.models import Runner as Runner - from githubkit.versions.v2026_03_10.models import ( - RunnerApplication as RunnerApplication, - ) - from githubkit.versions.v2026_03_10.models import RunnerGroupsOrg as RunnerGroupsOrg - from githubkit.versions.v2026_03_10.models import RunnerLabel as RunnerLabel - from githubkit.versions.v2026_03_10.models import ScimError as ScimError - from githubkit.versions.v2026_03_10.models import ( - ScopedInstallation as ScopedInstallation, - ) - from githubkit.versions.v2026_03_10.models import ( - SearchCodeGetResponse200 as SearchCodeGetResponse200, - ) - from githubkit.versions.v2026_03_10.models import ( - SearchCommitsGetResponse200 as SearchCommitsGetResponse200, - ) - from githubkit.versions.v2026_03_10.models import ( - SearchIssuesGetResponse200 as SearchIssuesGetResponse200, - ) - from githubkit.versions.v2026_03_10.models import ( - SearchLabelsGetResponse200 as SearchLabelsGetResponse200, - ) - from githubkit.versions.v2026_03_10.models import ( - SearchRepositoriesGetResponse200 as SearchRepositoriesGetResponse200, - ) - from githubkit.versions.v2026_03_10.models import ( - SearchResultTextMatchesItems as SearchResultTextMatchesItems, - ) - from githubkit.versions.v2026_03_10.models import ( - SearchResultTextMatchesItemsPropMatchesItems as SearchResultTextMatchesItemsPropMatchesItems, - ) - from githubkit.versions.v2026_03_10.models import ( - SearchTopicsGetResponse200 as SearchTopicsGetResponse200, - ) - from githubkit.versions.v2026_03_10.models import ( - SearchUsersGetResponse200 as SearchUsersGetResponse200, - ) - from githubkit.versions.v2026_03_10.models import ( - SecretScanningAlert as SecretScanningAlert, - ) - from githubkit.versions.v2026_03_10.models import ( - SecretScanningAlertWebhook as SecretScanningAlertWebhook, - ) - from githubkit.versions.v2026_03_10.models import ( - SecretScanningLocation as SecretScanningLocation, - ) - from githubkit.versions.v2026_03_10.models import ( - SecretScanningLocationCommit as SecretScanningLocationCommit, - ) - from githubkit.versions.v2026_03_10.models import ( - SecretScanningLocationDiscussionBody as SecretScanningLocationDiscussionBody, - ) - from githubkit.versions.v2026_03_10.models import ( - SecretScanningLocationDiscussionComment as SecretScanningLocationDiscussionComment, - ) - from githubkit.versions.v2026_03_10.models import ( - SecretScanningLocationDiscussionTitle as SecretScanningLocationDiscussionTitle, - ) - from githubkit.versions.v2026_03_10.models import ( - SecretScanningLocationIssueBody as SecretScanningLocationIssueBody, - ) - from githubkit.versions.v2026_03_10.models import ( - SecretScanningLocationIssueComment as SecretScanningLocationIssueComment, - ) - from githubkit.versions.v2026_03_10.models import ( - SecretScanningLocationIssueTitle as SecretScanningLocationIssueTitle, - ) - from githubkit.versions.v2026_03_10.models import ( - SecretScanningLocationPullRequestBody as SecretScanningLocationPullRequestBody, - ) - from githubkit.versions.v2026_03_10.models import ( - SecretScanningLocationPullRequestComment as SecretScanningLocationPullRequestComment, - ) - from githubkit.versions.v2026_03_10.models import ( - SecretScanningLocationPullRequestReview as SecretScanningLocationPullRequestReview, - ) - from githubkit.versions.v2026_03_10.models import ( - SecretScanningLocationPullRequestReviewComment as SecretScanningLocationPullRequestReviewComment, - ) - from githubkit.versions.v2026_03_10.models import ( - SecretScanningLocationPullRequestTitle as SecretScanningLocationPullRequestTitle, - ) - from githubkit.versions.v2026_03_10.models import ( - SecretScanningLocationWikiCommit as SecretScanningLocationWikiCommit, - ) - from githubkit.versions.v2026_03_10.models import ( - SecretScanningPatternConfiguration as SecretScanningPatternConfiguration, - ) - from githubkit.versions.v2026_03_10.models import ( - SecretScanningPatternOverride as SecretScanningPatternOverride, - ) - from githubkit.versions.v2026_03_10.models import ( - SecretScanningPushProtectionBypass as SecretScanningPushProtectionBypass, - ) - from githubkit.versions.v2026_03_10.models import ( - SecretScanningScan as SecretScanningScan, - ) - from githubkit.versions.v2026_03_10.models import ( - SecretScanningScanHistory as SecretScanningScanHistory, - ) - from githubkit.versions.v2026_03_10.models import ( - SecretScanningScanHistoryPropCustomPatternBackfillScansItems as SecretScanningScanHistoryPropCustomPatternBackfillScansItems, - ) - from githubkit.versions.v2026_03_10.models import ( - SecretScanningScanHistoryPropCustomPatternBackfillScansItemsAllof1 as SecretScanningScanHistoryPropCustomPatternBackfillScansItemsAllof1, - ) - from githubkit.versions.v2026_03_10.models import ( - SecurityAdvisoryEpss as SecurityAdvisoryEpss, - ) - from githubkit.versions.v2026_03_10.models import ( - SecurityAndAnalysis as SecurityAndAnalysis, - ) - from githubkit.versions.v2026_03_10.models import ( - SecurityAndAnalysisPropAdvancedSecurity as SecurityAndAnalysisPropAdvancedSecurity, - ) - from githubkit.versions.v2026_03_10.models import ( - SecurityAndAnalysisPropCodeSecurity as SecurityAndAnalysisPropCodeSecurity, - ) - from githubkit.versions.v2026_03_10.models import ( - SecurityAndAnalysisPropDependabotSecurityUpdates as SecurityAndAnalysisPropDependabotSecurityUpdates, - ) - from githubkit.versions.v2026_03_10.models import ( - SecurityAndAnalysisPropSecretScanning as SecurityAndAnalysisPropSecretScanning, - ) - from githubkit.versions.v2026_03_10.models import ( - SecurityAndAnalysisPropSecretScanningAiDetection as SecurityAndAnalysisPropSecretScanningAiDetection, - ) - from githubkit.versions.v2026_03_10.models import ( - SecurityAndAnalysisPropSecretScanningDelegatedAlertDismissal as SecurityAndAnalysisPropSecretScanningDelegatedAlertDismissal, - ) - from githubkit.versions.v2026_03_10.models import ( - SecurityAndAnalysisPropSecretScanningDelegatedBypass as SecurityAndAnalysisPropSecretScanningDelegatedBypass, - ) - from githubkit.versions.v2026_03_10.models import ( - SecurityAndAnalysisPropSecretScanningDelegatedBypassOptions as SecurityAndAnalysisPropSecretScanningDelegatedBypassOptions, - ) - from githubkit.versions.v2026_03_10.models import ( - SecurityAndAnalysisPropSecretScanningDelegatedBypassOptionsPropReviewersItems as SecurityAndAnalysisPropSecretScanningDelegatedBypassOptionsPropReviewersItems, - ) - from githubkit.versions.v2026_03_10.models import ( - SecurityAndAnalysisPropSecretScanningNonProviderPatterns as SecurityAndAnalysisPropSecretScanningNonProviderPatterns, - ) - from githubkit.versions.v2026_03_10.models import ( - SecurityAndAnalysisPropSecretScanningPushProtection as SecurityAndAnalysisPropSecretScanningPushProtection, - ) - from githubkit.versions.v2026_03_10.models import SelectedActions as SelectedActions - from githubkit.versions.v2026_03_10.models import ( - SelfHostedRunnersSettings as SelfHostedRunnersSettings, - ) - from githubkit.versions.v2026_03_10.models import ShortBlob as ShortBlob - from githubkit.versions.v2026_03_10.models import ShortBranch as ShortBranch - from githubkit.versions.v2026_03_10.models import ( - ShortBranchPropCommit as ShortBranchPropCommit, - ) - from githubkit.versions.v2026_03_10.models import ( - SimpleCheckSuite as SimpleCheckSuite, - ) - from githubkit.versions.v2026_03_10.models import SimpleClassroom as SimpleClassroom - from githubkit.versions.v2026_03_10.models import ( - SimpleClassroomAssignment as SimpleClassroomAssignment, - ) - from githubkit.versions.v2026_03_10.models import ( - SimpleClassroomOrganization as SimpleClassroomOrganization, - ) - from githubkit.versions.v2026_03_10.models import ( - SimpleClassroomRepository as SimpleClassroomRepository, - ) - from githubkit.versions.v2026_03_10.models import ( - SimpleClassroomUser as SimpleClassroomUser, - ) - from githubkit.versions.v2026_03_10.models import SimpleCommit as SimpleCommit - from githubkit.versions.v2026_03_10.models import ( - SimpleCommitPropAuthor as SimpleCommitPropAuthor, - ) - from githubkit.versions.v2026_03_10.models import ( - SimpleCommitPropCommitter as SimpleCommitPropCommitter, - ) - from githubkit.versions.v2026_03_10.models import ( - SimpleCommitStatus as SimpleCommitStatus, - ) - from githubkit.versions.v2026_03_10.models import ( - SimpleInstallation as SimpleInstallation, - ) - from githubkit.versions.v2026_03_10.models import ( - SimpleRepository as SimpleRepository, - ) - from githubkit.versions.v2026_03_10.models import SimpleUser as SimpleUser - from githubkit.versions.v2026_03_10.models import Snapshot as Snapshot - from githubkit.versions.v2026_03_10.models import ( - SnapshotPropDetector as SnapshotPropDetector, - ) - from githubkit.versions.v2026_03_10.models import SnapshotPropJob as SnapshotPropJob - from githubkit.versions.v2026_03_10.models import ( - SnapshotPropManifests as SnapshotPropManifests, - ) - from githubkit.versions.v2026_03_10.models import SocialAccount as SocialAccount - from githubkit.versions.v2026_03_10.models import SshSigningKey as SshSigningKey - from githubkit.versions.v2026_03_10.models import Stargazer as Stargazer - from githubkit.versions.v2026_03_10.models import ( - StarredRepository as StarredRepository, - ) - from githubkit.versions.v2026_03_10.models import ( - StateChangeIssueEvent as StateChangeIssueEvent, - ) - from githubkit.versions.v2026_03_10.models import Status as Status - from githubkit.versions.v2026_03_10.models import ( - StatusCheckPolicy as StatusCheckPolicy, - ) - from githubkit.versions.v2026_03_10.models import ( - StatusCheckPolicyPropChecksItems as StatusCheckPolicyPropChecksItems, - ) - from githubkit.versions.v2026_03_10.models import ( - SubIssuesSummary as SubIssuesSummary, - ) - from githubkit.versions.v2026_03_10.models import Tag as Tag - from githubkit.versions.v2026_03_10.models import TagPropCommit as TagPropCommit - from githubkit.versions.v2026_03_10.models import Team as Team - from githubkit.versions.v2026_03_10.models import TeamFull as TeamFull - from githubkit.versions.v2026_03_10.models import TeamMembership as TeamMembership - from githubkit.versions.v2026_03_10.models import ( - TeamOrganization as TeamOrganization, - ) - from githubkit.versions.v2026_03_10.models import ( - TeamOrganizationPropPlan as TeamOrganizationPropPlan, - ) - from githubkit.versions.v2026_03_10.models import ( - TeamPropPermissions as TeamPropPermissions, - ) - from githubkit.versions.v2026_03_10.models import TeamRepository as TeamRepository - from githubkit.versions.v2026_03_10.models import ( - TeamRepositoryPropPermissions as TeamRepositoryPropPermissions, - ) - from githubkit.versions.v2026_03_10.models import ( - TeamRoleAssignment as TeamRoleAssignment, - ) - from githubkit.versions.v2026_03_10.models import ( - TeamRoleAssignmentPropPermissions as TeamRoleAssignmentPropPermissions, - ) - from githubkit.versions.v2026_03_10.models import TeamSimple as TeamSimple - from githubkit.versions.v2026_03_10.models import ( - TeamsTeamIdMembershipsUsernamePutBody as TeamsTeamIdMembershipsUsernamePutBody, - ) - from githubkit.versions.v2026_03_10.models import ( - TeamsTeamIdPatchBody as TeamsTeamIdPatchBody, - ) - from githubkit.versions.v2026_03_10.models import ( - TeamsTeamIdReposOwnerRepoPutBody as TeamsTeamIdReposOwnerRepoPutBody, - ) - from githubkit.versions.v2026_03_10.models import Thread as Thread - from githubkit.versions.v2026_03_10.models import ( - ThreadPropSubject as ThreadPropSubject, - ) - from githubkit.versions.v2026_03_10.models import ( - ThreadSubscription as ThreadSubscription, - ) - from githubkit.versions.v2026_03_10.models import ( - TimelineAssignedIssueEvent as TimelineAssignedIssueEvent, - ) - from githubkit.versions.v2026_03_10.models import ( - TimelineCommentEvent as TimelineCommentEvent, - ) - from githubkit.versions.v2026_03_10.models import ( - TimelineCommitCommentedEvent as TimelineCommitCommentedEvent, - ) - from githubkit.versions.v2026_03_10.models import ( - TimelineCommittedEvent as TimelineCommittedEvent, - ) - from githubkit.versions.v2026_03_10.models import ( - TimelineCommittedEventPropAuthor as TimelineCommittedEventPropAuthor, - ) - from githubkit.versions.v2026_03_10.models import ( - TimelineCommittedEventPropCommitter as TimelineCommittedEventPropCommitter, - ) - from githubkit.versions.v2026_03_10.models import ( - TimelineCommittedEventPropParentsItems as TimelineCommittedEventPropParentsItems, - ) - from githubkit.versions.v2026_03_10.models import ( - TimelineCommittedEventPropTree as TimelineCommittedEventPropTree, - ) - from githubkit.versions.v2026_03_10.models import ( - TimelineCommittedEventPropVerification as TimelineCommittedEventPropVerification, - ) - from githubkit.versions.v2026_03_10.models import ( - TimelineCrossReferencedEvent as TimelineCrossReferencedEvent, - ) - from githubkit.versions.v2026_03_10.models import ( - TimelineCrossReferencedEventPropSource as TimelineCrossReferencedEventPropSource, - ) - from githubkit.versions.v2026_03_10.models import ( - TimelineLineCommentedEvent as TimelineLineCommentedEvent, - ) - from githubkit.versions.v2026_03_10.models import ( - TimelineReviewedEvent as TimelineReviewedEvent, - ) - from githubkit.versions.v2026_03_10.models import ( - TimelineReviewedEventPropLinks as TimelineReviewedEventPropLinks, - ) - from githubkit.versions.v2026_03_10.models import ( - TimelineReviewedEventPropLinksPropHtml as TimelineReviewedEventPropLinksPropHtml, - ) - from githubkit.versions.v2026_03_10.models import ( - TimelineReviewedEventPropLinksPropPullRequest as TimelineReviewedEventPropLinksPropPullRequest, - ) - from githubkit.versions.v2026_03_10.models import ( - TimelineUnassignedIssueEvent as TimelineUnassignedIssueEvent, - ) - from githubkit.versions.v2026_03_10.models import Topic as Topic - from githubkit.versions.v2026_03_10.models import ( - TopicSearchResultItem as TopicSearchResultItem, - ) - from githubkit.versions.v2026_03_10.models import ( - TopicSearchResultItemPropAliasesItems as TopicSearchResultItemPropAliasesItems, - ) - from githubkit.versions.v2026_03_10.models import ( - TopicSearchResultItemPropAliasesItemsPropTopicRelation as TopicSearchResultItemPropAliasesItemsPropTopicRelation, - ) - from githubkit.versions.v2026_03_10.models import ( - TopicSearchResultItemPropRelatedItems as TopicSearchResultItemPropRelatedItems, - ) - from githubkit.versions.v2026_03_10.models import ( - TopicSearchResultItemPropRelatedItemsPropTopicRelation as TopicSearchResultItemPropRelatedItemsPropTopicRelation, - ) - from githubkit.versions.v2026_03_10.models import Traffic as Traffic - from githubkit.versions.v2026_03_10.models import ( - UnassignedIssueEvent as UnassignedIssueEvent, - ) - from githubkit.versions.v2026_03_10.models import ( - UnlabeledIssueEvent as UnlabeledIssueEvent, - ) - from githubkit.versions.v2026_03_10.models import ( - UnlabeledIssueEventPropLabel as UnlabeledIssueEventPropLabel, - ) - from githubkit.versions.v2026_03_10.models import ( - UserCodespacesCodespaceNameMachinesGetResponse200 as UserCodespacesCodespaceNameMachinesGetResponse200, - ) - from githubkit.versions.v2026_03_10.models import ( - UserCodespacesCodespaceNamePatchBody as UserCodespacesCodespaceNamePatchBody, - ) - from githubkit.versions.v2026_03_10.models import ( - UserCodespacesCodespaceNamePublishPostBody as UserCodespacesCodespaceNamePublishPostBody, - ) - from githubkit.versions.v2026_03_10.models import ( - UserCodespacesGetResponse200 as UserCodespacesGetResponse200, - ) - from githubkit.versions.v2026_03_10.models import ( - UserCodespacesPostBodyOneof0 as UserCodespacesPostBodyOneof0, - ) - from githubkit.versions.v2026_03_10.models import ( - UserCodespacesPostBodyOneof1 as UserCodespacesPostBodyOneof1, - ) - from githubkit.versions.v2026_03_10.models import ( - UserCodespacesPostBodyOneof1PropPullRequest as UserCodespacesPostBodyOneof1PropPullRequest, - ) - from githubkit.versions.v2026_03_10.models import ( - UserCodespacesSecretsGetResponse200 as UserCodespacesSecretsGetResponse200, - ) - from githubkit.versions.v2026_03_10.models import ( - UserCodespacesSecretsSecretNamePutBody as UserCodespacesSecretsSecretNamePutBody, - ) - from githubkit.versions.v2026_03_10.models import ( - UserCodespacesSecretsSecretNameRepositoriesGetResponse200 as UserCodespacesSecretsSecretNameRepositoriesGetResponse200, - ) - from githubkit.versions.v2026_03_10.models import ( - UserCodespacesSecretsSecretNameRepositoriesPutBody as UserCodespacesSecretsSecretNameRepositoriesPutBody, - ) - from githubkit.versions.v2026_03_10.models import ( - UserEmailsDeleteBodyOneof0 as UserEmailsDeleteBodyOneof0, - ) - from githubkit.versions.v2026_03_10.models import ( - UserEmailsPostBodyOneof0 as UserEmailsPostBodyOneof0, - ) - from githubkit.versions.v2026_03_10.models import ( - UserEmailVisibilityPatchBody as UserEmailVisibilityPatchBody, - ) - from githubkit.versions.v2026_03_10.models import ( - UserGpgKeysPostBody as UserGpgKeysPostBody, - ) - from githubkit.versions.v2026_03_10.models import ( - UserInstallationsGetResponse200 as UserInstallationsGetResponse200, - ) - from githubkit.versions.v2026_03_10.models import ( - UserInstallationsInstallationIdRepositoriesGetResponse200 as UserInstallationsInstallationIdRepositoriesGetResponse200, - ) - from githubkit.versions.v2026_03_10.models import ( - UserInstallationsInstallationIdRepositoriesGetResponse200PropRepositoriesItems as UserInstallationsInstallationIdRepositoriesGetResponse200PropRepositoriesItems, - ) - from githubkit.versions.v2026_03_10.models import ( - UserInteractionLimitsGetResponse200Anyof1 as UserInteractionLimitsGetResponse200Anyof1, - ) - from githubkit.versions.v2026_03_10.models import ( - UserKeysPostBody as UserKeysPostBody, - ) - from githubkit.versions.v2026_03_10.models import ( - UserMarketplacePurchase as UserMarketplacePurchase, - ) - from githubkit.versions.v2026_03_10.models import ( - UserMembershipsOrgsOrgPatchBody as UserMembershipsOrgsOrgPatchBody, - ) - from githubkit.versions.v2026_03_10.models import ( - UserMigrationsPostBody as UserMigrationsPostBody, - ) - from githubkit.versions.v2026_03_10.models import UserPatchBody as UserPatchBody - from githubkit.versions.v2026_03_10.models import ( - UserReposPostBody as UserReposPostBody, - ) - from githubkit.versions.v2026_03_10.models import ( - UserRoleAssignment as UserRoleAssignment, - ) - from githubkit.versions.v2026_03_10.models import ( - UserSearchResultItem as UserSearchResultItem, - ) - from githubkit.versions.v2026_03_10.models import ( - UserSocialAccountsDeleteBody as UserSocialAccountsDeleteBody, - ) - from githubkit.versions.v2026_03_10.models import ( - UserSocialAccountsPostBody as UserSocialAccountsPostBody, - ) - from githubkit.versions.v2026_03_10.models import ( - UserSshSigningKeysPostBody as UserSshSigningKeysPostBody, - ) - from githubkit.versions.v2026_03_10.models import ( - UsersUserIdProjectsV2ProjectNumberViewsPostBody as UsersUserIdProjectsV2ProjectNumberViewsPostBody, - ) - from githubkit.versions.v2026_03_10.models import ( - UsersUsernameAttestationsBulkListPostBody as UsersUsernameAttestationsBulkListPostBody, - ) - from githubkit.versions.v2026_03_10.models import ( - UsersUsernameAttestationsBulkListPostResponse200 as UsersUsernameAttestationsBulkListPostResponse200, - ) - from githubkit.versions.v2026_03_10.models import ( - UsersUsernameAttestationsBulkListPostResponse200PropAttestationsSubjectDigests as UsersUsernameAttestationsBulkListPostResponse200PropAttestationsSubjectDigests, - ) - from githubkit.versions.v2026_03_10.models import ( - UsersUsernameAttestationsBulkListPostResponse200PropPageInfo as UsersUsernameAttestationsBulkListPostResponse200PropPageInfo, - ) - from githubkit.versions.v2026_03_10.models import ( - UsersUsernameAttestationsDeleteRequestPostBodyOneof0 as UsersUsernameAttestationsDeleteRequestPostBodyOneof0, - ) - from githubkit.versions.v2026_03_10.models import ( - UsersUsernameAttestationsDeleteRequestPostBodyOneof1 as UsersUsernameAttestationsDeleteRequestPostBodyOneof1, - ) - from githubkit.versions.v2026_03_10.models import ( - UsersUsernameAttestationsSubjectDigestGetResponse200 as UsersUsernameAttestationsSubjectDigestGetResponse200, - ) - from githubkit.versions.v2026_03_10.models import ( - UsersUsernameAttestationsSubjectDigestGetResponse200PropAttestationsItems as UsersUsernameAttestationsSubjectDigestGetResponse200PropAttestationsItems, - ) - from githubkit.versions.v2026_03_10.models import ( - UsersUsernameCopilotSpacesGetResponse200 as UsersUsernameCopilotSpacesGetResponse200, - ) - from githubkit.versions.v2026_03_10.models import ( - UsersUsernameCopilotSpacesPostBody as UsersUsernameCopilotSpacesPostBody, - ) - from githubkit.versions.v2026_03_10.models import ( - UsersUsernameCopilotSpacesPostBodyPropResourcesAttributesItems as UsersUsernameCopilotSpacesPostBodyPropResourcesAttributesItems, - ) - from githubkit.versions.v2026_03_10.models import ( - UsersUsernameCopilotSpacesPostBodyPropResourcesAttributesItemsPropMetadata as UsersUsernameCopilotSpacesPostBodyPropResourcesAttributesItemsPropMetadata, - ) - from githubkit.versions.v2026_03_10.models import ( - UsersUsernameCopilotSpacesSpaceNumberCollaboratorsActorTypeActorIdentifierPutBody as UsersUsernameCopilotSpacesSpaceNumberCollaboratorsActorTypeActorIdentifierPutBody, - ) - from githubkit.versions.v2026_03_10.models import ( - UsersUsernameCopilotSpacesSpaceNumberCollaboratorsGetResponse200 as UsersUsernameCopilotSpacesSpaceNumberCollaboratorsGetResponse200, - ) - from githubkit.versions.v2026_03_10.models import ( - UsersUsernameCopilotSpacesSpaceNumberCollaboratorsPostBody as UsersUsernameCopilotSpacesSpaceNumberCollaboratorsPostBody, - ) - from githubkit.versions.v2026_03_10.models import ( - UsersUsernameCopilotSpacesSpaceNumberPutBody as UsersUsernameCopilotSpacesSpaceNumberPutBody, - ) - from githubkit.versions.v2026_03_10.models import ( - UsersUsernameCopilotSpacesSpaceNumberPutBodyPropResourcesAttributesItems as UsersUsernameCopilotSpacesSpaceNumberPutBodyPropResourcesAttributesItems, - ) - from githubkit.versions.v2026_03_10.models import ( - UsersUsernameCopilotSpacesSpaceNumberPutBodyPropResourcesAttributesItemsPropMetadata as UsersUsernameCopilotSpacesSpaceNumberPutBodyPropResourcesAttributesItemsPropMetadata, - ) - from githubkit.versions.v2026_03_10.models import ( - UsersUsernameCopilotSpacesSpaceNumberResourcesGetResponse200 as UsersUsernameCopilotSpacesSpaceNumberResourcesGetResponse200, - ) - from githubkit.versions.v2026_03_10.models import ( - UsersUsernameCopilotSpacesSpaceNumberResourcesPostBody as UsersUsernameCopilotSpacesSpaceNumberResourcesPostBody, - ) - from githubkit.versions.v2026_03_10.models import ( - UsersUsernameCopilotSpacesSpaceNumberResourcesPostBodyPropMetadata as UsersUsernameCopilotSpacesSpaceNumberResourcesPostBodyPropMetadata, - ) - from githubkit.versions.v2026_03_10.models import ( - UsersUsernameCopilotSpacesSpaceNumberResourcesSpaceResourceIdPutBody as UsersUsernameCopilotSpacesSpaceNumberResourcesSpaceResourceIdPutBody, - ) - from githubkit.versions.v2026_03_10.models import ( - UsersUsernameCopilotSpacesSpaceNumberResourcesSpaceResourceIdPutBodyPropMetadata as UsersUsernameCopilotSpacesSpaceNumberResourcesSpaceResourceIdPutBodyPropMetadata, - ) - from githubkit.versions.v2026_03_10.models import ( - UsersUsernameProjectsV2ProjectNumberFieldsPostBodyOneof0 as UsersUsernameProjectsV2ProjectNumberFieldsPostBodyOneof0, - ) - from githubkit.versions.v2026_03_10.models import ( - UsersUsernameProjectsV2ProjectNumberFieldsPostBodyOneof1 as UsersUsernameProjectsV2ProjectNumberFieldsPostBodyOneof1, - ) - from githubkit.versions.v2026_03_10.models import ( - UsersUsernameProjectsV2ProjectNumberFieldsPostBodyOneof2 as UsersUsernameProjectsV2ProjectNumberFieldsPostBodyOneof2, - ) - from githubkit.versions.v2026_03_10.models import ( - UsersUsernameProjectsV2ProjectNumberItemsItemIdPatchBody as UsersUsernameProjectsV2ProjectNumberItemsItemIdPatchBody, - ) - from githubkit.versions.v2026_03_10.models import ( - UsersUsernameProjectsV2ProjectNumberItemsItemIdPatchBodyPropFieldsItems as UsersUsernameProjectsV2ProjectNumberItemsItemIdPatchBodyPropFieldsItems, - ) - from githubkit.versions.v2026_03_10.models import ( - UsersUsernameProjectsV2ProjectNumberItemsPostBodyOneof0 as UsersUsernameProjectsV2ProjectNumberItemsPostBodyOneof0, - ) - from githubkit.versions.v2026_03_10.models import ( - UsersUsernameProjectsV2ProjectNumberItemsPostBodyOneof1 as UsersUsernameProjectsV2ProjectNumberItemsPostBodyOneof1, - ) - from githubkit.versions.v2026_03_10.models import ( - UserUserIdProjectsV2ProjectNumberDraftsPostBody as UserUserIdProjectsV2ProjectNumberDraftsPostBody, - ) - from githubkit.versions.v2026_03_10.models import ValidationError as ValidationError - from githubkit.versions.v2026_03_10.models import ( - ValidationErrorPropErrorsItems as ValidationErrorPropErrorsItems, - ) - from githubkit.versions.v2026_03_10.models import ( - ValidationErrorSimple as ValidationErrorSimple, - ) - from githubkit.versions.v2026_03_10.models import Verification as Verification - from githubkit.versions.v2026_03_10.models import ViewTraffic as ViewTraffic - from githubkit.versions.v2026_03_10.models import Vulnerability as Vulnerability - from githubkit.versions.v2026_03_10.models import ( - VulnerabilityPropPackage as VulnerabilityPropPackage, - ) - from githubkit.versions.v2026_03_10.models import WatchEvent as WatchEvent - from githubkit.versions.v2026_03_10.models import ( - WebhookBranchProtectionConfigurationDisabled as WebhookBranchProtectionConfigurationDisabled, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookBranchProtectionConfigurationEnabled as WebhookBranchProtectionConfigurationEnabled, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookBranchProtectionRuleCreated as WebhookBranchProtectionRuleCreated, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookBranchProtectionRuleDeleted as WebhookBranchProtectionRuleDeleted, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookBranchProtectionRuleEdited as WebhookBranchProtectionRuleEdited, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookBranchProtectionRuleEditedPropChanges as WebhookBranchProtectionRuleEditedPropChanges, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookBranchProtectionRuleEditedPropChangesPropAdminEnforced as WebhookBranchProtectionRuleEditedPropChangesPropAdminEnforced, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookBranchProtectionRuleEditedPropChangesPropAuthorizedActorNames as WebhookBranchProtectionRuleEditedPropChangesPropAuthorizedActorNames, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookBranchProtectionRuleEditedPropChangesPropAuthorizedActorsOnly as WebhookBranchProtectionRuleEditedPropChangesPropAuthorizedActorsOnly, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookBranchProtectionRuleEditedPropChangesPropAuthorizedDismissalActorsOnly as WebhookBranchProtectionRuleEditedPropChangesPropAuthorizedDismissalActorsOnly, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookBranchProtectionRuleEditedPropChangesPropLinearHistoryRequirementEnforcementLevel as WebhookBranchProtectionRuleEditedPropChangesPropLinearHistoryRequirementEnforcementLevel, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookBranchProtectionRuleEditedPropChangesPropLockAllowsForkSync as WebhookBranchProtectionRuleEditedPropChangesPropLockAllowsForkSync, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookBranchProtectionRuleEditedPropChangesPropLockBranchEnforcementLevel as WebhookBranchProtectionRuleEditedPropChangesPropLockBranchEnforcementLevel, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookBranchProtectionRuleEditedPropChangesPropPullRequestReviewsEnforcementLevel as WebhookBranchProtectionRuleEditedPropChangesPropPullRequestReviewsEnforcementLevel, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookBranchProtectionRuleEditedPropChangesPropRequiredStatusChecks as WebhookBranchProtectionRuleEditedPropChangesPropRequiredStatusChecks, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookBranchProtectionRuleEditedPropChangesPropRequiredStatusChecksEnforcementLevel as WebhookBranchProtectionRuleEditedPropChangesPropRequiredStatusChecksEnforcementLevel, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookBranchProtectionRuleEditedPropChangesPropRequireLastPushApproval as WebhookBranchProtectionRuleEditedPropChangesPropRequireLastPushApproval, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookCheckRunCompleted as WebhookCheckRunCompleted, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookCheckRunCompletedFormEncoded as WebhookCheckRunCompletedFormEncoded, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookCheckRunCreated as WebhookCheckRunCreated, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookCheckRunCreatedFormEncoded as WebhookCheckRunCreatedFormEncoded, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookCheckRunRequestedAction as WebhookCheckRunRequestedAction, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookCheckRunRequestedActionFormEncoded as WebhookCheckRunRequestedActionFormEncoded, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookCheckRunRequestedActionPropRequestedAction as WebhookCheckRunRequestedActionPropRequestedAction, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookCheckRunRerequested as WebhookCheckRunRerequested, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookCheckRunRerequestedFormEncoded as WebhookCheckRunRerequestedFormEncoded, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookCheckSuiteCompleted as WebhookCheckSuiteCompleted, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookCheckSuiteCompletedPropCheckSuite as WebhookCheckSuiteCompletedPropCheckSuite, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookCheckSuiteCompletedPropCheckSuitePropApp as WebhookCheckSuiteCompletedPropCheckSuitePropApp, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookCheckSuiteCompletedPropCheckSuitePropAppPropOwner as WebhookCheckSuiteCompletedPropCheckSuitePropAppPropOwner, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookCheckSuiteCompletedPropCheckSuitePropAppPropPermissions as WebhookCheckSuiteCompletedPropCheckSuitePropAppPropPermissions, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookCheckSuiteCompletedPropCheckSuitePropHeadCommit as WebhookCheckSuiteCompletedPropCheckSuitePropHeadCommit, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookCheckSuiteCompletedPropCheckSuitePropHeadCommitPropAuthor as WebhookCheckSuiteCompletedPropCheckSuitePropHeadCommitPropAuthor, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookCheckSuiteCompletedPropCheckSuitePropHeadCommitPropCommitter as WebhookCheckSuiteCompletedPropCheckSuitePropHeadCommitPropCommitter, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookCheckSuiteCompletedPropCheckSuitePropPullRequestsItems as WebhookCheckSuiteCompletedPropCheckSuitePropPullRequestsItems, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookCheckSuiteCompletedPropCheckSuitePropPullRequestsItemsPropBase as WebhookCheckSuiteCompletedPropCheckSuitePropPullRequestsItemsPropBase, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookCheckSuiteCompletedPropCheckSuitePropPullRequestsItemsPropBasePropRepo as WebhookCheckSuiteCompletedPropCheckSuitePropPullRequestsItemsPropBasePropRepo, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookCheckSuiteCompletedPropCheckSuitePropPullRequestsItemsPropHead as WebhookCheckSuiteCompletedPropCheckSuitePropPullRequestsItemsPropHead, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookCheckSuiteCompletedPropCheckSuitePropPullRequestsItemsPropHeadPropRepo as WebhookCheckSuiteCompletedPropCheckSuitePropPullRequestsItemsPropHeadPropRepo, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookCheckSuiteRequested as WebhookCheckSuiteRequested, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookCheckSuiteRequestedPropCheckSuite as WebhookCheckSuiteRequestedPropCheckSuite, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookCheckSuiteRequestedPropCheckSuitePropApp as WebhookCheckSuiteRequestedPropCheckSuitePropApp, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookCheckSuiteRequestedPropCheckSuitePropAppPropOwner as WebhookCheckSuiteRequestedPropCheckSuitePropAppPropOwner, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookCheckSuiteRequestedPropCheckSuitePropAppPropPermissions as WebhookCheckSuiteRequestedPropCheckSuitePropAppPropPermissions, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookCheckSuiteRequestedPropCheckSuitePropHeadCommit as WebhookCheckSuiteRequestedPropCheckSuitePropHeadCommit, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookCheckSuiteRequestedPropCheckSuitePropHeadCommitPropAuthor as WebhookCheckSuiteRequestedPropCheckSuitePropHeadCommitPropAuthor, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookCheckSuiteRequestedPropCheckSuitePropHeadCommitPropCommitter as WebhookCheckSuiteRequestedPropCheckSuitePropHeadCommitPropCommitter, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookCheckSuiteRequestedPropCheckSuitePropPullRequestsItems as WebhookCheckSuiteRequestedPropCheckSuitePropPullRequestsItems, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookCheckSuiteRequestedPropCheckSuitePropPullRequestsItemsPropBase as WebhookCheckSuiteRequestedPropCheckSuitePropPullRequestsItemsPropBase, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookCheckSuiteRequestedPropCheckSuitePropPullRequestsItemsPropBasePropRepo as WebhookCheckSuiteRequestedPropCheckSuitePropPullRequestsItemsPropBasePropRepo, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookCheckSuiteRequestedPropCheckSuitePropPullRequestsItemsPropHead as WebhookCheckSuiteRequestedPropCheckSuitePropPullRequestsItemsPropHead, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookCheckSuiteRequestedPropCheckSuitePropPullRequestsItemsPropHeadPropRepo as WebhookCheckSuiteRequestedPropCheckSuitePropPullRequestsItemsPropHeadPropRepo, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookCheckSuiteRerequested as WebhookCheckSuiteRerequested, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookCheckSuiteRerequestedPropCheckSuite as WebhookCheckSuiteRerequestedPropCheckSuite, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookCheckSuiteRerequestedPropCheckSuitePropApp as WebhookCheckSuiteRerequestedPropCheckSuitePropApp, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookCheckSuiteRerequestedPropCheckSuitePropAppPropOwner as WebhookCheckSuiteRerequestedPropCheckSuitePropAppPropOwner, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookCheckSuiteRerequestedPropCheckSuitePropAppPropPermissions as WebhookCheckSuiteRerequestedPropCheckSuitePropAppPropPermissions, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookCheckSuiteRerequestedPropCheckSuitePropHeadCommit as WebhookCheckSuiteRerequestedPropCheckSuitePropHeadCommit, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookCheckSuiteRerequestedPropCheckSuitePropHeadCommitPropAuthor as WebhookCheckSuiteRerequestedPropCheckSuitePropHeadCommitPropAuthor, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookCheckSuiteRerequestedPropCheckSuitePropHeadCommitPropCommitter as WebhookCheckSuiteRerequestedPropCheckSuitePropHeadCommitPropCommitter, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookCheckSuiteRerequestedPropCheckSuitePropPullRequestsItems as WebhookCheckSuiteRerequestedPropCheckSuitePropPullRequestsItems, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookCheckSuiteRerequestedPropCheckSuitePropPullRequestsItemsPropBase as WebhookCheckSuiteRerequestedPropCheckSuitePropPullRequestsItemsPropBase, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookCheckSuiteRerequestedPropCheckSuitePropPullRequestsItemsPropBasePropRepo as WebhookCheckSuiteRerequestedPropCheckSuitePropPullRequestsItemsPropBasePropRepo, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookCheckSuiteRerequestedPropCheckSuitePropPullRequestsItemsPropHead as WebhookCheckSuiteRerequestedPropCheckSuitePropPullRequestsItemsPropHead, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookCheckSuiteRerequestedPropCheckSuitePropPullRequestsItemsPropHeadPropRepo as WebhookCheckSuiteRerequestedPropCheckSuitePropPullRequestsItemsPropHeadPropRepo, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookCodeScanningAlertAppearedInBranch as WebhookCodeScanningAlertAppearedInBranch, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookCodeScanningAlertAppearedInBranchPropAlert as WebhookCodeScanningAlertAppearedInBranchPropAlert, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookCodeScanningAlertAppearedInBranchPropAlertPropDismissedBy as WebhookCodeScanningAlertAppearedInBranchPropAlertPropDismissedBy, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookCodeScanningAlertAppearedInBranchPropAlertPropMostRecentInstance as WebhookCodeScanningAlertAppearedInBranchPropAlertPropMostRecentInstance, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookCodeScanningAlertAppearedInBranchPropAlertPropMostRecentInstancePropLocation as WebhookCodeScanningAlertAppearedInBranchPropAlertPropMostRecentInstancePropLocation, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookCodeScanningAlertAppearedInBranchPropAlertPropMostRecentInstancePropMessage as WebhookCodeScanningAlertAppearedInBranchPropAlertPropMostRecentInstancePropMessage, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookCodeScanningAlertAppearedInBranchPropAlertPropRule as WebhookCodeScanningAlertAppearedInBranchPropAlertPropRule, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookCodeScanningAlertAppearedInBranchPropAlertPropTool as WebhookCodeScanningAlertAppearedInBranchPropAlertPropTool, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookCodeScanningAlertClosedByUser as WebhookCodeScanningAlertClosedByUser, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookCodeScanningAlertClosedByUserPropAlert as WebhookCodeScanningAlertClosedByUserPropAlert, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookCodeScanningAlertClosedByUserPropAlertPropDismissalApprovedBy as WebhookCodeScanningAlertClosedByUserPropAlertPropDismissalApprovedBy, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookCodeScanningAlertClosedByUserPropAlertPropDismissedBy as WebhookCodeScanningAlertClosedByUserPropAlertPropDismissedBy, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookCodeScanningAlertClosedByUserPropAlertPropMostRecentInstance as WebhookCodeScanningAlertClosedByUserPropAlertPropMostRecentInstance, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookCodeScanningAlertClosedByUserPropAlertPropMostRecentInstancePropLocation as WebhookCodeScanningAlertClosedByUserPropAlertPropMostRecentInstancePropLocation, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookCodeScanningAlertClosedByUserPropAlertPropMostRecentInstancePropMessage as WebhookCodeScanningAlertClosedByUserPropAlertPropMostRecentInstancePropMessage, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookCodeScanningAlertClosedByUserPropAlertPropRule as WebhookCodeScanningAlertClosedByUserPropAlertPropRule, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookCodeScanningAlertClosedByUserPropAlertPropTool as WebhookCodeScanningAlertClosedByUserPropAlertPropTool, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookCodeScanningAlertCreated as WebhookCodeScanningAlertCreated, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookCodeScanningAlertCreatedPropAlert as WebhookCodeScanningAlertCreatedPropAlert, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookCodeScanningAlertCreatedPropAlertPropMostRecentInstance as WebhookCodeScanningAlertCreatedPropAlertPropMostRecentInstance, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookCodeScanningAlertCreatedPropAlertPropMostRecentInstancePropLocation as WebhookCodeScanningAlertCreatedPropAlertPropMostRecentInstancePropLocation, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookCodeScanningAlertCreatedPropAlertPropMostRecentInstancePropMessage as WebhookCodeScanningAlertCreatedPropAlertPropMostRecentInstancePropMessage, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookCodeScanningAlertCreatedPropAlertPropRule as WebhookCodeScanningAlertCreatedPropAlertPropRule, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookCodeScanningAlertCreatedPropAlertPropTool as WebhookCodeScanningAlertCreatedPropAlertPropTool, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookCodeScanningAlertFixed as WebhookCodeScanningAlertFixed, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookCodeScanningAlertFixedPropAlert as WebhookCodeScanningAlertFixedPropAlert, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookCodeScanningAlertFixedPropAlertPropDismissedBy as WebhookCodeScanningAlertFixedPropAlertPropDismissedBy, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookCodeScanningAlertFixedPropAlertPropMostRecentInstance as WebhookCodeScanningAlertFixedPropAlertPropMostRecentInstance, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookCodeScanningAlertFixedPropAlertPropMostRecentInstancePropLocation as WebhookCodeScanningAlertFixedPropAlertPropMostRecentInstancePropLocation, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookCodeScanningAlertFixedPropAlertPropMostRecentInstancePropMessage as WebhookCodeScanningAlertFixedPropAlertPropMostRecentInstancePropMessage, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookCodeScanningAlertFixedPropAlertPropRule as WebhookCodeScanningAlertFixedPropAlertPropRule, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookCodeScanningAlertFixedPropAlertPropTool as WebhookCodeScanningAlertFixedPropAlertPropTool, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookCodeScanningAlertReopened as WebhookCodeScanningAlertReopened, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookCodeScanningAlertReopenedByUser as WebhookCodeScanningAlertReopenedByUser, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookCodeScanningAlertReopenedByUserPropAlert as WebhookCodeScanningAlertReopenedByUserPropAlert, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookCodeScanningAlertReopenedByUserPropAlertPropMostRecentInstance as WebhookCodeScanningAlertReopenedByUserPropAlertPropMostRecentInstance, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookCodeScanningAlertReopenedByUserPropAlertPropMostRecentInstancePropLocation as WebhookCodeScanningAlertReopenedByUserPropAlertPropMostRecentInstancePropLocation, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookCodeScanningAlertReopenedByUserPropAlertPropMostRecentInstancePropMessage as WebhookCodeScanningAlertReopenedByUserPropAlertPropMostRecentInstancePropMessage, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookCodeScanningAlertReopenedByUserPropAlertPropRule as WebhookCodeScanningAlertReopenedByUserPropAlertPropRule, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookCodeScanningAlertReopenedByUserPropAlertPropTool as WebhookCodeScanningAlertReopenedByUserPropAlertPropTool, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookCodeScanningAlertReopenedPropAlert as WebhookCodeScanningAlertReopenedPropAlert, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookCodeScanningAlertReopenedPropAlertPropDismissedBy as WebhookCodeScanningAlertReopenedPropAlertPropDismissedBy, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookCodeScanningAlertReopenedPropAlertPropMostRecentInstance as WebhookCodeScanningAlertReopenedPropAlertPropMostRecentInstance, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookCodeScanningAlertReopenedPropAlertPropMostRecentInstancePropLocation as WebhookCodeScanningAlertReopenedPropAlertPropMostRecentInstancePropLocation, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookCodeScanningAlertReopenedPropAlertPropMostRecentInstancePropMessage as WebhookCodeScanningAlertReopenedPropAlertPropMostRecentInstancePropMessage, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookCodeScanningAlertReopenedPropAlertPropRule as WebhookCodeScanningAlertReopenedPropAlertPropRule, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookCodeScanningAlertReopenedPropAlertPropTool as WebhookCodeScanningAlertReopenedPropAlertPropTool, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookCodeScanningAlertUpdatedAssignment as WebhookCodeScanningAlertUpdatedAssignment, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookCodeScanningAlertUpdatedAssignmentPropAlert as WebhookCodeScanningAlertUpdatedAssignmentPropAlert, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookCodeScanningAlertUpdatedAssignmentPropAlertPropDismissedBy as WebhookCodeScanningAlertUpdatedAssignmentPropAlertPropDismissedBy, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookCodeScanningAlertUpdatedAssignmentPropAlertPropMostRecentInstance as WebhookCodeScanningAlertUpdatedAssignmentPropAlertPropMostRecentInstance, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookCodeScanningAlertUpdatedAssignmentPropAlertPropMostRecentInstancePropLocation as WebhookCodeScanningAlertUpdatedAssignmentPropAlertPropMostRecentInstancePropLocation, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookCodeScanningAlertUpdatedAssignmentPropAlertPropMostRecentInstancePropMessage as WebhookCodeScanningAlertUpdatedAssignmentPropAlertPropMostRecentInstancePropMessage, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookCodeScanningAlertUpdatedAssignmentPropAlertPropRule as WebhookCodeScanningAlertUpdatedAssignmentPropAlertPropRule, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookCodeScanningAlertUpdatedAssignmentPropAlertPropTool as WebhookCodeScanningAlertUpdatedAssignmentPropAlertPropTool, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookCommitCommentCreated as WebhookCommitCommentCreated, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookCommitCommentCreatedPropComment as WebhookCommitCommentCreatedPropComment, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookCommitCommentCreatedPropCommentPropReactions as WebhookCommitCommentCreatedPropCommentPropReactions, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookCommitCommentCreatedPropCommentPropUser as WebhookCommitCommentCreatedPropCommentPropUser, - ) - from githubkit.versions.v2026_03_10.models import WebhookConfig as WebhookConfig - from githubkit.versions.v2026_03_10.models import WebhookCreate as WebhookCreate - from githubkit.versions.v2026_03_10.models import ( - WebhookCustomPropertyCreated as WebhookCustomPropertyCreated, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookCustomPropertyDeleted as WebhookCustomPropertyDeleted, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookCustomPropertyDeletedPropDefinition as WebhookCustomPropertyDeletedPropDefinition, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookCustomPropertyPromotedToEnterprise as WebhookCustomPropertyPromotedToEnterprise, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookCustomPropertyUpdated as WebhookCustomPropertyUpdated, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookCustomPropertyValuesUpdated as WebhookCustomPropertyValuesUpdated, - ) - from githubkit.versions.v2026_03_10.models import WebhookDelete as WebhookDelete - from githubkit.versions.v2026_03_10.models import ( - WebhookDependabotAlertAssigneesChanged as WebhookDependabotAlertAssigneesChanged, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookDependabotAlertAutoDismissed as WebhookDependabotAlertAutoDismissed, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookDependabotAlertAutoReopened as WebhookDependabotAlertAutoReopened, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookDependabotAlertCreated as WebhookDependabotAlertCreated, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookDependabotAlertDismissed as WebhookDependabotAlertDismissed, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookDependabotAlertFixed as WebhookDependabotAlertFixed, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookDependabotAlertReintroduced as WebhookDependabotAlertReintroduced, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookDependabotAlertReopened as WebhookDependabotAlertReopened, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookDeployKeyCreated as WebhookDeployKeyCreated, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookDeployKeyDeleted as WebhookDeployKeyDeleted, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookDeploymentCreated as WebhookDeploymentCreated, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookDeploymentCreatedPropDeployment as WebhookDeploymentCreatedPropDeployment, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookDeploymentCreatedPropDeploymentPropCreator as WebhookDeploymentCreatedPropDeploymentPropCreator, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookDeploymentCreatedPropDeploymentPropPayloadOneof1 as WebhookDeploymentCreatedPropDeploymentPropPayloadOneof1, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookDeploymentCreatedPropDeploymentPropPerformedViaGithubApp as WebhookDeploymentCreatedPropDeploymentPropPerformedViaGithubApp, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookDeploymentCreatedPropDeploymentPropPerformedViaGithubAppPropOwner as WebhookDeploymentCreatedPropDeploymentPropPerformedViaGithubAppPropOwner, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookDeploymentCreatedPropDeploymentPropPerformedViaGithubAppPropPermissions as WebhookDeploymentCreatedPropDeploymentPropPerformedViaGithubAppPropPermissions, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookDeploymentCreatedPropWorkflowRun as WebhookDeploymentCreatedPropWorkflowRun, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookDeploymentCreatedPropWorkflowRunPropActor as WebhookDeploymentCreatedPropWorkflowRunPropActor, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookDeploymentCreatedPropWorkflowRunPropHeadRepository as WebhookDeploymentCreatedPropWorkflowRunPropHeadRepository, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookDeploymentCreatedPropWorkflowRunPropHeadRepositoryPropOwner as WebhookDeploymentCreatedPropWorkflowRunPropHeadRepositoryPropOwner, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookDeploymentCreatedPropWorkflowRunPropPullRequestsItems as WebhookDeploymentCreatedPropWorkflowRunPropPullRequestsItems, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookDeploymentCreatedPropWorkflowRunPropPullRequestsItemsPropBase as WebhookDeploymentCreatedPropWorkflowRunPropPullRequestsItemsPropBase, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookDeploymentCreatedPropWorkflowRunPropPullRequestsItemsPropBasePropRepo as WebhookDeploymentCreatedPropWorkflowRunPropPullRequestsItemsPropBasePropRepo, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookDeploymentCreatedPropWorkflowRunPropPullRequestsItemsPropHead as WebhookDeploymentCreatedPropWorkflowRunPropPullRequestsItemsPropHead, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookDeploymentCreatedPropWorkflowRunPropPullRequestsItemsPropHeadPropRepo as WebhookDeploymentCreatedPropWorkflowRunPropPullRequestsItemsPropHeadPropRepo, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookDeploymentCreatedPropWorkflowRunPropReferencedWorkflowsItems as WebhookDeploymentCreatedPropWorkflowRunPropReferencedWorkflowsItems, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookDeploymentCreatedPropWorkflowRunPropRepository as WebhookDeploymentCreatedPropWorkflowRunPropRepository, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookDeploymentCreatedPropWorkflowRunPropRepositoryPropOwner as WebhookDeploymentCreatedPropWorkflowRunPropRepositoryPropOwner, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookDeploymentCreatedPropWorkflowRunPropTriggeringActor as WebhookDeploymentCreatedPropWorkflowRunPropTriggeringActor, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookDeploymentProtectionRuleRequested as WebhookDeploymentProtectionRuleRequested, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookDeploymentReviewApproved as WebhookDeploymentReviewApproved, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookDeploymentReviewApprovedPropWorkflowJobRunsItems as WebhookDeploymentReviewApprovedPropWorkflowJobRunsItems, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookDeploymentReviewApprovedPropWorkflowRun as WebhookDeploymentReviewApprovedPropWorkflowRun, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookDeploymentReviewApprovedPropWorkflowRunPropActor as WebhookDeploymentReviewApprovedPropWorkflowRunPropActor, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookDeploymentReviewApprovedPropWorkflowRunPropHeadCommit as WebhookDeploymentReviewApprovedPropWorkflowRunPropHeadCommit, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookDeploymentReviewApprovedPropWorkflowRunPropHeadRepository as WebhookDeploymentReviewApprovedPropWorkflowRunPropHeadRepository, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookDeploymentReviewApprovedPropWorkflowRunPropHeadRepositoryPropOwner as WebhookDeploymentReviewApprovedPropWorkflowRunPropHeadRepositoryPropOwner, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookDeploymentReviewApprovedPropWorkflowRunPropPullRequestsItems as WebhookDeploymentReviewApprovedPropWorkflowRunPropPullRequestsItems, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookDeploymentReviewApprovedPropWorkflowRunPropPullRequestsItemsPropBase as WebhookDeploymentReviewApprovedPropWorkflowRunPropPullRequestsItemsPropBase, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookDeploymentReviewApprovedPropWorkflowRunPropPullRequestsItemsPropBasePropRepo as WebhookDeploymentReviewApprovedPropWorkflowRunPropPullRequestsItemsPropBasePropRepo, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookDeploymentReviewApprovedPropWorkflowRunPropPullRequestsItemsPropHead as WebhookDeploymentReviewApprovedPropWorkflowRunPropPullRequestsItemsPropHead, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookDeploymentReviewApprovedPropWorkflowRunPropPullRequestsItemsPropHeadPropRepo as WebhookDeploymentReviewApprovedPropWorkflowRunPropPullRequestsItemsPropHeadPropRepo, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookDeploymentReviewApprovedPropWorkflowRunPropReferencedWorkflowsItems as WebhookDeploymentReviewApprovedPropWorkflowRunPropReferencedWorkflowsItems, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookDeploymentReviewApprovedPropWorkflowRunPropRepository as WebhookDeploymentReviewApprovedPropWorkflowRunPropRepository, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookDeploymentReviewApprovedPropWorkflowRunPropRepositoryPropOwner as WebhookDeploymentReviewApprovedPropWorkflowRunPropRepositoryPropOwner, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookDeploymentReviewApprovedPropWorkflowRunPropTriggeringActor as WebhookDeploymentReviewApprovedPropWorkflowRunPropTriggeringActor, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookDeploymentReviewRejected as WebhookDeploymentReviewRejected, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookDeploymentReviewRejectedPropWorkflowJobRunsItems as WebhookDeploymentReviewRejectedPropWorkflowJobRunsItems, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookDeploymentReviewRejectedPropWorkflowRun as WebhookDeploymentReviewRejectedPropWorkflowRun, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookDeploymentReviewRejectedPropWorkflowRunPropActor as WebhookDeploymentReviewRejectedPropWorkflowRunPropActor, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookDeploymentReviewRejectedPropWorkflowRunPropHeadCommit as WebhookDeploymentReviewRejectedPropWorkflowRunPropHeadCommit, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookDeploymentReviewRejectedPropWorkflowRunPropHeadRepository as WebhookDeploymentReviewRejectedPropWorkflowRunPropHeadRepository, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookDeploymentReviewRejectedPropWorkflowRunPropHeadRepositoryPropOwner as WebhookDeploymentReviewRejectedPropWorkflowRunPropHeadRepositoryPropOwner, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookDeploymentReviewRejectedPropWorkflowRunPropPullRequestsItems as WebhookDeploymentReviewRejectedPropWorkflowRunPropPullRequestsItems, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookDeploymentReviewRejectedPropWorkflowRunPropPullRequestsItemsPropBase as WebhookDeploymentReviewRejectedPropWorkflowRunPropPullRequestsItemsPropBase, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookDeploymentReviewRejectedPropWorkflowRunPropPullRequestsItemsPropBasePropRepo as WebhookDeploymentReviewRejectedPropWorkflowRunPropPullRequestsItemsPropBasePropRepo, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookDeploymentReviewRejectedPropWorkflowRunPropPullRequestsItemsPropHead as WebhookDeploymentReviewRejectedPropWorkflowRunPropPullRequestsItemsPropHead, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookDeploymentReviewRejectedPropWorkflowRunPropPullRequestsItemsPropHeadPropRepo as WebhookDeploymentReviewRejectedPropWorkflowRunPropPullRequestsItemsPropHeadPropRepo, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookDeploymentReviewRejectedPropWorkflowRunPropReferencedWorkflowsItems as WebhookDeploymentReviewRejectedPropWorkflowRunPropReferencedWorkflowsItems, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookDeploymentReviewRejectedPropWorkflowRunPropRepository as WebhookDeploymentReviewRejectedPropWorkflowRunPropRepository, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookDeploymentReviewRejectedPropWorkflowRunPropRepositoryPropOwner as WebhookDeploymentReviewRejectedPropWorkflowRunPropRepositoryPropOwner, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookDeploymentReviewRejectedPropWorkflowRunPropTriggeringActor as WebhookDeploymentReviewRejectedPropWorkflowRunPropTriggeringActor, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookDeploymentReviewRequested as WebhookDeploymentReviewRequested, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookDeploymentReviewRequestedPropReviewersItems as WebhookDeploymentReviewRequestedPropReviewersItems, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookDeploymentReviewRequestedPropReviewersItemsPropReviewer as WebhookDeploymentReviewRequestedPropReviewersItemsPropReviewer, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookDeploymentReviewRequestedPropWorkflowJobRun as WebhookDeploymentReviewRequestedPropWorkflowJobRun, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookDeploymentReviewRequestedPropWorkflowRun as WebhookDeploymentReviewRequestedPropWorkflowRun, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookDeploymentReviewRequestedPropWorkflowRunPropActor as WebhookDeploymentReviewRequestedPropWorkflowRunPropActor, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookDeploymentReviewRequestedPropWorkflowRunPropHeadCommit as WebhookDeploymentReviewRequestedPropWorkflowRunPropHeadCommit, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookDeploymentReviewRequestedPropWorkflowRunPropHeadRepository as WebhookDeploymentReviewRequestedPropWorkflowRunPropHeadRepository, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookDeploymentReviewRequestedPropWorkflowRunPropHeadRepositoryPropOwner as WebhookDeploymentReviewRequestedPropWorkflowRunPropHeadRepositoryPropOwner, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookDeploymentReviewRequestedPropWorkflowRunPropPullRequestsItems as WebhookDeploymentReviewRequestedPropWorkflowRunPropPullRequestsItems, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookDeploymentReviewRequestedPropWorkflowRunPropPullRequestsItemsPropBase as WebhookDeploymentReviewRequestedPropWorkflowRunPropPullRequestsItemsPropBase, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookDeploymentReviewRequestedPropWorkflowRunPropPullRequestsItemsPropBasePropRepo as WebhookDeploymentReviewRequestedPropWorkflowRunPropPullRequestsItemsPropBasePropRepo, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookDeploymentReviewRequestedPropWorkflowRunPropPullRequestsItemsPropHead as WebhookDeploymentReviewRequestedPropWorkflowRunPropPullRequestsItemsPropHead, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookDeploymentReviewRequestedPropWorkflowRunPropPullRequestsItemsPropHeadPropRepo as WebhookDeploymentReviewRequestedPropWorkflowRunPropPullRequestsItemsPropHeadPropRepo, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookDeploymentReviewRequestedPropWorkflowRunPropReferencedWorkflowsItems as WebhookDeploymentReviewRequestedPropWorkflowRunPropReferencedWorkflowsItems, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookDeploymentReviewRequestedPropWorkflowRunPropRepository as WebhookDeploymentReviewRequestedPropWorkflowRunPropRepository, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookDeploymentReviewRequestedPropWorkflowRunPropRepositoryPropOwner as WebhookDeploymentReviewRequestedPropWorkflowRunPropRepositoryPropOwner, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookDeploymentReviewRequestedPropWorkflowRunPropTriggeringActor as WebhookDeploymentReviewRequestedPropWorkflowRunPropTriggeringActor, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookDeploymentStatusCreated as WebhookDeploymentStatusCreated, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookDeploymentStatusCreatedPropCheckRun as WebhookDeploymentStatusCreatedPropCheckRun, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookDeploymentStatusCreatedPropDeployment as WebhookDeploymentStatusCreatedPropDeployment, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookDeploymentStatusCreatedPropDeploymentPropCreator as WebhookDeploymentStatusCreatedPropDeploymentPropCreator, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookDeploymentStatusCreatedPropDeploymentPropPayloadOneof1 as WebhookDeploymentStatusCreatedPropDeploymentPropPayloadOneof1, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookDeploymentStatusCreatedPropDeploymentPropPerformedViaGithubApp as WebhookDeploymentStatusCreatedPropDeploymentPropPerformedViaGithubApp, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookDeploymentStatusCreatedPropDeploymentPropPerformedViaGithubAppPropOwner as WebhookDeploymentStatusCreatedPropDeploymentPropPerformedViaGithubAppPropOwner, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookDeploymentStatusCreatedPropDeploymentPropPerformedViaGithubAppPropPermissions as WebhookDeploymentStatusCreatedPropDeploymentPropPerformedViaGithubAppPropPermissions, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookDeploymentStatusCreatedPropDeploymentStatus as WebhookDeploymentStatusCreatedPropDeploymentStatus, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookDeploymentStatusCreatedPropDeploymentStatusPropCreator as WebhookDeploymentStatusCreatedPropDeploymentStatusPropCreator, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookDeploymentStatusCreatedPropDeploymentStatusPropPerformedViaGithubApp as WebhookDeploymentStatusCreatedPropDeploymentStatusPropPerformedViaGithubApp, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookDeploymentStatusCreatedPropDeploymentStatusPropPerformedViaGithubAppPropOwner as WebhookDeploymentStatusCreatedPropDeploymentStatusPropPerformedViaGithubAppPropOwner, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookDeploymentStatusCreatedPropDeploymentStatusPropPerformedViaGithubAppPropPermissions as WebhookDeploymentStatusCreatedPropDeploymentStatusPropPerformedViaGithubAppPropPermissions, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookDeploymentStatusCreatedPropWorkflowRun as WebhookDeploymentStatusCreatedPropWorkflowRun, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookDeploymentStatusCreatedPropWorkflowRunPropActor as WebhookDeploymentStatusCreatedPropWorkflowRunPropActor, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookDeploymentStatusCreatedPropWorkflowRunPropHeadRepository as WebhookDeploymentStatusCreatedPropWorkflowRunPropHeadRepository, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookDeploymentStatusCreatedPropWorkflowRunPropHeadRepositoryPropOwner as WebhookDeploymentStatusCreatedPropWorkflowRunPropHeadRepositoryPropOwner, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookDeploymentStatusCreatedPropWorkflowRunPropPullRequestsItems as WebhookDeploymentStatusCreatedPropWorkflowRunPropPullRequestsItems, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookDeploymentStatusCreatedPropWorkflowRunPropPullRequestsItemsPropBase as WebhookDeploymentStatusCreatedPropWorkflowRunPropPullRequestsItemsPropBase, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookDeploymentStatusCreatedPropWorkflowRunPropPullRequestsItemsPropBasePropRepo as WebhookDeploymentStatusCreatedPropWorkflowRunPropPullRequestsItemsPropBasePropRepo, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookDeploymentStatusCreatedPropWorkflowRunPropPullRequestsItemsPropHead as WebhookDeploymentStatusCreatedPropWorkflowRunPropPullRequestsItemsPropHead, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookDeploymentStatusCreatedPropWorkflowRunPropPullRequestsItemsPropHeadPropRepo as WebhookDeploymentStatusCreatedPropWorkflowRunPropPullRequestsItemsPropHeadPropRepo, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookDeploymentStatusCreatedPropWorkflowRunPropReferencedWorkflowsItems as WebhookDeploymentStatusCreatedPropWorkflowRunPropReferencedWorkflowsItems, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookDeploymentStatusCreatedPropWorkflowRunPropRepository as WebhookDeploymentStatusCreatedPropWorkflowRunPropRepository, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookDeploymentStatusCreatedPropWorkflowRunPropRepositoryPropOwner as WebhookDeploymentStatusCreatedPropWorkflowRunPropRepositoryPropOwner, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookDeploymentStatusCreatedPropWorkflowRunPropTriggeringActor as WebhookDeploymentStatusCreatedPropWorkflowRunPropTriggeringActor, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookDiscussionAnswered as WebhookDiscussionAnswered, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookDiscussionCategoryChanged as WebhookDiscussionCategoryChanged, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookDiscussionCategoryChangedPropChanges as WebhookDiscussionCategoryChangedPropChanges, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookDiscussionCategoryChangedPropChangesPropCategory as WebhookDiscussionCategoryChangedPropChangesPropCategory, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookDiscussionCategoryChangedPropChangesPropCategoryPropFrom as WebhookDiscussionCategoryChangedPropChangesPropCategoryPropFrom, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookDiscussionClosed as WebhookDiscussionClosed, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookDiscussionCommentCreated as WebhookDiscussionCommentCreated, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookDiscussionCommentDeleted as WebhookDiscussionCommentDeleted, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookDiscussionCommentEdited as WebhookDiscussionCommentEdited, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookDiscussionCommentEditedPropChanges as WebhookDiscussionCommentEditedPropChanges, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookDiscussionCommentEditedPropChangesPropBody as WebhookDiscussionCommentEditedPropChangesPropBody, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookDiscussionCreated as WebhookDiscussionCreated, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookDiscussionDeleted as WebhookDiscussionDeleted, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookDiscussionEdited as WebhookDiscussionEdited, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookDiscussionEditedPropChanges as WebhookDiscussionEditedPropChanges, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookDiscussionEditedPropChangesPropBody as WebhookDiscussionEditedPropChangesPropBody, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookDiscussionEditedPropChangesPropTitle as WebhookDiscussionEditedPropChangesPropTitle, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookDiscussionLabeled as WebhookDiscussionLabeled, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookDiscussionLocked as WebhookDiscussionLocked, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookDiscussionPinned as WebhookDiscussionPinned, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookDiscussionReopened as WebhookDiscussionReopened, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookDiscussionTransferred as WebhookDiscussionTransferred, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookDiscussionTransferredPropChanges as WebhookDiscussionTransferredPropChanges, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookDiscussionUnanswered as WebhookDiscussionUnanswered, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookDiscussionUnlabeled as WebhookDiscussionUnlabeled, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookDiscussionUnlocked as WebhookDiscussionUnlocked, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookDiscussionUnpinned as WebhookDiscussionUnpinned, - ) - from githubkit.versions.v2026_03_10.models import WebhookFork as WebhookFork - from githubkit.versions.v2026_03_10.models import ( - WebhookForkPropForkee as WebhookForkPropForkee, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookForkPropForkeeAllof0 as WebhookForkPropForkeeAllof0, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookForkPropForkeeAllof0PropLicense as WebhookForkPropForkeeAllof0PropLicense, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookForkPropForkeeAllof0PropOwner as WebhookForkPropForkeeAllof0PropOwner, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookForkPropForkeeAllof0PropPermissions as WebhookForkPropForkeeAllof0PropPermissions, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookForkPropForkeeAllof1 as WebhookForkPropForkeeAllof1, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookForkPropForkeeAllof1PropLicense as WebhookForkPropForkeeAllof1PropLicense, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookForkPropForkeeAllof1PropOwner as WebhookForkPropForkeeAllof1PropOwner, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookForkPropForkeeMergedLicense as WebhookForkPropForkeeMergedLicense, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookForkPropForkeeMergedOwner as WebhookForkPropForkeeMergedOwner, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookGithubAppAuthorizationRevoked as WebhookGithubAppAuthorizationRevoked, - ) - from githubkit.versions.v2026_03_10.models import WebhookGollum as WebhookGollum - from githubkit.versions.v2026_03_10.models import ( - WebhookGollumPropPagesItems as WebhookGollumPropPagesItems, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookInstallationCreated as WebhookInstallationCreated, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookInstallationDeleted as WebhookInstallationDeleted, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookInstallationNewPermissionsAccepted as WebhookInstallationNewPermissionsAccepted, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookInstallationRepositoriesAdded as WebhookInstallationRepositoriesAdded, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookInstallationRepositoriesAddedPropRepositoriesRemovedItems as WebhookInstallationRepositoriesAddedPropRepositoriesRemovedItems, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookInstallationRepositoriesRemoved as WebhookInstallationRepositoriesRemoved, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookInstallationRepositoriesRemovedPropRepositoriesRemovedItems as WebhookInstallationRepositoriesRemovedPropRepositoriesRemovedItems, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookInstallationSuspend as WebhookInstallationSuspend, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookInstallationTargetRenamed as WebhookInstallationTargetRenamed, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookInstallationTargetRenamedPropAccount as WebhookInstallationTargetRenamedPropAccount, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookInstallationTargetRenamedPropChanges as WebhookInstallationTargetRenamedPropChanges, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookInstallationTargetRenamedPropChangesPropLogin as WebhookInstallationTargetRenamedPropChangesPropLogin, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookInstallationTargetRenamedPropChangesPropSlug as WebhookInstallationTargetRenamedPropChangesPropSlug, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookInstallationUnsuspend as WebhookInstallationUnsuspend, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssueCommentCreated as WebhookIssueCommentCreated, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssueCommentCreatedPropComment as WebhookIssueCommentCreatedPropComment, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssueCommentCreatedPropCommentPropReactions as WebhookIssueCommentCreatedPropCommentPropReactions, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssueCommentCreatedPropCommentPropUser as WebhookIssueCommentCreatedPropCommentPropUser, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssueCommentCreatedPropIssue as WebhookIssueCommentCreatedPropIssue, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssueCommentCreatedPropIssueAllof0 as WebhookIssueCommentCreatedPropIssueAllof0, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssueCommentCreatedPropIssueAllof0PropAssignee as WebhookIssueCommentCreatedPropIssueAllof0PropAssignee, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssueCommentCreatedPropIssueAllof0PropAssigneesItems as WebhookIssueCommentCreatedPropIssueAllof0PropAssigneesItems, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssueCommentCreatedPropIssueAllof0PropLabelsItems as WebhookIssueCommentCreatedPropIssueAllof0PropLabelsItems, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssueCommentCreatedPropIssueAllof0PropMilestone as WebhookIssueCommentCreatedPropIssueAllof0PropMilestone, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssueCommentCreatedPropIssueAllof0PropMilestonePropCreator as WebhookIssueCommentCreatedPropIssueAllof0PropMilestonePropCreator, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssueCommentCreatedPropIssueAllof0PropPerformedViaGithubApp as WebhookIssueCommentCreatedPropIssueAllof0PropPerformedViaGithubApp, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssueCommentCreatedPropIssueAllof0PropPerformedViaGithubAppPropOwner as WebhookIssueCommentCreatedPropIssueAllof0PropPerformedViaGithubAppPropOwner, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssueCommentCreatedPropIssueAllof0PropPerformedViaGithubAppPropPermissions as WebhookIssueCommentCreatedPropIssueAllof0PropPerformedViaGithubAppPropPermissions, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssueCommentCreatedPropIssueAllof0PropPullRequest as WebhookIssueCommentCreatedPropIssueAllof0PropPullRequest, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssueCommentCreatedPropIssueAllof0PropReactions as WebhookIssueCommentCreatedPropIssueAllof0PropReactions, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssueCommentCreatedPropIssueAllof0PropUser as WebhookIssueCommentCreatedPropIssueAllof0PropUser, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssueCommentCreatedPropIssueAllof1 as WebhookIssueCommentCreatedPropIssueAllof1, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssueCommentCreatedPropIssueAllof1PropAssignee as WebhookIssueCommentCreatedPropIssueAllof1PropAssignee, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssueCommentCreatedPropIssueAllof1PropAssigneesItems as WebhookIssueCommentCreatedPropIssueAllof1PropAssigneesItems, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssueCommentCreatedPropIssueAllof1PropLabelsItems as WebhookIssueCommentCreatedPropIssueAllof1PropLabelsItems, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssueCommentCreatedPropIssueAllof1PropMilestone as WebhookIssueCommentCreatedPropIssueAllof1PropMilestone, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssueCommentCreatedPropIssueAllof1PropPerformedViaGithubApp as WebhookIssueCommentCreatedPropIssueAllof1PropPerformedViaGithubApp, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssueCommentCreatedPropIssueAllof1PropReactions as WebhookIssueCommentCreatedPropIssueAllof1PropReactions, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssueCommentCreatedPropIssueAllof1PropUser as WebhookIssueCommentCreatedPropIssueAllof1PropUser, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssueCommentCreatedPropIssueMergedAssignees as WebhookIssueCommentCreatedPropIssueMergedAssignees, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssueCommentCreatedPropIssueMergedMilestone as WebhookIssueCommentCreatedPropIssueMergedMilestone, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssueCommentCreatedPropIssueMergedPerformedViaGithubApp as WebhookIssueCommentCreatedPropIssueMergedPerformedViaGithubApp, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssueCommentCreatedPropIssueMergedReactions as WebhookIssueCommentCreatedPropIssueMergedReactions, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssueCommentCreatedPropIssueMergedUser as WebhookIssueCommentCreatedPropIssueMergedUser, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssueCommentDeleted as WebhookIssueCommentDeleted, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssueCommentDeletedPropIssue as WebhookIssueCommentDeletedPropIssue, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssueCommentDeletedPropIssueAllof0 as WebhookIssueCommentDeletedPropIssueAllof0, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssueCommentDeletedPropIssueAllof0PropAssignee as WebhookIssueCommentDeletedPropIssueAllof0PropAssignee, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssueCommentDeletedPropIssueAllof0PropAssigneesItems as WebhookIssueCommentDeletedPropIssueAllof0PropAssigneesItems, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssueCommentDeletedPropIssueAllof0PropLabelsItems as WebhookIssueCommentDeletedPropIssueAllof0PropLabelsItems, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssueCommentDeletedPropIssueAllof0PropMilestone as WebhookIssueCommentDeletedPropIssueAllof0PropMilestone, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssueCommentDeletedPropIssueAllof0PropMilestonePropCreator as WebhookIssueCommentDeletedPropIssueAllof0PropMilestonePropCreator, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssueCommentDeletedPropIssueAllof0PropPerformedViaGithubApp as WebhookIssueCommentDeletedPropIssueAllof0PropPerformedViaGithubApp, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssueCommentDeletedPropIssueAllof0PropPerformedViaGithubAppPropOwner as WebhookIssueCommentDeletedPropIssueAllof0PropPerformedViaGithubAppPropOwner, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssueCommentDeletedPropIssueAllof0PropPerformedViaGithubAppPropPermissions as WebhookIssueCommentDeletedPropIssueAllof0PropPerformedViaGithubAppPropPermissions, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssueCommentDeletedPropIssueAllof0PropPullRequest as WebhookIssueCommentDeletedPropIssueAllof0PropPullRequest, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssueCommentDeletedPropIssueAllof0PropReactions as WebhookIssueCommentDeletedPropIssueAllof0PropReactions, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssueCommentDeletedPropIssueAllof0PropUser as WebhookIssueCommentDeletedPropIssueAllof0PropUser, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssueCommentDeletedPropIssueAllof1 as WebhookIssueCommentDeletedPropIssueAllof1, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssueCommentDeletedPropIssueAllof1PropAssignee as WebhookIssueCommentDeletedPropIssueAllof1PropAssignee, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssueCommentDeletedPropIssueAllof1PropAssigneesItems as WebhookIssueCommentDeletedPropIssueAllof1PropAssigneesItems, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssueCommentDeletedPropIssueAllof1PropLabelsItems as WebhookIssueCommentDeletedPropIssueAllof1PropLabelsItems, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssueCommentDeletedPropIssueAllof1PropMilestone as WebhookIssueCommentDeletedPropIssueAllof1PropMilestone, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssueCommentDeletedPropIssueAllof1PropPerformedViaGithubApp as WebhookIssueCommentDeletedPropIssueAllof1PropPerformedViaGithubApp, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssueCommentDeletedPropIssueAllof1PropReactions as WebhookIssueCommentDeletedPropIssueAllof1PropReactions, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssueCommentDeletedPropIssueAllof1PropUser as WebhookIssueCommentDeletedPropIssueAllof1PropUser, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssueCommentDeletedPropIssueMergedAssignees as WebhookIssueCommentDeletedPropIssueMergedAssignees, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssueCommentDeletedPropIssueMergedMilestone as WebhookIssueCommentDeletedPropIssueMergedMilestone, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssueCommentDeletedPropIssueMergedPerformedViaGithubApp as WebhookIssueCommentDeletedPropIssueMergedPerformedViaGithubApp, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssueCommentDeletedPropIssueMergedReactions as WebhookIssueCommentDeletedPropIssueMergedReactions, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssueCommentDeletedPropIssueMergedUser as WebhookIssueCommentDeletedPropIssueMergedUser, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssueCommentEdited as WebhookIssueCommentEdited, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssueCommentEditedPropIssue as WebhookIssueCommentEditedPropIssue, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssueCommentEditedPropIssueAllof0 as WebhookIssueCommentEditedPropIssueAllof0, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssueCommentEditedPropIssueAllof0PropAssignee as WebhookIssueCommentEditedPropIssueAllof0PropAssignee, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssueCommentEditedPropIssueAllof0PropAssigneesItems as WebhookIssueCommentEditedPropIssueAllof0PropAssigneesItems, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssueCommentEditedPropIssueAllof0PropLabelsItems as WebhookIssueCommentEditedPropIssueAllof0PropLabelsItems, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssueCommentEditedPropIssueAllof0PropMilestone as WebhookIssueCommentEditedPropIssueAllof0PropMilestone, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssueCommentEditedPropIssueAllof0PropMilestonePropCreator as WebhookIssueCommentEditedPropIssueAllof0PropMilestonePropCreator, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssueCommentEditedPropIssueAllof0PropPerformedViaGithubApp as WebhookIssueCommentEditedPropIssueAllof0PropPerformedViaGithubApp, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssueCommentEditedPropIssueAllof0PropPerformedViaGithubAppPropOwner as WebhookIssueCommentEditedPropIssueAllof0PropPerformedViaGithubAppPropOwner, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssueCommentEditedPropIssueAllof0PropPerformedViaGithubAppPropPermissions as WebhookIssueCommentEditedPropIssueAllof0PropPerformedViaGithubAppPropPermissions, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssueCommentEditedPropIssueAllof0PropPullRequest as WebhookIssueCommentEditedPropIssueAllof0PropPullRequest, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssueCommentEditedPropIssueAllof0PropReactions as WebhookIssueCommentEditedPropIssueAllof0PropReactions, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssueCommentEditedPropIssueAllof0PropUser as WebhookIssueCommentEditedPropIssueAllof0PropUser, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssueCommentEditedPropIssueAllof1 as WebhookIssueCommentEditedPropIssueAllof1, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssueCommentEditedPropIssueAllof1PropAssignee as WebhookIssueCommentEditedPropIssueAllof1PropAssignee, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssueCommentEditedPropIssueAllof1PropAssigneesItems as WebhookIssueCommentEditedPropIssueAllof1PropAssigneesItems, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssueCommentEditedPropIssueAllof1PropLabelsItems as WebhookIssueCommentEditedPropIssueAllof1PropLabelsItems, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssueCommentEditedPropIssueAllof1PropMilestone as WebhookIssueCommentEditedPropIssueAllof1PropMilestone, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssueCommentEditedPropIssueAllof1PropPerformedViaGithubApp as WebhookIssueCommentEditedPropIssueAllof1PropPerformedViaGithubApp, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssueCommentEditedPropIssueAllof1PropReactions as WebhookIssueCommentEditedPropIssueAllof1PropReactions, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssueCommentEditedPropIssueAllof1PropUser as WebhookIssueCommentEditedPropIssueAllof1PropUser, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssueCommentEditedPropIssueMergedAssignees as WebhookIssueCommentEditedPropIssueMergedAssignees, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssueCommentEditedPropIssueMergedMilestone as WebhookIssueCommentEditedPropIssueMergedMilestone, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssueCommentEditedPropIssueMergedPerformedViaGithubApp as WebhookIssueCommentEditedPropIssueMergedPerformedViaGithubApp, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssueCommentEditedPropIssueMergedReactions as WebhookIssueCommentEditedPropIssueMergedReactions, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssueCommentEditedPropIssueMergedUser as WebhookIssueCommentEditedPropIssueMergedUser, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssueCommentPinned as WebhookIssueCommentPinned, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssueCommentPinnedPropIssue as WebhookIssueCommentPinnedPropIssue, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssueCommentPinnedPropIssueAllof0 as WebhookIssueCommentPinnedPropIssueAllof0, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssueCommentPinnedPropIssueAllof0PropAssignee as WebhookIssueCommentPinnedPropIssueAllof0PropAssignee, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssueCommentPinnedPropIssueAllof0PropAssigneesItems as WebhookIssueCommentPinnedPropIssueAllof0PropAssigneesItems, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssueCommentPinnedPropIssueAllof0PropLabelsItems as WebhookIssueCommentPinnedPropIssueAllof0PropLabelsItems, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssueCommentPinnedPropIssueAllof0PropMilestone as WebhookIssueCommentPinnedPropIssueAllof0PropMilestone, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssueCommentPinnedPropIssueAllof0PropMilestonePropCreator as WebhookIssueCommentPinnedPropIssueAllof0PropMilestonePropCreator, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssueCommentPinnedPropIssueAllof0PropPerformedViaGithubApp as WebhookIssueCommentPinnedPropIssueAllof0PropPerformedViaGithubApp, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssueCommentPinnedPropIssueAllof0PropPerformedViaGithubAppPropOwner as WebhookIssueCommentPinnedPropIssueAllof0PropPerformedViaGithubAppPropOwner, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssueCommentPinnedPropIssueAllof0PropPerformedViaGithubAppPropPermissions as WebhookIssueCommentPinnedPropIssueAllof0PropPerformedViaGithubAppPropPermissions, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssueCommentPinnedPropIssueAllof0PropPullRequest as WebhookIssueCommentPinnedPropIssueAllof0PropPullRequest, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssueCommentPinnedPropIssueAllof0PropReactions as WebhookIssueCommentPinnedPropIssueAllof0PropReactions, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssueCommentPinnedPropIssueAllof0PropUser as WebhookIssueCommentPinnedPropIssueAllof0PropUser, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssueCommentPinnedPropIssueAllof1 as WebhookIssueCommentPinnedPropIssueAllof1, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssueCommentPinnedPropIssueAllof1PropAssignee as WebhookIssueCommentPinnedPropIssueAllof1PropAssignee, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssueCommentPinnedPropIssueAllof1PropAssigneesItems as WebhookIssueCommentPinnedPropIssueAllof1PropAssigneesItems, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssueCommentPinnedPropIssueAllof1PropLabelsItems as WebhookIssueCommentPinnedPropIssueAllof1PropLabelsItems, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssueCommentPinnedPropIssueAllof1PropMilestone as WebhookIssueCommentPinnedPropIssueAllof1PropMilestone, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssueCommentPinnedPropIssueAllof1PropPerformedViaGithubApp as WebhookIssueCommentPinnedPropIssueAllof1PropPerformedViaGithubApp, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssueCommentPinnedPropIssueAllof1PropReactions as WebhookIssueCommentPinnedPropIssueAllof1PropReactions, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssueCommentPinnedPropIssueAllof1PropUser as WebhookIssueCommentPinnedPropIssueAllof1PropUser, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssueCommentPinnedPropIssueMergedAssignees as WebhookIssueCommentPinnedPropIssueMergedAssignees, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssueCommentPinnedPropIssueMergedMilestone as WebhookIssueCommentPinnedPropIssueMergedMilestone, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssueCommentPinnedPropIssueMergedPerformedViaGithubApp as WebhookIssueCommentPinnedPropIssueMergedPerformedViaGithubApp, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssueCommentPinnedPropIssueMergedReactions as WebhookIssueCommentPinnedPropIssueMergedReactions, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssueCommentPinnedPropIssueMergedUser as WebhookIssueCommentPinnedPropIssueMergedUser, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssueCommentUnpinned as WebhookIssueCommentUnpinned, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssueCommentUnpinnedPropIssue as WebhookIssueCommentUnpinnedPropIssue, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssueCommentUnpinnedPropIssueAllof0 as WebhookIssueCommentUnpinnedPropIssueAllof0, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssueCommentUnpinnedPropIssueAllof0PropAssignee as WebhookIssueCommentUnpinnedPropIssueAllof0PropAssignee, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssueCommentUnpinnedPropIssueAllof0PropAssigneesItems as WebhookIssueCommentUnpinnedPropIssueAllof0PropAssigneesItems, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssueCommentUnpinnedPropIssueAllof0PropLabelsItems as WebhookIssueCommentUnpinnedPropIssueAllof0PropLabelsItems, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssueCommentUnpinnedPropIssueAllof0PropMilestone as WebhookIssueCommentUnpinnedPropIssueAllof0PropMilestone, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssueCommentUnpinnedPropIssueAllof0PropMilestonePropCreator as WebhookIssueCommentUnpinnedPropIssueAllof0PropMilestonePropCreator, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssueCommentUnpinnedPropIssueAllof0PropPerformedViaGithubApp as WebhookIssueCommentUnpinnedPropIssueAllof0PropPerformedViaGithubApp, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssueCommentUnpinnedPropIssueAllof0PropPerformedViaGithubAppPropOwner as WebhookIssueCommentUnpinnedPropIssueAllof0PropPerformedViaGithubAppPropOwner, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssueCommentUnpinnedPropIssueAllof0PropPerformedViaGithubAppPropPermissions as WebhookIssueCommentUnpinnedPropIssueAllof0PropPerformedViaGithubAppPropPermissions, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssueCommentUnpinnedPropIssueAllof0PropPullRequest as WebhookIssueCommentUnpinnedPropIssueAllof0PropPullRequest, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssueCommentUnpinnedPropIssueAllof0PropReactions as WebhookIssueCommentUnpinnedPropIssueAllof0PropReactions, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssueCommentUnpinnedPropIssueAllof0PropUser as WebhookIssueCommentUnpinnedPropIssueAllof0PropUser, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssueCommentUnpinnedPropIssueAllof1 as WebhookIssueCommentUnpinnedPropIssueAllof1, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssueCommentUnpinnedPropIssueAllof1PropAssignee as WebhookIssueCommentUnpinnedPropIssueAllof1PropAssignee, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssueCommentUnpinnedPropIssueAllof1PropAssigneesItems as WebhookIssueCommentUnpinnedPropIssueAllof1PropAssigneesItems, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssueCommentUnpinnedPropIssueAllof1PropLabelsItems as WebhookIssueCommentUnpinnedPropIssueAllof1PropLabelsItems, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssueCommentUnpinnedPropIssueAllof1PropMilestone as WebhookIssueCommentUnpinnedPropIssueAllof1PropMilestone, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssueCommentUnpinnedPropIssueAllof1PropPerformedViaGithubApp as WebhookIssueCommentUnpinnedPropIssueAllof1PropPerformedViaGithubApp, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssueCommentUnpinnedPropIssueAllof1PropReactions as WebhookIssueCommentUnpinnedPropIssueAllof1PropReactions, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssueCommentUnpinnedPropIssueAllof1PropUser as WebhookIssueCommentUnpinnedPropIssueAllof1PropUser, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssueCommentUnpinnedPropIssueMergedAssignees as WebhookIssueCommentUnpinnedPropIssueMergedAssignees, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssueCommentUnpinnedPropIssueMergedMilestone as WebhookIssueCommentUnpinnedPropIssueMergedMilestone, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssueCommentUnpinnedPropIssueMergedPerformedViaGithubApp as WebhookIssueCommentUnpinnedPropIssueMergedPerformedViaGithubApp, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssueCommentUnpinnedPropIssueMergedReactions as WebhookIssueCommentUnpinnedPropIssueMergedReactions, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssueCommentUnpinnedPropIssueMergedUser as WebhookIssueCommentUnpinnedPropIssueMergedUser, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssueDependenciesBlockedByAdded as WebhookIssueDependenciesBlockedByAdded, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssueDependenciesBlockedByRemoved as WebhookIssueDependenciesBlockedByRemoved, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssueDependenciesBlockingAdded as WebhookIssueDependenciesBlockingAdded, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssueDependenciesBlockingRemoved as WebhookIssueDependenciesBlockingRemoved, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssuesAssigned as WebhookIssuesAssigned, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssuesClosed as WebhookIssuesClosed, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssuesClosedPropIssue as WebhookIssuesClosedPropIssue, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssuesClosedPropIssueAllof0 as WebhookIssuesClosedPropIssueAllof0, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssuesClosedPropIssueAllof0PropAssignee as WebhookIssuesClosedPropIssueAllof0PropAssignee, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssuesClosedPropIssueAllof0PropAssigneesItems as WebhookIssuesClosedPropIssueAllof0PropAssigneesItems, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssuesClosedPropIssueAllof0PropLabelsItems as WebhookIssuesClosedPropIssueAllof0PropLabelsItems, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssuesClosedPropIssueAllof0PropMilestone as WebhookIssuesClosedPropIssueAllof0PropMilestone, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssuesClosedPropIssueAllof0PropMilestonePropCreator as WebhookIssuesClosedPropIssueAllof0PropMilestonePropCreator, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssuesClosedPropIssueAllof0PropPerformedViaGithubApp as WebhookIssuesClosedPropIssueAllof0PropPerformedViaGithubApp, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssuesClosedPropIssueAllof0PropPerformedViaGithubAppPropOwner as WebhookIssuesClosedPropIssueAllof0PropPerformedViaGithubAppPropOwner, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssuesClosedPropIssueAllof0PropPerformedViaGithubAppPropPermissions as WebhookIssuesClosedPropIssueAllof0PropPerformedViaGithubAppPropPermissions, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssuesClosedPropIssueAllof0PropPullRequest as WebhookIssuesClosedPropIssueAllof0PropPullRequest, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssuesClosedPropIssueAllof0PropReactions as WebhookIssuesClosedPropIssueAllof0PropReactions, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssuesClosedPropIssueAllof0PropUser as WebhookIssuesClosedPropIssueAllof0PropUser, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssuesClosedPropIssueAllof1 as WebhookIssuesClosedPropIssueAllof1, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssuesClosedPropIssueAllof1PropAssignee as WebhookIssuesClosedPropIssueAllof1PropAssignee, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssuesClosedPropIssueAllof1PropAssigneesItems as WebhookIssuesClosedPropIssueAllof1PropAssigneesItems, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssuesClosedPropIssueAllof1PropLabelsItems as WebhookIssuesClosedPropIssueAllof1PropLabelsItems, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssuesClosedPropIssueAllof1PropMilestone as WebhookIssuesClosedPropIssueAllof1PropMilestone, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssuesClosedPropIssueAllof1PropPerformedViaGithubApp as WebhookIssuesClosedPropIssueAllof1PropPerformedViaGithubApp, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssuesClosedPropIssueAllof1PropReactions as WebhookIssuesClosedPropIssueAllof1PropReactions, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssuesClosedPropIssueAllof1PropUser as WebhookIssuesClosedPropIssueAllof1PropUser, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssuesClosedPropIssueMergedAssignee as WebhookIssuesClosedPropIssueMergedAssignee, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssuesClosedPropIssueMergedAssignees as WebhookIssuesClosedPropIssueMergedAssignees, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssuesClosedPropIssueMergedLabels as WebhookIssuesClosedPropIssueMergedLabels, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssuesClosedPropIssueMergedMilestone as WebhookIssuesClosedPropIssueMergedMilestone, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssuesClosedPropIssueMergedPerformedViaGithubApp as WebhookIssuesClosedPropIssueMergedPerformedViaGithubApp, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssuesClosedPropIssueMergedReactions as WebhookIssuesClosedPropIssueMergedReactions, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssuesClosedPropIssueMergedUser as WebhookIssuesClosedPropIssueMergedUser, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssuesDeleted as WebhookIssuesDeleted, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssuesDeletedPropIssue as WebhookIssuesDeletedPropIssue, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssuesDeletedPropIssuePropAssignee as WebhookIssuesDeletedPropIssuePropAssignee, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssuesDeletedPropIssuePropAssigneesItems as WebhookIssuesDeletedPropIssuePropAssigneesItems, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssuesDeletedPropIssuePropLabelsItems as WebhookIssuesDeletedPropIssuePropLabelsItems, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssuesDeletedPropIssuePropMilestone as WebhookIssuesDeletedPropIssuePropMilestone, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssuesDeletedPropIssuePropMilestonePropCreator as WebhookIssuesDeletedPropIssuePropMilestonePropCreator, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssuesDeletedPropIssuePropPerformedViaGithubApp as WebhookIssuesDeletedPropIssuePropPerformedViaGithubApp, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssuesDeletedPropIssuePropPerformedViaGithubAppPropOwner as WebhookIssuesDeletedPropIssuePropPerformedViaGithubAppPropOwner, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssuesDeletedPropIssuePropPerformedViaGithubAppPropPermissions as WebhookIssuesDeletedPropIssuePropPerformedViaGithubAppPropPermissions, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssuesDeletedPropIssuePropPullRequest as WebhookIssuesDeletedPropIssuePropPullRequest, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssuesDeletedPropIssuePropReactions as WebhookIssuesDeletedPropIssuePropReactions, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssuesDeletedPropIssuePropUser as WebhookIssuesDeletedPropIssuePropUser, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssuesDemilestoned as WebhookIssuesDemilestoned, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssuesDemilestonedPropIssue as WebhookIssuesDemilestonedPropIssue, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssuesDemilestonedPropIssuePropAssignee as WebhookIssuesDemilestonedPropIssuePropAssignee, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssuesDemilestonedPropIssuePropAssigneesItems as WebhookIssuesDemilestonedPropIssuePropAssigneesItems, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssuesDemilestonedPropIssuePropLabelsItems as WebhookIssuesDemilestonedPropIssuePropLabelsItems, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssuesDemilestonedPropIssuePropMilestone as WebhookIssuesDemilestonedPropIssuePropMilestone, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssuesDemilestonedPropIssuePropMilestonePropCreator as WebhookIssuesDemilestonedPropIssuePropMilestonePropCreator, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssuesDemilestonedPropIssuePropPerformedViaGithubApp as WebhookIssuesDemilestonedPropIssuePropPerformedViaGithubApp, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssuesDemilestonedPropIssuePropPerformedViaGithubAppPropOwner as WebhookIssuesDemilestonedPropIssuePropPerformedViaGithubAppPropOwner, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssuesDemilestonedPropIssuePropPerformedViaGithubAppPropPermissions as WebhookIssuesDemilestonedPropIssuePropPerformedViaGithubAppPropPermissions, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssuesDemilestonedPropIssuePropPullRequest as WebhookIssuesDemilestonedPropIssuePropPullRequest, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssuesDemilestonedPropIssuePropReactions as WebhookIssuesDemilestonedPropIssuePropReactions, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssuesDemilestonedPropIssuePropUser as WebhookIssuesDemilestonedPropIssuePropUser, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssuesEdited as WebhookIssuesEdited, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssuesEditedPropChanges as WebhookIssuesEditedPropChanges, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssuesEditedPropChangesPropBody as WebhookIssuesEditedPropChangesPropBody, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssuesEditedPropChangesPropTitle as WebhookIssuesEditedPropChangesPropTitle, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssuesEditedPropIssue as WebhookIssuesEditedPropIssue, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssuesEditedPropIssuePropAssignee as WebhookIssuesEditedPropIssuePropAssignee, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssuesEditedPropIssuePropAssigneesItems as WebhookIssuesEditedPropIssuePropAssigneesItems, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssuesEditedPropIssuePropLabelsItems as WebhookIssuesEditedPropIssuePropLabelsItems, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssuesEditedPropIssuePropMilestone as WebhookIssuesEditedPropIssuePropMilestone, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssuesEditedPropIssuePropMilestonePropCreator as WebhookIssuesEditedPropIssuePropMilestonePropCreator, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssuesEditedPropIssuePropPerformedViaGithubApp as WebhookIssuesEditedPropIssuePropPerformedViaGithubApp, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssuesEditedPropIssuePropPerformedViaGithubAppPropOwner as WebhookIssuesEditedPropIssuePropPerformedViaGithubAppPropOwner, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssuesEditedPropIssuePropPerformedViaGithubAppPropPermissions as WebhookIssuesEditedPropIssuePropPerformedViaGithubAppPropPermissions, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssuesEditedPropIssuePropPullRequest as WebhookIssuesEditedPropIssuePropPullRequest, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssuesEditedPropIssuePropReactions as WebhookIssuesEditedPropIssuePropReactions, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssuesEditedPropIssuePropUser as WebhookIssuesEditedPropIssuePropUser, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssuesFieldAdded as WebhookIssuesFieldAdded, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssuesFieldAddedPropChanges as WebhookIssuesFieldAddedPropChanges, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssuesFieldAddedPropChangesPropIssueFieldValue as WebhookIssuesFieldAddedPropChangesPropIssueFieldValue, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssuesFieldAddedPropChangesPropIssueFieldValuePropFrom as WebhookIssuesFieldAddedPropChangesPropIssueFieldValuePropFrom, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssuesFieldAddedPropChangesPropIssueFieldValuePropFromPropOption as WebhookIssuesFieldAddedPropChangesPropIssueFieldValuePropFromPropOption, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssuesFieldAddedPropIssueField as WebhookIssuesFieldAddedPropIssueField, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssuesFieldAddedPropIssueFieldValue as WebhookIssuesFieldAddedPropIssueFieldValue, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssuesFieldAddedPropIssueFieldValuePropOption as WebhookIssuesFieldAddedPropIssueFieldValuePropOption, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssuesFieldRemoved as WebhookIssuesFieldRemoved, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssuesFieldRemovedPropIssueField as WebhookIssuesFieldRemovedPropIssueField, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssuesFieldRemovedPropIssueFieldValue as WebhookIssuesFieldRemovedPropIssueFieldValue, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssuesFieldRemovedPropIssueFieldValuePropOption as WebhookIssuesFieldRemovedPropIssueFieldValuePropOption, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssuesLabeled as WebhookIssuesLabeled, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssuesLabeledPropIssue as WebhookIssuesLabeledPropIssue, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssuesLabeledPropIssuePropAssignee as WebhookIssuesLabeledPropIssuePropAssignee, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssuesLabeledPropIssuePropAssigneesItems as WebhookIssuesLabeledPropIssuePropAssigneesItems, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssuesLabeledPropIssuePropLabelsItems as WebhookIssuesLabeledPropIssuePropLabelsItems, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssuesLabeledPropIssuePropMilestone as WebhookIssuesLabeledPropIssuePropMilestone, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssuesLabeledPropIssuePropMilestonePropCreator as WebhookIssuesLabeledPropIssuePropMilestonePropCreator, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssuesLabeledPropIssuePropPerformedViaGithubApp as WebhookIssuesLabeledPropIssuePropPerformedViaGithubApp, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssuesLabeledPropIssuePropPerformedViaGithubAppPropOwner as WebhookIssuesLabeledPropIssuePropPerformedViaGithubAppPropOwner, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssuesLabeledPropIssuePropPerformedViaGithubAppPropPermissions as WebhookIssuesLabeledPropIssuePropPerformedViaGithubAppPropPermissions, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssuesLabeledPropIssuePropPullRequest as WebhookIssuesLabeledPropIssuePropPullRequest, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssuesLabeledPropIssuePropReactions as WebhookIssuesLabeledPropIssuePropReactions, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssuesLabeledPropIssuePropUser as WebhookIssuesLabeledPropIssuePropUser, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssuesLocked as WebhookIssuesLocked, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssuesLockedPropIssue as WebhookIssuesLockedPropIssue, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssuesLockedPropIssuePropAssignee as WebhookIssuesLockedPropIssuePropAssignee, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssuesLockedPropIssuePropAssigneesItems as WebhookIssuesLockedPropIssuePropAssigneesItems, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssuesLockedPropIssuePropLabelsItems as WebhookIssuesLockedPropIssuePropLabelsItems, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssuesLockedPropIssuePropMilestone as WebhookIssuesLockedPropIssuePropMilestone, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssuesLockedPropIssuePropMilestonePropCreator as WebhookIssuesLockedPropIssuePropMilestonePropCreator, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssuesLockedPropIssuePropPerformedViaGithubApp as WebhookIssuesLockedPropIssuePropPerformedViaGithubApp, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssuesLockedPropIssuePropPerformedViaGithubAppPropOwner as WebhookIssuesLockedPropIssuePropPerformedViaGithubAppPropOwner, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssuesLockedPropIssuePropPerformedViaGithubAppPropPermissions as WebhookIssuesLockedPropIssuePropPerformedViaGithubAppPropPermissions, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssuesLockedPropIssuePropPullRequest as WebhookIssuesLockedPropIssuePropPullRequest, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssuesLockedPropIssuePropReactions as WebhookIssuesLockedPropIssuePropReactions, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssuesLockedPropIssuePropUser as WebhookIssuesLockedPropIssuePropUser, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssuesMilestoned as WebhookIssuesMilestoned, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssuesMilestonedPropIssue as WebhookIssuesMilestonedPropIssue, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssuesMilestonedPropIssuePropAssignee as WebhookIssuesMilestonedPropIssuePropAssignee, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssuesMilestonedPropIssuePropAssigneesItems as WebhookIssuesMilestonedPropIssuePropAssigneesItems, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssuesMilestonedPropIssuePropLabelsItems as WebhookIssuesMilestonedPropIssuePropLabelsItems, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssuesMilestonedPropIssuePropMilestone as WebhookIssuesMilestonedPropIssuePropMilestone, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssuesMilestonedPropIssuePropMilestonePropCreator as WebhookIssuesMilestonedPropIssuePropMilestonePropCreator, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssuesMilestonedPropIssuePropPerformedViaGithubApp as WebhookIssuesMilestonedPropIssuePropPerformedViaGithubApp, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssuesMilestonedPropIssuePropPerformedViaGithubAppPropOwner as WebhookIssuesMilestonedPropIssuePropPerformedViaGithubAppPropOwner, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssuesMilestonedPropIssuePropPerformedViaGithubAppPropPermissions as WebhookIssuesMilestonedPropIssuePropPerformedViaGithubAppPropPermissions, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssuesMilestonedPropIssuePropPullRequest as WebhookIssuesMilestonedPropIssuePropPullRequest, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssuesMilestonedPropIssuePropReactions as WebhookIssuesMilestonedPropIssuePropReactions, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssuesMilestonedPropIssuePropUser as WebhookIssuesMilestonedPropIssuePropUser, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssuesOpened as WebhookIssuesOpened, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssuesOpenedPropChanges as WebhookIssuesOpenedPropChanges, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssuesOpenedPropChangesPropOldIssue as WebhookIssuesOpenedPropChangesPropOldIssue, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssuesOpenedPropChangesPropOldIssuePropAssignee as WebhookIssuesOpenedPropChangesPropOldIssuePropAssignee, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssuesOpenedPropChangesPropOldIssuePropAssigneesItems as WebhookIssuesOpenedPropChangesPropOldIssuePropAssigneesItems, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssuesOpenedPropChangesPropOldIssuePropLabelsItems as WebhookIssuesOpenedPropChangesPropOldIssuePropLabelsItems, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssuesOpenedPropChangesPropOldIssuePropMilestone as WebhookIssuesOpenedPropChangesPropOldIssuePropMilestone, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssuesOpenedPropChangesPropOldIssuePropMilestonePropCreator as WebhookIssuesOpenedPropChangesPropOldIssuePropMilestonePropCreator, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssuesOpenedPropChangesPropOldIssuePropPerformedViaGithubApp as WebhookIssuesOpenedPropChangesPropOldIssuePropPerformedViaGithubApp, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssuesOpenedPropChangesPropOldIssuePropPerformedViaGithubAppPropOwner as WebhookIssuesOpenedPropChangesPropOldIssuePropPerformedViaGithubAppPropOwner, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssuesOpenedPropChangesPropOldIssuePropPerformedViaGithubAppPropPermissions as WebhookIssuesOpenedPropChangesPropOldIssuePropPerformedViaGithubAppPropPermissions, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssuesOpenedPropChangesPropOldIssuePropPullRequest as WebhookIssuesOpenedPropChangesPropOldIssuePropPullRequest, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssuesOpenedPropChangesPropOldIssuePropReactions as WebhookIssuesOpenedPropChangesPropOldIssuePropReactions, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssuesOpenedPropChangesPropOldIssuePropUser as WebhookIssuesOpenedPropChangesPropOldIssuePropUser, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssuesOpenedPropChangesPropOldRepository as WebhookIssuesOpenedPropChangesPropOldRepository, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssuesOpenedPropChangesPropOldRepositoryPropCustomProperties as WebhookIssuesOpenedPropChangesPropOldRepositoryPropCustomProperties, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssuesOpenedPropChangesPropOldRepositoryPropLicense as WebhookIssuesOpenedPropChangesPropOldRepositoryPropLicense, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssuesOpenedPropChangesPropOldRepositoryPropOwner as WebhookIssuesOpenedPropChangesPropOldRepositoryPropOwner, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssuesOpenedPropChangesPropOldRepositoryPropPermissions as WebhookIssuesOpenedPropChangesPropOldRepositoryPropPermissions, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssuesOpenedPropIssue as WebhookIssuesOpenedPropIssue, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssuesOpenedPropIssuePropAssignee as WebhookIssuesOpenedPropIssuePropAssignee, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssuesOpenedPropIssuePropAssigneesItems as WebhookIssuesOpenedPropIssuePropAssigneesItems, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssuesOpenedPropIssuePropLabelsItems as WebhookIssuesOpenedPropIssuePropLabelsItems, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssuesOpenedPropIssuePropMilestone as WebhookIssuesOpenedPropIssuePropMilestone, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssuesOpenedPropIssuePropMilestonePropCreator as WebhookIssuesOpenedPropIssuePropMilestonePropCreator, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssuesOpenedPropIssuePropPerformedViaGithubApp as WebhookIssuesOpenedPropIssuePropPerformedViaGithubApp, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssuesOpenedPropIssuePropPerformedViaGithubAppPropOwner as WebhookIssuesOpenedPropIssuePropPerformedViaGithubAppPropOwner, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssuesOpenedPropIssuePropPerformedViaGithubAppPropPermissions as WebhookIssuesOpenedPropIssuePropPerformedViaGithubAppPropPermissions, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssuesOpenedPropIssuePropPullRequest as WebhookIssuesOpenedPropIssuePropPullRequest, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssuesOpenedPropIssuePropReactions as WebhookIssuesOpenedPropIssuePropReactions, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssuesOpenedPropIssuePropUser as WebhookIssuesOpenedPropIssuePropUser, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssuesPinned as WebhookIssuesPinned, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssuesReopened as WebhookIssuesReopened, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssuesReopenedPropIssue as WebhookIssuesReopenedPropIssue, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssuesReopenedPropIssuePropAssignee as WebhookIssuesReopenedPropIssuePropAssignee, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssuesReopenedPropIssuePropAssigneesItems as WebhookIssuesReopenedPropIssuePropAssigneesItems, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssuesReopenedPropIssuePropLabelsItems as WebhookIssuesReopenedPropIssuePropLabelsItems, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssuesReopenedPropIssuePropMilestone as WebhookIssuesReopenedPropIssuePropMilestone, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssuesReopenedPropIssuePropMilestonePropCreator as WebhookIssuesReopenedPropIssuePropMilestonePropCreator, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssuesReopenedPropIssuePropPerformedViaGithubApp as WebhookIssuesReopenedPropIssuePropPerformedViaGithubApp, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssuesReopenedPropIssuePropPerformedViaGithubAppPropOwner as WebhookIssuesReopenedPropIssuePropPerformedViaGithubAppPropOwner, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssuesReopenedPropIssuePropPerformedViaGithubAppPropPermissions as WebhookIssuesReopenedPropIssuePropPerformedViaGithubAppPropPermissions, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssuesReopenedPropIssuePropPullRequest as WebhookIssuesReopenedPropIssuePropPullRequest, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssuesReopenedPropIssuePropReactions as WebhookIssuesReopenedPropIssuePropReactions, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssuesReopenedPropIssuePropUser as WebhookIssuesReopenedPropIssuePropUser, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssuesTransferred as WebhookIssuesTransferred, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssuesTransferredPropChanges as WebhookIssuesTransferredPropChanges, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssuesTransferredPropChangesPropNewIssue as WebhookIssuesTransferredPropChangesPropNewIssue, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssuesTransferredPropChangesPropNewIssuePropAssignee as WebhookIssuesTransferredPropChangesPropNewIssuePropAssignee, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssuesTransferredPropChangesPropNewIssuePropAssigneesItems as WebhookIssuesTransferredPropChangesPropNewIssuePropAssigneesItems, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssuesTransferredPropChangesPropNewIssuePropLabelsItems as WebhookIssuesTransferredPropChangesPropNewIssuePropLabelsItems, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssuesTransferredPropChangesPropNewIssuePropMilestone as WebhookIssuesTransferredPropChangesPropNewIssuePropMilestone, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssuesTransferredPropChangesPropNewIssuePropMilestonePropCreator as WebhookIssuesTransferredPropChangesPropNewIssuePropMilestonePropCreator, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssuesTransferredPropChangesPropNewIssuePropPerformedViaGithubApp as WebhookIssuesTransferredPropChangesPropNewIssuePropPerformedViaGithubApp, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssuesTransferredPropChangesPropNewIssuePropPerformedViaGithubAppPropOwner as WebhookIssuesTransferredPropChangesPropNewIssuePropPerformedViaGithubAppPropOwner, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssuesTransferredPropChangesPropNewIssuePropPerformedViaGithubAppPropPermissions as WebhookIssuesTransferredPropChangesPropNewIssuePropPerformedViaGithubAppPropPermissions, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssuesTransferredPropChangesPropNewIssuePropPullRequest as WebhookIssuesTransferredPropChangesPropNewIssuePropPullRequest, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssuesTransferredPropChangesPropNewIssuePropReactions as WebhookIssuesTransferredPropChangesPropNewIssuePropReactions, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssuesTransferredPropChangesPropNewIssuePropUser as WebhookIssuesTransferredPropChangesPropNewIssuePropUser, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssuesTransferredPropChangesPropNewRepository as WebhookIssuesTransferredPropChangesPropNewRepository, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssuesTransferredPropChangesPropNewRepositoryPropCustomProperties as WebhookIssuesTransferredPropChangesPropNewRepositoryPropCustomProperties, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssuesTransferredPropChangesPropNewRepositoryPropLicense as WebhookIssuesTransferredPropChangesPropNewRepositoryPropLicense, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssuesTransferredPropChangesPropNewRepositoryPropOwner as WebhookIssuesTransferredPropChangesPropNewRepositoryPropOwner, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssuesTransferredPropChangesPropNewRepositoryPropPermissions as WebhookIssuesTransferredPropChangesPropNewRepositoryPropPermissions, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssuesTyped as WebhookIssuesTyped, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssuesUnassigned as WebhookIssuesUnassigned, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssuesUnlabeled as WebhookIssuesUnlabeled, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssuesUnlocked as WebhookIssuesUnlocked, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssuesUnlockedPropIssue as WebhookIssuesUnlockedPropIssue, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssuesUnlockedPropIssuePropAssignee as WebhookIssuesUnlockedPropIssuePropAssignee, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssuesUnlockedPropIssuePropAssigneesItems as WebhookIssuesUnlockedPropIssuePropAssigneesItems, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssuesUnlockedPropIssuePropLabelsItems as WebhookIssuesUnlockedPropIssuePropLabelsItems, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssuesUnlockedPropIssuePropMilestone as WebhookIssuesUnlockedPropIssuePropMilestone, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssuesUnlockedPropIssuePropMilestonePropCreator as WebhookIssuesUnlockedPropIssuePropMilestonePropCreator, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssuesUnlockedPropIssuePropPerformedViaGithubApp as WebhookIssuesUnlockedPropIssuePropPerformedViaGithubApp, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssuesUnlockedPropIssuePropPerformedViaGithubAppPropOwner as WebhookIssuesUnlockedPropIssuePropPerformedViaGithubAppPropOwner, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssuesUnlockedPropIssuePropPerformedViaGithubAppPropPermissions as WebhookIssuesUnlockedPropIssuePropPerformedViaGithubAppPropPermissions, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssuesUnlockedPropIssuePropPullRequest as WebhookIssuesUnlockedPropIssuePropPullRequest, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssuesUnlockedPropIssuePropReactions as WebhookIssuesUnlockedPropIssuePropReactions, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssuesUnlockedPropIssuePropUser as WebhookIssuesUnlockedPropIssuePropUser, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssuesUnpinned as WebhookIssuesUnpinned, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookIssuesUntyped as WebhookIssuesUntyped, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookLabelCreated as WebhookLabelCreated, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookLabelDeleted as WebhookLabelDeleted, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookLabelEdited as WebhookLabelEdited, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookLabelEditedPropChanges as WebhookLabelEditedPropChanges, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookLabelEditedPropChangesPropColor as WebhookLabelEditedPropChangesPropColor, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookLabelEditedPropChangesPropDescription as WebhookLabelEditedPropChangesPropDescription, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookLabelEditedPropChangesPropName as WebhookLabelEditedPropChangesPropName, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookMarketplacePurchaseCancelled as WebhookMarketplacePurchaseCancelled, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookMarketplacePurchaseChanged as WebhookMarketplacePurchaseChanged, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookMarketplacePurchaseChangedPropPreviousMarketplacePurchase as WebhookMarketplacePurchaseChangedPropPreviousMarketplacePurchase, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookMarketplacePurchaseChangedPropPreviousMarketplacePurchasePropAccount as WebhookMarketplacePurchaseChangedPropPreviousMarketplacePurchasePropAccount, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookMarketplacePurchaseChangedPropPreviousMarketplacePurchasePropPlan as WebhookMarketplacePurchaseChangedPropPreviousMarketplacePurchasePropPlan, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookMarketplacePurchasePendingChange as WebhookMarketplacePurchasePendingChange, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookMarketplacePurchasePendingChangeCancelled as WebhookMarketplacePurchasePendingChangeCancelled, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookMarketplacePurchasePendingChangeCancelledPropMarketplacePurchase as WebhookMarketplacePurchasePendingChangeCancelledPropMarketplacePurchase, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookMarketplacePurchasePendingChangeCancelledPropMarketplacePurchasePropAccount as WebhookMarketplacePurchasePendingChangeCancelledPropMarketplacePurchasePropAccount, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookMarketplacePurchasePendingChangeCancelledPropMarketplacePurchasePropPlan as WebhookMarketplacePurchasePendingChangeCancelledPropMarketplacePurchasePropPlan, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookMarketplacePurchasePendingChangePropPreviousMarketplacePurchase as WebhookMarketplacePurchasePendingChangePropPreviousMarketplacePurchase, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookMarketplacePurchasePendingChangePropPreviousMarketplacePurchasePropAccount as WebhookMarketplacePurchasePendingChangePropPreviousMarketplacePurchasePropAccount, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookMarketplacePurchasePendingChangePropPreviousMarketplacePurchasePropPlan as WebhookMarketplacePurchasePendingChangePropPreviousMarketplacePurchasePropPlan, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookMarketplacePurchasePurchased as WebhookMarketplacePurchasePurchased, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookMemberAdded as WebhookMemberAdded, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookMemberAddedPropChanges as WebhookMemberAddedPropChanges, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookMemberAddedPropChangesPropPermission as WebhookMemberAddedPropChangesPropPermission, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookMemberAddedPropChangesPropRoleName as WebhookMemberAddedPropChangesPropRoleName, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookMemberEdited as WebhookMemberEdited, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookMemberEditedPropChanges as WebhookMemberEditedPropChanges, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookMemberEditedPropChangesPropOldPermission as WebhookMemberEditedPropChangesPropOldPermission, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookMemberEditedPropChangesPropPermission as WebhookMemberEditedPropChangesPropPermission, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookMemberRemoved as WebhookMemberRemoved, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookMembershipAdded as WebhookMembershipAdded, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookMembershipAddedPropSender as WebhookMembershipAddedPropSender, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookMembershipRemoved as WebhookMembershipRemoved, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookMembershipRemovedPropSender as WebhookMembershipRemovedPropSender, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookMergeGroupChecksRequested as WebhookMergeGroupChecksRequested, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookMergeGroupDestroyed as WebhookMergeGroupDestroyed, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookMetaDeleted as WebhookMetaDeleted, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookMetaDeletedPropHook as WebhookMetaDeletedPropHook, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookMetaDeletedPropHookPropConfig as WebhookMetaDeletedPropHookPropConfig, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookMilestoneClosed as WebhookMilestoneClosed, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookMilestoneCreated as WebhookMilestoneCreated, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookMilestoneDeleted as WebhookMilestoneDeleted, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookMilestoneEdited as WebhookMilestoneEdited, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookMilestoneEditedPropChanges as WebhookMilestoneEditedPropChanges, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookMilestoneEditedPropChangesPropDescription as WebhookMilestoneEditedPropChangesPropDescription, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookMilestoneEditedPropChangesPropDueOn as WebhookMilestoneEditedPropChangesPropDueOn, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookMilestoneEditedPropChangesPropTitle as WebhookMilestoneEditedPropChangesPropTitle, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookMilestoneOpened as WebhookMilestoneOpened, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookOrganizationDeleted as WebhookOrganizationDeleted, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookOrganizationMemberAdded as WebhookOrganizationMemberAdded, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookOrganizationMemberInvited as WebhookOrganizationMemberInvited, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookOrganizationMemberInvitedPropInvitation as WebhookOrganizationMemberInvitedPropInvitation, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookOrganizationMemberInvitedPropInvitationPropInviter as WebhookOrganizationMemberInvitedPropInvitationPropInviter, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookOrganizationMemberRemoved as WebhookOrganizationMemberRemoved, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookOrganizationRenamed as WebhookOrganizationRenamed, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookOrganizationRenamedPropChanges as WebhookOrganizationRenamedPropChanges, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookOrganizationRenamedPropChangesPropLogin as WebhookOrganizationRenamedPropChangesPropLogin, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookOrgBlockBlocked as WebhookOrgBlockBlocked, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookOrgBlockUnblocked as WebhookOrgBlockUnblocked, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPackagePublished as WebhookPackagePublished, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPackagePublishedPropPackage as WebhookPackagePublishedPropPackage, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPackagePublishedPropPackagePropOwner as WebhookPackagePublishedPropPackagePropOwner, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPackagePublishedPropPackagePropPackageVersion as WebhookPackagePublishedPropPackagePropPackageVersion, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPackagePublishedPropPackagePropPackageVersionPropAuthor as WebhookPackagePublishedPropPackagePropPackageVersionPropAuthor, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPackagePublishedPropPackagePropPackageVersionPropBodyOneof1 as WebhookPackagePublishedPropPackagePropPackageVersionPropBodyOneof1, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPackagePublishedPropPackagePropPackageVersionPropContainerMetadata as WebhookPackagePublishedPropPackagePropPackageVersionPropContainerMetadata, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPackagePublishedPropPackagePropPackageVersionPropContainerMetadataPropLabels as WebhookPackagePublishedPropPackagePropPackageVersionPropContainerMetadataPropLabels, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPackagePublishedPropPackagePropPackageVersionPropContainerMetadataPropManifest as WebhookPackagePublishedPropPackagePropPackageVersionPropContainerMetadataPropManifest, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPackagePublishedPropPackagePropPackageVersionPropContainerMetadataPropTag as WebhookPackagePublishedPropPackagePropPackageVersionPropContainerMetadataPropTag, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPackagePublishedPropPackagePropPackageVersionPropDockerMetadataItems as WebhookPackagePublishedPropPackagePropPackageVersionPropDockerMetadataItems, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPackagePublishedPropPackagePropPackageVersionPropMetadataItems as WebhookPackagePublishedPropPackagePropPackageVersionPropMetadataItems, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPackagePublishedPropPackagePropPackageVersionPropNpmMetadata as WebhookPackagePublishedPropPackagePropPackageVersionPropNpmMetadata, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPackagePublishedPropPackagePropPackageVersionPropNpmMetadataPropAuthor as WebhookPackagePublishedPropPackagePropPackageVersionPropNpmMetadataPropAuthor, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPackagePublishedPropPackagePropPackageVersionPropNpmMetadataPropBin as WebhookPackagePublishedPropPackagePropPackageVersionPropNpmMetadataPropBin, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPackagePublishedPropPackagePropPackageVersionPropNpmMetadataPropBugs as WebhookPackagePublishedPropPackagePropPackageVersionPropNpmMetadataPropBugs, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPackagePublishedPropPackagePropPackageVersionPropNpmMetadataPropContributorsItems as WebhookPackagePublishedPropPackagePropPackageVersionPropNpmMetadataPropContributorsItems, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPackagePublishedPropPackagePropPackageVersionPropNpmMetadataPropDependencies as WebhookPackagePublishedPropPackagePropPackageVersionPropNpmMetadataPropDependencies, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPackagePublishedPropPackagePropPackageVersionPropNpmMetadataPropDevDependencies as WebhookPackagePublishedPropPackagePropPackageVersionPropNpmMetadataPropDevDependencies, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPackagePublishedPropPackagePropPackageVersionPropNpmMetadataPropDirectories as WebhookPackagePublishedPropPackagePropPackageVersionPropNpmMetadataPropDirectories, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPackagePublishedPropPackagePropPackageVersionPropNpmMetadataPropDist as WebhookPackagePublishedPropPackagePropPackageVersionPropNpmMetadataPropDist, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPackagePublishedPropPackagePropPackageVersionPropNpmMetadataPropEngines as WebhookPackagePublishedPropPackagePropPackageVersionPropNpmMetadataPropEngines, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPackagePublishedPropPackagePropPackageVersionPropNpmMetadataPropMaintainersItems as WebhookPackagePublishedPropPackagePropPackageVersionPropNpmMetadataPropMaintainersItems, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPackagePublishedPropPackagePropPackageVersionPropNpmMetadataPropMan as WebhookPackagePublishedPropPackagePropPackageVersionPropNpmMetadataPropMan, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPackagePublishedPropPackagePropPackageVersionPropNpmMetadataPropOptionalDependencies as WebhookPackagePublishedPropPackagePropPackageVersionPropNpmMetadataPropOptionalDependencies, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPackagePublishedPropPackagePropPackageVersionPropNpmMetadataPropPeerDependencies as WebhookPackagePublishedPropPackagePropPackageVersionPropNpmMetadataPropPeerDependencies, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPackagePublishedPropPackagePropPackageVersionPropNpmMetadataPropRepository as WebhookPackagePublishedPropPackagePropPackageVersionPropNpmMetadataPropRepository, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPackagePublishedPropPackagePropPackageVersionPropNpmMetadataPropScripts as WebhookPackagePublishedPropPackagePropPackageVersionPropNpmMetadataPropScripts, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPackagePublishedPropPackagePropPackageVersionPropNugetMetadataItems as WebhookPackagePublishedPropPackagePropPackageVersionPropNugetMetadataItems, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPackagePublishedPropPackagePropPackageVersionPropNugetMetadataItemsPropValueOneof3 as WebhookPackagePublishedPropPackagePropPackageVersionPropNugetMetadataItemsPropValueOneof3, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPackagePublishedPropPackagePropPackageVersionPropPackageFilesItems as WebhookPackagePublishedPropPackagePropPackageVersionPropPackageFilesItems, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPackagePublishedPropPackagePropPackageVersionPropRelease as WebhookPackagePublishedPropPackagePropPackageVersionPropRelease, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPackagePublishedPropPackagePropPackageVersionPropReleasePropAuthor as WebhookPackagePublishedPropPackagePropPackageVersionPropReleasePropAuthor, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPackagePublishedPropPackagePropRegistry as WebhookPackagePublishedPropPackagePropRegistry, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPackageUpdated as WebhookPackageUpdated, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPackageUpdatedPropPackage as WebhookPackageUpdatedPropPackage, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPackageUpdatedPropPackagePropOwner as WebhookPackageUpdatedPropPackagePropOwner, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPackageUpdatedPropPackagePropPackageVersion as WebhookPackageUpdatedPropPackagePropPackageVersion, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPackageUpdatedPropPackagePropPackageVersionPropAuthor as WebhookPackageUpdatedPropPackagePropPackageVersionPropAuthor, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPackageUpdatedPropPackagePropPackageVersionPropDockerMetadataItems as WebhookPackageUpdatedPropPackagePropPackageVersionPropDockerMetadataItems, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPackageUpdatedPropPackagePropPackageVersionPropMetadataItems as WebhookPackageUpdatedPropPackagePropPackageVersionPropMetadataItems, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPackageUpdatedPropPackagePropPackageVersionPropPackageFilesItems as WebhookPackageUpdatedPropPackagePropPackageVersionPropPackageFilesItems, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPackageUpdatedPropPackagePropPackageVersionPropRelease as WebhookPackageUpdatedPropPackagePropPackageVersionPropRelease, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPackageUpdatedPropPackagePropPackageVersionPropReleasePropAuthor as WebhookPackageUpdatedPropPackagePropPackageVersionPropReleasePropAuthor, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPackageUpdatedPropPackagePropRegistry as WebhookPackageUpdatedPropPackagePropRegistry, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPageBuild as WebhookPageBuild, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPageBuildPropBuild as WebhookPageBuildPropBuild, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPageBuildPropBuildPropError as WebhookPageBuildPropBuildPropError, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPageBuildPropBuildPropPusher as WebhookPageBuildPropBuildPropPusher, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPersonalAccessTokenRequestApproved as WebhookPersonalAccessTokenRequestApproved, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPersonalAccessTokenRequestCancelled as WebhookPersonalAccessTokenRequestCancelled, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPersonalAccessTokenRequestCreated as WebhookPersonalAccessTokenRequestCreated, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPersonalAccessTokenRequestDenied as WebhookPersonalAccessTokenRequestDenied, - ) - from githubkit.versions.v2026_03_10.models import WebhookPing as WebhookPing - from githubkit.versions.v2026_03_10.models import ( - WebhookPingFormEncoded as WebhookPingFormEncoded, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPingPropHook as WebhookPingPropHook, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPingPropHookPropConfig as WebhookPingPropHookPropConfig, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookProjectCardConverted as WebhookProjectCardConverted, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookProjectCardConvertedPropChanges as WebhookProjectCardConvertedPropChanges, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookProjectCardConvertedPropChangesPropNote as WebhookProjectCardConvertedPropChangesPropNote, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookProjectCardCreated as WebhookProjectCardCreated, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookProjectCardDeleted as WebhookProjectCardDeleted, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookProjectCardDeletedPropProjectCard as WebhookProjectCardDeletedPropProjectCard, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookProjectCardDeletedPropProjectCardPropCreator as WebhookProjectCardDeletedPropProjectCardPropCreator, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookProjectCardEdited as WebhookProjectCardEdited, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookProjectCardEditedPropChanges as WebhookProjectCardEditedPropChanges, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookProjectCardEditedPropChangesPropNote as WebhookProjectCardEditedPropChangesPropNote, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookProjectCardMoved as WebhookProjectCardMoved, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookProjectCardMovedPropChanges as WebhookProjectCardMovedPropChanges, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookProjectCardMovedPropChangesPropColumnId as WebhookProjectCardMovedPropChangesPropColumnId, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookProjectCardMovedPropProjectCard as WebhookProjectCardMovedPropProjectCard, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookProjectCardMovedPropProjectCardAllof0 as WebhookProjectCardMovedPropProjectCardAllof0, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookProjectCardMovedPropProjectCardAllof0PropCreator as WebhookProjectCardMovedPropProjectCardAllof0PropCreator, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookProjectCardMovedPropProjectCardAllof1 as WebhookProjectCardMovedPropProjectCardAllof1, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookProjectCardMovedPropProjectCardAllof1PropCreator as WebhookProjectCardMovedPropProjectCardAllof1PropCreator, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookProjectCardMovedPropProjectCardMergedCreator as WebhookProjectCardMovedPropProjectCardMergedCreator, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookProjectClosed as WebhookProjectClosed, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookProjectColumnCreated as WebhookProjectColumnCreated, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookProjectColumnDeleted as WebhookProjectColumnDeleted, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookProjectColumnEdited as WebhookProjectColumnEdited, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookProjectColumnEditedPropChanges as WebhookProjectColumnEditedPropChanges, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookProjectColumnEditedPropChangesPropName as WebhookProjectColumnEditedPropChangesPropName, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookProjectColumnMoved as WebhookProjectColumnMoved, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookProjectCreated as WebhookProjectCreated, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookProjectDeleted as WebhookProjectDeleted, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookProjectEdited as WebhookProjectEdited, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookProjectEditedPropChanges as WebhookProjectEditedPropChanges, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookProjectEditedPropChangesPropBody as WebhookProjectEditedPropChangesPropBody, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookProjectEditedPropChangesPropName as WebhookProjectEditedPropChangesPropName, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookProjectReopened as WebhookProjectReopened, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookProjectsV2ItemArchived as WebhookProjectsV2ItemArchived, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookProjectsV2ItemConverted as WebhookProjectsV2ItemConverted, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookProjectsV2ItemConvertedPropChanges as WebhookProjectsV2ItemConvertedPropChanges, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookProjectsV2ItemConvertedPropChangesPropContentType as WebhookProjectsV2ItemConvertedPropChangesPropContentType, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookProjectsV2ItemCreated as WebhookProjectsV2ItemCreated, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookProjectsV2ItemDeleted as WebhookProjectsV2ItemDeleted, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookProjectsV2ItemEdited as WebhookProjectsV2ItemEdited, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookProjectsV2ItemEditedPropChangesOneof0 as WebhookProjectsV2ItemEditedPropChangesOneof0, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookProjectsV2ItemEditedPropChangesOneof0PropFieldValue as WebhookProjectsV2ItemEditedPropChangesOneof0PropFieldValue, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookProjectsV2ItemEditedPropChangesOneof1 as WebhookProjectsV2ItemEditedPropChangesOneof1, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookProjectsV2ItemEditedPropChangesOneof1PropBody as WebhookProjectsV2ItemEditedPropChangesOneof1PropBody, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookProjectsV2ItemReordered as WebhookProjectsV2ItemReordered, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookProjectsV2ItemReorderedPropChanges as WebhookProjectsV2ItemReorderedPropChanges, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookProjectsV2ItemReorderedPropChangesPropPreviousProjectsV2ItemNodeId as WebhookProjectsV2ItemReorderedPropChangesPropPreviousProjectsV2ItemNodeId, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookProjectsV2ItemRestored as WebhookProjectsV2ItemRestored, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookProjectsV2ProjectClosed as WebhookProjectsV2ProjectClosed, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookProjectsV2ProjectCreated as WebhookProjectsV2ProjectCreated, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookProjectsV2ProjectDeleted as WebhookProjectsV2ProjectDeleted, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookProjectsV2ProjectEdited as WebhookProjectsV2ProjectEdited, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookProjectsV2ProjectEditedPropChanges as WebhookProjectsV2ProjectEditedPropChanges, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookProjectsV2ProjectEditedPropChangesPropDescription as WebhookProjectsV2ProjectEditedPropChangesPropDescription, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookProjectsV2ProjectEditedPropChangesPropPublic as WebhookProjectsV2ProjectEditedPropChangesPropPublic, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookProjectsV2ProjectEditedPropChangesPropShortDescription as WebhookProjectsV2ProjectEditedPropChangesPropShortDescription, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookProjectsV2ProjectEditedPropChangesPropTitle as WebhookProjectsV2ProjectEditedPropChangesPropTitle, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookProjectsV2ProjectReopened as WebhookProjectsV2ProjectReopened, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookProjectsV2StatusUpdateCreated as WebhookProjectsV2StatusUpdateCreated, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookProjectsV2StatusUpdateDeleted as WebhookProjectsV2StatusUpdateDeleted, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookProjectsV2StatusUpdateEdited as WebhookProjectsV2StatusUpdateEdited, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookProjectsV2StatusUpdateEditedPropChanges as WebhookProjectsV2StatusUpdateEditedPropChanges, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookProjectsV2StatusUpdateEditedPropChangesPropBody as WebhookProjectsV2StatusUpdateEditedPropChangesPropBody, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookProjectsV2StatusUpdateEditedPropChangesPropStartDate as WebhookProjectsV2StatusUpdateEditedPropChangesPropStartDate, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookProjectsV2StatusUpdateEditedPropChangesPropStatus as WebhookProjectsV2StatusUpdateEditedPropChangesPropStatus, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookProjectsV2StatusUpdateEditedPropChangesPropTargetDate as WebhookProjectsV2StatusUpdateEditedPropChangesPropTargetDate, - ) - from githubkit.versions.v2026_03_10.models import WebhookPublic as WebhookPublic - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestAssigned as WebhookPullRequestAssigned, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestAssignedPropPullRequest as WebhookPullRequestAssignedPropPullRequest, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestAssignedPropPullRequestPropAssignee as WebhookPullRequestAssignedPropPullRequestPropAssignee, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestAssignedPropPullRequestPropAssigneesItems as WebhookPullRequestAssignedPropPullRequestPropAssigneesItems, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestAssignedPropPullRequestPropAutoMerge as WebhookPullRequestAssignedPropPullRequestPropAutoMerge, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestAssignedPropPullRequestPropAutoMergePropEnabledBy as WebhookPullRequestAssignedPropPullRequestPropAutoMergePropEnabledBy, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestAssignedPropPullRequestPropBase as WebhookPullRequestAssignedPropPullRequestPropBase, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestAssignedPropPullRequestPropBasePropRepo as WebhookPullRequestAssignedPropPullRequestPropBasePropRepo, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestAssignedPropPullRequestPropBasePropRepoPropLicense as WebhookPullRequestAssignedPropPullRequestPropBasePropRepoPropLicense, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestAssignedPropPullRequestPropBasePropRepoPropOwner as WebhookPullRequestAssignedPropPullRequestPropBasePropRepoPropOwner, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestAssignedPropPullRequestPropBasePropRepoPropPermissions as WebhookPullRequestAssignedPropPullRequestPropBasePropRepoPropPermissions, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestAssignedPropPullRequestPropBasePropUser as WebhookPullRequestAssignedPropPullRequestPropBasePropUser, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestAssignedPropPullRequestPropHead as WebhookPullRequestAssignedPropPullRequestPropHead, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestAssignedPropPullRequestPropHeadPropRepo as WebhookPullRequestAssignedPropPullRequestPropHeadPropRepo, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestAssignedPropPullRequestPropHeadPropRepoPropLicense as WebhookPullRequestAssignedPropPullRequestPropHeadPropRepoPropLicense, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestAssignedPropPullRequestPropHeadPropRepoPropOwner as WebhookPullRequestAssignedPropPullRequestPropHeadPropRepoPropOwner, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestAssignedPropPullRequestPropHeadPropRepoPropPermissions as WebhookPullRequestAssignedPropPullRequestPropHeadPropRepoPropPermissions, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestAssignedPropPullRequestPropHeadPropUser as WebhookPullRequestAssignedPropPullRequestPropHeadPropUser, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestAssignedPropPullRequestPropLabelsItems as WebhookPullRequestAssignedPropPullRequestPropLabelsItems, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestAssignedPropPullRequestPropLinks as WebhookPullRequestAssignedPropPullRequestPropLinks, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestAssignedPropPullRequestPropLinksPropComments as WebhookPullRequestAssignedPropPullRequestPropLinksPropComments, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestAssignedPropPullRequestPropLinksPropCommits as WebhookPullRequestAssignedPropPullRequestPropLinksPropCommits, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestAssignedPropPullRequestPropLinksPropHtml as WebhookPullRequestAssignedPropPullRequestPropLinksPropHtml, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestAssignedPropPullRequestPropLinksPropIssue as WebhookPullRequestAssignedPropPullRequestPropLinksPropIssue, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestAssignedPropPullRequestPropLinksPropReviewComment as WebhookPullRequestAssignedPropPullRequestPropLinksPropReviewComment, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestAssignedPropPullRequestPropLinksPropReviewComments as WebhookPullRequestAssignedPropPullRequestPropLinksPropReviewComments, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestAssignedPropPullRequestPropLinksPropSelf as WebhookPullRequestAssignedPropPullRequestPropLinksPropSelf, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestAssignedPropPullRequestPropLinksPropStatuses as WebhookPullRequestAssignedPropPullRequestPropLinksPropStatuses, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestAssignedPropPullRequestPropMergedBy as WebhookPullRequestAssignedPropPullRequestPropMergedBy, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestAssignedPropPullRequestPropMilestone as WebhookPullRequestAssignedPropPullRequestPropMilestone, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestAssignedPropPullRequestPropMilestonePropCreator as WebhookPullRequestAssignedPropPullRequestPropMilestonePropCreator, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestAssignedPropPullRequestPropRequestedReviewersItemsOneof0 as WebhookPullRequestAssignedPropPullRequestPropRequestedReviewersItemsOneof0, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestAssignedPropPullRequestPropRequestedReviewersItemsOneof1 as WebhookPullRequestAssignedPropPullRequestPropRequestedReviewersItemsOneof1, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestAssignedPropPullRequestPropRequestedReviewersItemsOneof1PropParent as WebhookPullRequestAssignedPropPullRequestPropRequestedReviewersItemsOneof1PropParent, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestAssignedPropPullRequestPropRequestedTeamsItems as WebhookPullRequestAssignedPropPullRequestPropRequestedTeamsItems, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestAssignedPropPullRequestPropRequestedTeamsItemsPropParent as WebhookPullRequestAssignedPropPullRequestPropRequestedTeamsItemsPropParent, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestAssignedPropPullRequestPropUser as WebhookPullRequestAssignedPropPullRequestPropUser, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestAutoMergeDisabled as WebhookPullRequestAutoMergeDisabled, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestAutoMergeDisabledPropPullRequest as WebhookPullRequestAutoMergeDisabledPropPullRequest, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestAutoMergeDisabledPropPullRequestPropAssignee as WebhookPullRequestAutoMergeDisabledPropPullRequestPropAssignee, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestAutoMergeDisabledPropPullRequestPropAssigneesItems as WebhookPullRequestAutoMergeDisabledPropPullRequestPropAssigneesItems, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestAutoMergeDisabledPropPullRequestPropAutoMerge as WebhookPullRequestAutoMergeDisabledPropPullRequestPropAutoMerge, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestAutoMergeDisabledPropPullRequestPropAutoMergePropEnabledBy as WebhookPullRequestAutoMergeDisabledPropPullRequestPropAutoMergePropEnabledBy, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestAutoMergeDisabledPropPullRequestPropBase as WebhookPullRequestAutoMergeDisabledPropPullRequestPropBase, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestAutoMergeDisabledPropPullRequestPropBasePropRepo as WebhookPullRequestAutoMergeDisabledPropPullRequestPropBasePropRepo, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestAutoMergeDisabledPropPullRequestPropBasePropRepoPropLicense as WebhookPullRequestAutoMergeDisabledPropPullRequestPropBasePropRepoPropLicense, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestAutoMergeDisabledPropPullRequestPropBasePropRepoPropOwner as WebhookPullRequestAutoMergeDisabledPropPullRequestPropBasePropRepoPropOwner, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestAutoMergeDisabledPropPullRequestPropBasePropRepoPropPermissions as WebhookPullRequestAutoMergeDisabledPropPullRequestPropBasePropRepoPropPermissions, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestAutoMergeDisabledPropPullRequestPropBasePropUser as WebhookPullRequestAutoMergeDisabledPropPullRequestPropBasePropUser, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestAutoMergeDisabledPropPullRequestPropHead as WebhookPullRequestAutoMergeDisabledPropPullRequestPropHead, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestAutoMergeDisabledPropPullRequestPropHeadPropRepo as WebhookPullRequestAutoMergeDisabledPropPullRequestPropHeadPropRepo, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestAutoMergeDisabledPropPullRequestPropHeadPropRepoPropLicense as WebhookPullRequestAutoMergeDisabledPropPullRequestPropHeadPropRepoPropLicense, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestAutoMergeDisabledPropPullRequestPropHeadPropRepoPropOwner as WebhookPullRequestAutoMergeDisabledPropPullRequestPropHeadPropRepoPropOwner, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestAutoMergeDisabledPropPullRequestPropHeadPropRepoPropPermissions as WebhookPullRequestAutoMergeDisabledPropPullRequestPropHeadPropRepoPropPermissions, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestAutoMergeDisabledPropPullRequestPropHeadPropUser as WebhookPullRequestAutoMergeDisabledPropPullRequestPropHeadPropUser, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestAutoMergeDisabledPropPullRequestPropLabelsItems as WebhookPullRequestAutoMergeDisabledPropPullRequestPropLabelsItems, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestAutoMergeDisabledPropPullRequestPropLinks as WebhookPullRequestAutoMergeDisabledPropPullRequestPropLinks, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestAutoMergeDisabledPropPullRequestPropLinksPropComments as WebhookPullRequestAutoMergeDisabledPropPullRequestPropLinksPropComments, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestAutoMergeDisabledPropPullRequestPropLinksPropCommits as WebhookPullRequestAutoMergeDisabledPropPullRequestPropLinksPropCommits, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestAutoMergeDisabledPropPullRequestPropLinksPropHtml as WebhookPullRequestAutoMergeDisabledPropPullRequestPropLinksPropHtml, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestAutoMergeDisabledPropPullRequestPropLinksPropIssue as WebhookPullRequestAutoMergeDisabledPropPullRequestPropLinksPropIssue, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestAutoMergeDisabledPropPullRequestPropLinksPropReviewComment as WebhookPullRequestAutoMergeDisabledPropPullRequestPropLinksPropReviewComment, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestAutoMergeDisabledPropPullRequestPropLinksPropReviewComments as WebhookPullRequestAutoMergeDisabledPropPullRequestPropLinksPropReviewComments, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestAutoMergeDisabledPropPullRequestPropLinksPropSelf as WebhookPullRequestAutoMergeDisabledPropPullRequestPropLinksPropSelf, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestAutoMergeDisabledPropPullRequestPropLinksPropStatuses as WebhookPullRequestAutoMergeDisabledPropPullRequestPropLinksPropStatuses, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestAutoMergeDisabledPropPullRequestPropMergedBy as WebhookPullRequestAutoMergeDisabledPropPullRequestPropMergedBy, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestAutoMergeDisabledPropPullRequestPropMilestone as WebhookPullRequestAutoMergeDisabledPropPullRequestPropMilestone, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestAutoMergeDisabledPropPullRequestPropMilestonePropCreator as WebhookPullRequestAutoMergeDisabledPropPullRequestPropMilestonePropCreator, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestAutoMergeDisabledPropPullRequestPropRequestedReviewersItemsOneof0 as WebhookPullRequestAutoMergeDisabledPropPullRequestPropRequestedReviewersItemsOneof0, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestAutoMergeDisabledPropPullRequestPropRequestedReviewersItemsOneof1 as WebhookPullRequestAutoMergeDisabledPropPullRequestPropRequestedReviewersItemsOneof1, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestAutoMergeDisabledPropPullRequestPropRequestedReviewersItemsOneof1PropParent as WebhookPullRequestAutoMergeDisabledPropPullRequestPropRequestedReviewersItemsOneof1PropParent, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestAutoMergeDisabledPropPullRequestPropRequestedTeamsItems as WebhookPullRequestAutoMergeDisabledPropPullRequestPropRequestedTeamsItems, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestAutoMergeDisabledPropPullRequestPropRequestedTeamsItemsPropParent as WebhookPullRequestAutoMergeDisabledPropPullRequestPropRequestedTeamsItemsPropParent, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestAutoMergeDisabledPropPullRequestPropUser as WebhookPullRequestAutoMergeDisabledPropPullRequestPropUser, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestAutoMergeEnabled as WebhookPullRequestAutoMergeEnabled, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestAutoMergeEnabledPropPullRequest as WebhookPullRequestAutoMergeEnabledPropPullRequest, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestAutoMergeEnabledPropPullRequestPropAssignee as WebhookPullRequestAutoMergeEnabledPropPullRequestPropAssignee, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestAutoMergeEnabledPropPullRequestPropAssigneesItems as WebhookPullRequestAutoMergeEnabledPropPullRequestPropAssigneesItems, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestAutoMergeEnabledPropPullRequestPropAutoMerge as WebhookPullRequestAutoMergeEnabledPropPullRequestPropAutoMerge, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestAutoMergeEnabledPropPullRequestPropAutoMergePropEnabledBy as WebhookPullRequestAutoMergeEnabledPropPullRequestPropAutoMergePropEnabledBy, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestAutoMergeEnabledPropPullRequestPropBase as WebhookPullRequestAutoMergeEnabledPropPullRequestPropBase, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestAutoMergeEnabledPropPullRequestPropBasePropRepo as WebhookPullRequestAutoMergeEnabledPropPullRequestPropBasePropRepo, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestAutoMergeEnabledPropPullRequestPropBasePropRepoPropLicense as WebhookPullRequestAutoMergeEnabledPropPullRequestPropBasePropRepoPropLicense, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestAutoMergeEnabledPropPullRequestPropBasePropRepoPropOwner as WebhookPullRequestAutoMergeEnabledPropPullRequestPropBasePropRepoPropOwner, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestAutoMergeEnabledPropPullRequestPropBasePropRepoPropPermissions as WebhookPullRequestAutoMergeEnabledPropPullRequestPropBasePropRepoPropPermissions, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestAutoMergeEnabledPropPullRequestPropBasePropUser as WebhookPullRequestAutoMergeEnabledPropPullRequestPropBasePropUser, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestAutoMergeEnabledPropPullRequestPropHead as WebhookPullRequestAutoMergeEnabledPropPullRequestPropHead, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestAutoMergeEnabledPropPullRequestPropHeadPropRepo as WebhookPullRequestAutoMergeEnabledPropPullRequestPropHeadPropRepo, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestAutoMergeEnabledPropPullRequestPropHeadPropRepoPropLicense as WebhookPullRequestAutoMergeEnabledPropPullRequestPropHeadPropRepoPropLicense, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestAutoMergeEnabledPropPullRequestPropHeadPropRepoPropOwner as WebhookPullRequestAutoMergeEnabledPropPullRequestPropHeadPropRepoPropOwner, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestAutoMergeEnabledPropPullRequestPropHeadPropRepoPropPermissions as WebhookPullRequestAutoMergeEnabledPropPullRequestPropHeadPropRepoPropPermissions, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestAutoMergeEnabledPropPullRequestPropHeadPropUser as WebhookPullRequestAutoMergeEnabledPropPullRequestPropHeadPropUser, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestAutoMergeEnabledPropPullRequestPropLabelsItems as WebhookPullRequestAutoMergeEnabledPropPullRequestPropLabelsItems, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestAutoMergeEnabledPropPullRequestPropLinks as WebhookPullRequestAutoMergeEnabledPropPullRequestPropLinks, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestAutoMergeEnabledPropPullRequestPropLinksPropComments as WebhookPullRequestAutoMergeEnabledPropPullRequestPropLinksPropComments, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestAutoMergeEnabledPropPullRequestPropLinksPropCommits as WebhookPullRequestAutoMergeEnabledPropPullRequestPropLinksPropCommits, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestAutoMergeEnabledPropPullRequestPropLinksPropHtml as WebhookPullRequestAutoMergeEnabledPropPullRequestPropLinksPropHtml, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestAutoMergeEnabledPropPullRequestPropLinksPropIssue as WebhookPullRequestAutoMergeEnabledPropPullRequestPropLinksPropIssue, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestAutoMergeEnabledPropPullRequestPropLinksPropReviewComment as WebhookPullRequestAutoMergeEnabledPropPullRequestPropLinksPropReviewComment, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestAutoMergeEnabledPropPullRequestPropLinksPropReviewComments as WebhookPullRequestAutoMergeEnabledPropPullRequestPropLinksPropReviewComments, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestAutoMergeEnabledPropPullRequestPropLinksPropSelf as WebhookPullRequestAutoMergeEnabledPropPullRequestPropLinksPropSelf, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestAutoMergeEnabledPropPullRequestPropLinksPropStatuses as WebhookPullRequestAutoMergeEnabledPropPullRequestPropLinksPropStatuses, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestAutoMergeEnabledPropPullRequestPropMergedBy as WebhookPullRequestAutoMergeEnabledPropPullRequestPropMergedBy, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestAutoMergeEnabledPropPullRequestPropMilestone as WebhookPullRequestAutoMergeEnabledPropPullRequestPropMilestone, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestAutoMergeEnabledPropPullRequestPropMilestonePropCreator as WebhookPullRequestAutoMergeEnabledPropPullRequestPropMilestonePropCreator, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestAutoMergeEnabledPropPullRequestPropRequestedReviewersItemsOneof0 as WebhookPullRequestAutoMergeEnabledPropPullRequestPropRequestedReviewersItemsOneof0, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestAutoMergeEnabledPropPullRequestPropRequestedReviewersItemsOneof1 as WebhookPullRequestAutoMergeEnabledPropPullRequestPropRequestedReviewersItemsOneof1, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestAutoMergeEnabledPropPullRequestPropRequestedReviewersItemsOneof1PropParent as WebhookPullRequestAutoMergeEnabledPropPullRequestPropRequestedReviewersItemsOneof1PropParent, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestAutoMergeEnabledPropPullRequestPropRequestedTeamsItems as WebhookPullRequestAutoMergeEnabledPropPullRequestPropRequestedTeamsItems, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestAutoMergeEnabledPropPullRequestPropRequestedTeamsItemsPropParent as WebhookPullRequestAutoMergeEnabledPropPullRequestPropRequestedTeamsItemsPropParent, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestAutoMergeEnabledPropPullRequestPropUser as WebhookPullRequestAutoMergeEnabledPropPullRequestPropUser, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestClosed as WebhookPullRequestClosed, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestConvertedToDraft as WebhookPullRequestConvertedToDraft, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestDemilestoned as WebhookPullRequestDemilestoned, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestDequeued as WebhookPullRequestDequeued, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestDequeuedPropPullRequest as WebhookPullRequestDequeuedPropPullRequest, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestDequeuedPropPullRequestPropAssignee as WebhookPullRequestDequeuedPropPullRequestPropAssignee, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestDequeuedPropPullRequestPropAssigneesItems as WebhookPullRequestDequeuedPropPullRequestPropAssigneesItems, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestDequeuedPropPullRequestPropAutoMerge as WebhookPullRequestDequeuedPropPullRequestPropAutoMerge, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestDequeuedPropPullRequestPropAutoMergePropEnabledBy as WebhookPullRequestDequeuedPropPullRequestPropAutoMergePropEnabledBy, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestDequeuedPropPullRequestPropBase as WebhookPullRequestDequeuedPropPullRequestPropBase, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestDequeuedPropPullRequestPropBasePropRepo as WebhookPullRequestDequeuedPropPullRequestPropBasePropRepo, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestDequeuedPropPullRequestPropBasePropRepoPropLicense as WebhookPullRequestDequeuedPropPullRequestPropBasePropRepoPropLicense, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestDequeuedPropPullRequestPropBasePropRepoPropOwner as WebhookPullRequestDequeuedPropPullRequestPropBasePropRepoPropOwner, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestDequeuedPropPullRequestPropBasePropRepoPropPermissions as WebhookPullRequestDequeuedPropPullRequestPropBasePropRepoPropPermissions, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestDequeuedPropPullRequestPropBasePropUser as WebhookPullRequestDequeuedPropPullRequestPropBasePropUser, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestDequeuedPropPullRequestPropHead as WebhookPullRequestDequeuedPropPullRequestPropHead, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestDequeuedPropPullRequestPropHeadPropRepo as WebhookPullRequestDequeuedPropPullRequestPropHeadPropRepo, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestDequeuedPropPullRequestPropHeadPropRepoPropLicense as WebhookPullRequestDequeuedPropPullRequestPropHeadPropRepoPropLicense, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestDequeuedPropPullRequestPropHeadPropRepoPropOwner as WebhookPullRequestDequeuedPropPullRequestPropHeadPropRepoPropOwner, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestDequeuedPropPullRequestPropHeadPropRepoPropPermissions as WebhookPullRequestDequeuedPropPullRequestPropHeadPropRepoPropPermissions, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestDequeuedPropPullRequestPropHeadPropUser as WebhookPullRequestDequeuedPropPullRequestPropHeadPropUser, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestDequeuedPropPullRequestPropLabelsItems as WebhookPullRequestDequeuedPropPullRequestPropLabelsItems, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestDequeuedPropPullRequestPropLinks as WebhookPullRequestDequeuedPropPullRequestPropLinks, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestDequeuedPropPullRequestPropLinksPropComments as WebhookPullRequestDequeuedPropPullRequestPropLinksPropComments, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestDequeuedPropPullRequestPropLinksPropCommits as WebhookPullRequestDequeuedPropPullRequestPropLinksPropCommits, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestDequeuedPropPullRequestPropLinksPropHtml as WebhookPullRequestDequeuedPropPullRequestPropLinksPropHtml, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestDequeuedPropPullRequestPropLinksPropIssue as WebhookPullRequestDequeuedPropPullRequestPropLinksPropIssue, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestDequeuedPropPullRequestPropLinksPropReviewComment as WebhookPullRequestDequeuedPropPullRequestPropLinksPropReviewComment, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestDequeuedPropPullRequestPropLinksPropReviewComments as WebhookPullRequestDequeuedPropPullRequestPropLinksPropReviewComments, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestDequeuedPropPullRequestPropLinksPropSelf as WebhookPullRequestDequeuedPropPullRequestPropLinksPropSelf, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestDequeuedPropPullRequestPropLinksPropStatuses as WebhookPullRequestDequeuedPropPullRequestPropLinksPropStatuses, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestDequeuedPropPullRequestPropMergedBy as WebhookPullRequestDequeuedPropPullRequestPropMergedBy, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestDequeuedPropPullRequestPropMilestone as WebhookPullRequestDequeuedPropPullRequestPropMilestone, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestDequeuedPropPullRequestPropMilestonePropCreator as WebhookPullRequestDequeuedPropPullRequestPropMilestonePropCreator, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestDequeuedPropPullRequestPropRequestedReviewersItemsOneof0 as WebhookPullRequestDequeuedPropPullRequestPropRequestedReviewersItemsOneof0, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestDequeuedPropPullRequestPropRequestedReviewersItemsOneof1 as WebhookPullRequestDequeuedPropPullRequestPropRequestedReviewersItemsOneof1, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestDequeuedPropPullRequestPropRequestedReviewersItemsOneof1PropParent as WebhookPullRequestDequeuedPropPullRequestPropRequestedReviewersItemsOneof1PropParent, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestDequeuedPropPullRequestPropRequestedTeamsItems as WebhookPullRequestDequeuedPropPullRequestPropRequestedTeamsItems, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestDequeuedPropPullRequestPropRequestedTeamsItemsPropParent as WebhookPullRequestDequeuedPropPullRequestPropRequestedTeamsItemsPropParent, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestDequeuedPropPullRequestPropUser as WebhookPullRequestDequeuedPropPullRequestPropUser, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestEdited as WebhookPullRequestEdited, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestEditedPropChanges as WebhookPullRequestEditedPropChanges, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestEditedPropChangesPropBase as WebhookPullRequestEditedPropChangesPropBase, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestEditedPropChangesPropBasePropRef as WebhookPullRequestEditedPropChangesPropBasePropRef, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestEditedPropChangesPropBasePropSha as WebhookPullRequestEditedPropChangesPropBasePropSha, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestEditedPropChangesPropBody as WebhookPullRequestEditedPropChangesPropBody, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestEditedPropChangesPropTitle as WebhookPullRequestEditedPropChangesPropTitle, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestEnqueued as WebhookPullRequestEnqueued, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestEnqueuedPropPullRequest as WebhookPullRequestEnqueuedPropPullRequest, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestEnqueuedPropPullRequestPropAssignee as WebhookPullRequestEnqueuedPropPullRequestPropAssignee, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestEnqueuedPropPullRequestPropAssigneesItems as WebhookPullRequestEnqueuedPropPullRequestPropAssigneesItems, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestEnqueuedPropPullRequestPropAutoMerge as WebhookPullRequestEnqueuedPropPullRequestPropAutoMerge, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestEnqueuedPropPullRequestPropAutoMergePropEnabledBy as WebhookPullRequestEnqueuedPropPullRequestPropAutoMergePropEnabledBy, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestEnqueuedPropPullRequestPropBase as WebhookPullRequestEnqueuedPropPullRequestPropBase, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestEnqueuedPropPullRequestPropBasePropRepo as WebhookPullRequestEnqueuedPropPullRequestPropBasePropRepo, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestEnqueuedPropPullRequestPropBasePropRepoPropLicense as WebhookPullRequestEnqueuedPropPullRequestPropBasePropRepoPropLicense, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestEnqueuedPropPullRequestPropBasePropRepoPropOwner as WebhookPullRequestEnqueuedPropPullRequestPropBasePropRepoPropOwner, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestEnqueuedPropPullRequestPropBasePropRepoPropPermissions as WebhookPullRequestEnqueuedPropPullRequestPropBasePropRepoPropPermissions, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestEnqueuedPropPullRequestPropBasePropUser as WebhookPullRequestEnqueuedPropPullRequestPropBasePropUser, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestEnqueuedPropPullRequestPropHead as WebhookPullRequestEnqueuedPropPullRequestPropHead, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestEnqueuedPropPullRequestPropHeadPropRepo as WebhookPullRequestEnqueuedPropPullRequestPropHeadPropRepo, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestEnqueuedPropPullRequestPropHeadPropRepoPropLicense as WebhookPullRequestEnqueuedPropPullRequestPropHeadPropRepoPropLicense, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestEnqueuedPropPullRequestPropHeadPropRepoPropOwner as WebhookPullRequestEnqueuedPropPullRequestPropHeadPropRepoPropOwner, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestEnqueuedPropPullRequestPropHeadPropRepoPropPermissions as WebhookPullRequestEnqueuedPropPullRequestPropHeadPropRepoPropPermissions, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestEnqueuedPropPullRequestPropHeadPropUser as WebhookPullRequestEnqueuedPropPullRequestPropHeadPropUser, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestEnqueuedPropPullRequestPropLabelsItems as WebhookPullRequestEnqueuedPropPullRequestPropLabelsItems, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestEnqueuedPropPullRequestPropLinks as WebhookPullRequestEnqueuedPropPullRequestPropLinks, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestEnqueuedPropPullRequestPropLinksPropComments as WebhookPullRequestEnqueuedPropPullRequestPropLinksPropComments, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestEnqueuedPropPullRequestPropLinksPropCommits as WebhookPullRequestEnqueuedPropPullRequestPropLinksPropCommits, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestEnqueuedPropPullRequestPropLinksPropHtml as WebhookPullRequestEnqueuedPropPullRequestPropLinksPropHtml, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestEnqueuedPropPullRequestPropLinksPropIssue as WebhookPullRequestEnqueuedPropPullRequestPropLinksPropIssue, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestEnqueuedPropPullRequestPropLinksPropReviewComment as WebhookPullRequestEnqueuedPropPullRequestPropLinksPropReviewComment, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestEnqueuedPropPullRequestPropLinksPropReviewComments as WebhookPullRequestEnqueuedPropPullRequestPropLinksPropReviewComments, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestEnqueuedPropPullRequestPropLinksPropSelf as WebhookPullRequestEnqueuedPropPullRequestPropLinksPropSelf, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestEnqueuedPropPullRequestPropLinksPropStatuses as WebhookPullRequestEnqueuedPropPullRequestPropLinksPropStatuses, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestEnqueuedPropPullRequestPropMergedBy as WebhookPullRequestEnqueuedPropPullRequestPropMergedBy, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestEnqueuedPropPullRequestPropMilestone as WebhookPullRequestEnqueuedPropPullRequestPropMilestone, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestEnqueuedPropPullRequestPropMilestonePropCreator as WebhookPullRequestEnqueuedPropPullRequestPropMilestonePropCreator, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestEnqueuedPropPullRequestPropRequestedReviewersItemsOneof0 as WebhookPullRequestEnqueuedPropPullRequestPropRequestedReviewersItemsOneof0, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestEnqueuedPropPullRequestPropRequestedReviewersItemsOneof1 as WebhookPullRequestEnqueuedPropPullRequestPropRequestedReviewersItemsOneof1, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestEnqueuedPropPullRequestPropRequestedReviewersItemsOneof1PropParent as WebhookPullRequestEnqueuedPropPullRequestPropRequestedReviewersItemsOneof1PropParent, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestEnqueuedPropPullRequestPropRequestedTeamsItems as WebhookPullRequestEnqueuedPropPullRequestPropRequestedTeamsItems, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestEnqueuedPropPullRequestPropRequestedTeamsItemsPropParent as WebhookPullRequestEnqueuedPropPullRequestPropRequestedTeamsItemsPropParent, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestEnqueuedPropPullRequestPropUser as WebhookPullRequestEnqueuedPropPullRequestPropUser, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestLabeled as WebhookPullRequestLabeled, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestLabeledPropPullRequest as WebhookPullRequestLabeledPropPullRequest, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestLabeledPropPullRequestPropAssignee as WebhookPullRequestLabeledPropPullRequestPropAssignee, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestLabeledPropPullRequestPropAssigneesItems as WebhookPullRequestLabeledPropPullRequestPropAssigneesItems, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestLabeledPropPullRequestPropAutoMerge as WebhookPullRequestLabeledPropPullRequestPropAutoMerge, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestLabeledPropPullRequestPropAutoMergePropEnabledBy as WebhookPullRequestLabeledPropPullRequestPropAutoMergePropEnabledBy, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestLabeledPropPullRequestPropBase as WebhookPullRequestLabeledPropPullRequestPropBase, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestLabeledPropPullRequestPropBasePropRepo as WebhookPullRequestLabeledPropPullRequestPropBasePropRepo, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestLabeledPropPullRequestPropBasePropRepoPropLicense as WebhookPullRequestLabeledPropPullRequestPropBasePropRepoPropLicense, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestLabeledPropPullRequestPropBasePropRepoPropOwner as WebhookPullRequestLabeledPropPullRequestPropBasePropRepoPropOwner, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestLabeledPropPullRequestPropBasePropRepoPropPermissions as WebhookPullRequestLabeledPropPullRequestPropBasePropRepoPropPermissions, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestLabeledPropPullRequestPropBasePropUser as WebhookPullRequestLabeledPropPullRequestPropBasePropUser, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestLabeledPropPullRequestPropHead as WebhookPullRequestLabeledPropPullRequestPropHead, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestLabeledPropPullRequestPropHeadPropRepo as WebhookPullRequestLabeledPropPullRequestPropHeadPropRepo, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestLabeledPropPullRequestPropHeadPropRepoPropLicense as WebhookPullRequestLabeledPropPullRequestPropHeadPropRepoPropLicense, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestLabeledPropPullRequestPropHeadPropRepoPropOwner as WebhookPullRequestLabeledPropPullRequestPropHeadPropRepoPropOwner, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestLabeledPropPullRequestPropHeadPropRepoPropPermissions as WebhookPullRequestLabeledPropPullRequestPropHeadPropRepoPropPermissions, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestLabeledPropPullRequestPropHeadPropUser as WebhookPullRequestLabeledPropPullRequestPropHeadPropUser, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestLabeledPropPullRequestPropLabelsItems as WebhookPullRequestLabeledPropPullRequestPropLabelsItems, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestLabeledPropPullRequestPropLinks as WebhookPullRequestLabeledPropPullRequestPropLinks, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestLabeledPropPullRequestPropLinksPropComments as WebhookPullRequestLabeledPropPullRequestPropLinksPropComments, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestLabeledPropPullRequestPropLinksPropCommits as WebhookPullRequestLabeledPropPullRequestPropLinksPropCommits, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestLabeledPropPullRequestPropLinksPropHtml as WebhookPullRequestLabeledPropPullRequestPropLinksPropHtml, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestLabeledPropPullRequestPropLinksPropIssue as WebhookPullRequestLabeledPropPullRequestPropLinksPropIssue, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestLabeledPropPullRequestPropLinksPropReviewComment as WebhookPullRequestLabeledPropPullRequestPropLinksPropReviewComment, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestLabeledPropPullRequestPropLinksPropReviewComments as WebhookPullRequestLabeledPropPullRequestPropLinksPropReviewComments, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestLabeledPropPullRequestPropLinksPropSelf as WebhookPullRequestLabeledPropPullRequestPropLinksPropSelf, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestLabeledPropPullRequestPropLinksPropStatuses as WebhookPullRequestLabeledPropPullRequestPropLinksPropStatuses, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestLabeledPropPullRequestPropMergedBy as WebhookPullRequestLabeledPropPullRequestPropMergedBy, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestLabeledPropPullRequestPropMilestone as WebhookPullRequestLabeledPropPullRequestPropMilestone, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestLabeledPropPullRequestPropMilestonePropCreator as WebhookPullRequestLabeledPropPullRequestPropMilestonePropCreator, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestLabeledPropPullRequestPropRequestedReviewersItemsOneof0 as WebhookPullRequestLabeledPropPullRequestPropRequestedReviewersItemsOneof0, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestLabeledPropPullRequestPropRequestedReviewersItemsOneof1 as WebhookPullRequestLabeledPropPullRequestPropRequestedReviewersItemsOneof1, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestLabeledPropPullRequestPropRequestedReviewersItemsOneof1PropParent as WebhookPullRequestLabeledPropPullRequestPropRequestedReviewersItemsOneof1PropParent, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestLabeledPropPullRequestPropRequestedTeamsItems as WebhookPullRequestLabeledPropPullRequestPropRequestedTeamsItems, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestLabeledPropPullRequestPropRequestedTeamsItemsPropParent as WebhookPullRequestLabeledPropPullRequestPropRequestedTeamsItemsPropParent, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestLabeledPropPullRequestPropUser as WebhookPullRequestLabeledPropPullRequestPropUser, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestLocked as WebhookPullRequestLocked, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestLockedPropPullRequest as WebhookPullRequestLockedPropPullRequest, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestLockedPropPullRequestPropAssignee as WebhookPullRequestLockedPropPullRequestPropAssignee, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestLockedPropPullRequestPropAssigneesItems as WebhookPullRequestLockedPropPullRequestPropAssigneesItems, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestLockedPropPullRequestPropAutoMerge as WebhookPullRequestLockedPropPullRequestPropAutoMerge, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestLockedPropPullRequestPropAutoMergePropEnabledBy as WebhookPullRequestLockedPropPullRequestPropAutoMergePropEnabledBy, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestLockedPropPullRequestPropBase as WebhookPullRequestLockedPropPullRequestPropBase, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestLockedPropPullRequestPropBasePropRepo as WebhookPullRequestLockedPropPullRequestPropBasePropRepo, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestLockedPropPullRequestPropBasePropRepoPropLicense as WebhookPullRequestLockedPropPullRequestPropBasePropRepoPropLicense, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestLockedPropPullRequestPropBasePropRepoPropOwner as WebhookPullRequestLockedPropPullRequestPropBasePropRepoPropOwner, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestLockedPropPullRequestPropBasePropRepoPropPermissions as WebhookPullRequestLockedPropPullRequestPropBasePropRepoPropPermissions, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestLockedPropPullRequestPropBasePropUser as WebhookPullRequestLockedPropPullRequestPropBasePropUser, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestLockedPropPullRequestPropHead as WebhookPullRequestLockedPropPullRequestPropHead, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestLockedPropPullRequestPropHeadPropRepo as WebhookPullRequestLockedPropPullRequestPropHeadPropRepo, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestLockedPropPullRequestPropHeadPropRepoPropLicense as WebhookPullRequestLockedPropPullRequestPropHeadPropRepoPropLicense, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestLockedPropPullRequestPropHeadPropRepoPropOwner as WebhookPullRequestLockedPropPullRequestPropHeadPropRepoPropOwner, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestLockedPropPullRequestPropHeadPropRepoPropPermissions as WebhookPullRequestLockedPropPullRequestPropHeadPropRepoPropPermissions, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestLockedPropPullRequestPropHeadPropUser as WebhookPullRequestLockedPropPullRequestPropHeadPropUser, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestLockedPropPullRequestPropLabelsItems as WebhookPullRequestLockedPropPullRequestPropLabelsItems, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestLockedPropPullRequestPropLinks as WebhookPullRequestLockedPropPullRequestPropLinks, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestLockedPropPullRequestPropLinksPropComments as WebhookPullRequestLockedPropPullRequestPropLinksPropComments, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestLockedPropPullRequestPropLinksPropCommits as WebhookPullRequestLockedPropPullRequestPropLinksPropCommits, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestLockedPropPullRequestPropLinksPropHtml as WebhookPullRequestLockedPropPullRequestPropLinksPropHtml, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestLockedPropPullRequestPropLinksPropIssue as WebhookPullRequestLockedPropPullRequestPropLinksPropIssue, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestLockedPropPullRequestPropLinksPropReviewComment as WebhookPullRequestLockedPropPullRequestPropLinksPropReviewComment, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestLockedPropPullRequestPropLinksPropReviewComments as WebhookPullRequestLockedPropPullRequestPropLinksPropReviewComments, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestLockedPropPullRequestPropLinksPropSelf as WebhookPullRequestLockedPropPullRequestPropLinksPropSelf, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestLockedPropPullRequestPropLinksPropStatuses as WebhookPullRequestLockedPropPullRequestPropLinksPropStatuses, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestLockedPropPullRequestPropMergedBy as WebhookPullRequestLockedPropPullRequestPropMergedBy, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestLockedPropPullRequestPropMilestone as WebhookPullRequestLockedPropPullRequestPropMilestone, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestLockedPropPullRequestPropMilestonePropCreator as WebhookPullRequestLockedPropPullRequestPropMilestonePropCreator, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestLockedPropPullRequestPropRequestedReviewersItemsOneof0 as WebhookPullRequestLockedPropPullRequestPropRequestedReviewersItemsOneof0, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestLockedPropPullRequestPropRequestedReviewersItemsOneof1 as WebhookPullRequestLockedPropPullRequestPropRequestedReviewersItemsOneof1, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestLockedPropPullRequestPropRequestedReviewersItemsOneof1PropParent as WebhookPullRequestLockedPropPullRequestPropRequestedReviewersItemsOneof1PropParent, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestLockedPropPullRequestPropRequestedTeamsItems as WebhookPullRequestLockedPropPullRequestPropRequestedTeamsItems, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestLockedPropPullRequestPropRequestedTeamsItemsPropParent as WebhookPullRequestLockedPropPullRequestPropRequestedTeamsItemsPropParent, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestLockedPropPullRequestPropUser as WebhookPullRequestLockedPropPullRequestPropUser, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestMilestoned as WebhookPullRequestMilestoned, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestOpened as WebhookPullRequestOpened, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReadyForReview as WebhookPullRequestReadyForReview, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReopened as WebhookPullRequestReopened, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewCommentCreated as WebhookPullRequestReviewCommentCreated, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewCommentCreatedPropComment as WebhookPullRequestReviewCommentCreatedPropComment, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewCommentCreatedPropCommentPropLinks as WebhookPullRequestReviewCommentCreatedPropCommentPropLinks, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewCommentCreatedPropCommentPropLinksPropHtml as WebhookPullRequestReviewCommentCreatedPropCommentPropLinksPropHtml, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewCommentCreatedPropCommentPropLinksPropPullRequest as WebhookPullRequestReviewCommentCreatedPropCommentPropLinksPropPullRequest, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewCommentCreatedPropCommentPropLinksPropSelf as WebhookPullRequestReviewCommentCreatedPropCommentPropLinksPropSelf, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewCommentCreatedPropCommentPropReactions as WebhookPullRequestReviewCommentCreatedPropCommentPropReactions, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewCommentCreatedPropCommentPropUser as WebhookPullRequestReviewCommentCreatedPropCommentPropUser, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewCommentCreatedPropPullRequest as WebhookPullRequestReviewCommentCreatedPropPullRequest, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewCommentCreatedPropPullRequestPropAssignee as WebhookPullRequestReviewCommentCreatedPropPullRequestPropAssignee, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewCommentCreatedPropPullRequestPropAssigneesItems as WebhookPullRequestReviewCommentCreatedPropPullRequestPropAssigneesItems, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewCommentCreatedPropPullRequestPropAutoMerge as WebhookPullRequestReviewCommentCreatedPropPullRequestPropAutoMerge, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewCommentCreatedPropPullRequestPropAutoMergePropEnabledBy as WebhookPullRequestReviewCommentCreatedPropPullRequestPropAutoMergePropEnabledBy, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewCommentCreatedPropPullRequestPropBase as WebhookPullRequestReviewCommentCreatedPropPullRequestPropBase, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewCommentCreatedPropPullRequestPropBasePropRepo as WebhookPullRequestReviewCommentCreatedPropPullRequestPropBasePropRepo, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewCommentCreatedPropPullRequestPropBasePropRepoPropLicense as WebhookPullRequestReviewCommentCreatedPropPullRequestPropBasePropRepoPropLicense, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewCommentCreatedPropPullRequestPropBasePropRepoPropOwner as WebhookPullRequestReviewCommentCreatedPropPullRequestPropBasePropRepoPropOwner, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewCommentCreatedPropPullRequestPropBasePropRepoPropPermissions as WebhookPullRequestReviewCommentCreatedPropPullRequestPropBasePropRepoPropPermissions, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewCommentCreatedPropPullRequestPropBasePropUser as WebhookPullRequestReviewCommentCreatedPropPullRequestPropBasePropUser, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewCommentCreatedPropPullRequestPropHead as WebhookPullRequestReviewCommentCreatedPropPullRequestPropHead, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewCommentCreatedPropPullRequestPropHeadPropRepo as WebhookPullRequestReviewCommentCreatedPropPullRequestPropHeadPropRepo, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewCommentCreatedPropPullRequestPropHeadPropRepoPropLicense as WebhookPullRequestReviewCommentCreatedPropPullRequestPropHeadPropRepoPropLicense, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewCommentCreatedPropPullRequestPropHeadPropRepoPropOwner as WebhookPullRequestReviewCommentCreatedPropPullRequestPropHeadPropRepoPropOwner, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewCommentCreatedPropPullRequestPropHeadPropRepoPropPermissions as WebhookPullRequestReviewCommentCreatedPropPullRequestPropHeadPropRepoPropPermissions, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewCommentCreatedPropPullRequestPropHeadPropUser as WebhookPullRequestReviewCommentCreatedPropPullRequestPropHeadPropUser, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewCommentCreatedPropPullRequestPropLabelsItems as WebhookPullRequestReviewCommentCreatedPropPullRequestPropLabelsItems, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewCommentCreatedPropPullRequestPropLinks as WebhookPullRequestReviewCommentCreatedPropPullRequestPropLinks, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewCommentCreatedPropPullRequestPropLinksPropComments as WebhookPullRequestReviewCommentCreatedPropPullRequestPropLinksPropComments, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewCommentCreatedPropPullRequestPropLinksPropCommits as WebhookPullRequestReviewCommentCreatedPropPullRequestPropLinksPropCommits, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewCommentCreatedPropPullRequestPropLinksPropHtml as WebhookPullRequestReviewCommentCreatedPropPullRequestPropLinksPropHtml, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewCommentCreatedPropPullRequestPropLinksPropIssue as WebhookPullRequestReviewCommentCreatedPropPullRequestPropLinksPropIssue, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewCommentCreatedPropPullRequestPropLinksPropReviewComment as WebhookPullRequestReviewCommentCreatedPropPullRequestPropLinksPropReviewComment, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewCommentCreatedPropPullRequestPropLinksPropReviewComments as WebhookPullRequestReviewCommentCreatedPropPullRequestPropLinksPropReviewComments, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewCommentCreatedPropPullRequestPropLinksPropSelf as WebhookPullRequestReviewCommentCreatedPropPullRequestPropLinksPropSelf, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewCommentCreatedPropPullRequestPropLinksPropStatuses as WebhookPullRequestReviewCommentCreatedPropPullRequestPropLinksPropStatuses, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewCommentCreatedPropPullRequestPropMilestone as WebhookPullRequestReviewCommentCreatedPropPullRequestPropMilestone, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewCommentCreatedPropPullRequestPropMilestonePropCreator as WebhookPullRequestReviewCommentCreatedPropPullRequestPropMilestonePropCreator, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewCommentCreatedPropPullRequestPropRequestedReviewersItemsOneof0 as WebhookPullRequestReviewCommentCreatedPropPullRequestPropRequestedReviewersItemsOneof0, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewCommentCreatedPropPullRequestPropRequestedReviewersItemsOneof1 as WebhookPullRequestReviewCommentCreatedPropPullRequestPropRequestedReviewersItemsOneof1, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewCommentCreatedPropPullRequestPropRequestedReviewersItemsOneof1PropParent as WebhookPullRequestReviewCommentCreatedPropPullRequestPropRequestedReviewersItemsOneof1PropParent, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewCommentCreatedPropPullRequestPropRequestedTeamsItems as WebhookPullRequestReviewCommentCreatedPropPullRequestPropRequestedTeamsItems, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewCommentCreatedPropPullRequestPropRequestedTeamsItemsPropParent as WebhookPullRequestReviewCommentCreatedPropPullRequestPropRequestedTeamsItemsPropParent, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewCommentCreatedPropPullRequestPropUser as WebhookPullRequestReviewCommentCreatedPropPullRequestPropUser, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewCommentDeleted as WebhookPullRequestReviewCommentDeleted, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewCommentDeletedPropPullRequest as WebhookPullRequestReviewCommentDeletedPropPullRequest, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewCommentDeletedPropPullRequestPropAssignee as WebhookPullRequestReviewCommentDeletedPropPullRequestPropAssignee, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewCommentDeletedPropPullRequestPropAssigneesItems as WebhookPullRequestReviewCommentDeletedPropPullRequestPropAssigneesItems, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewCommentDeletedPropPullRequestPropAutoMerge as WebhookPullRequestReviewCommentDeletedPropPullRequestPropAutoMerge, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewCommentDeletedPropPullRequestPropAutoMergePropEnabledBy as WebhookPullRequestReviewCommentDeletedPropPullRequestPropAutoMergePropEnabledBy, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewCommentDeletedPropPullRequestPropBase as WebhookPullRequestReviewCommentDeletedPropPullRequestPropBase, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewCommentDeletedPropPullRequestPropBasePropRepo as WebhookPullRequestReviewCommentDeletedPropPullRequestPropBasePropRepo, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewCommentDeletedPropPullRequestPropBasePropRepoPropLicense as WebhookPullRequestReviewCommentDeletedPropPullRequestPropBasePropRepoPropLicense, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewCommentDeletedPropPullRequestPropBasePropRepoPropOwner as WebhookPullRequestReviewCommentDeletedPropPullRequestPropBasePropRepoPropOwner, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewCommentDeletedPropPullRequestPropBasePropRepoPropPermissions as WebhookPullRequestReviewCommentDeletedPropPullRequestPropBasePropRepoPropPermissions, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewCommentDeletedPropPullRequestPropBasePropUser as WebhookPullRequestReviewCommentDeletedPropPullRequestPropBasePropUser, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewCommentDeletedPropPullRequestPropHead as WebhookPullRequestReviewCommentDeletedPropPullRequestPropHead, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewCommentDeletedPropPullRequestPropHeadPropRepo as WebhookPullRequestReviewCommentDeletedPropPullRequestPropHeadPropRepo, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewCommentDeletedPropPullRequestPropHeadPropRepoPropLicense as WebhookPullRequestReviewCommentDeletedPropPullRequestPropHeadPropRepoPropLicense, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewCommentDeletedPropPullRequestPropHeadPropRepoPropOwner as WebhookPullRequestReviewCommentDeletedPropPullRequestPropHeadPropRepoPropOwner, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewCommentDeletedPropPullRequestPropHeadPropRepoPropPermissions as WebhookPullRequestReviewCommentDeletedPropPullRequestPropHeadPropRepoPropPermissions, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewCommentDeletedPropPullRequestPropHeadPropUser as WebhookPullRequestReviewCommentDeletedPropPullRequestPropHeadPropUser, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewCommentDeletedPropPullRequestPropLabelsItems as WebhookPullRequestReviewCommentDeletedPropPullRequestPropLabelsItems, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewCommentDeletedPropPullRequestPropLinks as WebhookPullRequestReviewCommentDeletedPropPullRequestPropLinks, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewCommentDeletedPropPullRequestPropLinksPropComments as WebhookPullRequestReviewCommentDeletedPropPullRequestPropLinksPropComments, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewCommentDeletedPropPullRequestPropLinksPropCommits as WebhookPullRequestReviewCommentDeletedPropPullRequestPropLinksPropCommits, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewCommentDeletedPropPullRequestPropLinksPropHtml as WebhookPullRequestReviewCommentDeletedPropPullRequestPropLinksPropHtml, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewCommentDeletedPropPullRequestPropLinksPropIssue as WebhookPullRequestReviewCommentDeletedPropPullRequestPropLinksPropIssue, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewCommentDeletedPropPullRequestPropLinksPropReviewComment as WebhookPullRequestReviewCommentDeletedPropPullRequestPropLinksPropReviewComment, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewCommentDeletedPropPullRequestPropLinksPropReviewComments as WebhookPullRequestReviewCommentDeletedPropPullRequestPropLinksPropReviewComments, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewCommentDeletedPropPullRequestPropLinksPropSelf as WebhookPullRequestReviewCommentDeletedPropPullRequestPropLinksPropSelf, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewCommentDeletedPropPullRequestPropLinksPropStatuses as WebhookPullRequestReviewCommentDeletedPropPullRequestPropLinksPropStatuses, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewCommentDeletedPropPullRequestPropMilestone as WebhookPullRequestReviewCommentDeletedPropPullRequestPropMilestone, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewCommentDeletedPropPullRequestPropMilestonePropCreator as WebhookPullRequestReviewCommentDeletedPropPullRequestPropMilestonePropCreator, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewCommentDeletedPropPullRequestPropRequestedReviewersItemsOneof0 as WebhookPullRequestReviewCommentDeletedPropPullRequestPropRequestedReviewersItemsOneof0, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewCommentDeletedPropPullRequestPropRequestedReviewersItemsOneof1 as WebhookPullRequestReviewCommentDeletedPropPullRequestPropRequestedReviewersItemsOneof1, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewCommentDeletedPropPullRequestPropRequestedReviewersItemsOneof1PropParent as WebhookPullRequestReviewCommentDeletedPropPullRequestPropRequestedReviewersItemsOneof1PropParent, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewCommentDeletedPropPullRequestPropRequestedTeamsItems as WebhookPullRequestReviewCommentDeletedPropPullRequestPropRequestedTeamsItems, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewCommentDeletedPropPullRequestPropRequestedTeamsItemsPropParent as WebhookPullRequestReviewCommentDeletedPropPullRequestPropRequestedTeamsItemsPropParent, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewCommentDeletedPropPullRequestPropUser as WebhookPullRequestReviewCommentDeletedPropPullRequestPropUser, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewCommentEdited as WebhookPullRequestReviewCommentEdited, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewCommentEditedPropPullRequest as WebhookPullRequestReviewCommentEditedPropPullRequest, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewCommentEditedPropPullRequestPropAssignee as WebhookPullRequestReviewCommentEditedPropPullRequestPropAssignee, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewCommentEditedPropPullRequestPropAssigneesItems as WebhookPullRequestReviewCommentEditedPropPullRequestPropAssigneesItems, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewCommentEditedPropPullRequestPropAutoMerge as WebhookPullRequestReviewCommentEditedPropPullRequestPropAutoMerge, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewCommentEditedPropPullRequestPropAutoMergePropEnabledBy as WebhookPullRequestReviewCommentEditedPropPullRequestPropAutoMergePropEnabledBy, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewCommentEditedPropPullRequestPropBase as WebhookPullRequestReviewCommentEditedPropPullRequestPropBase, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewCommentEditedPropPullRequestPropBasePropRepo as WebhookPullRequestReviewCommentEditedPropPullRequestPropBasePropRepo, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewCommentEditedPropPullRequestPropBasePropRepoPropLicense as WebhookPullRequestReviewCommentEditedPropPullRequestPropBasePropRepoPropLicense, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewCommentEditedPropPullRequestPropBasePropRepoPropOwner as WebhookPullRequestReviewCommentEditedPropPullRequestPropBasePropRepoPropOwner, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewCommentEditedPropPullRequestPropBasePropRepoPropPermissions as WebhookPullRequestReviewCommentEditedPropPullRequestPropBasePropRepoPropPermissions, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewCommentEditedPropPullRequestPropBasePropUser as WebhookPullRequestReviewCommentEditedPropPullRequestPropBasePropUser, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewCommentEditedPropPullRequestPropHead as WebhookPullRequestReviewCommentEditedPropPullRequestPropHead, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewCommentEditedPropPullRequestPropHeadPropRepo as WebhookPullRequestReviewCommentEditedPropPullRequestPropHeadPropRepo, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewCommentEditedPropPullRequestPropHeadPropRepoPropLicense as WebhookPullRequestReviewCommentEditedPropPullRequestPropHeadPropRepoPropLicense, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewCommentEditedPropPullRequestPropHeadPropRepoPropOwner as WebhookPullRequestReviewCommentEditedPropPullRequestPropHeadPropRepoPropOwner, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewCommentEditedPropPullRequestPropHeadPropRepoPropPermissions as WebhookPullRequestReviewCommentEditedPropPullRequestPropHeadPropRepoPropPermissions, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewCommentEditedPropPullRequestPropHeadPropUser as WebhookPullRequestReviewCommentEditedPropPullRequestPropHeadPropUser, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewCommentEditedPropPullRequestPropLabelsItems as WebhookPullRequestReviewCommentEditedPropPullRequestPropLabelsItems, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewCommentEditedPropPullRequestPropLinks as WebhookPullRequestReviewCommentEditedPropPullRequestPropLinks, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewCommentEditedPropPullRequestPropLinksPropComments as WebhookPullRequestReviewCommentEditedPropPullRequestPropLinksPropComments, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewCommentEditedPropPullRequestPropLinksPropCommits as WebhookPullRequestReviewCommentEditedPropPullRequestPropLinksPropCommits, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewCommentEditedPropPullRequestPropLinksPropHtml as WebhookPullRequestReviewCommentEditedPropPullRequestPropLinksPropHtml, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewCommentEditedPropPullRequestPropLinksPropIssue as WebhookPullRequestReviewCommentEditedPropPullRequestPropLinksPropIssue, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewCommentEditedPropPullRequestPropLinksPropReviewComment as WebhookPullRequestReviewCommentEditedPropPullRequestPropLinksPropReviewComment, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewCommentEditedPropPullRequestPropLinksPropReviewComments as WebhookPullRequestReviewCommentEditedPropPullRequestPropLinksPropReviewComments, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewCommentEditedPropPullRequestPropLinksPropSelf as WebhookPullRequestReviewCommentEditedPropPullRequestPropLinksPropSelf, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewCommentEditedPropPullRequestPropLinksPropStatuses as WebhookPullRequestReviewCommentEditedPropPullRequestPropLinksPropStatuses, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewCommentEditedPropPullRequestPropMilestone as WebhookPullRequestReviewCommentEditedPropPullRequestPropMilestone, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewCommentEditedPropPullRequestPropMilestonePropCreator as WebhookPullRequestReviewCommentEditedPropPullRequestPropMilestonePropCreator, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewCommentEditedPropPullRequestPropRequestedReviewersItemsOneof0 as WebhookPullRequestReviewCommentEditedPropPullRequestPropRequestedReviewersItemsOneof0, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewCommentEditedPropPullRequestPropRequestedReviewersItemsOneof1 as WebhookPullRequestReviewCommentEditedPropPullRequestPropRequestedReviewersItemsOneof1, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewCommentEditedPropPullRequestPropRequestedReviewersItemsOneof1PropParent as WebhookPullRequestReviewCommentEditedPropPullRequestPropRequestedReviewersItemsOneof1PropParent, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewCommentEditedPropPullRequestPropRequestedTeamsItems as WebhookPullRequestReviewCommentEditedPropPullRequestPropRequestedTeamsItems, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewCommentEditedPropPullRequestPropRequestedTeamsItemsPropParent as WebhookPullRequestReviewCommentEditedPropPullRequestPropRequestedTeamsItemsPropParent, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewCommentEditedPropPullRequestPropUser as WebhookPullRequestReviewCommentEditedPropPullRequestPropUser, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewDismissed as WebhookPullRequestReviewDismissed, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewDismissedPropPullRequest as WebhookPullRequestReviewDismissedPropPullRequest, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewDismissedPropPullRequestPropAssignee as WebhookPullRequestReviewDismissedPropPullRequestPropAssignee, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewDismissedPropPullRequestPropAssigneesItems as WebhookPullRequestReviewDismissedPropPullRequestPropAssigneesItems, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewDismissedPropPullRequestPropAutoMerge as WebhookPullRequestReviewDismissedPropPullRequestPropAutoMerge, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewDismissedPropPullRequestPropAutoMergePropEnabledBy as WebhookPullRequestReviewDismissedPropPullRequestPropAutoMergePropEnabledBy, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewDismissedPropPullRequestPropBase as WebhookPullRequestReviewDismissedPropPullRequestPropBase, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewDismissedPropPullRequestPropBasePropRepo as WebhookPullRequestReviewDismissedPropPullRequestPropBasePropRepo, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewDismissedPropPullRequestPropBasePropRepoPropLicense as WebhookPullRequestReviewDismissedPropPullRequestPropBasePropRepoPropLicense, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewDismissedPropPullRequestPropBasePropRepoPropOwner as WebhookPullRequestReviewDismissedPropPullRequestPropBasePropRepoPropOwner, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewDismissedPropPullRequestPropBasePropRepoPropPermissions as WebhookPullRequestReviewDismissedPropPullRequestPropBasePropRepoPropPermissions, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewDismissedPropPullRequestPropBasePropUser as WebhookPullRequestReviewDismissedPropPullRequestPropBasePropUser, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewDismissedPropPullRequestPropHead as WebhookPullRequestReviewDismissedPropPullRequestPropHead, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewDismissedPropPullRequestPropHeadPropRepo as WebhookPullRequestReviewDismissedPropPullRequestPropHeadPropRepo, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewDismissedPropPullRequestPropHeadPropRepoPropLicense as WebhookPullRequestReviewDismissedPropPullRequestPropHeadPropRepoPropLicense, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewDismissedPropPullRequestPropHeadPropRepoPropOwner as WebhookPullRequestReviewDismissedPropPullRequestPropHeadPropRepoPropOwner, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewDismissedPropPullRequestPropHeadPropRepoPropPermissions as WebhookPullRequestReviewDismissedPropPullRequestPropHeadPropRepoPropPermissions, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewDismissedPropPullRequestPropHeadPropUser as WebhookPullRequestReviewDismissedPropPullRequestPropHeadPropUser, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewDismissedPropPullRequestPropLabelsItems as WebhookPullRequestReviewDismissedPropPullRequestPropLabelsItems, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewDismissedPropPullRequestPropLinks as WebhookPullRequestReviewDismissedPropPullRequestPropLinks, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewDismissedPropPullRequestPropLinksPropComments as WebhookPullRequestReviewDismissedPropPullRequestPropLinksPropComments, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewDismissedPropPullRequestPropLinksPropCommits as WebhookPullRequestReviewDismissedPropPullRequestPropLinksPropCommits, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewDismissedPropPullRequestPropLinksPropHtml as WebhookPullRequestReviewDismissedPropPullRequestPropLinksPropHtml, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewDismissedPropPullRequestPropLinksPropIssue as WebhookPullRequestReviewDismissedPropPullRequestPropLinksPropIssue, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewDismissedPropPullRequestPropLinksPropReviewComment as WebhookPullRequestReviewDismissedPropPullRequestPropLinksPropReviewComment, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewDismissedPropPullRequestPropLinksPropReviewComments as WebhookPullRequestReviewDismissedPropPullRequestPropLinksPropReviewComments, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewDismissedPropPullRequestPropLinksPropSelf as WebhookPullRequestReviewDismissedPropPullRequestPropLinksPropSelf, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewDismissedPropPullRequestPropLinksPropStatuses as WebhookPullRequestReviewDismissedPropPullRequestPropLinksPropStatuses, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewDismissedPropPullRequestPropMilestone as WebhookPullRequestReviewDismissedPropPullRequestPropMilestone, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewDismissedPropPullRequestPropMilestonePropCreator as WebhookPullRequestReviewDismissedPropPullRequestPropMilestonePropCreator, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewDismissedPropPullRequestPropRequestedReviewersItemsOneof0 as WebhookPullRequestReviewDismissedPropPullRequestPropRequestedReviewersItemsOneof0, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewDismissedPropPullRequestPropRequestedReviewersItemsOneof1 as WebhookPullRequestReviewDismissedPropPullRequestPropRequestedReviewersItemsOneof1, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewDismissedPropPullRequestPropRequestedReviewersItemsOneof1PropParent as WebhookPullRequestReviewDismissedPropPullRequestPropRequestedReviewersItemsOneof1PropParent, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewDismissedPropPullRequestPropRequestedTeamsItems as WebhookPullRequestReviewDismissedPropPullRequestPropRequestedTeamsItems, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewDismissedPropPullRequestPropRequestedTeamsItemsPropParent as WebhookPullRequestReviewDismissedPropPullRequestPropRequestedTeamsItemsPropParent, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewDismissedPropPullRequestPropUser as WebhookPullRequestReviewDismissedPropPullRequestPropUser, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewDismissedPropReview as WebhookPullRequestReviewDismissedPropReview, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewDismissedPropReviewPropLinks as WebhookPullRequestReviewDismissedPropReviewPropLinks, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewDismissedPropReviewPropLinksPropHtml as WebhookPullRequestReviewDismissedPropReviewPropLinksPropHtml, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewDismissedPropReviewPropLinksPropPullRequest as WebhookPullRequestReviewDismissedPropReviewPropLinksPropPullRequest, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewDismissedPropReviewPropUser as WebhookPullRequestReviewDismissedPropReviewPropUser, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewEdited as WebhookPullRequestReviewEdited, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewEditedPropChanges as WebhookPullRequestReviewEditedPropChanges, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewEditedPropChangesPropBody as WebhookPullRequestReviewEditedPropChangesPropBody, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewEditedPropPullRequest as WebhookPullRequestReviewEditedPropPullRequest, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewEditedPropPullRequestPropAssignee as WebhookPullRequestReviewEditedPropPullRequestPropAssignee, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewEditedPropPullRequestPropAssigneesItems as WebhookPullRequestReviewEditedPropPullRequestPropAssigneesItems, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewEditedPropPullRequestPropAutoMerge as WebhookPullRequestReviewEditedPropPullRequestPropAutoMerge, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewEditedPropPullRequestPropAutoMergePropEnabledBy as WebhookPullRequestReviewEditedPropPullRequestPropAutoMergePropEnabledBy, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewEditedPropPullRequestPropBase as WebhookPullRequestReviewEditedPropPullRequestPropBase, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewEditedPropPullRequestPropBasePropRepo as WebhookPullRequestReviewEditedPropPullRequestPropBasePropRepo, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewEditedPropPullRequestPropBasePropRepoPropLicense as WebhookPullRequestReviewEditedPropPullRequestPropBasePropRepoPropLicense, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewEditedPropPullRequestPropBasePropRepoPropOwner as WebhookPullRequestReviewEditedPropPullRequestPropBasePropRepoPropOwner, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewEditedPropPullRequestPropBasePropRepoPropPermissions as WebhookPullRequestReviewEditedPropPullRequestPropBasePropRepoPropPermissions, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewEditedPropPullRequestPropBasePropUser as WebhookPullRequestReviewEditedPropPullRequestPropBasePropUser, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewEditedPropPullRequestPropHead as WebhookPullRequestReviewEditedPropPullRequestPropHead, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewEditedPropPullRequestPropHeadPropRepo as WebhookPullRequestReviewEditedPropPullRequestPropHeadPropRepo, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewEditedPropPullRequestPropHeadPropRepoPropLicense as WebhookPullRequestReviewEditedPropPullRequestPropHeadPropRepoPropLicense, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewEditedPropPullRequestPropHeadPropRepoPropOwner as WebhookPullRequestReviewEditedPropPullRequestPropHeadPropRepoPropOwner, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewEditedPropPullRequestPropHeadPropRepoPropPermissions as WebhookPullRequestReviewEditedPropPullRequestPropHeadPropRepoPropPermissions, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewEditedPropPullRequestPropHeadPropUser as WebhookPullRequestReviewEditedPropPullRequestPropHeadPropUser, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewEditedPropPullRequestPropLabelsItems as WebhookPullRequestReviewEditedPropPullRequestPropLabelsItems, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewEditedPropPullRequestPropLinks as WebhookPullRequestReviewEditedPropPullRequestPropLinks, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewEditedPropPullRequestPropLinksPropComments as WebhookPullRequestReviewEditedPropPullRequestPropLinksPropComments, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewEditedPropPullRequestPropLinksPropCommits as WebhookPullRequestReviewEditedPropPullRequestPropLinksPropCommits, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewEditedPropPullRequestPropLinksPropHtml as WebhookPullRequestReviewEditedPropPullRequestPropLinksPropHtml, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewEditedPropPullRequestPropLinksPropIssue as WebhookPullRequestReviewEditedPropPullRequestPropLinksPropIssue, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewEditedPropPullRequestPropLinksPropReviewComment as WebhookPullRequestReviewEditedPropPullRequestPropLinksPropReviewComment, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewEditedPropPullRequestPropLinksPropReviewComments as WebhookPullRequestReviewEditedPropPullRequestPropLinksPropReviewComments, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewEditedPropPullRequestPropLinksPropSelf as WebhookPullRequestReviewEditedPropPullRequestPropLinksPropSelf, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewEditedPropPullRequestPropLinksPropStatuses as WebhookPullRequestReviewEditedPropPullRequestPropLinksPropStatuses, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewEditedPropPullRequestPropMilestone as WebhookPullRequestReviewEditedPropPullRequestPropMilestone, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewEditedPropPullRequestPropMilestonePropCreator as WebhookPullRequestReviewEditedPropPullRequestPropMilestonePropCreator, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewEditedPropPullRequestPropRequestedReviewersItemsOneof0 as WebhookPullRequestReviewEditedPropPullRequestPropRequestedReviewersItemsOneof0, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewEditedPropPullRequestPropRequestedReviewersItemsOneof1 as WebhookPullRequestReviewEditedPropPullRequestPropRequestedReviewersItemsOneof1, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewEditedPropPullRequestPropRequestedReviewersItemsOneof1PropParent as WebhookPullRequestReviewEditedPropPullRequestPropRequestedReviewersItemsOneof1PropParent, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewEditedPropPullRequestPropRequestedTeamsItems as WebhookPullRequestReviewEditedPropPullRequestPropRequestedTeamsItems, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewEditedPropPullRequestPropRequestedTeamsItemsPropParent as WebhookPullRequestReviewEditedPropPullRequestPropRequestedTeamsItemsPropParent, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewEditedPropPullRequestPropUser as WebhookPullRequestReviewEditedPropPullRequestPropUser, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewRequestedOneof0 as WebhookPullRequestReviewRequestedOneof0, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewRequestedOneof0PropPullRequest as WebhookPullRequestReviewRequestedOneof0PropPullRequest, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewRequestedOneof0PropPullRequestPropAssignee as WebhookPullRequestReviewRequestedOneof0PropPullRequestPropAssignee, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewRequestedOneof0PropPullRequestPropAssigneesItems as WebhookPullRequestReviewRequestedOneof0PropPullRequestPropAssigneesItems, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewRequestedOneof0PropPullRequestPropAutoMerge as WebhookPullRequestReviewRequestedOneof0PropPullRequestPropAutoMerge, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewRequestedOneof0PropPullRequestPropAutoMergePropEnabledBy as WebhookPullRequestReviewRequestedOneof0PropPullRequestPropAutoMergePropEnabledBy, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewRequestedOneof0PropPullRequestPropBase as WebhookPullRequestReviewRequestedOneof0PropPullRequestPropBase, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewRequestedOneof0PropPullRequestPropBasePropRepo as WebhookPullRequestReviewRequestedOneof0PropPullRequestPropBasePropRepo, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewRequestedOneof0PropPullRequestPropBasePropRepoPropLicense as WebhookPullRequestReviewRequestedOneof0PropPullRequestPropBasePropRepoPropLicense, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewRequestedOneof0PropPullRequestPropBasePropRepoPropOwner as WebhookPullRequestReviewRequestedOneof0PropPullRequestPropBasePropRepoPropOwner, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewRequestedOneof0PropPullRequestPropBasePropRepoPropPermissions as WebhookPullRequestReviewRequestedOneof0PropPullRequestPropBasePropRepoPropPermissions, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewRequestedOneof0PropPullRequestPropBasePropUser as WebhookPullRequestReviewRequestedOneof0PropPullRequestPropBasePropUser, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewRequestedOneof0PropPullRequestPropHead as WebhookPullRequestReviewRequestedOneof0PropPullRequestPropHead, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewRequestedOneof0PropPullRequestPropHeadPropRepo as WebhookPullRequestReviewRequestedOneof0PropPullRequestPropHeadPropRepo, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewRequestedOneof0PropPullRequestPropHeadPropRepoPropLicense as WebhookPullRequestReviewRequestedOneof0PropPullRequestPropHeadPropRepoPropLicense, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewRequestedOneof0PropPullRequestPropHeadPropRepoPropOwner as WebhookPullRequestReviewRequestedOneof0PropPullRequestPropHeadPropRepoPropOwner, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewRequestedOneof0PropPullRequestPropHeadPropRepoPropPermissions as WebhookPullRequestReviewRequestedOneof0PropPullRequestPropHeadPropRepoPropPermissions, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewRequestedOneof0PropPullRequestPropHeadPropUser as WebhookPullRequestReviewRequestedOneof0PropPullRequestPropHeadPropUser, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewRequestedOneof0PropPullRequestPropLabelsItems as WebhookPullRequestReviewRequestedOneof0PropPullRequestPropLabelsItems, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewRequestedOneof0PropPullRequestPropLinks as WebhookPullRequestReviewRequestedOneof0PropPullRequestPropLinks, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewRequestedOneof0PropPullRequestPropLinksPropComments as WebhookPullRequestReviewRequestedOneof0PropPullRequestPropLinksPropComments, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewRequestedOneof0PropPullRequestPropLinksPropCommits as WebhookPullRequestReviewRequestedOneof0PropPullRequestPropLinksPropCommits, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewRequestedOneof0PropPullRequestPropLinksPropHtml as WebhookPullRequestReviewRequestedOneof0PropPullRequestPropLinksPropHtml, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewRequestedOneof0PropPullRequestPropLinksPropIssue as WebhookPullRequestReviewRequestedOneof0PropPullRequestPropLinksPropIssue, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewRequestedOneof0PropPullRequestPropLinksPropReviewComment as WebhookPullRequestReviewRequestedOneof0PropPullRequestPropLinksPropReviewComment, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewRequestedOneof0PropPullRequestPropLinksPropReviewComments as WebhookPullRequestReviewRequestedOneof0PropPullRequestPropLinksPropReviewComments, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewRequestedOneof0PropPullRequestPropLinksPropSelf as WebhookPullRequestReviewRequestedOneof0PropPullRequestPropLinksPropSelf, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewRequestedOneof0PropPullRequestPropLinksPropStatuses as WebhookPullRequestReviewRequestedOneof0PropPullRequestPropLinksPropStatuses, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewRequestedOneof0PropPullRequestPropMergedBy as WebhookPullRequestReviewRequestedOneof0PropPullRequestPropMergedBy, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewRequestedOneof0PropPullRequestPropMilestone as WebhookPullRequestReviewRequestedOneof0PropPullRequestPropMilestone, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewRequestedOneof0PropPullRequestPropMilestonePropCreator as WebhookPullRequestReviewRequestedOneof0PropPullRequestPropMilestonePropCreator, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewRequestedOneof0PropPullRequestPropRequestedReviewersItemsOneof0 as WebhookPullRequestReviewRequestedOneof0PropPullRequestPropRequestedReviewersItemsOneof0, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewRequestedOneof0PropPullRequestPropRequestedReviewersItemsOneof1 as WebhookPullRequestReviewRequestedOneof0PropPullRequestPropRequestedReviewersItemsOneof1, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewRequestedOneof0PropPullRequestPropRequestedReviewersItemsOneof1PropParent as WebhookPullRequestReviewRequestedOneof0PropPullRequestPropRequestedReviewersItemsOneof1PropParent, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewRequestedOneof0PropPullRequestPropRequestedTeamsItems as WebhookPullRequestReviewRequestedOneof0PropPullRequestPropRequestedTeamsItems, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewRequestedOneof0PropPullRequestPropRequestedTeamsItemsPropParent as WebhookPullRequestReviewRequestedOneof0PropPullRequestPropRequestedTeamsItemsPropParent, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewRequestedOneof0PropPullRequestPropUser as WebhookPullRequestReviewRequestedOneof0PropPullRequestPropUser, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewRequestedOneof0PropRequestedReviewer as WebhookPullRequestReviewRequestedOneof0PropRequestedReviewer, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewRequestedOneof1 as WebhookPullRequestReviewRequestedOneof1, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewRequestedOneof1PropPullRequest as WebhookPullRequestReviewRequestedOneof1PropPullRequest, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewRequestedOneof1PropPullRequestPropAssignee as WebhookPullRequestReviewRequestedOneof1PropPullRequestPropAssignee, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewRequestedOneof1PropPullRequestPropAssigneesItems as WebhookPullRequestReviewRequestedOneof1PropPullRequestPropAssigneesItems, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewRequestedOneof1PropPullRequestPropAutoMerge as WebhookPullRequestReviewRequestedOneof1PropPullRequestPropAutoMerge, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewRequestedOneof1PropPullRequestPropAutoMergePropEnabledBy as WebhookPullRequestReviewRequestedOneof1PropPullRequestPropAutoMergePropEnabledBy, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewRequestedOneof1PropPullRequestPropBase as WebhookPullRequestReviewRequestedOneof1PropPullRequestPropBase, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewRequestedOneof1PropPullRequestPropBasePropRepo as WebhookPullRequestReviewRequestedOneof1PropPullRequestPropBasePropRepo, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewRequestedOneof1PropPullRequestPropBasePropRepoPropLicense as WebhookPullRequestReviewRequestedOneof1PropPullRequestPropBasePropRepoPropLicense, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewRequestedOneof1PropPullRequestPropBasePropRepoPropOwner as WebhookPullRequestReviewRequestedOneof1PropPullRequestPropBasePropRepoPropOwner, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewRequestedOneof1PropPullRequestPropBasePropRepoPropPermissions as WebhookPullRequestReviewRequestedOneof1PropPullRequestPropBasePropRepoPropPermissions, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewRequestedOneof1PropPullRequestPropBasePropUser as WebhookPullRequestReviewRequestedOneof1PropPullRequestPropBasePropUser, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewRequestedOneof1PropPullRequestPropHead as WebhookPullRequestReviewRequestedOneof1PropPullRequestPropHead, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewRequestedOneof1PropPullRequestPropHeadPropRepo as WebhookPullRequestReviewRequestedOneof1PropPullRequestPropHeadPropRepo, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewRequestedOneof1PropPullRequestPropHeadPropRepoPropLicense as WebhookPullRequestReviewRequestedOneof1PropPullRequestPropHeadPropRepoPropLicense, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewRequestedOneof1PropPullRequestPropHeadPropRepoPropOwner as WebhookPullRequestReviewRequestedOneof1PropPullRequestPropHeadPropRepoPropOwner, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewRequestedOneof1PropPullRequestPropHeadPropRepoPropPermissions as WebhookPullRequestReviewRequestedOneof1PropPullRequestPropHeadPropRepoPropPermissions, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewRequestedOneof1PropPullRequestPropHeadPropUser as WebhookPullRequestReviewRequestedOneof1PropPullRequestPropHeadPropUser, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewRequestedOneof1PropPullRequestPropLabelsItems as WebhookPullRequestReviewRequestedOneof1PropPullRequestPropLabelsItems, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewRequestedOneof1PropPullRequestPropLinks as WebhookPullRequestReviewRequestedOneof1PropPullRequestPropLinks, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewRequestedOneof1PropPullRequestPropLinksPropComments as WebhookPullRequestReviewRequestedOneof1PropPullRequestPropLinksPropComments, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewRequestedOneof1PropPullRequestPropLinksPropCommits as WebhookPullRequestReviewRequestedOneof1PropPullRequestPropLinksPropCommits, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewRequestedOneof1PropPullRequestPropLinksPropHtml as WebhookPullRequestReviewRequestedOneof1PropPullRequestPropLinksPropHtml, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewRequestedOneof1PropPullRequestPropLinksPropIssue as WebhookPullRequestReviewRequestedOneof1PropPullRequestPropLinksPropIssue, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewRequestedOneof1PropPullRequestPropLinksPropReviewComment as WebhookPullRequestReviewRequestedOneof1PropPullRequestPropLinksPropReviewComment, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewRequestedOneof1PropPullRequestPropLinksPropReviewComments as WebhookPullRequestReviewRequestedOneof1PropPullRequestPropLinksPropReviewComments, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewRequestedOneof1PropPullRequestPropLinksPropSelf as WebhookPullRequestReviewRequestedOneof1PropPullRequestPropLinksPropSelf, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewRequestedOneof1PropPullRequestPropLinksPropStatuses as WebhookPullRequestReviewRequestedOneof1PropPullRequestPropLinksPropStatuses, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewRequestedOneof1PropPullRequestPropMergedBy as WebhookPullRequestReviewRequestedOneof1PropPullRequestPropMergedBy, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewRequestedOneof1PropPullRequestPropMilestone as WebhookPullRequestReviewRequestedOneof1PropPullRequestPropMilestone, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewRequestedOneof1PropPullRequestPropMilestonePropCreator as WebhookPullRequestReviewRequestedOneof1PropPullRequestPropMilestonePropCreator, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewRequestedOneof1PropPullRequestPropRequestedReviewersItemsOneof0 as WebhookPullRequestReviewRequestedOneof1PropPullRequestPropRequestedReviewersItemsOneof0, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewRequestedOneof1PropPullRequestPropRequestedReviewersItemsOneof1 as WebhookPullRequestReviewRequestedOneof1PropPullRequestPropRequestedReviewersItemsOneof1, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewRequestedOneof1PropPullRequestPropRequestedReviewersItemsOneof1PropParent as WebhookPullRequestReviewRequestedOneof1PropPullRequestPropRequestedReviewersItemsOneof1PropParent, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewRequestedOneof1PropPullRequestPropRequestedTeamsItems as WebhookPullRequestReviewRequestedOneof1PropPullRequestPropRequestedTeamsItems, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewRequestedOneof1PropPullRequestPropRequestedTeamsItemsPropParent as WebhookPullRequestReviewRequestedOneof1PropPullRequestPropRequestedTeamsItemsPropParent, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewRequestedOneof1PropPullRequestPropUser as WebhookPullRequestReviewRequestedOneof1PropPullRequestPropUser, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewRequestedOneof1PropRequestedTeam as WebhookPullRequestReviewRequestedOneof1PropRequestedTeam, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewRequestedOneof1PropRequestedTeamPropParent as WebhookPullRequestReviewRequestedOneof1PropRequestedTeamPropParent, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewRequestRemovedOneof0 as WebhookPullRequestReviewRequestRemovedOneof0, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewRequestRemovedOneof0PropPullRequest as WebhookPullRequestReviewRequestRemovedOneof0PropPullRequest, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewRequestRemovedOneof0PropPullRequestPropAssignee as WebhookPullRequestReviewRequestRemovedOneof0PropPullRequestPropAssignee, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewRequestRemovedOneof0PropPullRequestPropAssigneesItems as WebhookPullRequestReviewRequestRemovedOneof0PropPullRequestPropAssigneesItems, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewRequestRemovedOneof0PropPullRequestPropAutoMerge as WebhookPullRequestReviewRequestRemovedOneof0PropPullRequestPropAutoMerge, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewRequestRemovedOneof0PropPullRequestPropAutoMergePropEnabledBy as WebhookPullRequestReviewRequestRemovedOneof0PropPullRequestPropAutoMergePropEnabledBy, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewRequestRemovedOneof0PropPullRequestPropBase as WebhookPullRequestReviewRequestRemovedOneof0PropPullRequestPropBase, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewRequestRemovedOneof0PropPullRequestPropBasePropRepo as WebhookPullRequestReviewRequestRemovedOneof0PropPullRequestPropBasePropRepo, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewRequestRemovedOneof0PropPullRequestPropBasePropRepoPropLicense as WebhookPullRequestReviewRequestRemovedOneof0PropPullRequestPropBasePropRepoPropLicense, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewRequestRemovedOneof0PropPullRequestPropBasePropRepoPropOwner as WebhookPullRequestReviewRequestRemovedOneof0PropPullRequestPropBasePropRepoPropOwner, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewRequestRemovedOneof0PropPullRequestPropBasePropRepoPropPermissions as WebhookPullRequestReviewRequestRemovedOneof0PropPullRequestPropBasePropRepoPropPermissions, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewRequestRemovedOneof0PropPullRequestPropBasePropUser as WebhookPullRequestReviewRequestRemovedOneof0PropPullRequestPropBasePropUser, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewRequestRemovedOneof0PropPullRequestPropHead as WebhookPullRequestReviewRequestRemovedOneof0PropPullRequestPropHead, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewRequestRemovedOneof0PropPullRequestPropHeadPropRepo as WebhookPullRequestReviewRequestRemovedOneof0PropPullRequestPropHeadPropRepo, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewRequestRemovedOneof0PropPullRequestPropHeadPropRepoPropLicense as WebhookPullRequestReviewRequestRemovedOneof0PropPullRequestPropHeadPropRepoPropLicense, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewRequestRemovedOneof0PropPullRequestPropHeadPropRepoPropOwner as WebhookPullRequestReviewRequestRemovedOneof0PropPullRequestPropHeadPropRepoPropOwner, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewRequestRemovedOneof0PropPullRequestPropHeadPropRepoPropPermissions as WebhookPullRequestReviewRequestRemovedOneof0PropPullRequestPropHeadPropRepoPropPermissions, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewRequestRemovedOneof0PropPullRequestPropHeadPropUser as WebhookPullRequestReviewRequestRemovedOneof0PropPullRequestPropHeadPropUser, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewRequestRemovedOneof0PropPullRequestPropLabelsItems as WebhookPullRequestReviewRequestRemovedOneof0PropPullRequestPropLabelsItems, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewRequestRemovedOneof0PropPullRequestPropLinks as WebhookPullRequestReviewRequestRemovedOneof0PropPullRequestPropLinks, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewRequestRemovedOneof0PropPullRequestPropLinksPropComments as WebhookPullRequestReviewRequestRemovedOneof0PropPullRequestPropLinksPropComments, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewRequestRemovedOneof0PropPullRequestPropLinksPropCommits as WebhookPullRequestReviewRequestRemovedOneof0PropPullRequestPropLinksPropCommits, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewRequestRemovedOneof0PropPullRequestPropLinksPropHtml as WebhookPullRequestReviewRequestRemovedOneof0PropPullRequestPropLinksPropHtml, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewRequestRemovedOneof0PropPullRequestPropLinksPropIssue as WebhookPullRequestReviewRequestRemovedOneof0PropPullRequestPropLinksPropIssue, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewRequestRemovedOneof0PropPullRequestPropLinksPropReviewComment as WebhookPullRequestReviewRequestRemovedOneof0PropPullRequestPropLinksPropReviewComment, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewRequestRemovedOneof0PropPullRequestPropLinksPropReviewComments as WebhookPullRequestReviewRequestRemovedOneof0PropPullRequestPropLinksPropReviewComments, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewRequestRemovedOneof0PropPullRequestPropLinksPropSelf as WebhookPullRequestReviewRequestRemovedOneof0PropPullRequestPropLinksPropSelf, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewRequestRemovedOneof0PropPullRequestPropLinksPropStatuses as WebhookPullRequestReviewRequestRemovedOneof0PropPullRequestPropLinksPropStatuses, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewRequestRemovedOneof0PropPullRequestPropMergedBy as WebhookPullRequestReviewRequestRemovedOneof0PropPullRequestPropMergedBy, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewRequestRemovedOneof0PropPullRequestPropMilestone as WebhookPullRequestReviewRequestRemovedOneof0PropPullRequestPropMilestone, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewRequestRemovedOneof0PropPullRequestPropMilestonePropCreator as WebhookPullRequestReviewRequestRemovedOneof0PropPullRequestPropMilestonePropCreator, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewRequestRemovedOneof0PropPullRequestPropRequestedReviewersItemsOneof0 as WebhookPullRequestReviewRequestRemovedOneof0PropPullRequestPropRequestedReviewersItemsOneof0, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewRequestRemovedOneof0PropPullRequestPropRequestedReviewersItemsOneof1 as WebhookPullRequestReviewRequestRemovedOneof0PropPullRequestPropRequestedReviewersItemsOneof1, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewRequestRemovedOneof0PropPullRequestPropRequestedReviewersItemsOneof1PropParent as WebhookPullRequestReviewRequestRemovedOneof0PropPullRequestPropRequestedReviewersItemsOneof1PropParent, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewRequestRemovedOneof0PropPullRequestPropRequestedTeamsItems as WebhookPullRequestReviewRequestRemovedOneof0PropPullRequestPropRequestedTeamsItems, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewRequestRemovedOneof0PropPullRequestPropRequestedTeamsItemsPropParent as WebhookPullRequestReviewRequestRemovedOneof0PropPullRequestPropRequestedTeamsItemsPropParent, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewRequestRemovedOneof0PropPullRequestPropUser as WebhookPullRequestReviewRequestRemovedOneof0PropPullRequestPropUser, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewRequestRemovedOneof0PropRequestedReviewer as WebhookPullRequestReviewRequestRemovedOneof0PropRequestedReviewer, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewRequestRemovedOneof1 as WebhookPullRequestReviewRequestRemovedOneof1, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewRequestRemovedOneof1PropPullRequest as WebhookPullRequestReviewRequestRemovedOneof1PropPullRequest, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewRequestRemovedOneof1PropPullRequestPropAssignee as WebhookPullRequestReviewRequestRemovedOneof1PropPullRequestPropAssignee, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewRequestRemovedOneof1PropPullRequestPropAssigneesItems as WebhookPullRequestReviewRequestRemovedOneof1PropPullRequestPropAssigneesItems, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewRequestRemovedOneof1PropPullRequestPropAutoMerge as WebhookPullRequestReviewRequestRemovedOneof1PropPullRequestPropAutoMerge, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewRequestRemovedOneof1PropPullRequestPropAutoMergePropEnabledBy as WebhookPullRequestReviewRequestRemovedOneof1PropPullRequestPropAutoMergePropEnabledBy, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewRequestRemovedOneof1PropPullRequestPropBase as WebhookPullRequestReviewRequestRemovedOneof1PropPullRequestPropBase, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewRequestRemovedOneof1PropPullRequestPropBasePropRepo as WebhookPullRequestReviewRequestRemovedOneof1PropPullRequestPropBasePropRepo, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewRequestRemovedOneof1PropPullRequestPropBasePropRepoPropLicense as WebhookPullRequestReviewRequestRemovedOneof1PropPullRequestPropBasePropRepoPropLicense, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewRequestRemovedOneof1PropPullRequestPropBasePropRepoPropOwner as WebhookPullRequestReviewRequestRemovedOneof1PropPullRequestPropBasePropRepoPropOwner, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewRequestRemovedOneof1PropPullRequestPropBasePropRepoPropPermissions as WebhookPullRequestReviewRequestRemovedOneof1PropPullRequestPropBasePropRepoPropPermissions, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewRequestRemovedOneof1PropPullRequestPropBasePropUser as WebhookPullRequestReviewRequestRemovedOneof1PropPullRequestPropBasePropUser, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewRequestRemovedOneof1PropPullRequestPropHead as WebhookPullRequestReviewRequestRemovedOneof1PropPullRequestPropHead, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewRequestRemovedOneof1PropPullRequestPropHeadPropRepo as WebhookPullRequestReviewRequestRemovedOneof1PropPullRequestPropHeadPropRepo, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewRequestRemovedOneof1PropPullRequestPropHeadPropRepoPropLicense as WebhookPullRequestReviewRequestRemovedOneof1PropPullRequestPropHeadPropRepoPropLicense, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewRequestRemovedOneof1PropPullRequestPropHeadPropRepoPropOwner as WebhookPullRequestReviewRequestRemovedOneof1PropPullRequestPropHeadPropRepoPropOwner, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewRequestRemovedOneof1PropPullRequestPropHeadPropRepoPropPermissions as WebhookPullRequestReviewRequestRemovedOneof1PropPullRequestPropHeadPropRepoPropPermissions, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewRequestRemovedOneof1PropPullRequestPropHeadPropUser as WebhookPullRequestReviewRequestRemovedOneof1PropPullRequestPropHeadPropUser, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewRequestRemovedOneof1PropPullRequestPropLabelsItems as WebhookPullRequestReviewRequestRemovedOneof1PropPullRequestPropLabelsItems, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewRequestRemovedOneof1PropPullRequestPropLinks as WebhookPullRequestReviewRequestRemovedOneof1PropPullRequestPropLinks, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewRequestRemovedOneof1PropPullRequestPropLinksPropComments as WebhookPullRequestReviewRequestRemovedOneof1PropPullRequestPropLinksPropComments, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewRequestRemovedOneof1PropPullRequestPropLinksPropCommits as WebhookPullRequestReviewRequestRemovedOneof1PropPullRequestPropLinksPropCommits, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewRequestRemovedOneof1PropPullRequestPropLinksPropHtml as WebhookPullRequestReviewRequestRemovedOneof1PropPullRequestPropLinksPropHtml, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewRequestRemovedOneof1PropPullRequestPropLinksPropIssue as WebhookPullRequestReviewRequestRemovedOneof1PropPullRequestPropLinksPropIssue, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewRequestRemovedOneof1PropPullRequestPropLinksPropReviewComment as WebhookPullRequestReviewRequestRemovedOneof1PropPullRequestPropLinksPropReviewComment, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewRequestRemovedOneof1PropPullRequestPropLinksPropReviewComments as WebhookPullRequestReviewRequestRemovedOneof1PropPullRequestPropLinksPropReviewComments, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewRequestRemovedOneof1PropPullRequestPropLinksPropSelf as WebhookPullRequestReviewRequestRemovedOneof1PropPullRequestPropLinksPropSelf, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewRequestRemovedOneof1PropPullRequestPropLinksPropStatuses as WebhookPullRequestReviewRequestRemovedOneof1PropPullRequestPropLinksPropStatuses, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewRequestRemovedOneof1PropPullRequestPropMergedBy as WebhookPullRequestReviewRequestRemovedOneof1PropPullRequestPropMergedBy, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewRequestRemovedOneof1PropPullRequestPropMilestone as WebhookPullRequestReviewRequestRemovedOneof1PropPullRequestPropMilestone, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewRequestRemovedOneof1PropPullRequestPropMilestonePropCreator as WebhookPullRequestReviewRequestRemovedOneof1PropPullRequestPropMilestonePropCreator, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewRequestRemovedOneof1PropPullRequestPropRequestedReviewersItemsOneof0 as WebhookPullRequestReviewRequestRemovedOneof1PropPullRequestPropRequestedReviewersItemsOneof0, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewRequestRemovedOneof1PropPullRequestPropRequestedReviewersItemsOneof1 as WebhookPullRequestReviewRequestRemovedOneof1PropPullRequestPropRequestedReviewersItemsOneof1, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewRequestRemovedOneof1PropPullRequestPropRequestedReviewersItemsOneof1PropParent as WebhookPullRequestReviewRequestRemovedOneof1PropPullRequestPropRequestedReviewersItemsOneof1PropParent, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewRequestRemovedOneof1PropPullRequestPropRequestedTeamsItems as WebhookPullRequestReviewRequestRemovedOneof1PropPullRequestPropRequestedTeamsItems, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewRequestRemovedOneof1PropPullRequestPropRequestedTeamsItemsPropParent as WebhookPullRequestReviewRequestRemovedOneof1PropPullRequestPropRequestedTeamsItemsPropParent, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewRequestRemovedOneof1PropPullRequestPropUser as WebhookPullRequestReviewRequestRemovedOneof1PropPullRequestPropUser, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewRequestRemovedOneof1PropRequestedTeam as WebhookPullRequestReviewRequestRemovedOneof1PropRequestedTeam, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewRequestRemovedOneof1PropRequestedTeamPropParent as WebhookPullRequestReviewRequestRemovedOneof1PropRequestedTeamPropParent, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewSubmitted as WebhookPullRequestReviewSubmitted, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewSubmittedPropPullRequest as WebhookPullRequestReviewSubmittedPropPullRequest, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewSubmittedPropPullRequestPropAssignee as WebhookPullRequestReviewSubmittedPropPullRequestPropAssignee, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewSubmittedPropPullRequestPropAssigneesItems as WebhookPullRequestReviewSubmittedPropPullRequestPropAssigneesItems, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewSubmittedPropPullRequestPropAutoMerge as WebhookPullRequestReviewSubmittedPropPullRequestPropAutoMerge, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewSubmittedPropPullRequestPropAutoMergePropEnabledBy as WebhookPullRequestReviewSubmittedPropPullRequestPropAutoMergePropEnabledBy, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewSubmittedPropPullRequestPropBase as WebhookPullRequestReviewSubmittedPropPullRequestPropBase, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewSubmittedPropPullRequestPropBasePropRepo as WebhookPullRequestReviewSubmittedPropPullRequestPropBasePropRepo, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewSubmittedPropPullRequestPropBasePropRepoPropLicense as WebhookPullRequestReviewSubmittedPropPullRequestPropBasePropRepoPropLicense, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewSubmittedPropPullRequestPropBasePropRepoPropOwner as WebhookPullRequestReviewSubmittedPropPullRequestPropBasePropRepoPropOwner, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewSubmittedPropPullRequestPropBasePropRepoPropPermissions as WebhookPullRequestReviewSubmittedPropPullRequestPropBasePropRepoPropPermissions, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewSubmittedPropPullRequestPropBasePropUser as WebhookPullRequestReviewSubmittedPropPullRequestPropBasePropUser, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewSubmittedPropPullRequestPropHead as WebhookPullRequestReviewSubmittedPropPullRequestPropHead, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewSubmittedPropPullRequestPropHeadPropRepo as WebhookPullRequestReviewSubmittedPropPullRequestPropHeadPropRepo, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewSubmittedPropPullRequestPropHeadPropRepoPropLicense as WebhookPullRequestReviewSubmittedPropPullRequestPropHeadPropRepoPropLicense, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewSubmittedPropPullRequestPropHeadPropRepoPropOwner as WebhookPullRequestReviewSubmittedPropPullRequestPropHeadPropRepoPropOwner, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewSubmittedPropPullRequestPropHeadPropRepoPropPermissions as WebhookPullRequestReviewSubmittedPropPullRequestPropHeadPropRepoPropPermissions, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewSubmittedPropPullRequestPropHeadPropUser as WebhookPullRequestReviewSubmittedPropPullRequestPropHeadPropUser, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewSubmittedPropPullRequestPropLabelsItems as WebhookPullRequestReviewSubmittedPropPullRequestPropLabelsItems, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewSubmittedPropPullRequestPropLinks as WebhookPullRequestReviewSubmittedPropPullRequestPropLinks, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewSubmittedPropPullRequestPropLinksPropComments as WebhookPullRequestReviewSubmittedPropPullRequestPropLinksPropComments, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewSubmittedPropPullRequestPropLinksPropCommits as WebhookPullRequestReviewSubmittedPropPullRequestPropLinksPropCommits, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewSubmittedPropPullRequestPropLinksPropHtml as WebhookPullRequestReviewSubmittedPropPullRequestPropLinksPropHtml, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewSubmittedPropPullRequestPropLinksPropIssue as WebhookPullRequestReviewSubmittedPropPullRequestPropLinksPropIssue, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewSubmittedPropPullRequestPropLinksPropReviewComment as WebhookPullRequestReviewSubmittedPropPullRequestPropLinksPropReviewComment, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewSubmittedPropPullRequestPropLinksPropReviewComments as WebhookPullRequestReviewSubmittedPropPullRequestPropLinksPropReviewComments, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewSubmittedPropPullRequestPropLinksPropSelf as WebhookPullRequestReviewSubmittedPropPullRequestPropLinksPropSelf, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewSubmittedPropPullRequestPropLinksPropStatuses as WebhookPullRequestReviewSubmittedPropPullRequestPropLinksPropStatuses, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewSubmittedPropPullRequestPropMilestone as WebhookPullRequestReviewSubmittedPropPullRequestPropMilestone, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewSubmittedPropPullRequestPropMilestonePropCreator as WebhookPullRequestReviewSubmittedPropPullRequestPropMilestonePropCreator, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewSubmittedPropPullRequestPropRequestedReviewersItemsOneof0 as WebhookPullRequestReviewSubmittedPropPullRequestPropRequestedReviewersItemsOneof0, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewSubmittedPropPullRequestPropRequestedReviewersItemsOneof1 as WebhookPullRequestReviewSubmittedPropPullRequestPropRequestedReviewersItemsOneof1, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewSubmittedPropPullRequestPropRequestedReviewersItemsOneof1PropParent as WebhookPullRequestReviewSubmittedPropPullRequestPropRequestedReviewersItemsOneof1PropParent, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewSubmittedPropPullRequestPropRequestedTeamsItems as WebhookPullRequestReviewSubmittedPropPullRequestPropRequestedTeamsItems, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewSubmittedPropPullRequestPropRequestedTeamsItemsPropParent as WebhookPullRequestReviewSubmittedPropPullRequestPropRequestedTeamsItemsPropParent, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewSubmittedPropPullRequestPropUser as WebhookPullRequestReviewSubmittedPropPullRequestPropUser, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewThreadResolved as WebhookPullRequestReviewThreadResolved, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewThreadResolvedPropPullRequest as WebhookPullRequestReviewThreadResolvedPropPullRequest, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewThreadResolvedPropPullRequestPropAssignee as WebhookPullRequestReviewThreadResolvedPropPullRequestPropAssignee, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewThreadResolvedPropPullRequestPropAssigneesItems as WebhookPullRequestReviewThreadResolvedPropPullRequestPropAssigneesItems, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewThreadResolvedPropPullRequestPropAutoMerge as WebhookPullRequestReviewThreadResolvedPropPullRequestPropAutoMerge, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewThreadResolvedPropPullRequestPropAutoMergePropEnabledBy as WebhookPullRequestReviewThreadResolvedPropPullRequestPropAutoMergePropEnabledBy, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewThreadResolvedPropPullRequestPropBase as WebhookPullRequestReviewThreadResolvedPropPullRequestPropBase, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewThreadResolvedPropPullRequestPropBasePropRepo as WebhookPullRequestReviewThreadResolvedPropPullRequestPropBasePropRepo, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewThreadResolvedPropPullRequestPropBasePropRepoPropLicense as WebhookPullRequestReviewThreadResolvedPropPullRequestPropBasePropRepoPropLicense, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewThreadResolvedPropPullRequestPropBasePropRepoPropOwner as WebhookPullRequestReviewThreadResolvedPropPullRequestPropBasePropRepoPropOwner, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewThreadResolvedPropPullRequestPropBasePropRepoPropPermissions as WebhookPullRequestReviewThreadResolvedPropPullRequestPropBasePropRepoPropPermissions, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewThreadResolvedPropPullRequestPropBasePropUser as WebhookPullRequestReviewThreadResolvedPropPullRequestPropBasePropUser, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewThreadResolvedPropPullRequestPropHead as WebhookPullRequestReviewThreadResolvedPropPullRequestPropHead, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewThreadResolvedPropPullRequestPropHeadPropRepo as WebhookPullRequestReviewThreadResolvedPropPullRequestPropHeadPropRepo, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewThreadResolvedPropPullRequestPropHeadPropRepoPropLicense as WebhookPullRequestReviewThreadResolvedPropPullRequestPropHeadPropRepoPropLicense, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewThreadResolvedPropPullRequestPropHeadPropRepoPropOwner as WebhookPullRequestReviewThreadResolvedPropPullRequestPropHeadPropRepoPropOwner, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewThreadResolvedPropPullRequestPropHeadPropRepoPropPermissions as WebhookPullRequestReviewThreadResolvedPropPullRequestPropHeadPropRepoPropPermissions, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewThreadResolvedPropPullRequestPropHeadPropUser as WebhookPullRequestReviewThreadResolvedPropPullRequestPropHeadPropUser, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewThreadResolvedPropPullRequestPropLabelsItems as WebhookPullRequestReviewThreadResolvedPropPullRequestPropLabelsItems, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewThreadResolvedPropPullRequestPropLinks as WebhookPullRequestReviewThreadResolvedPropPullRequestPropLinks, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewThreadResolvedPropPullRequestPropLinksPropComments as WebhookPullRequestReviewThreadResolvedPropPullRequestPropLinksPropComments, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewThreadResolvedPropPullRequestPropLinksPropCommits as WebhookPullRequestReviewThreadResolvedPropPullRequestPropLinksPropCommits, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewThreadResolvedPropPullRequestPropLinksPropHtml as WebhookPullRequestReviewThreadResolvedPropPullRequestPropLinksPropHtml, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewThreadResolvedPropPullRequestPropLinksPropIssue as WebhookPullRequestReviewThreadResolvedPropPullRequestPropLinksPropIssue, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewThreadResolvedPropPullRequestPropLinksPropReviewComment as WebhookPullRequestReviewThreadResolvedPropPullRequestPropLinksPropReviewComment, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewThreadResolvedPropPullRequestPropLinksPropReviewComments as WebhookPullRequestReviewThreadResolvedPropPullRequestPropLinksPropReviewComments, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewThreadResolvedPropPullRequestPropLinksPropSelf as WebhookPullRequestReviewThreadResolvedPropPullRequestPropLinksPropSelf, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewThreadResolvedPropPullRequestPropLinksPropStatuses as WebhookPullRequestReviewThreadResolvedPropPullRequestPropLinksPropStatuses, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewThreadResolvedPropPullRequestPropMilestone as WebhookPullRequestReviewThreadResolvedPropPullRequestPropMilestone, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewThreadResolvedPropPullRequestPropMilestonePropCreator as WebhookPullRequestReviewThreadResolvedPropPullRequestPropMilestonePropCreator, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewThreadResolvedPropPullRequestPropRequestedReviewersItemsOneof0 as WebhookPullRequestReviewThreadResolvedPropPullRequestPropRequestedReviewersItemsOneof0, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewThreadResolvedPropPullRequestPropRequestedReviewersItemsOneof1 as WebhookPullRequestReviewThreadResolvedPropPullRequestPropRequestedReviewersItemsOneof1, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewThreadResolvedPropPullRequestPropRequestedReviewersItemsOneof1PropParent as WebhookPullRequestReviewThreadResolvedPropPullRequestPropRequestedReviewersItemsOneof1PropParent, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewThreadResolvedPropPullRequestPropRequestedTeamsItems as WebhookPullRequestReviewThreadResolvedPropPullRequestPropRequestedTeamsItems, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewThreadResolvedPropPullRequestPropRequestedTeamsItemsPropParent as WebhookPullRequestReviewThreadResolvedPropPullRequestPropRequestedTeamsItemsPropParent, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewThreadResolvedPropPullRequestPropUser as WebhookPullRequestReviewThreadResolvedPropPullRequestPropUser, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewThreadResolvedPropThread as WebhookPullRequestReviewThreadResolvedPropThread, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewThreadResolvedPropThreadPropCommentsItems as WebhookPullRequestReviewThreadResolvedPropThreadPropCommentsItems, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewThreadResolvedPropThreadPropCommentsItemsPropLinks as WebhookPullRequestReviewThreadResolvedPropThreadPropCommentsItemsPropLinks, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewThreadResolvedPropThreadPropCommentsItemsPropLinksPropHtml as WebhookPullRequestReviewThreadResolvedPropThreadPropCommentsItemsPropLinksPropHtml, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewThreadResolvedPropThreadPropCommentsItemsPropLinksPropPullRequest as WebhookPullRequestReviewThreadResolvedPropThreadPropCommentsItemsPropLinksPropPullRequest, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewThreadResolvedPropThreadPropCommentsItemsPropLinksPropSelf as WebhookPullRequestReviewThreadResolvedPropThreadPropCommentsItemsPropLinksPropSelf, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewThreadResolvedPropThreadPropCommentsItemsPropReactions as WebhookPullRequestReviewThreadResolvedPropThreadPropCommentsItemsPropReactions, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewThreadResolvedPropThreadPropCommentsItemsPropUser as WebhookPullRequestReviewThreadResolvedPropThreadPropCommentsItemsPropUser, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewThreadUnresolved as WebhookPullRequestReviewThreadUnresolved, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewThreadUnresolvedPropPullRequest as WebhookPullRequestReviewThreadUnresolvedPropPullRequest, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewThreadUnresolvedPropPullRequestPropAssignee as WebhookPullRequestReviewThreadUnresolvedPropPullRequestPropAssignee, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewThreadUnresolvedPropPullRequestPropAssigneesItems as WebhookPullRequestReviewThreadUnresolvedPropPullRequestPropAssigneesItems, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewThreadUnresolvedPropPullRequestPropAutoMerge as WebhookPullRequestReviewThreadUnresolvedPropPullRequestPropAutoMerge, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewThreadUnresolvedPropPullRequestPropAutoMergePropEnabledBy as WebhookPullRequestReviewThreadUnresolvedPropPullRequestPropAutoMergePropEnabledBy, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewThreadUnresolvedPropPullRequestPropBase as WebhookPullRequestReviewThreadUnresolvedPropPullRequestPropBase, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewThreadUnresolvedPropPullRequestPropBasePropRepo as WebhookPullRequestReviewThreadUnresolvedPropPullRequestPropBasePropRepo, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewThreadUnresolvedPropPullRequestPropBasePropRepoPropLicense as WebhookPullRequestReviewThreadUnresolvedPropPullRequestPropBasePropRepoPropLicense, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewThreadUnresolvedPropPullRequestPropBasePropRepoPropOwner as WebhookPullRequestReviewThreadUnresolvedPropPullRequestPropBasePropRepoPropOwner, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewThreadUnresolvedPropPullRequestPropBasePropRepoPropPermissions as WebhookPullRequestReviewThreadUnresolvedPropPullRequestPropBasePropRepoPropPermissions, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewThreadUnresolvedPropPullRequestPropBasePropUser as WebhookPullRequestReviewThreadUnresolvedPropPullRequestPropBasePropUser, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewThreadUnresolvedPropPullRequestPropHead as WebhookPullRequestReviewThreadUnresolvedPropPullRequestPropHead, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewThreadUnresolvedPropPullRequestPropHeadPropRepo as WebhookPullRequestReviewThreadUnresolvedPropPullRequestPropHeadPropRepo, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewThreadUnresolvedPropPullRequestPropHeadPropRepoPropLicense as WebhookPullRequestReviewThreadUnresolvedPropPullRequestPropHeadPropRepoPropLicense, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewThreadUnresolvedPropPullRequestPropHeadPropRepoPropOwner as WebhookPullRequestReviewThreadUnresolvedPropPullRequestPropHeadPropRepoPropOwner, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewThreadUnresolvedPropPullRequestPropHeadPropRepoPropPermissions as WebhookPullRequestReviewThreadUnresolvedPropPullRequestPropHeadPropRepoPropPermissions, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewThreadUnresolvedPropPullRequestPropHeadPropUser as WebhookPullRequestReviewThreadUnresolvedPropPullRequestPropHeadPropUser, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewThreadUnresolvedPropPullRequestPropLabelsItems as WebhookPullRequestReviewThreadUnresolvedPropPullRequestPropLabelsItems, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewThreadUnresolvedPropPullRequestPropLinks as WebhookPullRequestReviewThreadUnresolvedPropPullRequestPropLinks, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewThreadUnresolvedPropPullRequestPropLinksPropComments as WebhookPullRequestReviewThreadUnresolvedPropPullRequestPropLinksPropComments, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewThreadUnresolvedPropPullRequestPropLinksPropCommits as WebhookPullRequestReviewThreadUnresolvedPropPullRequestPropLinksPropCommits, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewThreadUnresolvedPropPullRequestPropLinksPropHtml as WebhookPullRequestReviewThreadUnresolvedPropPullRequestPropLinksPropHtml, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewThreadUnresolvedPropPullRequestPropLinksPropIssue as WebhookPullRequestReviewThreadUnresolvedPropPullRequestPropLinksPropIssue, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewThreadUnresolvedPropPullRequestPropLinksPropReviewComment as WebhookPullRequestReviewThreadUnresolvedPropPullRequestPropLinksPropReviewComment, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewThreadUnresolvedPropPullRequestPropLinksPropReviewComments as WebhookPullRequestReviewThreadUnresolvedPropPullRequestPropLinksPropReviewComments, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewThreadUnresolvedPropPullRequestPropLinksPropSelf as WebhookPullRequestReviewThreadUnresolvedPropPullRequestPropLinksPropSelf, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewThreadUnresolvedPropPullRequestPropLinksPropStatuses as WebhookPullRequestReviewThreadUnresolvedPropPullRequestPropLinksPropStatuses, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewThreadUnresolvedPropPullRequestPropMilestone as WebhookPullRequestReviewThreadUnresolvedPropPullRequestPropMilestone, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewThreadUnresolvedPropPullRequestPropMilestonePropCreator as WebhookPullRequestReviewThreadUnresolvedPropPullRequestPropMilestonePropCreator, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewThreadUnresolvedPropPullRequestPropRequestedReviewersItemsOneof0 as WebhookPullRequestReviewThreadUnresolvedPropPullRequestPropRequestedReviewersItemsOneof0, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewThreadUnresolvedPropPullRequestPropRequestedReviewersItemsOneof1 as WebhookPullRequestReviewThreadUnresolvedPropPullRequestPropRequestedReviewersItemsOneof1, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewThreadUnresolvedPropPullRequestPropRequestedReviewersItemsOneof1PropParent as WebhookPullRequestReviewThreadUnresolvedPropPullRequestPropRequestedReviewersItemsOneof1PropParent, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewThreadUnresolvedPropPullRequestPropRequestedTeamsItems as WebhookPullRequestReviewThreadUnresolvedPropPullRequestPropRequestedTeamsItems, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewThreadUnresolvedPropPullRequestPropRequestedTeamsItemsPropParent as WebhookPullRequestReviewThreadUnresolvedPropPullRequestPropRequestedTeamsItemsPropParent, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewThreadUnresolvedPropPullRequestPropUser as WebhookPullRequestReviewThreadUnresolvedPropPullRequestPropUser, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewThreadUnresolvedPropThread as WebhookPullRequestReviewThreadUnresolvedPropThread, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewThreadUnresolvedPropThreadPropCommentsItems as WebhookPullRequestReviewThreadUnresolvedPropThreadPropCommentsItems, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewThreadUnresolvedPropThreadPropCommentsItemsPropLinks as WebhookPullRequestReviewThreadUnresolvedPropThreadPropCommentsItemsPropLinks, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewThreadUnresolvedPropThreadPropCommentsItemsPropLinksPropHtml as WebhookPullRequestReviewThreadUnresolvedPropThreadPropCommentsItemsPropLinksPropHtml, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewThreadUnresolvedPropThreadPropCommentsItemsPropLinksPropPullRequest as WebhookPullRequestReviewThreadUnresolvedPropThreadPropCommentsItemsPropLinksPropPullRequest, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewThreadUnresolvedPropThreadPropCommentsItemsPropLinksPropSelf as WebhookPullRequestReviewThreadUnresolvedPropThreadPropCommentsItemsPropLinksPropSelf, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewThreadUnresolvedPropThreadPropCommentsItemsPropReactions as WebhookPullRequestReviewThreadUnresolvedPropThreadPropCommentsItemsPropReactions, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestReviewThreadUnresolvedPropThreadPropCommentsItemsPropUser as WebhookPullRequestReviewThreadUnresolvedPropThreadPropCommentsItemsPropUser, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestSynchronize as WebhookPullRequestSynchronize, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestSynchronizePropPullRequest as WebhookPullRequestSynchronizePropPullRequest, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestSynchronizePropPullRequestPropAssignee as WebhookPullRequestSynchronizePropPullRequestPropAssignee, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestSynchronizePropPullRequestPropAssigneesItems as WebhookPullRequestSynchronizePropPullRequestPropAssigneesItems, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestSynchronizePropPullRequestPropAutoMerge as WebhookPullRequestSynchronizePropPullRequestPropAutoMerge, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestSynchronizePropPullRequestPropAutoMergePropEnabledBy as WebhookPullRequestSynchronizePropPullRequestPropAutoMergePropEnabledBy, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestSynchronizePropPullRequestPropBase as WebhookPullRequestSynchronizePropPullRequestPropBase, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestSynchronizePropPullRequestPropBasePropRepo as WebhookPullRequestSynchronizePropPullRequestPropBasePropRepo, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestSynchronizePropPullRequestPropBasePropRepoPropLicense as WebhookPullRequestSynchronizePropPullRequestPropBasePropRepoPropLicense, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestSynchronizePropPullRequestPropBasePropRepoPropOwner as WebhookPullRequestSynchronizePropPullRequestPropBasePropRepoPropOwner, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestSynchronizePropPullRequestPropBasePropRepoPropPermissions as WebhookPullRequestSynchronizePropPullRequestPropBasePropRepoPropPermissions, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestSynchronizePropPullRequestPropBasePropUser as WebhookPullRequestSynchronizePropPullRequestPropBasePropUser, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestSynchronizePropPullRequestPropHead as WebhookPullRequestSynchronizePropPullRequestPropHead, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestSynchronizePropPullRequestPropHeadPropRepo as WebhookPullRequestSynchronizePropPullRequestPropHeadPropRepo, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestSynchronizePropPullRequestPropHeadPropRepoPropLicense as WebhookPullRequestSynchronizePropPullRequestPropHeadPropRepoPropLicense, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestSynchronizePropPullRequestPropHeadPropRepoPropOwner as WebhookPullRequestSynchronizePropPullRequestPropHeadPropRepoPropOwner, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestSynchronizePropPullRequestPropHeadPropRepoPropPermissions as WebhookPullRequestSynchronizePropPullRequestPropHeadPropRepoPropPermissions, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestSynchronizePropPullRequestPropHeadPropUser as WebhookPullRequestSynchronizePropPullRequestPropHeadPropUser, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestSynchronizePropPullRequestPropLabelsItems as WebhookPullRequestSynchronizePropPullRequestPropLabelsItems, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestSynchronizePropPullRequestPropLinks as WebhookPullRequestSynchronizePropPullRequestPropLinks, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestSynchronizePropPullRequestPropLinksPropComments as WebhookPullRequestSynchronizePropPullRequestPropLinksPropComments, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestSynchronizePropPullRequestPropLinksPropCommits as WebhookPullRequestSynchronizePropPullRequestPropLinksPropCommits, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestSynchronizePropPullRequestPropLinksPropHtml as WebhookPullRequestSynchronizePropPullRequestPropLinksPropHtml, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestSynchronizePropPullRequestPropLinksPropIssue as WebhookPullRequestSynchronizePropPullRequestPropLinksPropIssue, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestSynchronizePropPullRequestPropLinksPropReviewComment as WebhookPullRequestSynchronizePropPullRequestPropLinksPropReviewComment, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestSynchronizePropPullRequestPropLinksPropReviewComments as WebhookPullRequestSynchronizePropPullRequestPropLinksPropReviewComments, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestSynchronizePropPullRequestPropLinksPropSelf as WebhookPullRequestSynchronizePropPullRequestPropLinksPropSelf, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestSynchronizePropPullRequestPropLinksPropStatuses as WebhookPullRequestSynchronizePropPullRequestPropLinksPropStatuses, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestSynchronizePropPullRequestPropMergedBy as WebhookPullRequestSynchronizePropPullRequestPropMergedBy, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestSynchronizePropPullRequestPropMilestone as WebhookPullRequestSynchronizePropPullRequestPropMilestone, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestSynchronizePropPullRequestPropMilestonePropCreator as WebhookPullRequestSynchronizePropPullRequestPropMilestonePropCreator, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestSynchronizePropPullRequestPropRequestedReviewersItemsOneof0 as WebhookPullRequestSynchronizePropPullRequestPropRequestedReviewersItemsOneof0, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestSynchronizePropPullRequestPropRequestedReviewersItemsOneof1 as WebhookPullRequestSynchronizePropPullRequestPropRequestedReviewersItemsOneof1, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestSynchronizePropPullRequestPropRequestedReviewersItemsOneof1PropParent as WebhookPullRequestSynchronizePropPullRequestPropRequestedReviewersItemsOneof1PropParent, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestSynchronizePropPullRequestPropRequestedTeamsItems as WebhookPullRequestSynchronizePropPullRequestPropRequestedTeamsItems, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestSynchronizePropPullRequestPropRequestedTeamsItemsPropParent as WebhookPullRequestSynchronizePropPullRequestPropRequestedTeamsItemsPropParent, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestSynchronizePropPullRequestPropUser as WebhookPullRequestSynchronizePropPullRequestPropUser, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestUnassigned as WebhookPullRequestUnassigned, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestUnassignedPropPullRequest as WebhookPullRequestUnassignedPropPullRequest, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestUnassignedPropPullRequestPropAssignee as WebhookPullRequestUnassignedPropPullRequestPropAssignee, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestUnassignedPropPullRequestPropAssigneesItems as WebhookPullRequestUnassignedPropPullRequestPropAssigneesItems, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestUnassignedPropPullRequestPropAutoMerge as WebhookPullRequestUnassignedPropPullRequestPropAutoMerge, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestUnassignedPropPullRequestPropAutoMergePropEnabledBy as WebhookPullRequestUnassignedPropPullRequestPropAutoMergePropEnabledBy, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestUnassignedPropPullRequestPropBase as WebhookPullRequestUnassignedPropPullRequestPropBase, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestUnassignedPropPullRequestPropBasePropRepo as WebhookPullRequestUnassignedPropPullRequestPropBasePropRepo, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestUnassignedPropPullRequestPropBasePropRepoPropLicense as WebhookPullRequestUnassignedPropPullRequestPropBasePropRepoPropLicense, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestUnassignedPropPullRequestPropBasePropRepoPropOwner as WebhookPullRequestUnassignedPropPullRequestPropBasePropRepoPropOwner, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestUnassignedPropPullRequestPropBasePropRepoPropPermissions as WebhookPullRequestUnassignedPropPullRequestPropBasePropRepoPropPermissions, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestUnassignedPropPullRequestPropBasePropUser as WebhookPullRequestUnassignedPropPullRequestPropBasePropUser, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestUnassignedPropPullRequestPropHead as WebhookPullRequestUnassignedPropPullRequestPropHead, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestUnassignedPropPullRequestPropHeadPropRepo as WebhookPullRequestUnassignedPropPullRequestPropHeadPropRepo, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestUnassignedPropPullRequestPropHeadPropRepoPropLicense as WebhookPullRequestUnassignedPropPullRequestPropHeadPropRepoPropLicense, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestUnassignedPropPullRequestPropHeadPropRepoPropOwner as WebhookPullRequestUnassignedPropPullRequestPropHeadPropRepoPropOwner, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestUnassignedPropPullRequestPropHeadPropRepoPropPermissions as WebhookPullRequestUnassignedPropPullRequestPropHeadPropRepoPropPermissions, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestUnassignedPropPullRequestPropHeadPropUser as WebhookPullRequestUnassignedPropPullRequestPropHeadPropUser, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestUnassignedPropPullRequestPropLabelsItems as WebhookPullRequestUnassignedPropPullRequestPropLabelsItems, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestUnassignedPropPullRequestPropLinks as WebhookPullRequestUnassignedPropPullRequestPropLinks, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestUnassignedPropPullRequestPropLinksPropComments as WebhookPullRequestUnassignedPropPullRequestPropLinksPropComments, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestUnassignedPropPullRequestPropLinksPropCommits as WebhookPullRequestUnassignedPropPullRequestPropLinksPropCommits, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestUnassignedPropPullRequestPropLinksPropHtml as WebhookPullRequestUnassignedPropPullRequestPropLinksPropHtml, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestUnassignedPropPullRequestPropLinksPropIssue as WebhookPullRequestUnassignedPropPullRequestPropLinksPropIssue, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestUnassignedPropPullRequestPropLinksPropReviewComment as WebhookPullRequestUnassignedPropPullRequestPropLinksPropReviewComment, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestUnassignedPropPullRequestPropLinksPropReviewComments as WebhookPullRequestUnassignedPropPullRequestPropLinksPropReviewComments, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestUnassignedPropPullRequestPropLinksPropSelf as WebhookPullRequestUnassignedPropPullRequestPropLinksPropSelf, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestUnassignedPropPullRequestPropLinksPropStatuses as WebhookPullRequestUnassignedPropPullRequestPropLinksPropStatuses, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestUnassignedPropPullRequestPropMergedBy as WebhookPullRequestUnassignedPropPullRequestPropMergedBy, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestUnassignedPropPullRequestPropMilestone as WebhookPullRequestUnassignedPropPullRequestPropMilestone, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestUnassignedPropPullRequestPropMilestonePropCreator as WebhookPullRequestUnassignedPropPullRequestPropMilestonePropCreator, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestUnassignedPropPullRequestPropRequestedReviewersItemsOneof0 as WebhookPullRequestUnassignedPropPullRequestPropRequestedReviewersItemsOneof0, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestUnassignedPropPullRequestPropRequestedReviewersItemsOneof1 as WebhookPullRequestUnassignedPropPullRequestPropRequestedReviewersItemsOneof1, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestUnassignedPropPullRequestPropRequestedReviewersItemsOneof1PropParent as WebhookPullRequestUnassignedPropPullRequestPropRequestedReviewersItemsOneof1PropParent, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestUnassignedPropPullRequestPropRequestedTeamsItems as WebhookPullRequestUnassignedPropPullRequestPropRequestedTeamsItems, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestUnassignedPropPullRequestPropRequestedTeamsItemsPropParent as WebhookPullRequestUnassignedPropPullRequestPropRequestedTeamsItemsPropParent, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestUnassignedPropPullRequestPropUser as WebhookPullRequestUnassignedPropPullRequestPropUser, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestUnlabeled as WebhookPullRequestUnlabeled, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestUnlabeledPropPullRequest as WebhookPullRequestUnlabeledPropPullRequest, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestUnlabeledPropPullRequestPropAssignee as WebhookPullRequestUnlabeledPropPullRequestPropAssignee, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestUnlabeledPropPullRequestPropAssigneesItems as WebhookPullRequestUnlabeledPropPullRequestPropAssigneesItems, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestUnlabeledPropPullRequestPropAutoMerge as WebhookPullRequestUnlabeledPropPullRequestPropAutoMerge, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestUnlabeledPropPullRequestPropAutoMergePropEnabledBy as WebhookPullRequestUnlabeledPropPullRequestPropAutoMergePropEnabledBy, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestUnlabeledPropPullRequestPropBase as WebhookPullRequestUnlabeledPropPullRequestPropBase, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestUnlabeledPropPullRequestPropBasePropRepo as WebhookPullRequestUnlabeledPropPullRequestPropBasePropRepo, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestUnlabeledPropPullRequestPropBasePropRepoPropLicense as WebhookPullRequestUnlabeledPropPullRequestPropBasePropRepoPropLicense, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestUnlabeledPropPullRequestPropBasePropRepoPropOwner as WebhookPullRequestUnlabeledPropPullRequestPropBasePropRepoPropOwner, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestUnlabeledPropPullRequestPropBasePropRepoPropPermissions as WebhookPullRequestUnlabeledPropPullRequestPropBasePropRepoPropPermissions, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestUnlabeledPropPullRequestPropBasePropUser as WebhookPullRequestUnlabeledPropPullRequestPropBasePropUser, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestUnlabeledPropPullRequestPropHead as WebhookPullRequestUnlabeledPropPullRequestPropHead, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestUnlabeledPropPullRequestPropHeadPropRepo as WebhookPullRequestUnlabeledPropPullRequestPropHeadPropRepo, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestUnlabeledPropPullRequestPropHeadPropRepoPropLicense as WebhookPullRequestUnlabeledPropPullRequestPropHeadPropRepoPropLicense, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestUnlabeledPropPullRequestPropHeadPropRepoPropOwner as WebhookPullRequestUnlabeledPropPullRequestPropHeadPropRepoPropOwner, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestUnlabeledPropPullRequestPropHeadPropRepoPropPermissions as WebhookPullRequestUnlabeledPropPullRequestPropHeadPropRepoPropPermissions, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestUnlabeledPropPullRequestPropHeadPropUser as WebhookPullRequestUnlabeledPropPullRequestPropHeadPropUser, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestUnlabeledPropPullRequestPropLabelsItems as WebhookPullRequestUnlabeledPropPullRequestPropLabelsItems, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestUnlabeledPropPullRequestPropLinks as WebhookPullRequestUnlabeledPropPullRequestPropLinks, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestUnlabeledPropPullRequestPropLinksPropComments as WebhookPullRequestUnlabeledPropPullRequestPropLinksPropComments, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestUnlabeledPropPullRequestPropLinksPropCommits as WebhookPullRequestUnlabeledPropPullRequestPropLinksPropCommits, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestUnlabeledPropPullRequestPropLinksPropHtml as WebhookPullRequestUnlabeledPropPullRequestPropLinksPropHtml, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestUnlabeledPropPullRequestPropLinksPropIssue as WebhookPullRequestUnlabeledPropPullRequestPropLinksPropIssue, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestUnlabeledPropPullRequestPropLinksPropReviewComment as WebhookPullRequestUnlabeledPropPullRequestPropLinksPropReviewComment, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestUnlabeledPropPullRequestPropLinksPropReviewComments as WebhookPullRequestUnlabeledPropPullRequestPropLinksPropReviewComments, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestUnlabeledPropPullRequestPropLinksPropSelf as WebhookPullRequestUnlabeledPropPullRequestPropLinksPropSelf, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestUnlabeledPropPullRequestPropLinksPropStatuses as WebhookPullRequestUnlabeledPropPullRequestPropLinksPropStatuses, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestUnlabeledPropPullRequestPropMergedBy as WebhookPullRequestUnlabeledPropPullRequestPropMergedBy, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestUnlabeledPropPullRequestPropMilestone as WebhookPullRequestUnlabeledPropPullRequestPropMilestone, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestUnlabeledPropPullRequestPropMilestonePropCreator as WebhookPullRequestUnlabeledPropPullRequestPropMilestonePropCreator, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestUnlabeledPropPullRequestPropRequestedReviewersItemsOneof0 as WebhookPullRequestUnlabeledPropPullRequestPropRequestedReviewersItemsOneof0, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestUnlabeledPropPullRequestPropRequestedReviewersItemsOneof1 as WebhookPullRequestUnlabeledPropPullRequestPropRequestedReviewersItemsOneof1, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestUnlabeledPropPullRequestPropRequestedReviewersItemsOneof1PropParent as WebhookPullRequestUnlabeledPropPullRequestPropRequestedReviewersItemsOneof1PropParent, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestUnlabeledPropPullRequestPropRequestedTeamsItems as WebhookPullRequestUnlabeledPropPullRequestPropRequestedTeamsItems, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestUnlabeledPropPullRequestPropRequestedTeamsItemsPropParent as WebhookPullRequestUnlabeledPropPullRequestPropRequestedTeamsItemsPropParent, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestUnlabeledPropPullRequestPropUser as WebhookPullRequestUnlabeledPropPullRequestPropUser, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestUnlocked as WebhookPullRequestUnlocked, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestUnlockedPropPullRequest as WebhookPullRequestUnlockedPropPullRequest, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestUnlockedPropPullRequestPropAssignee as WebhookPullRequestUnlockedPropPullRequestPropAssignee, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestUnlockedPropPullRequestPropAssigneesItems as WebhookPullRequestUnlockedPropPullRequestPropAssigneesItems, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestUnlockedPropPullRequestPropAutoMerge as WebhookPullRequestUnlockedPropPullRequestPropAutoMerge, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestUnlockedPropPullRequestPropAutoMergePropEnabledBy as WebhookPullRequestUnlockedPropPullRequestPropAutoMergePropEnabledBy, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestUnlockedPropPullRequestPropBase as WebhookPullRequestUnlockedPropPullRequestPropBase, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestUnlockedPropPullRequestPropBasePropRepo as WebhookPullRequestUnlockedPropPullRequestPropBasePropRepo, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestUnlockedPropPullRequestPropBasePropRepoPropLicense as WebhookPullRequestUnlockedPropPullRequestPropBasePropRepoPropLicense, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestUnlockedPropPullRequestPropBasePropRepoPropOwner as WebhookPullRequestUnlockedPropPullRequestPropBasePropRepoPropOwner, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestUnlockedPropPullRequestPropBasePropRepoPropPermissions as WebhookPullRequestUnlockedPropPullRequestPropBasePropRepoPropPermissions, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestUnlockedPropPullRequestPropBasePropUser as WebhookPullRequestUnlockedPropPullRequestPropBasePropUser, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestUnlockedPropPullRequestPropHead as WebhookPullRequestUnlockedPropPullRequestPropHead, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestUnlockedPropPullRequestPropHeadPropRepo as WebhookPullRequestUnlockedPropPullRequestPropHeadPropRepo, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestUnlockedPropPullRequestPropHeadPropRepoPropLicense as WebhookPullRequestUnlockedPropPullRequestPropHeadPropRepoPropLicense, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestUnlockedPropPullRequestPropHeadPropRepoPropOwner as WebhookPullRequestUnlockedPropPullRequestPropHeadPropRepoPropOwner, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestUnlockedPropPullRequestPropHeadPropRepoPropPermissions as WebhookPullRequestUnlockedPropPullRequestPropHeadPropRepoPropPermissions, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestUnlockedPropPullRequestPropHeadPropUser as WebhookPullRequestUnlockedPropPullRequestPropHeadPropUser, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestUnlockedPropPullRequestPropLabelsItems as WebhookPullRequestUnlockedPropPullRequestPropLabelsItems, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestUnlockedPropPullRequestPropLinks as WebhookPullRequestUnlockedPropPullRequestPropLinks, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestUnlockedPropPullRequestPropLinksPropComments as WebhookPullRequestUnlockedPropPullRequestPropLinksPropComments, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestUnlockedPropPullRequestPropLinksPropCommits as WebhookPullRequestUnlockedPropPullRequestPropLinksPropCommits, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestUnlockedPropPullRequestPropLinksPropHtml as WebhookPullRequestUnlockedPropPullRequestPropLinksPropHtml, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestUnlockedPropPullRequestPropLinksPropIssue as WebhookPullRequestUnlockedPropPullRequestPropLinksPropIssue, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestUnlockedPropPullRequestPropLinksPropReviewComment as WebhookPullRequestUnlockedPropPullRequestPropLinksPropReviewComment, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestUnlockedPropPullRequestPropLinksPropReviewComments as WebhookPullRequestUnlockedPropPullRequestPropLinksPropReviewComments, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestUnlockedPropPullRequestPropLinksPropSelf as WebhookPullRequestUnlockedPropPullRequestPropLinksPropSelf, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestUnlockedPropPullRequestPropLinksPropStatuses as WebhookPullRequestUnlockedPropPullRequestPropLinksPropStatuses, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestUnlockedPropPullRequestPropMergedBy as WebhookPullRequestUnlockedPropPullRequestPropMergedBy, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestUnlockedPropPullRequestPropMilestone as WebhookPullRequestUnlockedPropPullRequestPropMilestone, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestUnlockedPropPullRequestPropMilestonePropCreator as WebhookPullRequestUnlockedPropPullRequestPropMilestonePropCreator, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestUnlockedPropPullRequestPropRequestedReviewersItemsOneof0 as WebhookPullRequestUnlockedPropPullRequestPropRequestedReviewersItemsOneof0, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestUnlockedPropPullRequestPropRequestedReviewersItemsOneof1 as WebhookPullRequestUnlockedPropPullRequestPropRequestedReviewersItemsOneof1, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestUnlockedPropPullRequestPropRequestedReviewersItemsOneof1PropParent as WebhookPullRequestUnlockedPropPullRequestPropRequestedReviewersItemsOneof1PropParent, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestUnlockedPropPullRequestPropRequestedTeamsItems as WebhookPullRequestUnlockedPropPullRequestPropRequestedTeamsItems, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestUnlockedPropPullRequestPropRequestedTeamsItemsPropParent as WebhookPullRequestUnlockedPropPullRequestPropRequestedTeamsItemsPropParent, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPullRequestUnlockedPropPullRequestPropUser as WebhookPullRequestUnlockedPropPullRequestPropUser, - ) - from githubkit.versions.v2026_03_10.models import WebhookPush as WebhookPush - from githubkit.versions.v2026_03_10.models import ( - WebhookPushPropCommitsItems as WebhookPushPropCommitsItems, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPushPropCommitsItemsPropAuthor as WebhookPushPropCommitsItemsPropAuthor, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPushPropCommitsItemsPropCommitter as WebhookPushPropCommitsItemsPropCommitter, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPushPropHeadCommit as WebhookPushPropHeadCommit, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPushPropHeadCommitPropAuthor as WebhookPushPropHeadCommitPropAuthor, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPushPropHeadCommitPropCommitter as WebhookPushPropHeadCommitPropCommitter, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPushPropPusher as WebhookPushPropPusher, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPushPropRepository as WebhookPushPropRepository, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPushPropRepositoryPropCustomProperties as WebhookPushPropRepositoryPropCustomProperties, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPushPropRepositoryPropLicense as WebhookPushPropRepositoryPropLicense, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPushPropRepositoryPropOwner as WebhookPushPropRepositoryPropOwner, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookPushPropRepositoryPropPermissions as WebhookPushPropRepositoryPropPermissions, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookRegistryPackagePublished as WebhookRegistryPackagePublished, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookRegistryPackagePublishedPropRegistryPackage as WebhookRegistryPackagePublishedPropRegistryPackage, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookRegistryPackagePublishedPropRegistryPackagePropOwner as WebhookRegistryPackagePublishedPropRegistryPackagePropOwner, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookRegistryPackagePublishedPropRegistryPackagePropPackageVersion as WebhookRegistryPackagePublishedPropRegistryPackagePropPackageVersion, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookRegistryPackagePublishedPropRegistryPackagePropPackageVersionPropAuthor as WebhookRegistryPackagePublishedPropRegistryPackagePropPackageVersionPropAuthor, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookRegistryPackagePublishedPropRegistryPackagePropPackageVersionPropBodyOneof1 as WebhookRegistryPackagePublishedPropRegistryPackagePropPackageVersionPropBodyOneof1, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookRegistryPackagePublishedPropRegistryPackagePropPackageVersionPropContainerMetadata as WebhookRegistryPackagePublishedPropRegistryPackagePropPackageVersionPropContainerMetadata, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookRegistryPackagePublishedPropRegistryPackagePropPackageVersionPropContainerMetadataPropLabels as WebhookRegistryPackagePublishedPropRegistryPackagePropPackageVersionPropContainerMetadataPropLabels, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookRegistryPackagePublishedPropRegistryPackagePropPackageVersionPropContainerMetadataPropManifest as WebhookRegistryPackagePublishedPropRegistryPackagePropPackageVersionPropContainerMetadataPropManifest, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookRegistryPackagePublishedPropRegistryPackagePropPackageVersionPropContainerMetadataPropTag as WebhookRegistryPackagePublishedPropRegistryPackagePropPackageVersionPropContainerMetadataPropTag, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookRegistryPackagePublishedPropRegistryPackagePropPackageVersionPropDockerMetadataItems as WebhookRegistryPackagePublishedPropRegistryPackagePropPackageVersionPropDockerMetadataItems, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookRegistryPackagePublishedPropRegistryPackagePropPackageVersionPropMetadataItems as WebhookRegistryPackagePublishedPropRegistryPackagePropPackageVersionPropMetadataItems, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookRegistryPackagePublishedPropRegistryPackagePropPackageVersionPropNpmMetadata as WebhookRegistryPackagePublishedPropRegistryPackagePropPackageVersionPropNpmMetadata, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookRegistryPackagePublishedPropRegistryPackagePropPackageVersionPropNpmMetadataPropAuthorOneof1 as WebhookRegistryPackagePublishedPropRegistryPackagePropPackageVersionPropNpmMetadataPropAuthorOneof1, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookRegistryPackagePublishedPropRegistryPackagePropPackageVersionPropNpmMetadataPropBin as WebhookRegistryPackagePublishedPropRegistryPackagePropPackageVersionPropNpmMetadataPropBin, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookRegistryPackagePublishedPropRegistryPackagePropPackageVersionPropNpmMetadataPropBugsOneof1 as WebhookRegistryPackagePublishedPropRegistryPackagePropPackageVersionPropNpmMetadataPropBugsOneof1, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookRegistryPackagePublishedPropRegistryPackagePropPackageVersionPropNpmMetadataPropDependencies as WebhookRegistryPackagePublishedPropRegistryPackagePropPackageVersionPropNpmMetadataPropDependencies, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookRegistryPackagePublishedPropRegistryPackagePropPackageVersionPropNpmMetadataPropDevDependencies as WebhookRegistryPackagePublishedPropRegistryPackagePropPackageVersionPropNpmMetadataPropDevDependencies, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookRegistryPackagePublishedPropRegistryPackagePropPackageVersionPropNpmMetadataPropDirectoriesOneof1 as WebhookRegistryPackagePublishedPropRegistryPackagePropPackageVersionPropNpmMetadataPropDirectoriesOneof1, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookRegistryPackagePublishedPropRegistryPackagePropPackageVersionPropNpmMetadataPropDistOneof1 as WebhookRegistryPackagePublishedPropRegistryPackagePropPackageVersionPropNpmMetadataPropDistOneof1, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookRegistryPackagePublishedPropRegistryPackagePropPackageVersionPropNpmMetadataPropEngines as WebhookRegistryPackagePublishedPropRegistryPackagePropPackageVersionPropNpmMetadataPropEngines, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookRegistryPackagePublishedPropRegistryPackagePropPackageVersionPropNpmMetadataPropMan as WebhookRegistryPackagePublishedPropRegistryPackagePropPackageVersionPropNpmMetadataPropMan, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookRegistryPackagePublishedPropRegistryPackagePropPackageVersionPropNpmMetadataPropOptionalDependencies as WebhookRegistryPackagePublishedPropRegistryPackagePropPackageVersionPropNpmMetadataPropOptionalDependencies, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookRegistryPackagePublishedPropRegistryPackagePropPackageVersionPropNpmMetadataPropPeerDependencies as WebhookRegistryPackagePublishedPropRegistryPackagePropPackageVersionPropNpmMetadataPropPeerDependencies, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookRegistryPackagePublishedPropRegistryPackagePropPackageVersionPropNpmMetadataPropRepositoryOneof1 as WebhookRegistryPackagePublishedPropRegistryPackagePropPackageVersionPropNpmMetadataPropRepositoryOneof1, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookRegistryPackagePublishedPropRegistryPackagePropPackageVersionPropNpmMetadataPropScripts as WebhookRegistryPackagePublishedPropRegistryPackagePropPackageVersionPropNpmMetadataPropScripts, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookRegistryPackagePublishedPropRegistryPackagePropPackageVersionPropNugetMetadataItems as WebhookRegistryPackagePublishedPropRegistryPackagePropPackageVersionPropNugetMetadataItems, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookRegistryPackagePublishedPropRegistryPackagePropPackageVersionPropNugetMetadataItemsPropIdOneof1 as WebhookRegistryPackagePublishedPropRegistryPackagePropPackageVersionPropNugetMetadataItemsPropIdOneof1, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookRegistryPackagePublishedPropRegistryPackagePropPackageVersionPropNugetMetadataItemsPropValueOneof3 as WebhookRegistryPackagePublishedPropRegistryPackagePropPackageVersionPropNugetMetadataItemsPropValueOneof3, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookRegistryPackagePublishedPropRegistryPackagePropPackageVersionPropPackageFilesItems as WebhookRegistryPackagePublishedPropRegistryPackagePropPackageVersionPropPackageFilesItems, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookRegistryPackagePublishedPropRegistryPackagePropPackageVersionPropRelease as WebhookRegistryPackagePublishedPropRegistryPackagePropPackageVersionPropRelease, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookRegistryPackagePublishedPropRegistryPackagePropPackageVersionPropReleasePropAuthor as WebhookRegistryPackagePublishedPropRegistryPackagePropPackageVersionPropReleasePropAuthor, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookRegistryPackagePublishedPropRegistryPackagePropRegistry as WebhookRegistryPackagePublishedPropRegistryPackagePropRegistry, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookRegistryPackageUpdated as WebhookRegistryPackageUpdated, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookRegistryPackageUpdatedPropRegistryPackage as WebhookRegistryPackageUpdatedPropRegistryPackage, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookRegistryPackageUpdatedPropRegistryPackagePropOwner as WebhookRegistryPackageUpdatedPropRegistryPackagePropOwner, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookRegistryPackageUpdatedPropRegistryPackagePropPackageVersion as WebhookRegistryPackageUpdatedPropRegistryPackagePropPackageVersion, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookRegistryPackageUpdatedPropRegistryPackagePropPackageVersionPropAuthor as WebhookRegistryPackageUpdatedPropRegistryPackagePropPackageVersionPropAuthor, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookRegistryPackageUpdatedPropRegistryPackagePropPackageVersionPropDockerMetadataItems as WebhookRegistryPackageUpdatedPropRegistryPackagePropPackageVersionPropDockerMetadataItems, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookRegistryPackageUpdatedPropRegistryPackagePropPackageVersionPropMetadataItems as WebhookRegistryPackageUpdatedPropRegistryPackagePropPackageVersionPropMetadataItems, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookRegistryPackageUpdatedPropRegistryPackagePropPackageVersionPropPackageFilesItems as WebhookRegistryPackageUpdatedPropRegistryPackagePropPackageVersionPropPackageFilesItems, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookRegistryPackageUpdatedPropRegistryPackagePropPackageVersionPropRelease as WebhookRegistryPackageUpdatedPropRegistryPackagePropPackageVersionPropRelease, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookRegistryPackageUpdatedPropRegistryPackagePropPackageVersionPropReleasePropAuthor as WebhookRegistryPackageUpdatedPropRegistryPackagePropPackageVersionPropReleasePropAuthor, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookRegistryPackageUpdatedPropRegistryPackagePropRegistry as WebhookRegistryPackageUpdatedPropRegistryPackagePropRegistry, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookReleaseCreated as WebhookReleaseCreated, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookReleaseDeleted as WebhookReleaseDeleted, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookReleaseEdited as WebhookReleaseEdited, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookReleaseEditedPropChanges as WebhookReleaseEditedPropChanges, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookReleaseEditedPropChangesPropBody as WebhookReleaseEditedPropChangesPropBody, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookReleaseEditedPropChangesPropMakeLatest as WebhookReleaseEditedPropChangesPropMakeLatest, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookReleaseEditedPropChangesPropName as WebhookReleaseEditedPropChangesPropName, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookReleaseEditedPropChangesPropTagName as WebhookReleaseEditedPropChangesPropTagName, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookReleasePrereleased as WebhookReleasePrereleased, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookReleasePrereleasedPropRelease as WebhookReleasePrereleasedPropRelease, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookReleasePrereleasedPropReleasePropAssetsItems as WebhookReleasePrereleasedPropReleasePropAssetsItems, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookReleasePrereleasedPropReleasePropAssetsItemsPropUploader as WebhookReleasePrereleasedPropReleasePropAssetsItemsPropUploader, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookReleasePrereleasedPropReleasePropAuthor as WebhookReleasePrereleasedPropReleasePropAuthor, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookReleasePrereleasedPropReleasePropReactions as WebhookReleasePrereleasedPropReleasePropReactions, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookReleasePublished as WebhookReleasePublished, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookReleaseReleased as WebhookReleaseReleased, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookReleaseUnpublished as WebhookReleaseUnpublished, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookRepositoryAdvisoryPublished as WebhookRepositoryAdvisoryPublished, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookRepositoryAdvisoryReported as WebhookRepositoryAdvisoryReported, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookRepositoryArchived as WebhookRepositoryArchived, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookRepositoryCreated as WebhookRepositoryCreated, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookRepositoryDeleted as WebhookRepositoryDeleted, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookRepositoryDispatchSample as WebhookRepositoryDispatchSample, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookRepositoryDispatchSamplePropClientPayload as WebhookRepositoryDispatchSamplePropClientPayload, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookRepositoryEdited as WebhookRepositoryEdited, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookRepositoryEditedPropChanges as WebhookRepositoryEditedPropChanges, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookRepositoryEditedPropChangesPropDefaultBranch as WebhookRepositoryEditedPropChangesPropDefaultBranch, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookRepositoryEditedPropChangesPropDescription as WebhookRepositoryEditedPropChangesPropDescription, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookRepositoryEditedPropChangesPropHomepage as WebhookRepositoryEditedPropChangesPropHomepage, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookRepositoryEditedPropChangesPropTopics as WebhookRepositoryEditedPropChangesPropTopics, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookRepositoryImport as WebhookRepositoryImport, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookRepositoryPrivatized as WebhookRepositoryPrivatized, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookRepositoryPublicized as WebhookRepositoryPublicized, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookRepositoryRenamed as WebhookRepositoryRenamed, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookRepositoryRenamedPropChanges as WebhookRepositoryRenamedPropChanges, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookRepositoryRenamedPropChangesPropRepository as WebhookRepositoryRenamedPropChangesPropRepository, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookRepositoryRenamedPropChangesPropRepositoryPropName as WebhookRepositoryRenamedPropChangesPropRepositoryPropName, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookRepositoryRulesetCreated as WebhookRepositoryRulesetCreated, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookRepositoryRulesetDeleted as WebhookRepositoryRulesetDeleted, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookRepositoryRulesetEdited as WebhookRepositoryRulesetEdited, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookRepositoryRulesetEditedPropChanges as WebhookRepositoryRulesetEditedPropChanges, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookRepositoryRulesetEditedPropChangesPropConditions as WebhookRepositoryRulesetEditedPropChangesPropConditions, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookRepositoryRulesetEditedPropChangesPropConditionsPropUpdatedItems as WebhookRepositoryRulesetEditedPropChangesPropConditionsPropUpdatedItems, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookRepositoryRulesetEditedPropChangesPropConditionsPropUpdatedItemsPropChanges as WebhookRepositoryRulesetEditedPropChangesPropConditionsPropUpdatedItemsPropChanges, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookRepositoryRulesetEditedPropChangesPropConditionsPropUpdatedItemsPropChangesPropConditionType as WebhookRepositoryRulesetEditedPropChangesPropConditionsPropUpdatedItemsPropChangesPropConditionType, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookRepositoryRulesetEditedPropChangesPropConditionsPropUpdatedItemsPropChangesPropExclude as WebhookRepositoryRulesetEditedPropChangesPropConditionsPropUpdatedItemsPropChangesPropExclude, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookRepositoryRulesetEditedPropChangesPropConditionsPropUpdatedItemsPropChangesPropInclude as WebhookRepositoryRulesetEditedPropChangesPropConditionsPropUpdatedItemsPropChangesPropInclude, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookRepositoryRulesetEditedPropChangesPropConditionsPropUpdatedItemsPropChangesPropTarget as WebhookRepositoryRulesetEditedPropChangesPropConditionsPropUpdatedItemsPropChangesPropTarget, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookRepositoryRulesetEditedPropChangesPropEnforcement as WebhookRepositoryRulesetEditedPropChangesPropEnforcement, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookRepositoryRulesetEditedPropChangesPropName as WebhookRepositoryRulesetEditedPropChangesPropName, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookRepositoryRulesetEditedPropChangesPropRules as WebhookRepositoryRulesetEditedPropChangesPropRules, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookRepositoryRulesetEditedPropChangesPropRulesPropUpdatedItems as WebhookRepositoryRulesetEditedPropChangesPropRulesPropUpdatedItems, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookRepositoryRulesetEditedPropChangesPropRulesPropUpdatedItemsPropChanges as WebhookRepositoryRulesetEditedPropChangesPropRulesPropUpdatedItemsPropChanges, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookRepositoryRulesetEditedPropChangesPropRulesPropUpdatedItemsPropChangesPropConfiguration as WebhookRepositoryRulesetEditedPropChangesPropRulesPropUpdatedItemsPropChangesPropConfiguration, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookRepositoryRulesetEditedPropChangesPropRulesPropUpdatedItemsPropChangesPropPattern as WebhookRepositoryRulesetEditedPropChangesPropRulesPropUpdatedItemsPropChangesPropPattern, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookRepositoryRulesetEditedPropChangesPropRulesPropUpdatedItemsPropChangesPropRuleType as WebhookRepositoryRulesetEditedPropChangesPropRulesPropUpdatedItemsPropChangesPropRuleType, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookRepositoryTransferred as WebhookRepositoryTransferred, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookRepositoryTransferredPropChanges as WebhookRepositoryTransferredPropChanges, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookRepositoryTransferredPropChangesPropOwner as WebhookRepositoryTransferredPropChangesPropOwner, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookRepositoryTransferredPropChangesPropOwnerPropFrom as WebhookRepositoryTransferredPropChangesPropOwnerPropFrom, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookRepositoryTransferredPropChangesPropOwnerPropFromPropOrganization as WebhookRepositoryTransferredPropChangesPropOwnerPropFromPropOrganization, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookRepositoryTransferredPropChangesPropOwnerPropFromPropUser as WebhookRepositoryTransferredPropChangesPropOwnerPropFromPropUser, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookRepositoryUnarchived as WebhookRepositoryUnarchived, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookRepositoryVulnerabilityAlertCreate as WebhookRepositoryVulnerabilityAlertCreate, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookRepositoryVulnerabilityAlertDismiss as WebhookRepositoryVulnerabilityAlertDismiss, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookRepositoryVulnerabilityAlertDismissPropAlert as WebhookRepositoryVulnerabilityAlertDismissPropAlert, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookRepositoryVulnerabilityAlertDismissPropAlertPropDismisser as WebhookRepositoryVulnerabilityAlertDismissPropAlertPropDismisser, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookRepositoryVulnerabilityAlertReopen as WebhookRepositoryVulnerabilityAlertReopen, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookRepositoryVulnerabilityAlertResolve as WebhookRepositoryVulnerabilityAlertResolve, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookRepositoryVulnerabilityAlertResolvePropAlert as WebhookRepositoryVulnerabilityAlertResolvePropAlert, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookRepositoryVulnerabilityAlertResolvePropAlertPropDismisser as WebhookRepositoryVulnerabilityAlertResolvePropAlertPropDismisser, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookRubygemsMetadata as WebhookRubygemsMetadata, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookRubygemsMetadataPropDependenciesItems as WebhookRubygemsMetadataPropDependenciesItems, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookRubygemsMetadataPropMetadata as WebhookRubygemsMetadataPropMetadata, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookRubygemsMetadataPropVersionInfo as WebhookRubygemsMetadataPropVersionInfo, - ) - from githubkit.versions.v2026_03_10.models import WebhooksAlert as WebhooksAlert - from githubkit.versions.v2026_03_10.models import ( - WebhooksAlertPropDismisser as WebhooksAlertPropDismisser, - ) - from githubkit.versions.v2026_03_10.models import WebhooksAnswer as WebhooksAnswer - from githubkit.versions.v2026_03_10.models import ( - WebhooksAnswerPropReactions as WebhooksAnswerPropReactions, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhooksAnswerPropUser as WebhooksAnswerPropUser, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhooksApprover as WebhooksApprover, - ) - from githubkit.versions.v2026_03_10.models import WebhooksChanges as WebhooksChanges - from githubkit.versions.v2026_03_10.models import ( - WebhooksChanges8 as WebhooksChanges8, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhooksChanges8PropTier as WebhooksChanges8PropTier, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhooksChanges8PropTierPropFrom as WebhooksChanges8PropTierPropFrom, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhooksChangesPropBody as WebhooksChangesPropBody, - ) - from githubkit.versions.v2026_03_10.models import WebhooksComment as WebhooksComment - from githubkit.versions.v2026_03_10.models import ( - WebhooksCommentPropReactions as WebhooksCommentPropReactions, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhooksCommentPropUser as WebhooksCommentPropUser, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhooksDeployKey as WebhooksDeployKey, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookSecretScanningAlertAssigned as WebhookSecretScanningAlertAssigned, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookSecretScanningAlertCreated as WebhookSecretScanningAlertCreated, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookSecretScanningAlertLocationCreated as WebhookSecretScanningAlertLocationCreated, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookSecretScanningAlertLocationCreatedFormEncoded as WebhookSecretScanningAlertLocationCreatedFormEncoded, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookSecretScanningAlertPubliclyLeaked as WebhookSecretScanningAlertPubliclyLeaked, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookSecretScanningAlertReopened as WebhookSecretScanningAlertReopened, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookSecretScanningAlertResolved as WebhookSecretScanningAlertResolved, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookSecretScanningAlertUnassigned as WebhookSecretScanningAlertUnassigned, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookSecretScanningAlertValidated as WebhookSecretScanningAlertValidated, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookSecretScanningScanCompleted as WebhookSecretScanningScanCompleted, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookSecurityAdvisoryPublished as WebhookSecurityAdvisoryPublished, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookSecurityAdvisoryUpdated as WebhookSecurityAdvisoryUpdated, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookSecurityAdvisoryWithdrawn as WebhookSecurityAdvisoryWithdrawn, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookSecurityAdvisoryWithdrawnPropSecurityAdvisory as WebhookSecurityAdvisoryWithdrawnPropSecurityAdvisory, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookSecurityAdvisoryWithdrawnPropSecurityAdvisoryPropCwesItems as WebhookSecurityAdvisoryWithdrawnPropSecurityAdvisoryPropCwesItems, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookSecurityAdvisoryWithdrawnPropSecurityAdvisoryPropIdentifiersItems as WebhookSecurityAdvisoryWithdrawnPropSecurityAdvisoryPropIdentifiersItems, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookSecurityAdvisoryWithdrawnPropSecurityAdvisoryPropReferencesItems as WebhookSecurityAdvisoryWithdrawnPropSecurityAdvisoryPropReferencesItems, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookSecurityAdvisoryWithdrawnPropSecurityAdvisoryPropVulnerabilitiesItems as WebhookSecurityAdvisoryWithdrawnPropSecurityAdvisoryPropVulnerabilitiesItems, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookSecurityAdvisoryWithdrawnPropSecurityAdvisoryPropVulnerabilitiesItemsPropFirstPatchedVersion as WebhookSecurityAdvisoryWithdrawnPropSecurityAdvisoryPropVulnerabilitiesItemsPropFirstPatchedVersion, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookSecurityAdvisoryWithdrawnPropSecurityAdvisoryPropVulnerabilitiesItemsPropPackage as WebhookSecurityAdvisoryWithdrawnPropSecurityAdvisoryPropVulnerabilitiesItemsPropPackage, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookSecurityAndAnalysis as WebhookSecurityAndAnalysis, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookSecurityAndAnalysisPropChanges as WebhookSecurityAndAnalysisPropChanges, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookSecurityAndAnalysisPropChangesPropFrom as WebhookSecurityAndAnalysisPropChangesPropFrom, - ) - from githubkit.versions.v2026_03_10.models import WebhooksIssue as WebhooksIssue - from githubkit.versions.v2026_03_10.models import WebhooksIssue2 as WebhooksIssue2 - from githubkit.versions.v2026_03_10.models import ( - WebhooksIssue2PropAssignee as WebhooksIssue2PropAssignee, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhooksIssue2PropAssigneesItems as WebhooksIssue2PropAssigneesItems, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhooksIssue2PropLabelsItems as WebhooksIssue2PropLabelsItems, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhooksIssue2PropMilestone as WebhooksIssue2PropMilestone, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhooksIssue2PropMilestonePropCreator as WebhooksIssue2PropMilestonePropCreator, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhooksIssue2PropPerformedViaGithubApp as WebhooksIssue2PropPerformedViaGithubApp, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhooksIssue2PropPerformedViaGithubAppPropOwner as WebhooksIssue2PropPerformedViaGithubAppPropOwner, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhooksIssue2PropPerformedViaGithubAppPropPermissions as WebhooksIssue2PropPerformedViaGithubAppPropPermissions, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhooksIssue2PropPullRequest as WebhooksIssue2PropPullRequest, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhooksIssue2PropReactions as WebhooksIssue2PropReactions, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhooksIssue2PropUser as WebhooksIssue2PropUser, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhooksIssueComment as WebhooksIssueComment, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhooksIssueCommentPropReactions as WebhooksIssueCommentPropReactions, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhooksIssueCommentPropUser as WebhooksIssueCommentPropUser, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhooksIssuePropAssignee as WebhooksIssuePropAssignee, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhooksIssuePropAssigneesItems as WebhooksIssuePropAssigneesItems, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhooksIssuePropLabelsItems as WebhooksIssuePropLabelsItems, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhooksIssuePropMilestone as WebhooksIssuePropMilestone, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhooksIssuePropMilestonePropCreator as WebhooksIssuePropMilestonePropCreator, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhooksIssuePropPerformedViaGithubApp as WebhooksIssuePropPerformedViaGithubApp, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhooksIssuePropPerformedViaGithubAppPropOwner as WebhooksIssuePropPerformedViaGithubAppPropOwner, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhooksIssuePropPerformedViaGithubAppPropPermissions as WebhooksIssuePropPerformedViaGithubAppPropPermissions, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhooksIssuePropPullRequest as WebhooksIssuePropPullRequest, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhooksIssuePropReactions as WebhooksIssuePropReactions, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhooksIssuePropUser as WebhooksIssuePropUser, - ) - from githubkit.versions.v2026_03_10.models import WebhooksLabel as WebhooksLabel - from githubkit.versions.v2026_03_10.models import ( - WebhooksMarketplacePurchase as WebhooksMarketplacePurchase, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhooksMarketplacePurchasePropAccount as WebhooksMarketplacePurchasePropAccount, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhooksMarketplacePurchasePropPlan as WebhooksMarketplacePurchasePropPlan, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhooksMembership as WebhooksMembership, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhooksMembershipPropUser as WebhooksMembershipPropUser, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhooksMilestone as WebhooksMilestone, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhooksMilestone3 as WebhooksMilestone3, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhooksMilestone3PropCreator as WebhooksMilestone3PropCreator, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhooksMilestonePropCreator as WebhooksMilestonePropCreator, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookSponsorshipCancelled as WebhookSponsorshipCancelled, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookSponsorshipCreated as WebhookSponsorshipCreated, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookSponsorshipEdited as WebhookSponsorshipEdited, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookSponsorshipEditedPropChanges as WebhookSponsorshipEditedPropChanges, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookSponsorshipEditedPropChangesPropPrivacyLevel as WebhookSponsorshipEditedPropChangesPropPrivacyLevel, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookSponsorshipPendingCancellation as WebhookSponsorshipPendingCancellation, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookSponsorshipPendingTierChange as WebhookSponsorshipPendingTierChange, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookSponsorshipTierChanged as WebhookSponsorshipTierChanged, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhooksPreviousMarketplacePurchase as WebhooksPreviousMarketplacePurchase, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhooksPreviousMarketplacePurchasePropAccount as WebhooksPreviousMarketplacePurchasePropAccount, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhooksPreviousMarketplacePurchasePropPlan as WebhooksPreviousMarketplacePurchasePropPlan, - ) - from githubkit.versions.v2026_03_10.models import WebhooksProject as WebhooksProject - from githubkit.versions.v2026_03_10.models import ( - WebhooksProjectCard as WebhooksProjectCard, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhooksProjectCardPropCreator as WebhooksProjectCardPropCreator, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhooksProjectChanges as WebhooksProjectChanges, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhooksProjectChangesPropArchivedAt as WebhooksProjectChangesPropArchivedAt, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhooksProjectColumn as WebhooksProjectColumn, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhooksProjectPropCreator as WebhooksProjectPropCreator, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhooksPullRequest5 as WebhooksPullRequest5, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhooksPullRequest5PropAssignee as WebhooksPullRequest5PropAssignee, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhooksPullRequest5PropAssigneesItems as WebhooksPullRequest5PropAssigneesItems, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhooksPullRequest5PropAutoMerge as WebhooksPullRequest5PropAutoMerge, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhooksPullRequest5PropAutoMergePropEnabledBy as WebhooksPullRequest5PropAutoMergePropEnabledBy, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhooksPullRequest5PropBase as WebhooksPullRequest5PropBase, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhooksPullRequest5PropBasePropRepo as WebhooksPullRequest5PropBasePropRepo, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhooksPullRequest5PropBasePropRepoPropLicense as WebhooksPullRequest5PropBasePropRepoPropLicense, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhooksPullRequest5PropBasePropRepoPropOwner as WebhooksPullRequest5PropBasePropRepoPropOwner, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhooksPullRequest5PropBasePropRepoPropPermissions as WebhooksPullRequest5PropBasePropRepoPropPermissions, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhooksPullRequest5PropBasePropUser as WebhooksPullRequest5PropBasePropUser, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhooksPullRequest5PropHead as WebhooksPullRequest5PropHead, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhooksPullRequest5PropHeadPropRepo as WebhooksPullRequest5PropHeadPropRepo, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhooksPullRequest5PropHeadPropRepoPropLicense as WebhooksPullRequest5PropHeadPropRepoPropLicense, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhooksPullRequest5PropHeadPropRepoPropOwner as WebhooksPullRequest5PropHeadPropRepoPropOwner, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhooksPullRequest5PropHeadPropRepoPropPermissions as WebhooksPullRequest5PropHeadPropRepoPropPermissions, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhooksPullRequest5PropHeadPropUser as WebhooksPullRequest5PropHeadPropUser, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhooksPullRequest5PropLabelsItems as WebhooksPullRequest5PropLabelsItems, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhooksPullRequest5PropLinks as WebhooksPullRequest5PropLinks, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhooksPullRequest5PropLinksPropComments as WebhooksPullRequest5PropLinksPropComments, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhooksPullRequest5PropLinksPropCommits as WebhooksPullRequest5PropLinksPropCommits, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhooksPullRequest5PropLinksPropHtml as WebhooksPullRequest5PropLinksPropHtml, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhooksPullRequest5PropLinksPropIssue as WebhooksPullRequest5PropLinksPropIssue, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhooksPullRequest5PropLinksPropReviewComment as WebhooksPullRequest5PropLinksPropReviewComment, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhooksPullRequest5PropLinksPropReviewComments as WebhooksPullRequest5PropLinksPropReviewComments, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhooksPullRequest5PropLinksPropSelf as WebhooksPullRequest5PropLinksPropSelf, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhooksPullRequest5PropLinksPropStatuses as WebhooksPullRequest5PropLinksPropStatuses, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhooksPullRequest5PropMergedBy as WebhooksPullRequest5PropMergedBy, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhooksPullRequest5PropMilestone as WebhooksPullRequest5PropMilestone, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhooksPullRequest5PropMilestonePropCreator as WebhooksPullRequest5PropMilestonePropCreator, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhooksPullRequest5PropRequestedReviewersItemsOneof0 as WebhooksPullRequest5PropRequestedReviewersItemsOneof0, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhooksPullRequest5PropRequestedReviewersItemsOneof1 as WebhooksPullRequest5PropRequestedReviewersItemsOneof1, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhooksPullRequest5PropRequestedReviewersItemsOneof1PropParent as WebhooksPullRequest5PropRequestedReviewersItemsOneof1PropParent, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhooksPullRequest5PropRequestedTeamsItems as WebhooksPullRequest5PropRequestedTeamsItems, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhooksPullRequest5PropRequestedTeamsItemsPropParent as WebhooksPullRequest5PropRequestedTeamsItemsPropParent, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhooksPullRequest5PropUser as WebhooksPullRequest5PropUser, - ) - from githubkit.versions.v2026_03_10.models import WebhooksRelease as WebhooksRelease - from githubkit.versions.v2026_03_10.models import ( - WebhooksRelease1 as WebhooksRelease1, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhooksRelease1PropAssetsItems as WebhooksRelease1PropAssetsItems, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhooksRelease1PropAssetsItemsPropUploader as WebhooksRelease1PropAssetsItemsPropUploader, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhooksRelease1PropAuthor as WebhooksRelease1PropAuthor, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhooksRelease1PropReactions as WebhooksRelease1PropReactions, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhooksReleasePropAssetsItems as WebhooksReleasePropAssetsItems, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhooksReleasePropAssetsItemsPropUploader as WebhooksReleasePropAssetsItemsPropUploader, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhooksReleasePropAuthor as WebhooksReleasePropAuthor, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhooksReleasePropReactions as WebhooksReleasePropReactions, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhooksRepositoriesAddedItems as WebhooksRepositoriesAddedItems, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhooksRepositoriesItems as WebhooksRepositoriesItems, - ) - from githubkit.versions.v2026_03_10.models import WebhooksReview as WebhooksReview - from githubkit.versions.v2026_03_10.models import ( - WebhooksReviewComment as WebhooksReviewComment, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhooksReviewCommentPropLinks as WebhooksReviewCommentPropLinks, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhooksReviewCommentPropLinksPropHtml as WebhooksReviewCommentPropLinksPropHtml, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhooksReviewCommentPropLinksPropPullRequest as WebhooksReviewCommentPropLinksPropPullRequest, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhooksReviewCommentPropLinksPropSelf as WebhooksReviewCommentPropLinksPropSelf, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhooksReviewCommentPropReactions as WebhooksReviewCommentPropReactions, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhooksReviewCommentPropUser as WebhooksReviewCommentPropUser, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhooksReviewersItems as WebhooksReviewersItems, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhooksReviewersItemsPropReviewer as WebhooksReviewersItemsPropReviewer, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhooksReviewPropLinks as WebhooksReviewPropLinks, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhooksReviewPropLinksPropHtml as WebhooksReviewPropLinksPropHtml, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhooksReviewPropLinksPropPullRequest as WebhooksReviewPropLinksPropPullRequest, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhooksReviewPropUser as WebhooksReviewPropUser, - ) - from githubkit.versions.v2026_03_10.models import WebhooksRule as WebhooksRule - from githubkit.versions.v2026_03_10.models import ( - WebhooksSecurityAdvisory as WebhooksSecurityAdvisory, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhooksSecurityAdvisoryPropCwesItems as WebhooksSecurityAdvisoryPropCwesItems, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhooksSecurityAdvisoryPropIdentifiersItems as WebhooksSecurityAdvisoryPropIdentifiersItems, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhooksSecurityAdvisoryPropReferencesItems as WebhooksSecurityAdvisoryPropReferencesItems, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhooksSecurityAdvisoryPropVulnerabilitiesItems as WebhooksSecurityAdvisoryPropVulnerabilitiesItems, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhooksSecurityAdvisoryPropVulnerabilitiesItemsPropFirstPatchedVersion as WebhooksSecurityAdvisoryPropVulnerabilitiesItemsPropFirstPatchedVersion, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhooksSecurityAdvisoryPropVulnerabilitiesItemsPropPackage as WebhooksSecurityAdvisoryPropVulnerabilitiesItemsPropPackage, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhooksSponsorship as WebhooksSponsorship, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhooksSponsorshipPropMaintainer as WebhooksSponsorshipPropMaintainer, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhooksSponsorshipPropSponsor as WebhooksSponsorshipPropSponsor, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhooksSponsorshipPropSponsorable as WebhooksSponsorshipPropSponsorable, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhooksSponsorshipPropTier as WebhooksSponsorshipPropTier, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookStarCreated as WebhookStarCreated, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookStarDeleted as WebhookStarDeleted, - ) - from githubkit.versions.v2026_03_10.models import WebhookStatus as WebhookStatus - from githubkit.versions.v2026_03_10.models import ( - WebhookStatusPropBranchesItems as WebhookStatusPropBranchesItems, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookStatusPropBranchesItemsPropCommit as WebhookStatusPropBranchesItemsPropCommit, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookStatusPropCommit as WebhookStatusPropCommit, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookStatusPropCommitPropAuthor as WebhookStatusPropCommitPropAuthor, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookStatusPropCommitPropCommit as WebhookStatusPropCommitPropCommit, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookStatusPropCommitPropCommitPropAuthor as WebhookStatusPropCommitPropCommitPropAuthor, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookStatusPropCommitPropCommitPropAuthorAllof0 as WebhookStatusPropCommitPropCommitPropAuthorAllof0, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookStatusPropCommitPropCommitPropAuthorAllof1 as WebhookStatusPropCommitPropCommitPropAuthorAllof1, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookStatusPropCommitPropCommitPropCommitter as WebhookStatusPropCommitPropCommitPropCommitter, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookStatusPropCommitPropCommitPropCommitterAllof0 as WebhookStatusPropCommitPropCommitPropCommitterAllof0, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookStatusPropCommitPropCommitPropCommitterAllof1 as WebhookStatusPropCommitPropCommitPropCommitterAllof1, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookStatusPropCommitPropCommitPropTree as WebhookStatusPropCommitPropCommitPropTree, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookStatusPropCommitPropCommitPropVerification as WebhookStatusPropCommitPropCommitPropVerification, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookStatusPropCommitPropCommitter as WebhookStatusPropCommitPropCommitter, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookStatusPropCommitPropParentsItems as WebhookStatusPropCommitPropParentsItems, - ) - from githubkit.versions.v2026_03_10.models import WebhooksTeam as WebhooksTeam - from githubkit.versions.v2026_03_10.models import WebhooksTeam1 as WebhooksTeam1 - from githubkit.versions.v2026_03_10.models import ( - WebhooksTeam1PropParent as WebhooksTeam1PropParent, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhooksTeamPropParent as WebhooksTeamPropParent, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookSubIssuesParentIssueAdded as WebhookSubIssuesParentIssueAdded, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookSubIssuesParentIssueRemoved as WebhookSubIssuesParentIssueRemoved, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookSubIssuesSubIssueAdded as WebhookSubIssuesSubIssueAdded, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookSubIssuesSubIssueRemoved as WebhookSubIssuesSubIssueRemoved, - ) - from githubkit.versions.v2026_03_10.models import WebhooksUser as WebhooksUser - from githubkit.versions.v2026_03_10.models import ( - WebhooksUserMannequin as WebhooksUserMannequin, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhooksWorkflow as WebhooksWorkflow, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhooksWorkflowJobRun as WebhooksWorkflowJobRun, - ) - from githubkit.versions.v2026_03_10.models import WebhookTeamAdd as WebhookTeamAdd - from githubkit.versions.v2026_03_10.models import ( - WebhookTeamAddedToRepository as WebhookTeamAddedToRepository, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookTeamAddedToRepositoryPropRepository as WebhookTeamAddedToRepositoryPropRepository, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookTeamAddedToRepositoryPropRepositoryPropCustomProperties as WebhookTeamAddedToRepositoryPropRepositoryPropCustomProperties, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookTeamAddedToRepositoryPropRepositoryPropLicense as WebhookTeamAddedToRepositoryPropRepositoryPropLicense, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookTeamAddedToRepositoryPropRepositoryPropOwner as WebhookTeamAddedToRepositoryPropRepositoryPropOwner, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookTeamAddedToRepositoryPropRepositoryPropPermissions as WebhookTeamAddedToRepositoryPropRepositoryPropPermissions, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookTeamCreated as WebhookTeamCreated, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookTeamCreatedPropRepository as WebhookTeamCreatedPropRepository, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookTeamCreatedPropRepositoryPropCustomProperties as WebhookTeamCreatedPropRepositoryPropCustomProperties, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookTeamCreatedPropRepositoryPropLicense as WebhookTeamCreatedPropRepositoryPropLicense, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookTeamCreatedPropRepositoryPropOwner as WebhookTeamCreatedPropRepositoryPropOwner, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookTeamCreatedPropRepositoryPropPermissions as WebhookTeamCreatedPropRepositoryPropPermissions, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookTeamDeleted as WebhookTeamDeleted, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookTeamDeletedPropRepository as WebhookTeamDeletedPropRepository, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookTeamDeletedPropRepositoryPropCustomProperties as WebhookTeamDeletedPropRepositoryPropCustomProperties, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookTeamDeletedPropRepositoryPropLicense as WebhookTeamDeletedPropRepositoryPropLicense, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookTeamDeletedPropRepositoryPropOwner as WebhookTeamDeletedPropRepositoryPropOwner, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookTeamDeletedPropRepositoryPropPermissions as WebhookTeamDeletedPropRepositoryPropPermissions, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookTeamEdited as WebhookTeamEdited, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookTeamEditedPropChanges as WebhookTeamEditedPropChanges, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookTeamEditedPropChangesPropDescription as WebhookTeamEditedPropChangesPropDescription, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookTeamEditedPropChangesPropName as WebhookTeamEditedPropChangesPropName, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookTeamEditedPropChangesPropNotificationSetting as WebhookTeamEditedPropChangesPropNotificationSetting, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookTeamEditedPropChangesPropPrivacy as WebhookTeamEditedPropChangesPropPrivacy, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookTeamEditedPropChangesPropRepository as WebhookTeamEditedPropChangesPropRepository, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookTeamEditedPropChangesPropRepositoryPropPermissions as WebhookTeamEditedPropChangesPropRepositoryPropPermissions, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookTeamEditedPropChangesPropRepositoryPropPermissionsPropFrom as WebhookTeamEditedPropChangesPropRepositoryPropPermissionsPropFrom, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookTeamEditedPropRepository as WebhookTeamEditedPropRepository, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookTeamEditedPropRepositoryPropCustomProperties as WebhookTeamEditedPropRepositoryPropCustomProperties, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookTeamEditedPropRepositoryPropLicense as WebhookTeamEditedPropRepositoryPropLicense, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookTeamEditedPropRepositoryPropOwner as WebhookTeamEditedPropRepositoryPropOwner, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookTeamEditedPropRepositoryPropPermissions as WebhookTeamEditedPropRepositoryPropPermissions, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookTeamRemovedFromRepository as WebhookTeamRemovedFromRepository, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookTeamRemovedFromRepositoryPropRepository as WebhookTeamRemovedFromRepositoryPropRepository, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookTeamRemovedFromRepositoryPropRepositoryPropCustomProperties as WebhookTeamRemovedFromRepositoryPropRepositoryPropCustomProperties, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookTeamRemovedFromRepositoryPropRepositoryPropLicense as WebhookTeamRemovedFromRepositoryPropRepositoryPropLicense, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookTeamRemovedFromRepositoryPropRepositoryPropOwner as WebhookTeamRemovedFromRepositoryPropRepositoryPropOwner, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookTeamRemovedFromRepositoryPropRepositoryPropPermissions as WebhookTeamRemovedFromRepositoryPropRepositoryPropPermissions, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookWatchStarted as WebhookWatchStarted, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookWorkflowDispatch as WebhookWorkflowDispatch, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookWorkflowDispatchPropInputs as WebhookWorkflowDispatchPropInputs, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookWorkflowJobCompleted as WebhookWorkflowJobCompleted, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookWorkflowJobCompletedPropWorkflowJob as WebhookWorkflowJobCompletedPropWorkflowJob, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookWorkflowJobCompletedPropWorkflowJobAllof0 as WebhookWorkflowJobCompletedPropWorkflowJobAllof0, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookWorkflowJobCompletedPropWorkflowJobAllof0PropStepsItems as WebhookWorkflowJobCompletedPropWorkflowJobAllof0PropStepsItems, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookWorkflowJobCompletedPropWorkflowJobAllof1 as WebhookWorkflowJobCompletedPropWorkflowJobAllof1, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookWorkflowJobCompletedPropWorkflowJobAllof1PropStepsItems as WebhookWorkflowJobCompletedPropWorkflowJobAllof1PropStepsItems, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookWorkflowJobCompletedPropWorkflowJobMergedSteps as WebhookWorkflowJobCompletedPropWorkflowJobMergedSteps, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookWorkflowJobInProgress as WebhookWorkflowJobInProgress, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookWorkflowJobInProgressPropWorkflowJob as WebhookWorkflowJobInProgressPropWorkflowJob, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookWorkflowJobInProgressPropWorkflowJobAllof0 as WebhookWorkflowJobInProgressPropWorkflowJobAllof0, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookWorkflowJobInProgressPropWorkflowJobAllof0PropStepsItems as WebhookWorkflowJobInProgressPropWorkflowJobAllof0PropStepsItems, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookWorkflowJobInProgressPropWorkflowJobAllof1 as WebhookWorkflowJobInProgressPropWorkflowJobAllof1, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookWorkflowJobInProgressPropWorkflowJobAllof1PropStepsItems as WebhookWorkflowJobInProgressPropWorkflowJobAllof1PropStepsItems, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookWorkflowJobInProgressPropWorkflowJobMergedSteps as WebhookWorkflowJobInProgressPropWorkflowJobMergedSteps, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookWorkflowJobQueued as WebhookWorkflowJobQueued, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookWorkflowJobQueuedPropWorkflowJob as WebhookWorkflowJobQueuedPropWorkflowJob, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookWorkflowJobQueuedPropWorkflowJobPropStepsItems as WebhookWorkflowJobQueuedPropWorkflowJobPropStepsItems, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookWorkflowJobWaiting as WebhookWorkflowJobWaiting, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookWorkflowJobWaitingPropWorkflowJob as WebhookWorkflowJobWaitingPropWorkflowJob, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookWorkflowJobWaitingPropWorkflowJobPropStepsItems as WebhookWorkflowJobWaitingPropWorkflowJobPropStepsItems, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookWorkflowRunCompleted as WebhookWorkflowRunCompleted, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookWorkflowRunCompletedPropWorkflowRun as WebhookWorkflowRunCompletedPropWorkflowRun, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookWorkflowRunCompletedPropWorkflowRunPropActor as WebhookWorkflowRunCompletedPropWorkflowRunPropActor, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookWorkflowRunCompletedPropWorkflowRunPropHeadCommit as WebhookWorkflowRunCompletedPropWorkflowRunPropHeadCommit, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookWorkflowRunCompletedPropWorkflowRunPropHeadCommitPropAuthor as WebhookWorkflowRunCompletedPropWorkflowRunPropHeadCommitPropAuthor, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookWorkflowRunCompletedPropWorkflowRunPropHeadCommitPropCommitter as WebhookWorkflowRunCompletedPropWorkflowRunPropHeadCommitPropCommitter, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookWorkflowRunCompletedPropWorkflowRunPropHeadRepository as WebhookWorkflowRunCompletedPropWorkflowRunPropHeadRepository, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookWorkflowRunCompletedPropWorkflowRunPropHeadRepositoryPropOwner as WebhookWorkflowRunCompletedPropWorkflowRunPropHeadRepositoryPropOwner, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookWorkflowRunCompletedPropWorkflowRunPropPullRequestsItems as WebhookWorkflowRunCompletedPropWorkflowRunPropPullRequestsItems, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookWorkflowRunCompletedPropWorkflowRunPropPullRequestsItemsPropBase as WebhookWorkflowRunCompletedPropWorkflowRunPropPullRequestsItemsPropBase, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookWorkflowRunCompletedPropWorkflowRunPropPullRequestsItemsPropBasePropRepo as WebhookWorkflowRunCompletedPropWorkflowRunPropPullRequestsItemsPropBasePropRepo, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookWorkflowRunCompletedPropWorkflowRunPropPullRequestsItemsPropHead as WebhookWorkflowRunCompletedPropWorkflowRunPropPullRequestsItemsPropHead, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookWorkflowRunCompletedPropWorkflowRunPropPullRequestsItemsPropHeadPropRepo as WebhookWorkflowRunCompletedPropWorkflowRunPropPullRequestsItemsPropHeadPropRepo, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookWorkflowRunCompletedPropWorkflowRunPropReferencedWorkflowsItems as WebhookWorkflowRunCompletedPropWorkflowRunPropReferencedWorkflowsItems, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookWorkflowRunCompletedPropWorkflowRunPropRepository as WebhookWorkflowRunCompletedPropWorkflowRunPropRepository, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookWorkflowRunCompletedPropWorkflowRunPropRepositoryPropOwner as WebhookWorkflowRunCompletedPropWorkflowRunPropRepositoryPropOwner, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookWorkflowRunCompletedPropWorkflowRunPropTriggeringActor as WebhookWorkflowRunCompletedPropWorkflowRunPropTriggeringActor, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookWorkflowRunInProgress as WebhookWorkflowRunInProgress, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookWorkflowRunInProgressPropWorkflowRun as WebhookWorkflowRunInProgressPropWorkflowRun, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookWorkflowRunInProgressPropWorkflowRunPropActor as WebhookWorkflowRunInProgressPropWorkflowRunPropActor, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookWorkflowRunInProgressPropWorkflowRunPropHeadCommit as WebhookWorkflowRunInProgressPropWorkflowRunPropHeadCommit, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookWorkflowRunInProgressPropWorkflowRunPropHeadCommitPropAuthor as WebhookWorkflowRunInProgressPropWorkflowRunPropHeadCommitPropAuthor, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookWorkflowRunInProgressPropWorkflowRunPropHeadCommitPropCommitter as WebhookWorkflowRunInProgressPropWorkflowRunPropHeadCommitPropCommitter, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookWorkflowRunInProgressPropWorkflowRunPropHeadRepository as WebhookWorkflowRunInProgressPropWorkflowRunPropHeadRepository, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookWorkflowRunInProgressPropWorkflowRunPropHeadRepositoryPropOwner as WebhookWorkflowRunInProgressPropWorkflowRunPropHeadRepositoryPropOwner, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookWorkflowRunInProgressPropWorkflowRunPropPullRequestsItems as WebhookWorkflowRunInProgressPropWorkflowRunPropPullRequestsItems, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookWorkflowRunInProgressPropWorkflowRunPropPullRequestsItemsPropBase as WebhookWorkflowRunInProgressPropWorkflowRunPropPullRequestsItemsPropBase, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookWorkflowRunInProgressPropWorkflowRunPropPullRequestsItemsPropBasePropRepo as WebhookWorkflowRunInProgressPropWorkflowRunPropPullRequestsItemsPropBasePropRepo, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookWorkflowRunInProgressPropWorkflowRunPropPullRequestsItemsPropHead as WebhookWorkflowRunInProgressPropWorkflowRunPropPullRequestsItemsPropHead, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookWorkflowRunInProgressPropWorkflowRunPropPullRequestsItemsPropHeadPropRepo as WebhookWorkflowRunInProgressPropWorkflowRunPropPullRequestsItemsPropHeadPropRepo, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookWorkflowRunInProgressPropWorkflowRunPropReferencedWorkflowsItems as WebhookWorkflowRunInProgressPropWorkflowRunPropReferencedWorkflowsItems, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookWorkflowRunInProgressPropWorkflowRunPropRepository as WebhookWorkflowRunInProgressPropWorkflowRunPropRepository, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookWorkflowRunInProgressPropWorkflowRunPropRepositoryPropOwner as WebhookWorkflowRunInProgressPropWorkflowRunPropRepositoryPropOwner, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookWorkflowRunInProgressPropWorkflowRunPropTriggeringActor as WebhookWorkflowRunInProgressPropWorkflowRunPropTriggeringActor, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookWorkflowRunRequested as WebhookWorkflowRunRequested, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookWorkflowRunRequestedPropWorkflowRun as WebhookWorkflowRunRequestedPropWorkflowRun, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookWorkflowRunRequestedPropWorkflowRunPropActor as WebhookWorkflowRunRequestedPropWorkflowRunPropActor, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookWorkflowRunRequestedPropWorkflowRunPropHeadCommit as WebhookWorkflowRunRequestedPropWorkflowRunPropHeadCommit, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookWorkflowRunRequestedPropWorkflowRunPropHeadCommitPropAuthor as WebhookWorkflowRunRequestedPropWorkflowRunPropHeadCommitPropAuthor, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookWorkflowRunRequestedPropWorkflowRunPropHeadCommitPropCommitter as WebhookWorkflowRunRequestedPropWorkflowRunPropHeadCommitPropCommitter, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookWorkflowRunRequestedPropWorkflowRunPropHeadRepository as WebhookWorkflowRunRequestedPropWorkflowRunPropHeadRepository, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookWorkflowRunRequestedPropWorkflowRunPropHeadRepositoryPropOwner as WebhookWorkflowRunRequestedPropWorkflowRunPropHeadRepositoryPropOwner, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookWorkflowRunRequestedPropWorkflowRunPropPullRequestsItems as WebhookWorkflowRunRequestedPropWorkflowRunPropPullRequestsItems, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookWorkflowRunRequestedPropWorkflowRunPropPullRequestsItemsPropBase as WebhookWorkflowRunRequestedPropWorkflowRunPropPullRequestsItemsPropBase, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookWorkflowRunRequestedPropWorkflowRunPropPullRequestsItemsPropBasePropRepo as WebhookWorkflowRunRequestedPropWorkflowRunPropPullRequestsItemsPropBasePropRepo, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookWorkflowRunRequestedPropWorkflowRunPropPullRequestsItemsPropHead as WebhookWorkflowRunRequestedPropWorkflowRunPropPullRequestsItemsPropHead, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookWorkflowRunRequestedPropWorkflowRunPropPullRequestsItemsPropHeadPropRepo as WebhookWorkflowRunRequestedPropWorkflowRunPropPullRequestsItemsPropHeadPropRepo, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookWorkflowRunRequestedPropWorkflowRunPropReferencedWorkflowsItems as WebhookWorkflowRunRequestedPropWorkflowRunPropReferencedWorkflowsItems, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookWorkflowRunRequestedPropWorkflowRunPropRepository as WebhookWorkflowRunRequestedPropWorkflowRunPropRepository, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookWorkflowRunRequestedPropWorkflowRunPropRepositoryPropOwner as WebhookWorkflowRunRequestedPropWorkflowRunPropRepositoryPropOwner, - ) - from githubkit.versions.v2026_03_10.models import ( - WebhookWorkflowRunRequestedPropWorkflowRunPropTriggeringActor as WebhookWorkflowRunRequestedPropWorkflowRunPropTriggeringActor, - ) - from githubkit.versions.v2026_03_10.models import Workflow as Workflow - from githubkit.versions.v2026_03_10.models import ( - WorkflowDispatchResponse as WorkflowDispatchResponse, - ) - from githubkit.versions.v2026_03_10.models import WorkflowRun as WorkflowRun - from githubkit.versions.v2026_03_10.models import ( - WorkflowRunUsage as WorkflowRunUsage, - ) - from githubkit.versions.v2026_03_10.models import ( - WorkflowRunUsagePropBillable as WorkflowRunUsagePropBillable, - ) - from githubkit.versions.v2026_03_10.models import ( - WorkflowRunUsagePropBillablePropMacos as WorkflowRunUsagePropBillablePropMacos, - ) - from githubkit.versions.v2026_03_10.models import ( - WorkflowRunUsagePropBillablePropMacosPropJobRunsItems as WorkflowRunUsagePropBillablePropMacosPropJobRunsItems, - ) - from githubkit.versions.v2026_03_10.models import ( - WorkflowRunUsagePropBillablePropUbuntu as WorkflowRunUsagePropBillablePropUbuntu, - ) - from githubkit.versions.v2026_03_10.models import ( - WorkflowRunUsagePropBillablePropUbuntuPropJobRunsItems as WorkflowRunUsagePropBillablePropUbuntuPropJobRunsItems, - ) - from githubkit.versions.v2026_03_10.models import ( - WorkflowRunUsagePropBillablePropWindows as WorkflowRunUsagePropBillablePropWindows, - ) - from githubkit.versions.v2026_03_10.models import ( - WorkflowRunUsagePropBillablePropWindowsPropJobRunsItems as WorkflowRunUsagePropBillablePropWindowsPropJobRunsItems, - ) - from githubkit.versions.v2026_03_10.models import WorkflowUsage as WorkflowUsage - from githubkit.versions.v2026_03_10.models import ( - WorkflowUsagePropBillable as WorkflowUsagePropBillable, - ) - from githubkit.versions.v2026_03_10.models import ( - WorkflowUsagePropBillablePropMacos as WorkflowUsagePropBillablePropMacos, - ) - from githubkit.versions.v2026_03_10.models import ( - WorkflowUsagePropBillablePropUbuntu as WorkflowUsagePropBillablePropUbuntu, - ) - from githubkit.versions.v2026_03_10.models import ( - WorkflowUsagePropBillablePropWindows as WorkflowUsagePropBillablePropWindows, - ) -else: - __lazy_vars__ = { - "githubkit.versions.v2026_03_10.models": ( - "Root", - "CvssSeverities", - "CvssSeveritiesPropCvssV3", - "CvssSeveritiesPropCvssV4", - "SecurityAdvisoryEpss", - "SimpleUser", - "GlobalAdvisory", - "GlobalAdvisoryPropIdentifiersItems", - "GlobalAdvisoryPropCwesItems", - "Vulnerability", - "VulnerabilityPropPackage", - "GlobalAdvisoryPropCreditsItems", - "BasicError", - "ValidationErrorSimple", - "Enterprise", - "IntegrationPropPermissions", - "Integration", - "WebhookConfig", - "HookDeliveryItem", - "ScimError", - "ValidationError", - "ValidationErrorPropErrorsItems", - "HookDelivery", - "HookDeliveryPropRequest", - "HookDeliveryPropRequestPropHeaders", - "HookDeliveryPropRequestPropPayload", - "HookDeliveryPropResponse", - "HookDeliveryPropResponsePropHeaders", - "IntegrationInstallationRequest", - "AppPermissions", - "Installation", - "LicenseSimple", - "Repository", - "RepositoryPropPermissions", - "RepositoryPropCodeSearchIndexStatus", - "InstallationToken", - "ScopedInstallation", - "Authorization", - "AuthorizationPropApp", - "SimpleClassroomRepository", - "ClassroomAssignment", - "Classroom", - "SimpleClassroomOrganization", - "ClassroomAcceptedAssignment", - "SimpleClassroomUser", - "SimpleClassroomAssignment", - "SimpleClassroom", - "ClassroomAssignmentGrade", - "ActionsCacheRetentionLimitForEnterprise", - "ActionsCacheStorageLimitForEnterprise", - "OidcCustomPropertyInclusion", - "OidcCustomPropertyInclusionInput", - "CodeSecurityConfiguration", - "CodeSecurityConfigurationPropDependencyGraphAutosubmitActionOptions", - "CodeSecurityConfigurationPropCodeScanningOptions", - "CodeSecurityConfigurationPropCodeScanningDefaultSetupOptions", - "CodeSecurityConfigurationPropSecretScanningDelegatedBypassOptions", - "CodeSecurityConfigurationPropSecretScanningDelegatedBypassOptionsPropReviewersItems", - "CodeScanningOptions", - "CodeScanningDefaultSetupOptions", - "CodeSecurityDefaultConfigurationsItems", - "SimpleRepository", - "CodeSecurityConfigurationRepositories", - "CopilotUsageMetrics1DayReport", - "CopilotUsageMetrics28DayReport", - "DependabotAlertPackage", - "DependabotAlertSecurityVulnerability", - "DependabotAlertSecurityVulnerabilityPropFirstPatchedVersion", - "DependabotAlertSecurityAdvisory", - "DependabotAlertSecurityAdvisoryPropCwesItems", - "DependabotAlertSecurityAdvisoryPropIdentifiersItems", - "DependabotAlertSecurityAdvisoryPropReferencesItems", - "DependabotAlertDismissalRequestSimple", - "DependabotAlertDismissalRequestSimplePropRequester", - "DependabotAlertWithRepository", - "DependabotAlertWithRepositoryPropDependency", - "DependabotRepositoryAccessDetails", - "OrganizationSimple", - "Label", - "Discussion", - "DiscussionPropAnswerChosenBy", - "DiscussionPropCategory", - "DiscussionPropReactions", - "DiscussionPropUser", - "Milestone", - "IssueType", - "ReactionRollup", - "SubIssuesSummary", - "IssueDependenciesSummary", - "PinnedIssueComment", - "IssueComment", - "IssueFieldValue", - "IssueFieldValuePropSingleSelectOption", - "Issue", - "IssuePropLabelsItemsOneof1", - "IssuePropPullRequest", - "PullRequestMinimal", - "PullRequestMinimalPropHead", - "PullRequestMinimalPropHeadPropRepo", - "PullRequestMinimalPropBase", - "PullRequestMinimalPropBasePropRepo", - "ReleaseAsset", - "Release", - "Event", - "Actor", - "EventPropRepo", - "CreateEvent", - "DeleteEvent", - "PublicEvent", - "PushEvent", - "WatchEvent", - "GollumEvent", - "GollumEventPropPagesItems", - "DiscussionEvent", - "IssuesEvent", - "IssueCommentEvent", - "ForkEvent", - "ForkEventPropForkee", - "MemberEvent", - "PullRequestEvent", - "PullRequestReviewCommentEvent", - "PullRequestReviewCommentEventPropComment", - "PullRequestReviewCommentEventPropCommentPropUser", - "PullRequestReviewCommentEventPropCommentPropReactions", - "PullRequestReviewCommentEventPropCommentPropLinks", - "PullRequestReviewCommentEventPropCommentPropLinksPropHtml", - "PullRequestReviewCommentEventPropCommentPropLinksPropPullRequest", - "PullRequestReviewCommentEventPropCommentPropLinksPropSelf", - "PullRequestReviewEvent", - "PullRequestReviewEventPropReview", - "PullRequestReviewEventPropReviewPropLinks", - "PullRequestReviewEventPropReviewPropLinksPropHtml", - "PullRequestReviewEventPropReviewPropLinksPropPullRequest", - "CommitCommentEvent", - "CommitCommentEventPropComment", - "ReleaseEvent", - "ReleaseEventPropRelease", - "ReleaseEventPropReleaseAllof1", - "Feed", - "FeedPropLinks", - "LinkWithType", - "BaseGist", - "BaseGistPropFiles", - "GistSimple", - "GistSimplePropFiles", - "GistSimplePropForkOf", - "GistSimplePropForkOfPropFiles", - "GistComment", - "GistCommit", - "GistCommitPropChangeStatus", - "GitignoreTemplate", - "License", - "MarketplaceListingPlan", - "MarketplacePurchase", - "MarketplacePurchasePropMarketplacePendingChange", - "MarketplacePurchasePropMarketplacePurchase", - "ApiOverview", - "ApiOverviewPropSshKeyFingerprints", - "ApiOverviewPropDomains", - "ApiOverviewPropDomainsPropActionsInbound", - "ApiOverviewPropDomainsPropArtifactAttestations", - "SecurityAndAnalysis", - "SecurityAndAnalysisPropAdvancedSecurity", - "SecurityAndAnalysisPropCodeSecurity", - "SecurityAndAnalysisPropDependabotSecurityUpdates", - "SecurityAndAnalysisPropSecretScanning", - "SecurityAndAnalysisPropSecretScanningPushProtection", - "SecurityAndAnalysisPropSecretScanningNonProviderPatterns", - "SecurityAndAnalysisPropSecretScanningAiDetection", - "SecurityAndAnalysisPropSecretScanningDelegatedAlertDismissal", - "SecurityAndAnalysisPropSecretScanningDelegatedBypass", - "SecurityAndAnalysisPropSecretScanningDelegatedBypassOptions", - "SecurityAndAnalysisPropSecretScanningDelegatedBypassOptionsPropReviewersItems", - "MinimalRepository", - "CodeOfConduct", - "MinimalRepositoryPropPermissions", - "MinimalRepositoryPropLicense", - "MinimalRepositoryPropCustomProperties", - "Thread", - "ThreadPropSubject", - "ThreadSubscription", - "ActionsCacheRetentionLimitForOrganization", - "ActionsCacheStorageLimitForOrganization", - "GetAllBudgets", - "Budget", - "BudgetPropBudgetAlerting", - "GetBudget", - "GetBudgetPropBudgetAlerting", - "DeleteBudget", - "BillingPremiumRequestUsageReportOrg", - "BillingPremiumRequestUsageReportOrgPropTimePeriod", - "BillingPremiumRequestUsageReportOrgPropUsageItemsItems", - "BillingUsageReport", - "BillingUsageReportPropUsageItemsItems", - "BillingUsageSummaryReportOrg", - "BillingUsageSummaryReportOrgPropTimePeriod", - "BillingUsageSummaryReportOrgPropUsageItemsItems", - "OrganizationFull", - "OrganizationFullPropPlan", - "ActionsCacheUsageOrgEnterprise", - "ActionsHostedRunnerMachineSpec", - "ActionsHostedRunner", - "ActionsHostedRunnerPoolImage", - "PublicIp", - "ActionsHostedRunnerCuratedImage", - "ActionsHostedRunnerLimits", - "ActionsHostedRunnerLimitsPropPublicIps", - "OidcCustomSub", - "ActionsOrganizationPermissions", - "ActionsArtifactAndLogRetentionResponse", - "ActionsArtifactAndLogRetention", - "ActionsForkPrContributorApproval", - "ActionsForkPrWorkflowsPrivateRepos", - "ActionsForkPrWorkflowsPrivateReposRequest", - "SelectedActions", - "SelfHostedRunnersSettings", - "ActionsGetDefaultWorkflowPermissions", - "ActionsSetDefaultWorkflowPermissions", - "RunnerLabel", - "Runner", - "RunnerApplication", - "AuthenticationToken", - "AuthenticationTokenPropPermissions", - "ActionsPublicKey", - "ArtifactDeploymentRecord", - "ArtifactDeploymentRecordPropTags", - "TeamSimple", - "Team", - "TeamPropPermissions", - "CampaignSummary", - "CampaignSummaryPropAlertStats", - "CodeScanningAlertRuleSummary", - "CodeScanningAnalysisTool", - "CodeScanningAlertLocation", - "CodeScanningAlertInstance", - "CodeScanningAlertInstancePropMessage", - "CodeScanningOrganizationAlertItems", - "CodespaceMachine", - "Codespace", - "CodespacePropGitStatus", - "CodespacePropRuntimeConstraints", - "CodespacesPublicKey", - "CopilotSpace", - "CopilotSpacePropResourcesAttributesItems", - "CopilotSpacePropResourcesAttributesItemsPropMetadata", - "CopilotSpaceCollaboratorAnyof0", - "CopilotSpaceCollaboratorAnyof1", - "CopilotSpaceCollaboratorAnyof0Allof1", - "CopilotSpaceResource", - "CopilotSpaceResourcePropMetadata", - "CopilotOrganizationDetails", - "CopilotOrganizationSeatBreakdown", - "CopilotSeatDetails", - "EnterpriseTeam", - "OrgsOrgCopilotBillingSeatsGetResponse200", - "CopilotOrganizationContentExclusionDetails", - "CopilotUsageMetricsDay", - "CopilotDotcomChat", - "CopilotDotcomChatPropModelsItems", - "CopilotIdeChat", - "CopilotIdeChatPropEditorsItems", - "CopilotIdeChatPropEditorsItemsPropModelsItems", - "CopilotDotcomPullRequests", - "CopilotDotcomPullRequestsPropRepositoriesItems", - "CopilotDotcomPullRequestsPropRepositoriesItemsPropModelsItems", - "CopilotIdeCodeCompletions", - "CopilotIdeCodeCompletionsPropLanguagesItems", - "CopilotIdeCodeCompletionsPropEditorsItems", - "CopilotIdeCodeCompletionsPropEditorsItemsPropModelsItems", - "CopilotIdeCodeCompletionsPropEditorsItemsPropModelsItemsPropLanguagesItems", - "DependabotPublicKey", - "Package", - "OrganizationInvitation", - "OrgHook", - "OrgHookPropConfig", - "ApiInsightsRouteStatsItems", - "ApiInsightsSubjectStatsItems", - "ApiInsightsSummaryStats", - "ApiInsightsTimeStatsItems", - "ApiInsightsUserStatsItems", - "InteractionLimitResponse", - "InteractionLimit", - "IssueField", - "IssueFieldPropOptionsItems", - "OrganizationCreateIssueField", - "OrganizationCreateIssueFieldPropOptionsItems", - "OrganizationUpdateIssueField", - "OrganizationUpdateIssueFieldPropOptionsItems", - "OrganizationCreateIssueType", - "OrganizationUpdateIssueType", - "OrgMembership", - "OrgMembershipPropPermissions", - "Migration", - "OrganizationRole", - "OrgsOrgOrganizationRolesGetResponse200", - "TeamRoleAssignment", - "TeamRoleAssignmentPropPermissions", - "UserRoleAssignment", - "PackageVersion", - "PackageVersionPropMetadata", - "PackageVersionPropMetadataPropContainer", - "PackageVersionPropMetadataPropDocker", - "OrganizationProgrammaticAccessGrantRequest", - "OrganizationProgrammaticAccessGrantRequestPropPermissions", - "OrganizationProgrammaticAccessGrantRequestPropPermissionsPropOrganization", - "OrganizationProgrammaticAccessGrantRequestPropPermissionsPropRepository", - "OrganizationProgrammaticAccessGrantRequestPropPermissionsPropOther", - "OrganizationProgrammaticAccessGrant", - "OrganizationProgrammaticAccessGrantPropPermissions", - "OrganizationProgrammaticAccessGrantPropPermissionsPropOrganization", - "OrganizationProgrammaticAccessGrantPropPermissionsPropRepository", - "OrganizationProgrammaticAccessGrantPropPermissionsPropOther", - "OrgPrivateRegistryConfigurationWithSelectedRepositories", - "ProjectsV2StatusUpdate", - "ProjectsV2", - "Link", - "AutoMerge", - "PullRequestSimple", - "PullRequestSimplePropLabelsItems", - "PullRequestSimplePropHead", - "PullRequestSimplePropBase", - "PullRequestSimplePropLinks", - "ProjectsV2DraftIssue", - "ProjectsV2ItemSimple", - "ProjectsV2Field", - "ProjectsV2SingleSelectOptions", - "ProjectsV2SingleSelectOptionsPropName", - "ProjectsV2SingleSelectOptionsPropDescription", - "ProjectsV2FieldPropConfiguration", - "ProjectsV2IterationSettings", - "ProjectsV2IterationSettingsPropTitle", - "ProjectsV2FieldSingleSelectOption", - "ProjectsV2FieldIterationConfiguration", - "ProjectsV2FieldIterationConfigurationPropIterationsItems", - "ProjectsV2ItemWithContent", - "ProjectsV2ItemWithContentPropContent", - "ProjectsV2ItemWithContentPropFieldsItems", - "ProjectsV2View", - "ProjectsV2ViewPropCreator", - "CustomProperty", - "CustomPropertySetPayload", - "CustomPropertyValue", - "OrgRepoCustomPropertyValues", - "CodeOfConductSimple", - "FullRepository", - "FullRepositoryPropPermissions", - "FullRepositoryPropCustomProperties", - "RepositoryRulesetBypassActor", - "RepositoryRulesetConditions", - "RepositoryRulesetConditionsPropRefName", - "RepositoryRulesetConditionsRepositoryNameTarget", - "RepositoryRulesetConditionsRepositoryNameTargetPropRepositoryName", - "RepositoryRulesetConditionsRepositoryIdTarget", - "RepositoryRulesetConditionsRepositoryIdTargetPropRepositoryId", - "RepositoryRulesetConditionsRepositoryPropertyTarget", - "RepositoryRulesetConditionsRepositoryPropertyTargetPropRepositoryProperty", - "RepositoryRulesetConditionsRepositoryPropertySpec", - "OrgRulesetConditionsOneof0", - "OrgRulesetConditionsOneof1", - "OrgRulesetConditionsOneof2", - "RepositoryRuleCreation", - "RepositoryRuleDeletion", - "RepositoryRuleRequiredSignatures", - "RepositoryRuleNonFastForward", - "RepositoryRuleUpdate", - "RepositoryRuleUpdatePropParameters", - "RepositoryRuleRequiredLinearHistory", - "RepositoryRuleMergeQueue", - "RepositoryRuleMergeQueuePropParameters", - "RepositoryRuleRequiredDeployments", - "RepositoryRuleRequiredDeploymentsPropParameters", - "RepositoryRulePullRequest", - "RepositoryRulePullRequestPropParameters", - "RepositoryRuleParamsRequiredReviewerConfiguration", - "RepositoryRuleParamsReviewer", - "RepositoryRuleRequiredStatusChecks", - "RepositoryRuleRequiredStatusChecksPropParameters", - "RepositoryRuleParamsStatusCheckConfiguration", - "RepositoryRuleCommitMessagePattern", - "RepositoryRuleCommitMessagePatternPropParameters", - "RepositoryRuleCommitAuthorEmailPattern", - "RepositoryRuleCommitAuthorEmailPatternPropParameters", - "RepositoryRuleCommitterEmailPattern", - "RepositoryRuleCommitterEmailPatternPropParameters", - "RepositoryRuleBranchNamePattern", - "RepositoryRuleBranchNamePatternPropParameters", - "RepositoryRuleTagNamePattern", - "RepositoryRuleTagNamePatternPropParameters", - "RepositoryRuleFilePathRestriction", - "RepositoryRuleFilePathRestrictionPropParameters", - "RepositoryRuleMaxFilePathLength", - "RepositoryRuleMaxFilePathLengthPropParameters", - "RepositoryRuleFileExtensionRestriction", - "RepositoryRuleFileExtensionRestrictionPropParameters", - "RepositoryRuleMaxFileSize", - "RepositoryRuleMaxFileSizePropParameters", - "RepositoryRuleParamsRestrictedCommits", - "RepositoryRuleWorkflows", - "RepositoryRuleWorkflowsPropParameters", - "RepositoryRuleParamsWorkflowFileReference", - "RepositoryRuleCodeScanning", - "RepositoryRuleCodeScanningPropParameters", - "RepositoryRuleParamsCodeScanningTool", - "RepositoryRuleCopilotCodeReview", - "RepositoryRuleCopilotCodeReviewPropParameters", - "RepositoryRuleset", - "RepositoryRulesetPropLinks", - "RepositoryRulesetPropLinksPropSelf", - "RepositoryRulesetPropLinksPropHtml", - "RuleSuitesItems", - "RuleSuitePullRequest", - "RuleSuitePullRequestPropPullRequest", - "RuleSuitePullRequestPropPullRequestPropUser", - "RuleSuitePullRequestPropPullRequestPropReviewsItems", - "RuleSuitePullRequestPropPullRequestPropReviewsItemsPropUser", - "RuleSuiteRequiredStatusChecks", - "RuleSuiteRequiredStatusChecksPropChecksItems", - "RuleSuiteRequiredStatusChecksPropChecksItemsPropApp", - "RuleSuite", - "RuleSuitePropRuleEvaluationsItems", - "RuleSuitePropRuleEvaluationsItemsPropRuleSource", - "RulesetVersion", - "RulesetVersionPropActor", - "RulesetVersionWithState", - "RulesetVersionWithStateAllof1", - "RulesetVersionWithStateAllof1PropState", - "SecretScanningLocationCommit", - "SecretScanningLocationWikiCommit", - "SecretScanningLocationIssueBody", - "SecretScanningLocationDiscussionTitle", - "SecretScanningLocationDiscussionComment", - "SecretScanningLocationPullRequestBody", - "SecretScanningLocationPullRequestReview", - "SecretScanningLocationIssueTitle", - "SecretScanningLocationIssueComment", - "SecretScanningLocationPullRequestTitle", - "SecretScanningLocationPullRequestReviewComment", - "SecretScanningLocationDiscussionBody", - "SecretScanningLocationPullRequestComment", - "OrganizationSecretScanningAlert", - "SecretScanningPatternConfiguration", - "SecretScanningPatternOverride", - "RepositoryAdvisoryCredit", - "RepositoryAdvisory", - "RepositoryAdvisoryPropIdentifiersItems", - "RepositoryAdvisoryPropSubmission", - "RepositoryAdvisoryPropCwesItems", - "RepositoryAdvisoryPropCreditsItems", - "RepositoryAdvisoryVulnerability", - "RepositoryAdvisoryVulnerabilityPropPackage", - "ImmutableReleasesOrganizationSettings", - "NetworkSettings", - "TeamFull", - "TeamOrganization", - "TeamOrganizationPropPlan", - "TeamMembership", - "TeamRepository", - "TeamRepositoryPropPermissions", - "RateLimitOverview", - "RateLimitOverviewPropResources", - "RateLimit", - "Artifact", - "ArtifactPropWorkflowRun", - "ActionsCacheRetentionLimitForRepository", - "ActionsCacheStorageLimitForRepository", - "ActionsCacheList", - "ActionsCacheListPropActionsCachesItems", - "Job", - "JobPropStepsItems", - "OidcCustomSubRepo", - "ActionsSecret", - "ActionsVariable", - "ActionsRepositoryPermissions", - "ActionsWorkflowAccessToRepository", - "SimpleCommit", - "SimpleCommitPropAuthor", - "SimpleCommitPropCommitter", - "WorkflowRun", - "ReferencedWorkflow", - "EnvironmentApprovals", - "EnvironmentApprovalsPropEnvironmentsItems", - "ReviewCustomGatesCommentRequired", - "ReviewCustomGatesStateRequired", - "PendingDeploymentPropReviewersItems", - "PendingDeployment", - "PendingDeploymentPropEnvironment", - "Deployment", - "DeploymentPropPayloadOneof0", - "WorkflowRunUsage", - "WorkflowRunUsagePropBillable", - "WorkflowRunUsagePropBillablePropUbuntu", - "WorkflowRunUsagePropBillablePropUbuntuPropJobRunsItems", - "WorkflowRunUsagePropBillablePropMacos", - "WorkflowRunUsagePropBillablePropMacosPropJobRunsItems", - "WorkflowRunUsagePropBillablePropWindows", - "WorkflowRunUsagePropBillablePropWindowsPropJobRunsItems", - "WorkflowDispatchResponse", - "WorkflowUsage", - "WorkflowUsagePropBillable", - "WorkflowUsagePropBillablePropUbuntu", - "WorkflowUsagePropBillablePropMacos", - "WorkflowUsagePropBillablePropWindows", - "Activity", - "Autolink", - "CheckAutomatedSecurityFixes", - "ProtectedBranchPullRequestReview", - "ProtectedBranchPullRequestReviewPropDismissalRestrictions", - "ProtectedBranchPullRequestReviewPropBypassPullRequestAllowances", - "BranchRestrictionPolicy", - "BranchRestrictionPolicyPropUsersItems", - "BranchRestrictionPolicyPropAppsItems", - "BranchRestrictionPolicyPropAppsItemsPropOwner", - "BranchRestrictionPolicyPropAppsItemsPropPermissions", - "BranchProtection", - "ProtectedBranchAdminEnforced", - "BranchProtectionPropRequiredLinearHistory", - "BranchProtectionPropAllowForcePushes", - "BranchProtectionPropAllowDeletions", - "BranchProtectionPropBlockCreations", - "BranchProtectionPropRequiredConversationResolution", - "BranchProtectionPropRequiredSignatures", - "BranchProtectionPropLockBranch", - "BranchProtectionPropAllowForkSyncing", - "ProtectedBranchRequiredStatusCheck", - "ProtectedBranchRequiredStatusCheckPropChecksItems", - "ShortBranch", - "ShortBranchPropCommit", - "GitUser", - "Verification", - "DiffEntry", - "Commit", - "EmptyObject", - "CommitPropParentsItems", - "CommitPropStats", - "CommitPropCommit", - "CommitPropCommitPropTree", - "BranchWithProtection", - "BranchWithProtectionPropLinks", - "ProtectedBranch", - "ProtectedBranchPropRequiredSignatures", - "ProtectedBranchPropEnforceAdmins", - "ProtectedBranchPropRequiredLinearHistory", - "ProtectedBranchPropAllowForcePushes", - "ProtectedBranchPropAllowDeletions", - "ProtectedBranchPropRequiredConversationResolution", - "ProtectedBranchPropBlockCreations", - "ProtectedBranchPropLockBranch", - "ProtectedBranchPropAllowForkSyncing", - "StatusCheckPolicy", - "StatusCheckPolicyPropChecksItems", - "ProtectedBranchPropRequiredPullRequestReviews", - "ProtectedBranchPropRequiredPullRequestReviewsPropDismissalRestrictions", - "ProtectedBranchPropRequiredPullRequestReviewsPropBypassPullRequestAllowances", - "DeploymentSimple", - "CheckRun", - "CheckRunPropOutput", - "CheckRunPropCheckSuite", - "CheckAnnotation", - "CheckSuite", - "ReposOwnerRepoCommitsRefCheckSuitesGetResponse200", - "CheckSuitePreference", - "CheckSuitePreferencePropPreferences", - "CheckSuitePreferencePropPreferencesPropAutoTriggerChecksItems", - "CodeScanningAlertItems", - "CodeScanningAlert", - "CodeScanningAlertRule", - "CodeScanningAutofix", - "CodeScanningAutofixCommits", - "CodeScanningAutofixCommitsResponse", - "CodeScanningAlertInstanceList", - "CodeScanningAlertInstanceListPropMessage", - "CodeScanningAnalysis", - "CodeScanningAnalysisDeletion", - "CodeScanningCodeqlDatabase", - "CodeScanningVariantAnalysisRepository", - "CodeScanningVariantAnalysisSkippedRepoGroup", - "CodeScanningVariantAnalysis", - "CodeScanningVariantAnalysisPropScannedRepositoriesItems", - "CodeScanningVariantAnalysisPropSkippedRepositories", - "CodeScanningVariantAnalysisPropSkippedRepositoriesPropNotFoundRepos", - "CodeScanningVariantAnalysisRepoTask", - "CodeScanningDefaultSetup", - "CodeScanningDefaultSetupUpdate", - "CodeScanningDefaultSetupUpdateResponse", - "CodeScanningSarifsReceipt", - "CodeScanningSarifsStatus", - "CodeSecurityConfigurationForRepository", - "CodeownersErrors", - "CodeownersErrorsPropErrorsItems", - "CodespacesPermissionsCheckForDevcontainer", - "RepositoryInvitation", - "RepositoryCollaboratorPermission", - "Collaborator", - "CollaboratorPropPermissions", - "CommitComment", - "TimelineCommitCommentedEvent", - "Reaction", - "BranchShort", - "BranchShortPropCommit", - "CombinedCommitStatus", - "SimpleCommitStatus", - "Status", - "CommunityProfilePropFiles", - "CommunityHealthFile", - "CommunityProfile", - "CommitComparison", - "ContentTree", - "ContentTreePropLinks", - "ContentTreePropEntriesItems", - "ContentTreePropEntriesItemsPropLinks", - "ContentDirectoryItems", - "ContentDirectoryItemsPropLinks", - "ContentFile", - "ContentFilePropLinks", - "ContentSymlink", - "ContentSymlinkPropLinks", - "ContentSubmodule", - "ContentSubmodulePropLinks", - "FileCommit", - "FileCommitPropContent", - "FileCommitPropContentPropLinks", - "FileCommitPropCommit", - "FileCommitPropCommitPropAuthor", - "FileCommitPropCommitPropCommitter", - "FileCommitPropCommitPropTree", - "FileCommitPropCommitPropParentsItems", - "FileCommitPropCommitPropVerification", - "RepositoryRuleViolationError", - "RepositoryRuleViolationErrorPropMetadata", - "RepositoryRuleViolationErrorPropMetadataPropSecretScanning", - "RepositoryRuleViolationErrorPropMetadataPropSecretScanningPropBypassPlaceholdersItems", - "Contributor", - "DependabotAlert", - "DependabotAlertPropDependency", - "DependencyGraphDiffItems", - "DependencyGraphDiffItemsPropVulnerabilitiesItems", - "DependencyGraphSpdxSbom", - "DependencyGraphSpdxSbomPropSbom", - "DependencyGraphSpdxSbomPropSbomPropCreationInfo", - "DependencyGraphSpdxSbomPropSbomPropRelationshipsItems", - "DependencyGraphSpdxSbomPropSbomPropPackagesItems", - "DependencyGraphSpdxSbomPropSbomPropPackagesItemsPropExternalRefsItems", - "Metadata", - "Dependency", - "Manifest", - "ManifestPropFile", - "ManifestPropResolved", - "Snapshot", - "SnapshotPropJob", - "SnapshotPropDetector", - "SnapshotPropManifests", - "DeploymentStatus", - "DeploymentBranchPolicySettings", - "Environment", - "EnvironmentPropProtectionRulesItemsAnyof0", - "EnvironmentPropProtectionRulesItemsAnyof2", - "ReposOwnerRepoEnvironmentsGetResponse200", - "EnvironmentPropProtectionRulesItemsAnyof1", - "EnvironmentPropProtectionRulesItemsAnyof1PropReviewersItems", - "DeploymentBranchPolicyNamePatternWithType", - "DeploymentBranchPolicyNamePattern", - "CustomDeploymentRuleApp", - "DeploymentProtectionRule", - "ReposOwnerRepoEnvironmentsEnvironmentNameDeploymentProtectionRulesGetResponse200", - "ShortBlob", - "Blob", - "GitCommit", - "GitCommitPropAuthor", - "GitCommitPropCommitter", - "GitCommitPropTree", - "GitCommitPropParentsItems", - "GitCommitPropVerification", - "GitRef", - "GitRefPropObject", - "GitTag", - "GitTagPropTagger", - "GitTagPropObject", - "GitTree", - "GitTreePropTreeItems", - "HookResponse", - "Hook", - "CheckImmutableReleases", - "Import", - "ImportPropProjectChoicesItems", - "PorterAuthor", - "PorterLargeFile", - "IssueEvent", - "IssueEventLabel", - "IssueEventDismissedReview", - "IssueEventMilestone", - "IssueEventProjectCard", - "IssueEventRename", - "LabeledIssueEvent", - "LabeledIssueEventPropLabel", - "UnlabeledIssueEvent", - "UnlabeledIssueEventPropLabel", - "AssignedIssueEvent", - "UnassignedIssueEvent", - "MilestonedIssueEvent", - "MilestonedIssueEventPropMilestone", - "DemilestonedIssueEvent", - "DemilestonedIssueEventPropMilestone", - "RenamedIssueEvent", - "RenamedIssueEventPropRename", - "ReviewRequestedIssueEvent", - "ReviewRequestRemovedIssueEvent", - "ReviewDismissedIssueEvent", - "ReviewDismissedIssueEventPropDismissedReview", - "LockedIssueEvent", - "AddedToProjectIssueEvent", - "AddedToProjectIssueEventPropProjectCard", - "MovedColumnInProjectIssueEvent", - "MovedColumnInProjectIssueEventPropProjectCard", - "RemovedFromProjectIssueEvent", - "RemovedFromProjectIssueEventPropProjectCard", - "ConvertedNoteToIssueIssueEvent", - "ConvertedNoteToIssueIssueEventPropProjectCard", - "TimelineCommentEvent", - "TimelineCrossReferencedEvent", - "TimelineCrossReferencedEventPropSource", - "TimelineCommittedEvent", - "TimelineCommittedEventPropAuthor", - "TimelineCommittedEventPropCommitter", - "TimelineCommittedEventPropTree", - "TimelineCommittedEventPropParentsItems", - "TimelineCommittedEventPropVerification", - "TimelineReviewedEvent", - "TimelineReviewedEventPropLinks", - "TimelineReviewedEventPropLinksPropHtml", - "TimelineReviewedEventPropLinksPropPullRequest", - "PullRequestReviewComment", - "PullRequestReviewCommentPropLinks", - "PullRequestReviewCommentPropLinksPropSelf", - "PullRequestReviewCommentPropLinksPropHtml", - "PullRequestReviewCommentPropLinksPropPullRequest", - "TimelineLineCommentedEvent", - "TimelineAssignedIssueEvent", - "TimelineUnassignedIssueEvent", - "StateChangeIssueEvent", - "DeployKey", - "Language", - "LicenseContent", - "LicenseContentPropLinks", - "MergedUpstream", - "Page", - "PagesSourceHash", - "PagesHttpsCertificate", - "PageBuild", - "PageBuildPropError", - "PageBuildStatus", - "PageDeployment", - "PagesDeploymentStatus", - "PagesHealthCheck", - "PagesHealthCheckPropDomain", - "PagesHealthCheckPropAltDomain", - "PullRequest", - "PullRequestPropLabelsItems", - "PullRequestPropHead", - "PullRequestPropBase", - "PullRequestPropLinks", - "PullRequestMergeResult", - "PullRequestReviewRequest", - "PullRequestReview", - "PullRequestReviewPropLinks", - "PullRequestReviewPropLinksPropHtml", - "PullRequestReviewPropLinksPropPullRequest", - "ReviewComment", - "ReviewCommentPropLinks", - "ReleaseNotesContent", - "RepositoryRuleRulesetInfo", - "RepositoryRuleDetailedOneof0", - "RepositoryRuleDetailedOneof1", - "RepositoryRuleDetailedOneof2", - "RepositoryRuleDetailedOneof3", - "RepositoryRuleDetailedOneof4", - "RepositoryRuleDetailedOneof5", - "RepositoryRuleDetailedOneof6", - "RepositoryRuleDetailedOneof7", - "RepositoryRuleDetailedOneof8", - "RepositoryRuleDetailedOneof9", - "RepositoryRuleDetailedOneof10", - "RepositoryRuleDetailedOneof11", - "RepositoryRuleDetailedOneof12", - "RepositoryRuleDetailedOneof13", - "RepositoryRuleDetailedOneof14", - "RepositoryRuleDetailedOneof15", - "RepositoryRuleDetailedOneof16", - "RepositoryRuleDetailedOneof17", - "RepositoryRuleDetailedOneof18", - "RepositoryRuleDetailedOneof19", - "RepositoryRuleDetailedOneof20", - "RepositoryRuleDetailedOneof21", - "SecretScanningAlert", - "SecretScanningLocation", - "SecretScanningPushProtectionBypass", - "SecretScanningScanHistory", - "SecretScanningScan", - "SecretScanningScanHistoryPropCustomPatternBackfillScansItems", - "SecretScanningScanHistoryPropCustomPatternBackfillScansItemsAllof1", - "RepositoryAdvisoryCreate", - "RepositoryAdvisoryCreatePropCreditsItems", - "RepositoryAdvisoryCreatePropVulnerabilitiesItems", - "RepositoryAdvisoryCreatePropVulnerabilitiesItemsPropPackage", - "PrivateVulnerabilityReportCreate", - "PrivateVulnerabilityReportCreatePropVulnerabilitiesItems", - "PrivateVulnerabilityReportCreatePropVulnerabilitiesItemsPropPackage", - "RepositoryAdvisoryUpdate", - "RepositoryAdvisoryUpdatePropCreditsItems", - "RepositoryAdvisoryUpdatePropVulnerabilitiesItems", - "RepositoryAdvisoryUpdatePropVulnerabilitiesItemsPropPackage", - "Stargazer", - "CommitActivity", - "ContributorActivity", - "ContributorActivityPropWeeksItems", - "ParticipationStats", - "RepositorySubscription", - "Tag", - "TagPropCommit", - "Topic", - "Traffic", - "CloneTraffic", - "ContentTraffic", - "ReferrerTraffic", - "ViewTraffic", - "SearchResultTextMatchesItems", - "SearchResultTextMatchesItemsPropMatchesItems", - "CodeSearchResultItem", - "SearchCodeGetResponse200", - "CommitSearchResultItem", - "CommitSearchResultItemPropParentsItems", - "SearchCommitsGetResponse200", - "CommitSearchResultItemPropCommit", - "CommitSearchResultItemPropCommitPropAuthor", - "CommitSearchResultItemPropCommitPropTree", - "IssueSearchResultItem", - "IssueSearchResultItemPropLabelsItems", - "IssueSearchResultItemPropPullRequest", - "SearchIssuesGetResponse200", - "LabelSearchResultItem", - "SearchLabelsGetResponse200", - "RepoSearchResultItem", - "RepoSearchResultItemPropPermissions", - "SearchRepositoriesGetResponse200", - "TopicSearchResultItem", - "TopicSearchResultItemPropRelatedItems", - "TopicSearchResultItemPropRelatedItemsPropTopicRelation", - "TopicSearchResultItemPropAliasesItems", - "TopicSearchResultItemPropAliasesItemsPropTopicRelation", - "SearchTopicsGetResponse200", - "UserSearchResultItem", - "SearchUsersGetResponse200", - "PublicUser", - "PublicUserPropPlan", - "PrivateUser", - "PrivateUserPropPlan", - "CodespacesUserPublicKey", - "CodespaceExportDetails", - "CodespaceWithFullRepository", - "CodespaceWithFullRepositoryPropGitStatus", - "CodespaceWithFullRepositoryPropRuntimeConstraints", - "Email", - "GpgKey", - "GpgKeyPropEmailsItems", - "GpgKeyPropSubkeysItems", - "GpgKeyPropSubkeysItemsPropEmailsItems", - "Key", - "UserMarketplacePurchase", - "MarketplaceAccount", - "SocialAccount", - "SshSigningKey", - "StarredRepository", - "Hovercard", - "HovercardPropContextsItems", - "KeySimple", - "BillingPremiumRequestUsageReportUser", - "BillingPremiumRequestUsageReportUserPropTimePeriod", - "BillingPremiumRequestUsageReportUserPropUsageItemsItems", - "BillingUsageReportUser", - "BillingUsageReportUserPropUsageItemsItems", - "BillingUsageSummaryReportUser", - "BillingUsageSummaryReportUserPropTimePeriod", - "BillingUsageSummaryReportUserPropUsageItemsItems", - "EnterpriseWebhooks", - "SimpleInstallation", - "OrganizationSimpleWebhooks", - "RepositoryWebhooks", - "RepositoryWebhooksPropPermissions", - "RepositoryWebhooksPropCustomProperties", - "RepositoryWebhooksPropTemplateRepository", - "RepositoryWebhooksPropTemplateRepositoryPropOwner", - "RepositoryWebhooksPropTemplateRepositoryPropPermissions", - "WebhooksRule", - "SimpleCheckSuite", - "CheckRunWithSimpleCheckSuite", - "CheckRunWithSimpleCheckSuitePropOutput", - "WebhooksDeployKey", - "WebhooksWorkflow", - "WebhooksApprover", - "WebhooksReviewersItems", - "WebhooksReviewersItemsPropReviewer", - "WebhooksWorkflowJobRun", - "WebhooksUser", - "WebhooksAnswer", - "WebhooksAnswerPropReactions", - "WebhooksAnswerPropUser", - "WebhooksComment", - "WebhooksCommentPropReactions", - "WebhooksCommentPropUser", - "WebhooksLabel", - "WebhooksRepositoriesItems", - "WebhooksRepositoriesAddedItems", - "WebhooksIssueComment", - "WebhooksIssueCommentPropReactions", - "WebhooksIssueCommentPropUser", - "WebhooksChanges", - "WebhooksChangesPropBody", - "WebhooksIssue", - "WebhooksIssuePropAssignee", - "WebhooksIssuePropAssigneesItems", - "WebhooksIssuePropLabelsItems", - "WebhooksIssuePropMilestone", - "WebhooksIssuePropMilestonePropCreator", - "WebhooksIssuePropPerformedViaGithubApp", - "WebhooksIssuePropPerformedViaGithubAppPropOwner", - "WebhooksIssuePropPerformedViaGithubAppPropPermissions", - "WebhooksIssuePropPullRequest", - "WebhooksIssuePropReactions", - "WebhooksIssuePropUser", - "WebhooksMilestone", - "WebhooksMilestonePropCreator", - "WebhooksIssue2", - "WebhooksIssue2PropAssignee", - "WebhooksIssue2PropAssigneesItems", - "WebhooksIssue2PropLabelsItems", - "WebhooksIssue2PropMilestone", - "WebhooksIssue2PropMilestonePropCreator", - "WebhooksIssue2PropPerformedViaGithubApp", - "WebhooksIssue2PropPerformedViaGithubAppPropOwner", - "WebhooksIssue2PropPerformedViaGithubAppPropPermissions", - "WebhooksIssue2PropPullRequest", - "WebhooksIssue2PropReactions", - "WebhooksIssue2PropUser", - "WebhooksUserMannequin", - "WebhooksMarketplacePurchase", - "WebhooksMarketplacePurchasePropAccount", - "WebhooksMarketplacePurchasePropPlan", - "WebhooksPreviousMarketplacePurchase", - "WebhooksPreviousMarketplacePurchasePropAccount", - "WebhooksPreviousMarketplacePurchasePropPlan", - "WebhooksTeam", - "WebhooksTeamPropParent", - "MergeGroup", - "WebhooksMilestone3", - "WebhooksMilestone3PropCreator", - "WebhooksMembership", - "WebhooksMembershipPropUser", - "PersonalAccessTokenRequest", - "PersonalAccessTokenRequestPropRepositoriesItems", - "PersonalAccessTokenRequestPropPermissionsAdded", - "PersonalAccessTokenRequestPropPermissionsAddedPropOrganization", - "PersonalAccessTokenRequestPropPermissionsAddedPropRepository", - "PersonalAccessTokenRequestPropPermissionsAddedPropOther", - "PersonalAccessTokenRequestPropPermissionsUpgraded", - "PersonalAccessTokenRequestPropPermissionsUpgradedPropOrganization", - "PersonalAccessTokenRequestPropPermissionsUpgradedPropRepository", - "PersonalAccessTokenRequestPropPermissionsUpgradedPropOther", - "PersonalAccessTokenRequestPropPermissionsResult", - "PersonalAccessTokenRequestPropPermissionsResultPropOrganization", - "PersonalAccessTokenRequestPropPermissionsResultPropRepository", - "PersonalAccessTokenRequestPropPermissionsResultPropOther", - "WebhooksProjectCard", - "WebhooksProjectCardPropCreator", - "WebhooksProject", - "WebhooksProjectPropCreator", - "WebhooksProjectColumn", - "WebhooksProjectChanges", - "WebhooksProjectChangesPropArchivedAt", - "ProjectsV2Item", - "PullRequestWebhook", - "PullRequestWebhookAllof1", - "WebhooksPullRequest5", - "WebhooksPullRequest5PropAssignee", - "WebhooksPullRequest5PropAssigneesItems", - "WebhooksPullRequest5PropAutoMerge", - "WebhooksPullRequest5PropAutoMergePropEnabledBy", - "WebhooksPullRequest5PropLabelsItems", - "WebhooksPullRequest5PropMergedBy", - "WebhooksPullRequest5PropMilestone", - "WebhooksPullRequest5PropMilestonePropCreator", - "WebhooksPullRequest5PropRequestedReviewersItemsOneof0", - "WebhooksPullRequest5PropUser", - "WebhooksPullRequest5PropLinks", - "WebhooksPullRequest5PropLinksPropComments", - "WebhooksPullRequest5PropLinksPropCommits", - "WebhooksPullRequest5PropLinksPropHtml", - "WebhooksPullRequest5PropLinksPropIssue", - "WebhooksPullRequest5PropLinksPropReviewComment", - "WebhooksPullRequest5PropLinksPropReviewComments", - "WebhooksPullRequest5PropLinksPropSelf", - "WebhooksPullRequest5PropLinksPropStatuses", - "WebhooksPullRequest5PropBase", - "WebhooksPullRequest5PropBasePropUser", - "WebhooksPullRequest5PropBasePropRepo", - "WebhooksPullRequest5PropBasePropRepoPropLicense", - "WebhooksPullRequest5PropBasePropRepoPropOwner", - "WebhooksPullRequest5PropBasePropRepoPropPermissions", - "WebhooksPullRequest5PropHead", - "WebhooksPullRequest5PropHeadPropUser", - "WebhooksPullRequest5PropHeadPropRepo", - "WebhooksPullRequest5PropHeadPropRepoPropLicense", - "WebhooksPullRequest5PropHeadPropRepoPropOwner", - "WebhooksPullRequest5PropHeadPropRepoPropPermissions", - "WebhooksPullRequest5PropRequestedReviewersItemsOneof1", - "WebhooksPullRequest5PropRequestedReviewersItemsOneof1PropParent", - "WebhooksPullRequest5PropRequestedTeamsItems", - "WebhooksPullRequest5PropRequestedTeamsItemsPropParent", - "WebhooksReviewComment", - "WebhooksReviewCommentPropReactions", - "WebhooksReviewCommentPropUser", - "WebhooksReviewCommentPropLinks", - "WebhooksReviewCommentPropLinksPropHtml", - "WebhooksReviewCommentPropLinksPropPullRequest", - "WebhooksReviewCommentPropLinksPropSelf", - "WebhooksReview", - "WebhooksReviewPropUser", - "WebhooksReviewPropLinks", - "WebhooksReviewPropLinksPropHtml", - "WebhooksReviewPropLinksPropPullRequest", - "WebhooksRelease", - "WebhooksReleasePropAuthor", - "WebhooksReleasePropReactions", - "WebhooksReleasePropAssetsItems", - "WebhooksReleasePropAssetsItemsPropUploader", - "WebhooksRelease1", - "WebhooksRelease1PropAssetsItems", - "WebhooksRelease1PropAssetsItemsPropUploader", - "WebhooksRelease1PropAuthor", - "WebhooksRelease1PropReactions", - "WebhooksAlert", - "WebhooksAlertPropDismisser", - "SecretScanningAlertWebhook", - "WebhooksSecurityAdvisory", - "WebhooksSecurityAdvisoryPropCwesItems", - "WebhooksSecurityAdvisoryPropIdentifiersItems", - "WebhooksSecurityAdvisoryPropReferencesItems", - "WebhooksSecurityAdvisoryPropVulnerabilitiesItems", - "WebhooksSecurityAdvisoryPropVulnerabilitiesItemsPropFirstPatchedVersion", - "WebhooksSecurityAdvisoryPropVulnerabilitiesItemsPropPackage", - "WebhooksSponsorship", - "WebhooksSponsorshipPropMaintainer", - "WebhooksSponsorshipPropSponsor", - "WebhooksSponsorshipPropSponsorable", - "WebhooksSponsorshipPropTier", - "WebhooksChanges8", - "WebhooksChanges8PropTier", - "WebhooksChanges8PropTierPropFrom", - "WebhooksTeam1", - "WebhooksTeam1PropParent", - "WebhookBranchProtectionConfigurationDisabled", - "WebhookBranchProtectionConfigurationEnabled", - "WebhookBranchProtectionRuleCreated", - "WebhookBranchProtectionRuleDeleted", - "WebhookBranchProtectionRuleEdited", - "WebhookBranchProtectionRuleEditedPropChanges", - "WebhookBranchProtectionRuleEditedPropChangesPropAdminEnforced", - "WebhookBranchProtectionRuleEditedPropChangesPropAuthorizedActorNames", - "WebhookBranchProtectionRuleEditedPropChangesPropAuthorizedActorsOnly", - "WebhookBranchProtectionRuleEditedPropChangesPropAuthorizedDismissalActorsOnly", - "WebhookBranchProtectionRuleEditedPropChangesPropLinearHistoryRequirementEnforcementLevel", - "WebhookBranchProtectionRuleEditedPropChangesPropLockBranchEnforcementLevel", - "WebhookBranchProtectionRuleEditedPropChangesPropLockAllowsForkSync", - "WebhookBranchProtectionRuleEditedPropChangesPropPullRequestReviewsEnforcementLevel", - "WebhookBranchProtectionRuleEditedPropChangesPropRequireLastPushApproval", - "WebhookBranchProtectionRuleEditedPropChangesPropRequiredStatusChecks", - "WebhookBranchProtectionRuleEditedPropChangesPropRequiredStatusChecksEnforcementLevel", - "WebhookCheckRunCompleted", - "WebhookCheckRunCompletedFormEncoded", - "WebhookCheckRunCreated", - "WebhookCheckRunCreatedFormEncoded", - "WebhookCheckRunRequestedAction", - "WebhookCheckRunRequestedActionPropRequestedAction", - "WebhookCheckRunRequestedActionFormEncoded", - "WebhookCheckRunRerequested", - "WebhookCheckRunRerequestedFormEncoded", - "WebhookCheckSuiteCompleted", - "WebhookCheckSuiteCompletedPropCheckSuite", - "WebhookCheckSuiteCompletedPropCheckSuitePropApp", - "WebhookCheckSuiteCompletedPropCheckSuitePropAppPropOwner", - "WebhookCheckSuiteCompletedPropCheckSuitePropAppPropPermissions", - "WebhookCheckSuiteCompletedPropCheckSuitePropHeadCommit", - "WebhookCheckSuiteCompletedPropCheckSuitePropHeadCommitPropAuthor", - "WebhookCheckSuiteCompletedPropCheckSuitePropHeadCommitPropCommitter", - "WebhookCheckSuiteCompletedPropCheckSuitePropPullRequestsItems", - "WebhookCheckSuiteCompletedPropCheckSuitePropPullRequestsItemsPropBase", - "WebhookCheckSuiteCompletedPropCheckSuitePropPullRequestsItemsPropBasePropRepo", - "WebhookCheckSuiteCompletedPropCheckSuitePropPullRequestsItemsPropHead", - "WebhookCheckSuiteCompletedPropCheckSuitePropPullRequestsItemsPropHeadPropRepo", - "WebhookCheckSuiteRequested", - "WebhookCheckSuiteRequestedPropCheckSuite", - "WebhookCheckSuiteRequestedPropCheckSuitePropApp", - "WebhookCheckSuiteRequestedPropCheckSuitePropAppPropOwner", - "WebhookCheckSuiteRequestedPropCheckSuitePropAppPropPermissions", - "WebhookCheckSuiteRequestedPropCheckSuitePropHeadCommit", - "WebhookCheckSuiteRequestedPropCheckSuitePropHeadCommitPropAuthor", - "WebhookCheckSuiteRequestedPropCheckSuitePropHeadCommitPropCommitter", - "WebhookCheckSuiteRequestedPropCheckSuitePropPullRequestsItems", - "WebhookCheckSuiteRequestedPropCheckSuitePropPullRequestsItemsPropBase", - "WebhookCheckSuiteRequestedPropCheckSuitePropPullRequestsItemsPropBasePropRepo", - "WebhookCheckSuiteRequestedPropCheckSuitePropPullRequestsItemsPropHead", - "WebhookCheckSuiteRequestedPropCheckSuitePropPullRequestsItemsPropHeadPropRepo", - "WebhookCheckSuiteRerequested", - "WebhookCheckSuiteRerequestedPropCheckSuite", - "WebhookCheckSuiteRerequestedPropCheckSuitePropApp", - "WebhookCheckSuiteRerequestedPropCheckSuitePropAppPropOwner", - "WebhookCheckSuiteRerequestedPropCheckSuitePropAppPropPermissions", - "WebhookCheckSuiteRerequestedPropCheckSuitePropHeadCommit", - "WebhookCheckSuiteRerequestedPropCheckSuitePropHeadCommitPropAuthor", - "WebhookCheckSuiteRerequestedPropCheckSuitePropHeadCommitPropCommitter", - "WebhookCheckSuiteRerequestedPropCheckSuitePropPullRequestsItems", - "WebhookCheckSuiteRerequestedPropCheckSuitePropPullRequestsItemsPropBase", - "WebhookCheckSuiteRerequestedPropCheckSuitePropPullRequestsItemsPropBasePropRepo", - "WebhookCheckSuiteRerequestedPropCheckSuitePropPullRequestsItemsPropHead", - "WebhookCheckSuiteRerequestedPropCheckSuitePropPullRequestsItemsPropHeadPropRepo", - "WebhookCodeScanningAlertAppearedInBranch", - "WebhookCodeScanningAlertAppearedInBranchPropAlert", - "WebhookCodeScanningAlertAppearedInBranchPropAlertPropDismissedBy", - "WebhookCodeScanningAlertAppearedInBranchPropAlertPropMostRecentInstance", - "WebhookCodeScanningAlertAppearedInBranchPropAlertPropMostRecentInstancePropLocation", - "WebhookCodeScanningAlertAppearedInBranchPropAlertPropMostRecentInstancePropMessage", - "WebhookCodeScanningAlertAppearedInBranchPropAlertPropRule", - "WebhookCodeScanningAlertAppearedInBranchPropAlertPropTool", - "WebhookCodeScanningAlertClosedByUser", - "WebhookCodeScanningAlertClosedByUserPropAlert", - "WebhookCodeScanningAlertClosedByUserPropAlertPropDismissedBy", - "WebhookCodeScanningAlertClosedByUserPropAlertPropMostRecentInstance", - "WebhookCodeScanningAlertClosedByUserPropAlertPropMostRecentInstancePropLocation", - "WebhookCodeScanningAlertClosedByUserPropAlertPropMostRecentInstancePropMessage", - "WebhookCodeScanningAlertClosedByUserPropAlertPropRule", - "WebhookCodeScanningAlertClosedByUserPropAlertPropTool", - "WebhookCodeScanningAlertClosedByUserPropAlertPropDismissalApprovedBy", - "WebhookCodeScanningAlertCreated", - "WebhookCodeScanningAlertCreatedPropAlert", - "WebhookCodeScanningAlertCreatedPropAlertPropMostRecentInstance", - "WebhookCodeScanningAlertCreatedPropAlertPropMostRecentInstancePropLocation", - "WebhookCodeScanningAlertCreatedPropAlertPropMostRecentInstancePropMessage", - "WebhookCodeScanningAlertCreatedPropAlertPropRule", - "WebhookCodeScanningAlertCreatedPropAlertPropTool", - "WebhookCodeScanningAlertFixed", - "WebhookCodeScanningAlertFixedPropAlert", - "WebhookCodeScanningAlertFixedPropAlertPropDismissedBy", - "WebhookCodeScanningAlertFixedPropAlertPropMostRecentInstance", - "WebhookCodeScanningAlertFixedPropAlertPropMostRecentInstancePropLocation", - "WebhookCodeScanningAlertFixedPropAlertPropMostRecentInstancePropMessage", - "WebhookCodeScanningAlertFixedPropAlertPropRule", - "WebhookCodeScanningAlertFixedPropAlertPropTool", - "WebhookCodeScanningAlertReopened", - "WebhookCodeScanningAlertReopenedPropAlert", - "WebhookCodeScanningAlertReopenedPropAlertPropDismissedBy", - "WebhookCodeScanningAlertReopenedPropAlertPropMostRecentInstance", - "WebhookCodeScanningAlertReopenedPropAlertPropMostRecentInstancePropLocation", - "WebhookCodeScanningAlertReopenedPropAlertPropMostRecentInstancePropMessage", - "WebhookCodeScanningAlertReopenedPropAlertPropRule", - "WebhookCodeScanningAlertReopenedPropAlertPropTool", - "WebhookCodeScanningAlertReopenedByUser", - "WebhookCodeScanningAlertReopenedByUserPropAlert", - "WebhookCodeScanningAlertReopenedByUserPropAlertPropMostRecentInstance", - "WebhookCodeScanningAlertReopenedByUserPropAlertPropMostRecentInstancePropLocation", - "WebhookCodeScanningAlertReopenedByUserPropAlertPropMostRecentInstancePropMessage", - "WebhookCodeScanningAlertReopenedByUserPropAlertPropRule", - "WebhookCodeScanningAlertReopenedByUserPropAlertPropTool", - "WebhookCodeScanningAlertUpdatedAssignment", - "WebhookCodeScanningAlertUpdatedAssignmentPropAlert", - "WebhookCodeScanningAlertUpdatedAssignmentPropAlertPropDismissedBy", - "WebhookCodeScanningAlertUpdatedAssignmentPropAlertPropMostRecentInstance", - "WebhookCodeScanningAlertUpdatedAssignmentPropAlertPropMostRecentInstancePropLocation", - "WebhookCodeScanningAlertUpdatedAssignmentPropAlertPropMostRecentInstancePropMessage", - "WebhookCodeScanningAlertUpdatedAssignmentPropAlertPropRule", - "WebhookCodeScanningAlertUpdatedAssignmentPropAlertPropTool", - "WebhookCommitCommentCreated", - "WebhookCommitCommentCreatedPropComment", - "WebhookCommitCommentCreatedPropCommentPropReactions", - "WebhookCommitCommentCreatedPropCommentPropUser", - "WebhookCreate", - "WebhookCustomPropertyCreated", - "WebhookCustomPropertyDeleted", - "WebhookCustomPropertyDeletedPropDefinition", - "WebhookCustomPropertyPromotedToEnterprise", - "WebhookCustomPropertyUpdated", - "WebhookCustomPropertyValuesUpdated", - "WebhookDelete", - "WebhookDependabotAlertAssigneesChanged", - "WebhookDependabotAlertAutoDismissed", - "WebhookDependabotAlertAutoReopened", - "WebhookDependabotAlertCreated", - "WebhookDependabotAlertDismissed", - "WebhookDependabotAlertFixed", - "WebhookDependabotAlertReintroduced", - "WebhookDependabotAlertReopened", - "WebhookDeployKeyCreated", - "WebhookDeployKeyDeleted", - "WebhookDeploymentCreated", - "WebhookDeploymentCreatedPropDeployment", - "WebhookDeploymentCreatedPropDeploymentPropCreator", - "WebhookDeploymentCreatedPropDeploymentPropPayloadOneof1", - "WebhookDeploymentCreatedPropDeploymentPropPerformedViaGithubApp", - "WebhookDeploymentCreatedPropDeploymentPropPerformedViaGithubAppPropOwner", - "WebhookDeploymentCreatedPropDeploymentPropPerformedViaGithubAppPropPermissions", - "WebhookDeploymentCreatedPropWorkflowRun", - "WebhookDeploymentCreatedPropWorkflowRunPropActor", - "WebhookDeploymentCreatedPropWorkflowRunPropReferencedWorkflowsItems", - "WebhookDeploymentCreatedPropWorkflowRunPropTriggeringActor", - "WebhookDeploymentCreatedPropWorkflowRunPropHeadRepository", - "WebhookDeploymentCreatedPropWorkflowRunPropHeadRepositoryPropOwner", - "WebhookDeploymentCreatedPropWorkflowRunPropRepository", - "WebhookDeploymentCreatedPropWorkflowRunPropRepositoryPropOwner", - "WebhookDeploymentCreatedPropWorkflowRunPropPullRequestsItems", - "WebhookDeploymentCreatedPropWorkflowRunPropPullRequestsItemsPropBase", - "WebhookDeploymentCreatedPropWorkflowRunPropPullRequestsItemsPropBasePropRepo", - "WebhookDeploymentCreatedPropWorkflowRunPropPullRequestsItemsPropHead", - "WebhookDeploymentCreatedPropWorkflowRunPropPullRequestsItemsPropHeadPropRepo", - "WebhookDeploymentProtectionRuleRequested", - "WebhookDeploymentReviewApproved", - "WebhookDeploymentReviewApprovedPropWorkflowJobRunsItems", - "WebhookDeploymentReviewApprovedPropWorkflowRun", - "WebhookDeploymentReviewApprovedPropWorkflowRunPropActor", - "WebhookDeploymentReviewApprovedPropWorkflowRunPropHeadCommit", - "WebhookDeploymentReviewApprovedPropWorkflowRunPropReferencedWorkflowsItems", - "WebhookDeploymentReviewApprovedPropWorkflowRunPropTriggeringActor", - "WebhookDeploymentReviewApprovedPropWorkflowRunPropHeadRepository", - "WebhookDeploymentReviewApprovedPropWorkflowRunPropHeadRepositoryPropOwner", - "WebhookDeploymentReviewApprovedPropWorkflowRunPropRepository", - "WebhookDeploymentReviewApprovedPropWorkflowRunPropRepositoryPropOwner", - "WebhookDeploymentReviewApprovedPropWorkflowRunPropPullRequestsItems", - "WebhookDeploymentReviewApprovedPropWorkflowRunPropPullRequestsItemsPropBase", - "WebhookDeploymentReviewApprovedPropWorkflowRunPropPullRequestsItemsPropBasePropRepo", - "WebhookDeploymentReviewApprovedPropWorkflowRunPropPullRequestsItemsPropHead", - "WebhookDeploymentReviewApprovedPropWorkflowRunPropPullRequestsItemsPropHeadPropRepo", - "WebhookDeploymentReviewRejected", - "WebhookDeploymentReviewRejectedPropWorkflowJobRunsItems", - "WebhookDeploymentReviewRejectedPropWorkflowRun", - "WebhookDeploymentReviewRejectedPropWorkflowRunPropActor", - "WebhookDeploymentReviewRejectedPropWorkflowRunPropHeadCommit", - "WebhookDeploymentReviewRejectedPropWorkflowRunPropReferencedWorkflowsItems", - "WebhookDeploymentReviewRejectedPropWorkflowRunPropTriggeringActor", - "WebhookDeploymentReviewRejectedPropWorkflowRunPropHeadRepository", - "WebhookDeploymentReviewRejectedPropWorkflowRunPropHeadRepositoryPropOwner", - "WebhookDeploymentReviewRejectedPropWorkflowRunPropRepository", - "WebhookDeploymentReviewRejectedPropWorkflowRunPropRepositoryPropOwner", - "WebhookDeploymentReviewRejectedPropWorkflowRunPropPullRequestsItems", - "WebhookDeploymentReviewRejectedPropWorkflowRunPropPullRequestsItemsPropBase", - "WebhookDeploymentReviewRejectedPropWorkflowRunPropPullRequestsItemsPropBasePropRepo", - "WebhookDeploymentReviewRejectedPropWorkflowRunPropPullRequestsItemsPropHead", - "WebhookDeploymentReviewRejectedPropWorkflowRunPropPullRequestsItemsPropHeadPropRepo", - "WebhookDeploymentReviewRequested", - "WebhookDeploymentReviewRequestedPropWorkflowJobRun", - "WebhookDeploymentReviewRequestedPropReviewersItems", - "WebhookDeploymentReviewRequestedPropReviewersItemsPropReviewer", - "WebhookDeploymentReviewRequestedPropWorkflowRun", - "WebhookDeploymentReviewRequestedPropWorkflowRunPropActor", - "WebhookDeploymentReviewRequestedPropWorkflowRunPropHeadCommit", - "WebhookDeploymentReviewRequestedPropWorkflowRunPropReferencedWorkflowsItems", - "WebhookDeploymentReviewRequestedPropWorkflowRunPropTriggeringActor", - "WebhookDeploymentReviewRequestedPropWorkflowRunPropHeadRepository", - "WebhookDeploymentReviewRequestedPropWorkflowRunPropHeadRepositoryPropOwner", - "WebhookDeploymentReviewRequestedPropWorkflowRunPropRepository", - "WebhookDeploymentReviewRequestedPropWorkflowRunPropRepositoryPropOwner", - "WebhookDeploymentReviewRequestedPropWorkflowRunPropPullRequestsItems", - "WebhookDeploymentReviewRequestedPropWorkflowRunPropPullRequestsItemsPropBase", - "WebhookDeploymentReviewRequestedPropWorkflowRunPropPullRequestsItemsPropBasePropRepo", - "WebhookDeploymentReviewRequestedPropWorkflowRunPropPullRequestsItemsPropHead", - "WebhookDeploymentReviewRequestedPropWorkflowRunPropPullRequestsItemsPropHeadPropRepo", - "WebhookDeploymentStatusCreated", - "WebhookDeploymentStatusCreatedPropCheckRun", - "WebhookDeploymentStatusCreatedPropDeployment", - "WebhookDeploymentStatusCreatedPropDeploymentPropCreator", - "WebhookDeploymentStatusCreatedPropDeploymentPropPayloadOneof1", - "WebhookDeploymentStatusCreatedPropDeploymentPropPerformedViaGithubApp", - "WebhookDeploymentStatusCreatedPropDeploymentPropPerformedViaGithubAppPropOwner", - "WebhookDeploymentStatusCreatedPropDeploymentPropPerformedViaGithubAppPropPermissions", - "WebhookDeploymentStatusCreatedPropDeploymentStatus", - "WebhookDeploymentStatusCreatedPropDeploymentStatusPropCreator", - "WebhookDeploymentStatusCreatedPropDeploymentStatusPropPerformedViaGithubApp", - "WebhookDeploymentStatusCreatedPropDeploymentStatusPropPerformedViaGithubAppPropOwner", - "WebhookDeploymentStatusCreatedPropDeploymentStatusPropPerformedViaGithubAppPropPermissions", - "WebhookDeploymentStatusCreatedPropWorkflowRun", - "WebhookDeploymentStatusCreatedPropWorkflowRunPropActor", - "WebhookDeploymentStatusCreatedPropWorkflowRunPropReferencedWorkflowsItems", - "WebhookDeploymentStatusCreatedPropWorkflowRunPropTriggeringActor", - "WebhookDeploymentStatusCreatedPropWorkflowRunPropHeadRepository", - "WebhookDeploymentStatusCreatedPropWorkflowRunPropHeadRepositoryPropOwner", - "WebhookDeploymentStatusCreatedPropWorkflowRunPropRepository", - "WebhookDeploymentStatusCreatedPropWorkflowRunPropRepositoryPropOwner", - "WebhookDeploymentStatusCreatedPropWorkflowRunPropPullRequestsItems", - "WebhookDeploymentStatusCreatedPropWorkflowRunPropPullRequestsItemsPropBase", - "WebhookDeploymentStatusCreatedPropWorkflowRunPropPullRequestsItemsPropBasePropRepo", - "WebhookDeploymentStatusCreatedPropWorkflowRunPropPullRequestsItemsPropHead", - "WebhookDeploymentStatusCreatedPropWorkflowRunPropPullRequestsItemsPropHeadPropRepo", - "WebhookDiscussionAnswered", - "WebhookDiscussionCategoryChanged", - "WebhookDiscussionCategoryChangedPropChanges", - "WebhookDiscussionCategoryChangedPropChangesPropCategory", - "WebhookDiscussionCategoryChangedPropChangesPropCategoryPropFrom", - "WebhookDiscussionClosed", - "WebhookDiscussionCommentCreated", - "WebhookDiscussionCommentDeleted", - "WebhookDiscussionCommentEdited", - "WebhookDiscussionCommentEditedPropChanges", - "WebhookDiscussionCommentEditedPropChangesPropBody", - "WebhookDiscussionCreated", - "WebhookDiscussionDeleted", - "WebhookDiscussionEdited", - "WebhookDiscussionEditedPropChanges", - "WebhookDiscussionEditedPropChangesPropBody", - "WebhookDiscussionEditedPropChangesPropTitle", - "WebhookDiscussionLabeled", - "WebhookDiscussionLocked", - "WebhookDiscussionPinned", - "WebhookDiscussionReopened", - "WebhookDiscussionTransferred", - "WebhookDiscussionTransferredPropChanges", - "WebhookDiscussionUnanswered", - "WebhookDiscussionUnlabeled", - "WebhookDiscussionUnlocked", - "WebhookDiscussionUnpinned", - "WebhookFork", - "WebhookForkPropForkee", - "WebhookForkPropForkeeMergedLicense", - "WebhookForkPropForkeeMergedOwner", - "WebhookForkPropForkeeAllof0", - "WebhookForkPropForkeeAllof0PropLicense", - "WebhookForkPropForkeeAllof0PropOwner", - "WebhookForkPropForkeeAllof0PropPermissions", - "WebhookForkPropForkeeAllof1", - "WebhookForkPropForkeeAllof1PropLicense", - "WebhookForkPropForkeeAllof1PropOwner", - "WebhookGithubAppAuthorizationRevoked", - "WebhookGollum", - "WebhookGollumPropPagesItems", - "WebhookInstallationCreated", - "WebhookInstallationDeleted", - "WebhookInstallationNewPermissionsAccepted", - "WebhookInstallationRepositoriesAdded", - "WebhookInstallationRepositoriesAddedPropRepositoriesRemovedItems", - "WebhookInstallationRepositoriesRemoved", - "WebhookInstallationRepositoriesRemovedPropRepositoriesRemovedItems", - "WebhookInstallationSuspend", - "WebhookInstallationTargetRenamed", - "WebhookInstallationTargetRenamedPropAccount", - "WebhookInstallationTargetRenamedPropChanges", - "WebhookInstallationTargetRenamedPropChangesPropLogin", - "WebhookInstallationTargetRenamedPropChangesPropSlug", - "WebhookInstallationUnsuspend", - "WebhookIssueCommentCreated", - "WebhookIssueCommentCreatedPropComment", - "WebhookIssueCommentCreatedPropCommentPropReactions", - "WebhookIssueCommentCreatedPropCommentPropUser", - "WebhookIssueCommentCreatedPropIssue", - "WebhookIssueCommentCreatedPropIssueMergedAssignees", - "WebhookIssueCommentCreatedPropIssueMergedReactions", - "WebhookIssueCommentCreatedPropIssueMergedUser", - "WebhookIssueCommentCreatedPropIssueAllof0", - "WebhookIssueCommentCreatedPropIssueAllof0PropAssigneesItems", - "WebhookIssueCommentCreatedPropIssueAllof0PropReactions", - "WebhookIssueCommentCreatedPropIssueAllof0PropUser", - "WebhookIssueCommentCreatedPropIssueAllof0PropAssignee", - "WebhookIssueCommentCreatedPropIssueAllof0PropLabelsItems", - "WebhookIssueCommentCreatedPropIssueAllof0PropPullRequest", - "WebhookIssueCommentCreatedPropIssueAllof0PropMilestonePropCreator", - "WebhookIssueCommentCreatedPropIssueAllof0PropMilestone", - "WebhookIssueCommentCreatedPropIssueAllof0PropPerformedViaGithubAppPropOwner", - "WebhookIssueCommentCreatedPropIssueAllof0PropPerformedViaGithubAppPropPermissions", - "WebhookIssueCommentCreatedPropIssueAllof0PropPerformedViaGithubApp", - "WebhookIssueCommentCreatedPropIssueAllof1", - "WebhookIssueCommentCreatedPropIssueAllof1PropAssignee", - "WebhookIssueCommentCreatedPropIssueAllof1PropAssigneesItems", - "WebhookIssueCommentCreatedPropIssueAllof1PropLabelsItems", - "WebhookIssueCommentCreatedPropIssueAllof1PropMilestone", - "WebhookIssueCommentCreatedPropIssueAllof1PropPerformedViaGithubApp", - "WebhookIssueCommentCreatedPropIssueAllof1PropReactions", - "WebhookIssueCommentCreatedPropIssueAllof1PropUser", - "WebhookIssueCommentCreatedPropIssueMergedMilestone", - "WebhookIssueCommentCreatedPropIssueMergedPerformedViaGithubApp", - "WebhookIssueCommentDeleted", - "WebhookIssueCommentDeletedPropIssue", - "WebhookIssueCommentDeletedPropIssueMergedAssignees", - "WebhookIssueCommentDeletedPropIssueMergedReactions", - "WebhookIssueCommentDeletedPropIssueMergedUser", - "WebhookIssueCommentDeletedPropIssueAllof0", - "WebhookIssueCommentDeletedPropIssueAllof0PropAssigneesItems", - "WebhookIssueCommentDeletedPropIssueAllof0PropReactions", - "WebhookIssueCommentDeletedPropIssueAllof0PropUser", - "WebhookIssueCommentDeletedPropIssueAllof0PropAssignee", - "WebhookIssueCommentDeletedPropIssueAllof0PropLabelsItems", - "WebhookIssueCommentDeletedPropIssueAllof0PropPullRequest", - "WebhookIssueCommentDeletedPropIssueAllof0PropMilestonePropCreator", - "WebhookIssueCommentDeletedPropIssueAllof0PropMilestone", - "WebhookIssueCommentDeletedPropIssueAllof0PropPerformedViaGithubAppPropOwner", - "WebhookIssueCommentDeletedPropIssueAllof0PropPerformedViaGithubAppPropPermissions", - "WebhookIssueCommentDeletedPropIssueAllof0PropPerformedViaGithubApp", - "WebhookIssueCommentDeletedPropIssueAllof1", - "WebhookIssueCommentDeletedPropIssueAllof1PropAssignee", - "WebhookIssueCommentDeletedPropIssueAllof1PropAssigneesItems", - "WebhookIssueCommentDeletedPropIssueAllof1PropLabelsItems", - "WebhookIssueCommentDeletedPropIssueAllof1PropMilestone", - "WebhookIssueCommentDeletedPropIssueAllof1PropPerformedViaGithubApp", - "WebhookIssueCommentDeletedPropIssueAllof1PropReactions", - "WebhookIssueCommentDeletedPropIssueAllof1PropUser", - "WebhookIssueCommentDeletedPropIssueMergedMilestone", - "WebhookIssueCommentDeletedPropIssueMergedPerformedViaGithubApp", - "WebhookIssueCommentEdited", - "WebhookIssueCommentEditedPropIssue", - "WebhookIssueCommentEditedPropIssueMergedAssignees", - "WebhookIssueCommentEditedPropIssueMergedReactions", - "WebhookIssueCommentEditedPropIssueMergedUser", - "WebhookIssueCommentEditedPropIssueAllof0", - "WebhookIssueCommentEditedPropIssueAllof0PropAssigneesItems", - "WebhookIssueCommentEditedPropIssueAllof0PropReactions", - "WebhookIssueCommentEditedPropIssueAllof0PropUser", - "WebhookIssueCommentEditedPropIssueAllof0PropAssignee", - "WebhookIssueCommentEditedPropIssueAllof0PropLabelsItems", - "WebhookIssueCommentEditedPropIssueAllof0PropPullRequest", - "WebhookIssueCommentEditedPropIssueAllof0PropMilestonePropCreator", - "WebhookIssueCommentEditedPropIssueAllof0PropMilestone", - "WebhookIssueCommentEditedPropIssueAllof0PropPerformedViaGithubAppPropOwner", - "WebhookIssueCommentEditedPropIssueAllof0PropPerformedViaGithubAppPropPermissions", - "WebhookIssueCommentEditedPropIssueAllof0PropPerformedViaGithubApp", - "WebhookIssueCommentEditedPropIssueAllof1", - "WebhookIssueCommentEditedPropIssueAllof1PropAssignee", - "WebhookIssueCommentEditedPropIssueAllof1PropAssigneesItems", - "WebhookIssueCommentEditedPropIssueAllof1PropLabelsItems", - "WebhookIssueCommentEditedPropIssueAllof1PropMilestone", - "WebhookIssueCommentEditedPropIssueAllof1PropPerformedViaGithubApp", - "WebhookIssueCommentEditedPropIssueAllof1PropReactions", - "WebhookIssueCommentEditedPropIssueAllof1PropUser", - "WebhookIssueCommentEditedPropIssueMergedMilestone", - "WebhookIssueCommentEditedPropIssueMergedPerformedViaGithubApp", - "WebhookIssueCommentPinned", - "WebhookIssueCommentPinnedPropIssue", - "WebhookIssueCommentPinnedPropIssueMergedAssignees", - "WebhookIssueCommentPinnedPropIssueMergedReactions", - "WebhookIssueCommentPinnedPropIssueMergedUser", - "WebhookIssueCommentPinnedPropIssueAllof0", - "WebhookIssueCommentPinnedPropIssueAllof0PropAssigneesItems", - "WebhookIssueCommentPinnedPropIssueAllof0PropReactions", - "WebhookIssueCommentPinnedPropIssueAllof0PropUser", - "WebhookIssueCommentPinnedPropIssueAllof0PropAssignee", - "WebhookIssueCommentPinnedPropIssueAllof0PropLabelsItems", - "WebhookIssueCommentPinnedPropIssueAllof0PropPullRequest", - "WebhookIssueCommentPinnedPropIssueAllof0PropMilestonePropCreator", - "WebhookIssueCommentPinnedPropIssueAllof0PropMilestone", - "WebhookIssueCommentPinnedPropIssueAllof0PropPerformedViaGithubAppPropOwner", - "WebhookIssueCommentPinnedPropIssueAllof0PropPerformedViaGithubAppPropPermissions", - "WebhookIssueCommentPinnedPropIssueAllof0PropPerformedViaGithubApp", - "WebhookIssueCommentPinnedPropIssueAllof1", - "WebhookIssueCommentPinnedPropIssueAllof1PropAssignee", - "WebhookIssueCommentPinnedPropIssueAllof1PropAssigneesItems", - "WebhookIssueCommentPinnedPropIssueAllof1PropLabelsItems", - "WebhookIssueCommentPinnedPropIssueAllof1PropMilestone", - "WebhookIssueCommentPinnedPropIssueAllof1PropPerformedViaGithubApp", - "WebhookIssueCommentPinnedPropIssueAllof1PropReactions", - "WebhookIssueCommentPinnedPropIssueAllof1PropUser", - "WebhookIssueCommentPinnedPropIssueMergedMilestone", - "WebhookIssueCommentPinnedPropIssueMergedPerformedViaGithubApp", - "WebhookIssueCommentUnpinned", - "WebhookIssueCommentUnpinnedPropIssue", - "WebhookIssueCommentUnpinnedPropIssueMergedAssignees", - "WebhookIssueCommentUnpinnedPropIssueMergedReactions", - "WebhookIssueCommentUnpinnedPropIssueMergedUser", - "WebhookIssueCommentUnpinnedPropIssueAllof0", - "WebhookIssueCommentUnpinnedPropIssueAllof0PropAssigneesItems", - "WebhookIssueCommentUnpinnedPropIssueAllof0PropReactions", - "WebhookIssueCommentUnpinnedPropIssueAllof0PropUser", - "WebhookIssueCommentUnpinnedPropIssueAllof0PropAssignee", - "WebhookIssueCommentUnpinnedPropIssueAllof0PropLabelsItems", - "WebhookIssueCommentUnpinnedPropIssueAllof0PropPullRequest", - "WebhookIssueCommentUnpinnedPropIssueAllof0PropMilestonePropCreator", - "WebhookIssueCommentUnpinnedPropIssueAllof0PropMilestone", - "WebhookIssueCommentUnpinnedPropIssueAllof0PropPerformedViaGithubAppPropOwner", - "WebhookIssueCommentUnpinnedPropIssueAllof0PropPerformedViaGithubAppPropPermissions", - "WebhookIssueCommentUnpinnedPropIssueAllof0PropPerformedViaGithubApp", - "WebhookIssueCommentUnpinnedPropIssueAllof1", - "WebhookIssueCommentUnpinnedPropIssueAllof1PropAssignee", - "WebhookIssueCommentUnpinnedPropIssueAllof1PropAssigneesItems", - "WebhookIssueCommentUnpinnedPropIssueAllof1PropLabelsItems", - "WebhookIssueCommentUnpinnedPropIssueAllof1PropMilestone", - "WebhookIssueCommentUnpinnedPropIssueAllof1PropPerformedViaGithubApp", - "WebhookIssueCommentUnpinnedPropIssueAllof1PropReactions", - "WebhookIssueCommentUnpinnedPropIssueAllof1PropUser", - "WebhookIssueCommentUnpinnedPropIssueMergedMilestone", - "WebhookIssueCommentUnpinnedPropIssueMergedPerformedViaGithubApp", - "WebhookIssueDependenciesBlockedByAdded", - "WebhookIssueDependenciesBlockedByRemoved", - "WebhookIssueDependenciesBlockingAdded", - "WebhookIssueDependenciesBlockingRemoved", - "WebhookIssuesAssigned", - "WebhookIssuesClosed", - "WebhookIssuesClosedPropIssue", - "WebhookIssuesClosedPropIssueMergedAssignee", - "WebhookIssuesClosedPropIssueMergedAssignees", - "WebhookIssuesClosedPropIssueMergedLabels", - "WebhookIssuesClosedPropIssueMergedReactions", - "WebhookIssuesClosedPropIssueMergedUser", - "WebhookIssuesClosedPropIssueAllof0", - "WebhookIssuesClosedPropIssueAllof0PropAssignee", - "WebhookIssuesClosedPropIssueAllof0PropAssigneesItems", - "WebhookIssuesClosedPropIssueAllof0PropLabelsItems", - "WebhookIssuesClosedPropIssueAllof0PropReactions", - "WebhookIssuesClosedPropIssueAllof0PropUser", - "WebhookIssuesClosedPropIssueAllof0PropMilestonePropCreator", - "WebhookIssuesClosedPropIssueAllof0PropMilestone", - "WebhookIssuesClosedPropIssueAllof0PropPerformedViaGithubAppPropOwner", - "WebhookIssuesClosedPropIssueAllof0PropPerformedViaGithubAppPropPermissions", - "WebhookIssuesClosedPropIssueAllof0PropPerformedViaGithubApp", - "WebhookIssuesClosedPropIssueAllof0PropPullRequest", - "WebhookIssuesClosedPropIssueAllof1", - "WebhookIssuesClosedPropIssueAllof1PropAssignee", - "WebhookIssuesClosedPropIssueAllof1PropAssigneesItems", - "WebhookIssuesClosedPropIssueAllof1PropLabelsItems", - "WebhookIssuesClosedPropIssueAllof1PropMilestone", - "WebhookIssuesClosedPropIssueAllof1PropPerformedViaGithubApp", - "WebhookIssuesClosedPropIssueAllof1PropReactions", - "WebhookIssuesClosedPropIssueAllof1PropUser", - "WebhookIssuesClosedPropIssueMergedMilestone", - "WebhookIssuesClosedPropIssueMergedPerformedViaGithubApp", - "WebhookIssuesDeleted", - "WebhookIssuesDeletedPropIssue", - "WebhookIssuesDeletedPropIssuePropAssignee", - "WebhookIssuesDeletedPropIssuePropAssigneesItems", - "WebhookIssuesDeletedPropIssuePropLabelsItems", - "WebhookIssuesDeletedPropIssuePropMilestone", - "WebhookIssuesDeletedPropIssuePropMilestonePropCreator", - "WebhookIssuesDeletedPropIssuePropPerformedViaGithubApp", - "WebhookIssuesDeletedPropIssuePropPerformedViaGithubAppPropOwner", - "WebhookIssuesDeletedPropIssuePropPerformedViaGithubAppPropPermissions", - "WebhookIssuesDeletedPropIssuePropPullRequest", - "WebhookIssuesDeletedPropIssuePropReactions", - "WebhookIssuesDeletedPropIssuePropUser", - "WebhookIssuesDemilestoned", - "WebhookIssuesDemilestonedPropIssue", - "WebhookIssuesDemilestonedPropIssuePropAssignee", - "WebhookIssuesDemilestonedPropIssuePropAssigneesItems", - "WebhookIssuesDemilestonedPropIssuePropLabelsItems", - "WebhookIssuesDemilestonedPropIssuePropMilestone", - "WebhookIssuesDemilestonedPropIssuePropMilestonePropCreator", - "WebhookIssuesDemilestonedPropIssuePropPerformedViaGithubApp", - "WebhookIssuesDemilestonedPropIssuePropPerformedViaGithubAppPropOwner", - "WebhookIssuesDemilestonedPropIssuePropPerformedViaGithubAppPropPermissions", - "WebhookIssuesDemilestonedPropIssuePropPullRequest", - "WebhookIssuesDemilestonedPropIssuePropReactions", - "WebhookIssuesDemilestonedPropIssuePropUser", - "WebhookIssuesEdited", - "WebhookIssuesEditedPropChanges", - "WebhookIssuesEditedPropChangesPropBody", - "WebhookIssuesEditedPropChangesPropTitle", - "WebhookIssuesEditedPropIssue", - "WebhookIssuesEditedPropIssuePropAssignee", - "WebhookIssuesEditedPropIssuePropAssigneesItems", - "WebhookIssuesEditedPropIssuePropLabelsItems", - "WebhookIssuesEditedPropIssuePropMilestone", - "WebhookIssuesEditedPropIssuePropMilestonePropCreator", - "WebhookIssuesEditedPropIssuePropPerformedViaGithubApp", - "WebhookIssuesEditedPropIssuePropPerformedViaGithubAppPropOwner", - "WebhookIssuesEditedPropIssuePropPerformedViaGithubAppPropPermissions", - "WebhookIssuesEditedPropIssuePropPullRequest", - "WebhookIssuesEditedPropIssuePropReactions", - "WebhookIssuesEditedPropIssuePropUser", - "WebhookIssuesFieldAdded", - "WebhookIssuesFieldAddedPropIssueField", - "WebhookIssuesFieldAddedPropIssueFieldValue", - "WebhookIssuesFieldAddedPropIssueFieldValuePropOption", - "WebhookIssuesFieldAddedPropChanges", - "WebhookIssuesFieldAddedPropChangesPropIssueFieldValue", - "WebhookIssuesFieldAddedPropChangesPropIssueFieldValuePropFrom", - "WebhookIssuesFieldAddedPropChangesPropIssueFieldValuePropFromPropOption", - "WebhookIssuesFieldRemoved", - "WebhookIssuesFieldRemovedPropIssueField", - "WebhookIssuesFieldRemovedPropIssueFieldValue", - "WebhookIssuesFieldRemovedPropIssueFieldValuePropOption", - "WebhookIssuesLabeled", - "WebhookIssuesLabeledPropIssue", - "WebhookIssuesLabeledPropIssuePropAssignee", - "WebhookIssuesLabeledPropIssuePropAssigneesItems", - "WebhookIssuesLabeledPropIssuePropLabelsItems", - "WebhookIssuesLabeledPropIssuePropMilestone", - "WebhookIssuesLabeledPropIssuePropMilestonePropCreator", - "WebhookIssuesLabeledPropIssuePropPerformedViaGithubApp", - "WebhookIssuesLabeledPropIssuePropPerformedViaGithubAppPropOwner", - "WebhookIssuesLabeledPropIssuePropPerformedViaGithubAppPropPermissions", - "WebhookIssuesLabeledPropIssuePropPullRequest", - "WebhookIssuesLabeledPropIssuePropReactions", - "WebhookIssuesLabeledPropIssuePropUser", - "WebhookIssuesLocked", - "WebhookIssuesLockedPropIssue", - "WebhookIssuesLockedPropIssuePropAssignee", - "WebhookIssuesLockedPropIssuePropAssigneesItems", - "WebhookIssuesLockedPropIssuePropLabelsItems", - "WebhookIssuesLockedPropIssuePropMilestone", - "WebhookIssuesLockedPropIssuePropMilestonePropCreator", - "WebhookIssuesLockedPropIssuePropPerformedViaGithubApp", - "WebhookIssuesLockedPropIssuePropPerformedViaGithubAppPropOwner", - "WebhookIssuesLockedPropIssuePropPerformedViaGithubAppPropPermissions", - "WebhookIssuesLockedPropIssuePropPullRequest", - "WebhookIssuesLockedPropIssuePropReactions", - "WebhookIssuesLockedPropIssuePropUser", - "WebhookIssuesMilestoned", - "WebhookIssuesMilestonedPropIssue", - "WebhookIssuesMilestonedPropIssuePropAssignee", - "WebhookIssuesMilestonedPropIssuePropAssigneesItems", - "WebhookIssuesMilestonedPropIssuePropLabelsItems", - "WebhookIssuesMilestonedPropIssuePropMilestone", - "WebhookIssuesMilestonedPropIssuePropMilestonePropCreator", - "WebhookIssuesMilestonedPropIssuePropPerformedViaGithubApp", - "WebhookIssuesMilestonedPropIssuePropPerformedViaGithubAppPropOwner", - "WebhookIssuesMilestonedPropIssuePropPerformedViaGithubAppPropPermissions", - "WebhookIssuesMilestonedPropIssuePropPullRequest", - "WebhookIssuesMilestonedPropIssuePropReactions", - "WebhookIssuesMilestonedPropIssuePropUser", - "WebhookIssuesOpened", - "WebhookIssuesOpenedPropChanges", - "WebhookIssuesOpenedPropChangesPropOldRepository", - "WebhookIssuesOpenedPropChangesPropOldRepositoryPropCustomProperties", - "WebhookIssuesOpenedPropChangesPropOldRepositoryPropLicense", - "WebhookIssuesOpenedPropChangesPropOldRepositoryPropOwner", - "WebhookIssuesOpenedPropChangesPropOldRepositoryPropPermissions", - "WebhookIssuesOpenedPropChangesPropOldIssue", - "WebhookIssuesOpenedPropChangesPropOldIssuePropAssignee", - "WebhookIssuesOpenedPropChangesPropOldIssuePropAssigneesItems", - "WebhookIssuesOpenedPropChangesPropOldIssuePropLabelsItems", - "WebhookIssuesOpenedPropChangesPropOldIssuePropMilestone", - "WebhookIssuesOpenedPropChangesPropOldIssuePropMilestonePropCreator", - "WebhookIssuesOpenedPropChangesPropOldIssuePropPerformedViaGithubApp", - "WebhookIssuesOpenedPropChangesPropOldIssuePropPerformedViaGithubAppPropOwner", - "WebhookIssuesOpenedPropChangesPropOldIssuePropPerformedViaGithubAppPropPermissions", - "WebhookIssuesOpenedPropChangesPropOldIssuePropPullRequest", - "WebhookIssuesOpenedPropChangesPropOldIssuePropReactions", - "WebhookIssuesOpenedPropChangesPropOldIssuePropUser", - "WebhookIssuesOpenedPropIssue", - "WebhookIssuesOpenedPropIssuePropAssignee", - "WebhookIssuesOpenedPropIssuePropAssigneesItems", - "WebhookIssuesOpenedPropIssuePropLabelsItems", - "WebhookIssuesOpenedPropIssuePropMilestone", - "WebhookIssuesOpenedPropIssuePropMilestonePropCreator", - "WebhookIssuesOpenedPropIssuePropPerformedViaGithubApp", - "WebhookIssuesOpenedPropIssuePropPerformedViaGithubAppPropOwner", - "WebhookIssuesOpenedPropIssuePropPerformedViaGithubAppPropPermissions", - "WebhookIssuesOpenedPropIssuePropPullRequest", - "WebhookIssuesOpenedPropIssuePropReactions", - "WebhookIssuesOpenedPropIssuePropUser", - "WebhookIssuesPinned", - "WebhookIssuesReopened", - "WebhookIssuesReopenedPropIssue", - "WebhookIssuesReopenedPropIssuePropAssignee", - "WebhookIssuesReopenedPropIssuePropAssigneesItems", - "WebhookIssuesReopenedPropIssuePropLabelsItems", - "WebhookIssuesReopenedPropIssuePropMilestone", - "WebhookIssuesReopenedPropIssuePropMilestonePropCreator", - "WebhookIssuesReopenedPropIssuePropPerformedViaGithubApp", - "WebhookIssuesReopenedPropIssuePropPerformedViaGithubAppPropOwner", - "WebhookIssuesReopenedPropIssuePropPerformedViaGithubAppPropPermissions", - "WebhookIssuesReopenedPropIssuePropPullRequest", - "WebhookIssuesReopenedPropIssuePropReactions", - "WebhookIssuesReopenedPropIssuePropUser", - "WebhookIssuesTransferred", - "WebhookIssuesTransferredPropChanges", - "WebhookIssuesTransferredPropChangesPropNewRepository", - "WebhookIssuesTransferredPropChangesPropNewRepositoryPropCustomProperties", - "WebhookIssuesTransferredPropChangesPropNewRepositoryPropLicense", - "WebhookIssuesTransferredPropChangesPropNewRepositoryPropOwner", - "WebhookIssuesTransferredPropChangesPropNewRepositoryPropPermissions", - "WebhookIssuesTransferredPropChangesPropNewIssue", - "WebhookIssuesTransferredPropChangesPropNewIssuePropAssignee", - "WebhookIssuesTransferredPropChangesPropNewIssuePropAssigneesItems", - "WebhookIssuesTransferredPropChangesPropNewIssuePropLabelsItems", - "WebhookIssuesTransferredPropChangesPropNewIssuePropMilestone", - "WebhookIssuesTransferredPropChangesPropNewIssuePropMilestonePropCreator", - "WebhookIssuesTransferredPropChangesPropNewIssuePropPerformedViaGithubApp", - "WebhookIssuesTransferredPropChangesPropNewIssuePropPerformedViaGithubAppPropOwner", - "WebhookIssuesTransferredPropChangesPropNewIssuePropPerformedViaGithubAppPropPermissions", - "WebhookIssuesTransferredPropChangesPropNewIssuePropPullRequest", - "WebhookIssuesTransferredPropChangesPropNewIssuePropReactions", - "WebhookIssuesTransferredPropChangesPropNewIssuePropUser", - "WebhookIssuesTyped", - "WebhookIssuesUnassigned", - "WebhookIssuesUnlabeled", - "WebhookIssuesUnlocked", - "WebhookIssuesUnlockedPropIssue", - "WebhookIssuesUnlockedPropIssuePropAssignee", - "WebhookIssuesUnlockedPropIssuePropAssigneesItems", - "WebhookIssuesUnlockedPropIssuePropLabelsItems", - "WebhookIssuesUnlockedPropIssuePropMilestone", - "WebhookIssuesUnlockedPropIssuePropMilestonePropCreator", - "WebhookIssuesUnlockedPropIssuePropPerformedViaGithubApp", - "WebhookIssuesUnlockedPropIssuePropPerformedViaGithubAppPropOwner", - "WebhookIssuesUnlockedPropIssuePropPerformedViaGithubAppPropPermissions", - "WebhookIssuesUnlockedPropIssuePropPullRequest", - "WebhookIssuesUnlockedPropIssuePropReactions", - "WebhookIssuesUnlockedPropIssuePropUser", - "WebhookIssuesUnpinned", - "WebhookIssuesUntyped", - "WebhookLabelCreated", - "WebhookLabelDeleted", - "WebhookLabelEdited", - "WebhookLabelEditedPropChanges", - "WebhookLabelEditedPropChangesPropColor", - "WebhookLabelEditedPropChangesPropDescription", - "WebhookLabelEditedPropChangesPropName", - "WebhookMarketplacePurchaseCancelled", - "WebhookMarketplacePurchaseChanged", - "WebhookMarketplacePurchaseChangedPropPreviousMarketplacePurchase", - "WebhookMarketplacePurchaseChangedPropPreviousMarketplacePurchasePropAccount", - "WebhookMarketplacePurchaseChangedPropPreviousMarketplacePurchasePropPlan", - "WebhookMarketplacePurchasePendingChange", - "WebhookMarketplacePurchasePendingChangePropPreviousMarketplacePurchase", - "WebhookMarketplacePurchasePendingChangePropPreviousMarketplacePurchasePropAccount", - "WebhookMarketplacePurchasePendingChangePropPreviousMarketplacePurchasePropPlan", - "WebhookMarketplacePurchasePendingChangeCancelled", - "WebhookMarketplacePurchasePendingChangeCancelledPropMarketplacePurchase", - "WebhookMarketplacePurchasePendingChangeCancelledPropMarketplacePurchasePropAccount", - "WebhookMarketplacePurchasePendingChangeCancelledPropMarketplacePurchasePropPlan", - "WebhookMarketplacePurchasePurchased", - "WebhookMemberAdded", - "WebhookMemberAddedPropChanges", - "WebhookMemberAddedPropChangesPropPermission", - "WebhookMemberAddedPropChangesPropRoleName", - "WebhookMemberEdited", - "WebhookMemberEditedPropChanges", - "WebhookMemberEditedPropChangesPropOldPermission", - "WebhookMemberEditedPropChangesPropPermission", - "WebhookMemberRemoved", - "WebhookMembershipAdded", - "WebhookMembershipAddedPropSender", - "WebhookMembershipRemoved", - "WebhookMembershipRemovedPropSender", - "WebhookMergeGroupChecksRequested", - "WebhookMergeGroupDestroyed", - "WebhookMetaDeleted", - "WebhookMetaDeletedPropHook", - "WebhookMetaDeletedPropHookPropConfig", - "WebhookMilestoneClosed", - "WebhookMilestoneCreated", - "WebhookMilestoneDeleted", - "WebhookMilestoneEdited", - "WebhookMilestoneEditedPropChanges", - "WebhookMilestoneEditedPropChangesPropDescription", - "WebhookMilestoneEditedPropChangesPropDueOn", - "WebhookMilestoneEditedPropChangesPropTitle", - "WebhookMilestoneOpened", - "WebhookOrgBlockBlocked", - "WebhookOrgBlockUnblocked", - "WebhookOrganizationDeleted", - "WebhookOrganizationMemberAdded", - "WebhookOrganizationMemberInvited", - "WebhookOrganizationMemberInvitedPropInvitation", - "WebhookOrganizationMemberInvitedPropInvitationPropInviter", - "WebhookOrganizationMemberRemoved", - "WebhookOrganizationRenamed", - "WebhookOrganizationRenamedPropChanges", - "WebhookOrganizationRenamedPropChangesPropLogin", - "WebhookRubygemsMetadata", - "WebhookRubygemsMetadataPropVersionInfo", - "WebhookRubygemsMetadataPropMetadata", - "WebhookRubygemsMetadataPropDependenciesItems", - "WebhookPackagePublished", - "WebhookPackagePublishedPropPackage", - "WebhookPackagePublishedPropPackagePropOwner", - "WebhookPackagePublishedPropPackagePropRegistry", - "WebhookPackagePublishedPropPackagePropPackageVersion", - "WebhookPackagePublishedPropPackagePropPackageVersionPropAuthor", - "WebhookPackagePublishedPropPackagePropPackageVersionPropBodyOneof1", - "WebhookPackagePublishedPropPackagePropPackageVersionPropContainerMetadata", - "WebhookPackagePublishedPropPackagePropPackageVersionPropContainerMetadataPropLabels", - "WebhookPackagePublishedPropPackagePropPackageVersionPropContainerMetadataPropManifest", - "WebhookPackagePublishedPropPackagePropPackageVersionPropContainerMetadataPropTag", - "WebhookPackagePublishedPropPackagePropPackageVersionPropDockerMetadataItems", - "WebhookPackagePublishedPropPackagePropPackageVersionPropMetadataItems", - "WebhookPackagePublishedPropPackagePropPackageVersionPropNpmMetadata", - "WebhookPackagePublishedPropPackagePropPackageVersionPropNpmMetadataPropAuthor", - "WebhookPackagePublishedPropPackagePropPackageVersionPropNpmMetadataPropBugs", - "WebhookPackagePublishedPropPackagePropPackageVersionPropNpmMetadataPropDependencies", - "WebhookPackagePublishedPropPackagePropPackageVersionPropNpmMetadataPropDevDependencies", - "WebhookPackagePublishedPropPackagePropPackageVersionPropNpmMetadataPropPeerDependencies", - "WebhookPackagePublishedPropPackagePropPackageVersionPropNpmMetadataPropOptionalDependencies", - "WebhookPackagePublishedPropPackagePropPackageVersionPropNpmMetadataPropDist", - "WebhookPackagePublishedPropPackagePropPackageVersionPropNpmMetadataPropRepository", - "WebhookPackagePublishedPropPackagePropPackageVersionPropNpmMetadataPropScripts", - "WebhookPackagePublishedPropPackagePropPackageVersionPropNpmMetadataPropMaintainersItems", - "WebhookPackagePublishedPropPackagePropPackageVersionPropNpmMetadataPropContributorsItems", - "WebhookPackagePublishedPropPackagePropPackageVersionPropNpmMetadataPropEngines", - "WebhookPackagePublishedPropPackagePropPackageVersionPropNpmMetadataPropBin", - "WebhookPackagePublishedPropPackagePropPackageVersionPropNpmMetadataPropMan", - "WebhookPackagePublishedPropPackagePropPackageVersionPropNpmMetadataPropDirectories", - "WebhookPackagePublishedPropPackagePropPackageVersionPropPackageFilesItems", - "WebhookPackagePublishedPropPackagePropPackageVersionPropNugetMetadataItems", - "WebhookPackagePublishedPropPackagePropPackageVersionPropNugetMetadataItemsPropValueOneof3", - "WebhookPackagePublishedPropPackagePropPackageVersionPropRelease", - "WebhookPackagePublishedPropPackagePropPackageVersionPropReleasePropAuthor", - "WebhookPackageUpdated", - "WebhookPackageUpdatedPropPackage", - "WebhookPackageUpdatedPropPackagePropOwner", - "WebhookPackageUpdatedPropPackagePropRegistry", - "WebhookPackageUpdatedPropPackagePropPackageVersion", - "WebhookPackageUpdatedPropPackagePropPackageVersionPropAuthor", - "WebhookPackageUpdatedPropPackagePropPackageVersionPropDockerMetadataItems", - "WebhookPackageUpdatedPropPackagePropPackageVersionPropMetadataItems", - "WebhookPackageUpdatedPropPackagePropPackageVersionPropPackageFilesItems", - "WebhookPackageUpdatedPropPackagePropPackageVersionPropRelease", - "WebhookPackageUpdatedPropPackagePropPackageVersionPropReleasePropAuthor", - "WebhookPageBuild", - "WebhookPageBuildPropBuild", - "WebhookPageBuildPropBuildPropError", - "WebhookPageBuildPropBuildPropPusher", - "WebhookPersonalAccessTokenRequestApproved", - "WebhookPersonalAccessTokenRequestCancelled", - "WebhookPersonalAccessTokenRequestCreated", - "WebhookPersonalAccessTokenRequestDenied", - "WebhookPing", - "WebhookPingPropHook", - "WebhookPingPropHookPropConfig", - "WebhookPingFormEncoded", - "WebhookProjectCardConverted", - "WebhookProjectCardConvertedPropChanges", - "WebhookProjectCardConvertedPropChangesPropNote", - "WebhookProjectCardCreated", - "WebhookProjectCardDeleted", - "WebhookProjectCardDeletedPropProjectCard", - "WebhookProjectCardDeletedPropProjectCardPropCreator", - "WebhookProjectCardEdited", - "WebhookProjectCardEditedPropChanges", - "WebhookProjectCardEditedPropChangesPropNote", - "WebhookProjectCardMoved", - "WebhookProjectCardMovedPropChanges", - "WebhookProjectCardMovedPropChangesPropColumnId", - "WebhookProjectCardMovedPropProjectCard", - "WebhookProjectCardMovedPropProjectCardMergedCreator", - "WebhookProjectCardMovedPropProjectCardAllof0", - "WebhookProjectCardMovedPropProjectCardAllof0PropCreator", - "WebhookProjectCardMovedPropProjectCardAllof1", - "WebhookProjectCardMovedPropProjectCardAllof1PropCreator", - "WebhookProjectClosed", - "WebhookProjectColumnCreated", - "WebhookProjectColumnDeleted", - "WebhookProjectColumnEdited", - "WebhookProjectColumnEditedPropChanges", - "WebhookProjectColumnEditedPropChangesPropName", - "WebhookProjectColumnMoved", - "WebhookProjectCreated", - "WebhookProjectDeleted", - "WebhookProjectEdited", - "WebhookProjectEditedPropChanges", - "WebhookProjectEditedPropChangesPropBody", - "WebhookProjectEditedPropChangesPropName", - "WebhookProjectReopened", - "WebhookProjectsV2ProjectClosed", - "WebhookProjectsV2ProjectCreated", - "WebhookProjectsV2ProjectDeleted", - "WebhookProjectsV2ProjectEdited", - "WebhookProjectsV2ProjectEditedPropChanges", - "WebhookProjectsV2ProjectEditedPropChangesPropDescription", - "WebhookProjectsV2ProjectEditedPropChangesPropPublic", - "WebhookProjectsV2ProjectEditedPropChangesPropShortDescription", - "WebhookProjectsV2ProjectEditedPropChangesPropTitle", - "WebhookProjectsV2ItemArchived", - "WebhookProjectsV2ItemConverted", - "WebhookProjectsV2ItemConvertedPropChanges", - "WebhookProjectsV2ItemConvertedPropChangesPropContentType", - "WebhookProjectsV2ItemCreated", - "WebhookProjectsV2ItemDeleted", - "WebhookProjectsV2ItemEdited", - "WebhookProjectsV2ItemEditedPropChangesOneof0", - "WebhookProjectsV2ItemEditedPropChangesOneof0PropFieldValue", - "ProjectsV2SingleSelectOption", - "ProjectsV2IterationSetting", - "WebhookProjectsV2ItemEditedPropChangesOneof1", - "WebhookProjectsV2ItemEditedPropChangesOneof1PropBody", - "WebhookProjectsV2ItemReordered", - "WebhookProjectsV2ItemReorderedPropChanges", - "WebhookProjectsV2ItemReorderedPropChangesPropPreviousProjectsV2ItemNodeId", - "WebhookProjectsV2ItemRestored", - "WebhookProjectsV2ProjectReopened", - "WebhookProjectsV2StatusUpdateCreated", - "WebhookProjectsV2StatusUpdateDeleted", - "WebhookProjectsV2StatusUpdateEdited", - "WebhookProjectsV2StatusUpdateEditedPropChanges", - "WebhookProjectsV2StatusUpdateEditedPropChangesPropBody", - "WebhookProjectsV2StatusUpdateEditedPropChangesPropStatus", - "WebhookProjectsV2StatusUpdateEditedPropChangesPropStartDate", - "WebhookProjectsV2StatusUpdateEditedPropChangesPropTargetDate", - "WebhookPublic", - "WebhookPullRequestAssigned", - "WebhookPullRequestAssignedPropPullRequest", - "WebhookPullRequestAssignedPropPullRequestPropAssignee", - "WebhookPullRequestAssignedPropPullRequestPropAssigneesItems", - "WebhookPullRequestAssignedPropPullRequestPropAutoMerge", - "WebhookPullRequestAssignedPropPullRequestPropAutoMergePropEnabledBy", - "WebhookPullRequestAssignedPropPullRequestPropLabelsItems", - "WebhookPullRequestAssignedPropPullRequestPropMergedBy", - "WebhookPullRequestAssignedPropPullRequestPropMilestone", - "WebhookPullRequestAssignedPropPullRequestPropMilestonePropCreator", - "WebhookPullRequestAssignedPropPullRequestPropRequestedReviewersItemsOneof0", - "WebhookPullRequestAssignedPropPullRequestPropUser", - "WebhookPullRequestAssignedPropPullRequestPropLinks", - "WebhookPullRequestAssignedPropPullRequestPropLinksPropComments", - "WebhookPullRequestAssignedPropPullRequestPropLinksPropCommits", - "WebhookPullRequestAssignedPropPullRequestPropLinksPropHtml", - "WebhookPullRequestAssignedPropPullRequestPropLinksPropIssue", - "WebhookPullRequestAssignedPropPullRequestPropLinksPropReviewComment", - "WebhookPullRequestAssignedPropPullRequestPropLinksPropReviewComments", - "WebhookPullRequestAssignedPropPullRequestPropLinksPropSelf", - "WebhookPullRequestAssignedPropPullRequestPropLinksPropStatuses", - "WebhookPullRequestAssignedPropPullRequestPropBase", - "WebhookPullRequestAssignedPropPullRequestPropBasePropUser", - "WebhookPullRequestAssignedPropPullRequestPropBasePropRepo", - "WebhookPullRequestAssignedPropPullRequestPropBasePropRepoPropLicense", - "WebhookPullRequestAssignedPropPullRequestPropBasePropRepoPropOwner", - "WebhookPullRequestAssignedPropPullRequestPropBasePropRepoPropPermissions", - "WebhookPullRequestAssignedPropPullRequestPropHead", - "WebhookPullRequestAssignedPropPullRequestPropHeadPropRepo", - "WebhookPullRequestAssignedPropPullRequestPropHeadPropRepoPropLicense", - "WebhookPullRequestAssignedPropPullRequestPropHeadPropRepoPropOwner", - "WebhookPullRequestAssignedPropPullRequestPropHeadPropRepoPropPermissions", - "WebhookPullRequestAssignedPropPullRequestPropHeadPropUser", - "WebhookPullRequestAssignedPropPullRequestPropRequestedReviewersItemsOneof1", - "WebhookPullRequestAssignedPropPullRequestPropRequestedReviewersItemsOneof1PropParent", - "WebhookPullRequestAssignedPropPullRequestPropRequestedTeamsItems", - "WebhookPullRequestAssignedPropPullRequestPropRequestedTeamsItemsPropParent", - "WebhookPullRequestAutoMergeDisabled", - "WebhookPullRequestAutoMergeDisabledPropPullRequest", - "WebhookPullRequestAutoMergeDisabledPropPullRequestPropAssignee", - "WebhookPullRequestAutoMergeDisabledPropPullRequestPropAssigneesItems", - "WebhookPullRequestAutoMergeDisabledPropPullRequestPropAutoMerge", - "WebhookPullRequestAutoMergeDisabledPropPullRequestPropAutoMergePropEnabledBy", - "WebhookPullRequestAutoMergeDisabledPropPullRequestPropLabelsItems", - "WebhookPullRequestAutoMergeDisabledPropPullRequestPropMergedBy", - "WebhookPullRequestAutoMergeDisabledPropPullRequestPropMilestone", - "WebhookPullRequestAutoMergeDisabledPropPullRequestPropMilestonePropCreator", - "WebhookPullRequestAutoMergeDisabledPropPullRequestPropRequestedReviewersItemsOneof0", - "WebhookPullRequestAutoMergeDisabledPropPullRequestPropUser", - "WebhookPullRequestAutoMergeDisabledPropPullRequestPropLinks", - "WebhookPullRequestAutoMergeDisabledPropPullRequestPropLinksPropComments", - "WebhookPullRequestAutoMergeDisabledPropPullRequestPropLinksPropCommits", - "WebhookPullRequestAutoMergeDisabledPropPullRequestPropLinksPropHtml", - "WebhookPullRequestAutoMergeDisabledPropPullRequestPropLinksPropIssue", - "WebhookPullRequestAutoMergeDisabledPropPullRequestPropLinksPropReviewComment", - "WebhookPullRequestAutoMergeDisabledPropPullRequestPropLinksPropReviewComments", - "WebhookPullRequestAutoMergeDisabledPropPullRequestPropLinksPropSelf", - "WebhookPullRequestAutoMergeDisabledPropPullRequestPropLinksPropStatuses", - "WebhookPullRequestAutoMergeDisabledPropPullRequestPropBase", - "WebhookPullRequestAutoMergeDisabledPropPullRequestPropBasePropUser", - "WebhookPullRequestAutoMergeDisabledPropPullRequestPropBasePropRepo", - "WebhookPullRequestAutoMergeDisabledPropPullRequestPropBasePropRepoPropLicense", - "WebhookPullRequestAutoMergeDisabledPropPullRequestPropBasePropRepoPropOwner", - "WebhookPullRequestAutoMergeDisabledPropPullRequestPropBasePropRepoPropPermissions", - "WebhookPullRequestAutoMergeDisabledPropPullRequestPropHead", - "WebhookPullRequestAutoMergeDisabledPropPullRequestPropHeadPropUser", - "WebhookPullRequestAutoMergeDisabledPropPullRequestPropHeadPropRepo", - "WebhookPullRequestAutoMergeDisabledPropPullRequestPropHeadPropRepoPropLicense", - "WebhookPullRequestAutoMergeDisabledPropPullRequestPropHeadPropRepoPropOwner", - "WebhookPullRequestAutoMergeDisabledPropPullRequestPropHeadPropRepoPropPermissions", - "WebhookPullRequestAutoMergeDisabledPropPullRequestPropRequestedReviewersItemsOneof1", - "WebhookPullRequestAutoMergeDisabledPropPullRequestPropRequestedReviewersItemsOneof1PropParent", - "WebhookPullRequestAutoMergeDisabledPropPullRequestPropRequestedTeamsItems", - "WebhookPullRequestAutoMergeDisabledPropPullRequestPropRequestedTeamsItemsPropParent", - "WebhookPullRequestAutoMergeEnabled", - "WebhookPullRequestAutoMergeEnabledPropPullRequest", - "WebhookPullRequestAutoMergeEnabledPropPullRequestPropAssignee", - "WebhookPullRequestAutoMergeEnabledPropPullRequestPropAssigneesItems", - "WebhookPullRequestAutoMergeEnabledPropPullRequestPropAutoMerge", - "WebhookPullRequestAutoMergeEnabledPropPullRequestPropAutoMergePropEnabledBy", - "WebhookPullRequestAutoMergeEnabledPropPullRequestPropLabelsItems", - "WebhookPullRequestAutoMergeEnabledPropPullRequestPropMergedBy", - "WebhookPullRequestAutoMergeEnabledPropPullRequestPropMilestone", - "WebhookPullRequestAutoMergeEnabledPropPullRequestPropMilestonePropCreator", - "WebhookPullRequestAutoMergeEnabledPropPullRequestPropRequestedReviewersItemsOneof0", - "WebhookPullRequestAutoMergeEnabledPropPullRequestPropUser", - "WebhookPullRequestAutoMergeEnabledPropPullRequestPropLinks", - "WebhookPullRequestAutoMergeEnabledPropPullRequestPropLinksPropComments", - "WebhookPullRequestAutoMergeEnabledPropPullRequestPropLinksPropCommits", - "WebhookPullRequestAutoMergeEnabledPropPullRequestPropLinksPropHtml", - "WebhookPullRequestAutoMergeEnabledPropPullRequestPropLinksPropIssue", - "WebhookPullRequestAutoMergeEnabledPropPullRequestPropLinksPropReviewComment", - "WebhookPullRequestAutoMergeEnabledPropPullRequestPropLinksPropReviewComments", - "WebhookPullRequestAutoMergeEnabledPropPullRequestPropLinksPropSelf", - "WebhookPullRequestAutoMergeEnabledPropPullRequestPropLinksPropStatuses", - "WebhookPullRequestAutoMergeEnabledPropPullRequestPropBase", - "WebhookPullRequestAutoMergeEnabledPropPullRequestPropBasePropUser", - "WebhookPullRequestAutoMergeEnabledPropPullRequestPropBasePropRepo", - "WebhookPullRequestAutoMergeEnabledPropPullRequestPropBasePropRepoPropLicense", - "WebhookPullRequestAutoMergeEnabledPropPullRequestPropBasePropRepoPropOwner", - "WebhookPullRequestAutoMergeEnabledPropPullRequestPropBasePropRepoPropPermissions", - "WebhookPullRequestAutoMergeEnabledPropPullRequestPropHead", - "WebhookPullRequestAutoMergeEnabledPropPullRequestPropHeadPropUser", - "WebhookPullRequestAutoMergeEnabledPropPullRequestPropHeadPropRepo", - "WebhookPullRequestAutoMergeEnabledPropPullRequestPropHeadPropRepoPropLicense", - "WebhookPullRequestAutoMergeEnabledPropPullRequestPropHeadPropRepoPropOwner", - "WebhookPullRequestAutoMergeEnabledPropPullRequestPropHeadPropRepoPropPermissions", - "WebhookPullRequestAutoMergeEnabledPropPullRequestPropRequestedReviewersItemsOneof1", - "WebhookPullRequestAutoMergeEnabledPropPullRequestPropRequestedReviewersItemsOneof1PropParent", - "WebhookPullRequestAutoMergeEnabledPropPullRequestPropRequestedTeamsItems", - "WebhookPullRequestAutoMergeEnabledPropPullRequestPropRequestedTeamsItemsPropParent", - "WebhookPullRequestClosed", - "WebhookPullRequestConvertedToDraft", - "WebhookPullRequestDemilestoned", - "WebhookPullRequestDequeued", - "WebhookPullRequestDequeuedPropPullRequest", - "WebhookPullRequestDequeuedPropPullRequestPropAssignee", - "WebhookPullRequestDequeuedPropPullRequestPropAssigneesItems", - "WebhookPullRequestDequeuedPropPullRequestPropAutoMerge", - "WebhookPullRequestDequeuedPropPullRequestPropAutoMergePropEnabledBy", - "WebhookPullRequestDequeuedPropPullRequestPropLabelsItems", - "WebhookPullRequestDequeuedPropPullRequestPropMergedBy", - "WebhookPullRequestDequeuedPropPullRequestPropMilestone", - "WebhookPullRequestDequeuedPropPullRequestPropMilestonePropCreator", - "WebhookPullRequestDequeuedPropPullRequestPropRequestedReviewersItemsOneof0", - "WebhookPullRequestDequeuedPropPullRequestPropUser", - "WebhookPullRequestDequeuedPropPullRequestPropLinks", - "WebhookPullRequestDequeuedPropPullRequestPropLinksPropComments", - "WebhookPullRequestDequeuedPropPullRequestPropLinksPropCommits", - "WebhookPullRequestDequeuedPropPullRequestPropLinksPropHtml", - "WebhookPullRequestDequeuedPropPullRequestPropLinksPropIssue", - "WebhookPullRequestDequeuedPropPullRequestPropLinksPropReviewComment", - "WebhookPullRequestDequeuedPropPullRequestPropLinksPropReviewComments", - "WebhookPullRequestDequeuedPropPullRequestPropLinksPropSelf", - "WebhookPullRequestDequeuedPropPullRequestPropLinksPropStatuses", - "WebhookPullRequestDequeuedPropPullRequestPropBase", - "WebhookPullRequestDequeuedPropPullRequestPropBasePropUser", - "WebhookPullRequestDequeuedPropPullRequestPropBasePropRepo", - "WebhookPullRequestDequeuedPropPullRequestPropBasePropRepoPropLicense", - "WebhookPullRequestDequeuedPropPullRequestPropBasePropRepoPropOwner", - "WebhookPullRequestDequeuedPropPullRequestPropBasePropRepoPropPermissions", - "WebhookPullRequestDequeuedPropPullRequestPropHead", - "WebhookPullRequestDequeuedPropPullRequestPropHeadPropUser", - "WebhookPullRequestDequeuedPropPullRequestPropHeadPropRepo", - "WebhookPullRequestDequeuedPropPullRequestPropHeadPropRepoPropLicense", - "WebhookPullRequestDequeuedPropPullRequestPropHeadPropRepoPropOwner", - "WebhookPullRequestDequeuedPropPullRequestPropHeadPropRepoPropPermissions", - "WebhookPullRequestDequeuedPropPullRequestPropRequestedReviewersItemsOneof1", - "WebhookPullRequestDequeuedPropPullRequestPropRequestedReviewersItemsOneof1PropParent", - "WebhookPullRequestDequeuedPropPullRequestPropRequestedTeamsItems", - "WebhookPullRequestDequeuedPropPullRequestPropRequestedTeamsItemsPropParent", - "WebhookPullRequestEdited", - "WebhookPullRequestEditedPropChanges", - "WebhookPullRequestEditedPropChangesPropBody", - "WebhookPullRequestEditedPropChangesPropTitle", - "WebhookPullRequestEditedPropChangesPropBase", - "WebhookPullRequestEditedPropChangesPropBasePropRef", - "WebhookPullRequestEditedPropChangesPropBasePropSha", - "WebhookPullRequestEnqueued", - "WebhookPullRequestEnqueuedPropPullRequest", - "WebhookPullRequestEnqueuedPropPullRequestPropAssignee", - "WebhookPullRequestEnqueuedPropPullRequestPropAssigneesItems", - "WebhookPullRequestEnqueuedPropPullRequestPropAutoMerge", - "WebhookPullRequestEnqueuedPropPullRequestPropAutoMergePropEnabledBy", - "WebhookPullRequestEnqueuedPropPullRequestPropLabelsItems", - "WebhookPullRequestEnqueuedPropPullRequestPropMergedBy", - "WebhookPullRequestEnqueuedPropPullRequestPropMilestone", - "WebhookPullRequestEnqueuedPropPullRequestPropMilestonePropCreator", - "WebhookPullRequestEnqueuedPropPullRequestPropRequestedReviewersItemsOneof0", - "WebhookPullRequestEnqueuedPropPullRequestPropUser", - "WebhookPullRequestEnqueuedPropPullRequestPropLinks", - "WebhookPullRequestEnqueuedPropPullRequestPropLinksPropComments", - "WebhookPullRequestEnqueuedPropPullRequestPropLinksPropCommits", - "WebhookPullRequestEnqueuedPropPullRequestPropLinksPropHtml", - "WebhookPullRequestEnqueuedPropPullRequestPropLinksPropIssue", - "WebhookPullRequestEnqueuedPropPullRequestPropLinksPropReviewComment", - "WebhookPullRequestEnqueuedPropPullRequestPropLinksPropReviewComments", - "WebhookPullRequestEnqueuedPropPullRequestPropLinksPropSelf", - "WebhookPullRequestEnqueuedPropPullRequestPropLinksPropStatuses", - "WebhookPullRequestEnqueuedPropPullRequestPropBase", - "WebhookPullRequestEnqueuedPropPullRequestPropBasePropUser", - "WebhookPullRequestEnqueuedPropPullRequestPropBasePropRepo", - "WebhookPullRequestEnqueuedPropPullRequestPropBasePropRepoPropLicense", - "WebhookPullRequestEnqueuedPropPullRequestPropBasePropRepoPropOwner", - "WebhookPullRequestEnqueuedPropPullRequestPropBasePropRepoPropPermissions", - "WebhookPullRequestEnqueuedPropPullRequestPropHead", - "WebhookPullRequestEnqueuedPropPullRequestPropHeadPropUser", - "WebhookPullRequestEnqueuedPropPullRequestPropHeadPropRepo", - "WebhookPullRequestEnqueuedPropPullRequestPropHeadPropRepoPropLicense", - "WebhookPullRequestEnqueuedPropPullRequestPropHeadPropRepoPropOwner", - "WebhookPullRequestEnqueuedPropPullRequestPropHeadPropRepoPropPermissions", - "WebhookPullRequestEnqueuedPropPullRequestPropRequestedReviewersItemsOneof1", - "WebhookPullRequestEnqueuedPropPullRequestPropRequestedReviewersItemsOneof1PropParent", - "WebhookPullRequestEnqueuedPropPullRequestPropRequestedTeamsItems", - "WebhookPullRequestEnqueuedPropPullRequestPropRequestedTeamsItemsPropParent", - "WebhookPullRequestLabeled", - "WebhookPullRequestLabeledPropPullRequest", - "WebhookPullRequestLabeledPropPullRequestPropAssignee", - "WebhookPullRequestLabeledPropPullRequestPropAssigneesItems", - "WebhookPullRequestLabeledPropPullRequestPropAutoMerge", - "WebhookPullRequestLabeledPropPullRequestPropAutoMergePropEnabledBy", - "WebhookPullRequestLabeledPropPullRequestPropLabelsItems", - "WebhookPullRequestLabeledPropPullRequestPropMergedBy", - "WebhookPullRequestLabeledPropPullRequestPropMilestone", - "WebhookPullRequestLabeledPropPullRequestPropMilestonePropCreator", - "WebhookPullRequestLabeledPropPullRequestPropRequestedReviewersItemsOneof0", - "WebhookPullRequestLabeledPropPullRequestPropUser", - "WebhookPullRequestLabeledPropPullRequestPropLinks", - "WebhookPullRequestLabeledPropPullRequestPropLinksPropComments", - "WebhookPullRequestLabeledPropPullRequestPropLinksPropCommits", - "WebhookPullRequestLabeledPropPullRequestPropLinksPropHtml", - "WebhookPullRequestLabeledPropPullRequestPropLinksPropIssue", - "WebhookPullRequestLabeledPropPullRequestPropLinksPropReviewComment", - "WebhookPullRequestLabeledPropPullRequestPropLinksPropReviewComments", - "WebhookPullRequestLabeledPropPullRequestPropLinksPropSelf", - "WebhookPullRequestLabeledPropPullRequestPropLinksPropStatuses", - "WebhookPullRequestLabeledPropPullRequestPropBase", - "WebhookPullRequestLabeledPropPullRequestPropBasePropUser", - "WebhookPullRequestLabeledPropPullRequestPropBasePropRepo", - "WebhookPullRequestLabeledPropPullRequestPropBasePropRepoPropLicense", - "WebhookPullRequestLabeledPropPullRequestPropBasePropRepoPropOwner", - "WebhookPullRequestLabeledPropPullRequestPropBasePropRepoPropPermissions", - "WebhookPullRequestLabeledPropPullRequestPropHead", - "WebhookPullRequestLabeledPropPullRequestPropHeadPropRepo", - "WebhookPullRequestLabeledPropPullRequestPropHeadPropRepoPropLicense", - "WebhookPullRequestLabeledPropPullRequestPropHeadPropRepoPropOwner", - "WebhookPullRequestLabeledPropPullRequestPropHeadPropRepoPropPermissions", - "WebhookPullRequestLabeledPropPullRequestPropHeadPropUser", - "WebhookPullRequestLabeledPropPullRequestPropRequestedReviewersItemsOneof1", - "WebhookPullRequestLabeledPropPullRequestPropRequestedReviewersItemsOneof1PropParent", - "WebhookPullRequestLabeledPropPullRequestPropRequestedTeamsItems", - "WebhookPullRequestLabeledPropPullRequestPropRequestedTeamsItemsPropParent", - "WebhookPullRequestLocked", - "WebhookPullRequestLockedPropPullRequest", - "WebhookPullRequestLockedPropPullRequestPropAssignee", - "WebhookPullRequestLockedPropPullRequestPropAssigneesItems", - "WebhookPullRequestLockedPropPullRequestPropAutoMerge", - "WebhookPullRequestLockedPropPullRequestPropAutoMergePropEnabledBy", - "WebhookPullRequestLockedPropPullRequestPropLabelsItems", - "WebhookPullRequestLockedPropPullRequestPropMergedBy", - "WebhookPullRequestLockedPropPullRequestPropMilestone", - "WebhookPullRequestLockedPropPullRequestPropMilestonePropCreator", - "WebhookPullRequestLockedPropPullRequestPropRequestedReviewersItemsOneof0", - "WebhookPullRequestLockedPropPullRequestPropUser", - "WebhookPullRequestLockedPropPullRequestPropLinks", - "WebhookPullRequestLockedPropPullRequestPropLinksPropComments", - "WebhookPullRequestLockedPropPullRequestPropLinksPropCommits", - "WebhookPullRequestLockedPropPullRequestPropLinksPropHtml", - "WebhookPullRequestLockedPropPullRequestPropLinksPropIssue", - "WebhookPullRequestLockedPropPullRequestPropLinksPropReviewComment", - "WebhookPullRequestLockedPropPullRequestPropLinksPropReviewComments", - "WebhookPullRequestLockedPropPullRequestPropLinksPropSelf", - "WebhookPullRequestLockedPropPullRequestPropLinksPropStatuses", - "WebhookPullRequestLockedPropPullRequestPropBase", - "WebhookPullRequestLockedPropPullRequestPropBasePropUser", - "WebhookPullRequestLockedPropPullRequestPropBasePropRepo", - "WebhookPullRequestLockedPropPullRequestPropBasePropRepoPropLicense", - "WebhookPullRequestLockedPropPullRequestPropBasePropRepoPropOwner", - "WebhookPullRequestLockedPropPullRequestPropBasePropRepoPropPermissions", - "WebhookPullRequestLockedPropPullRequestPropHead", - "WebhookPullRequestLockedPropPullRequestPropHeadPropRepo", - "WebhookPullRequestLockedPropPullRequestPropHeadPropRepoPropLicense", - "WebhookPullRequestLockedPropPullRequestPropHeadPropRepoPropOwner", - "WebhookPullRequestLockedPropPullRequestPropHeadPropRepoPropPermissions", - "WebhookPullRequestLockedPropPullRequestPropHeadPropUser", - "WebhookPullRequestLockedPropPullRequestPropRequestedReviewersItemsOneof1", - "WebhookPullRequestLockedPropPullRequestPropRequestedReviewersItemsOneof1PropParent", - "WebhookPullRequestLockedPropPullRequestPropRequestedTeamsItems", - "WebhookPullRequestLockedPropPullRequestPropRequestedTeamsItemsPropParent", - "WebhookPullRequestMilestoned", - "WebhookPullRequestOpened", - "WebhookPullRequestReadyForReview", - "WebhookPullRequestReopened", - "WebhookPullRequestReviewCommentCreated", - "WebhookPullRequestReviewCommentCreatedPropComment", - "WebhookPullRequestReviewCommentCreatedPropCommentPropReactions", - "WebhookPullRequestReviewCommentCreatedPropCommentPropUser", - "WebhookPullRequestReviewCommentCreatedPropCommentPropLinks", - "WebhookPullRequestReviewCommentCreatedPropCommentPropLinksPropHtml", - "WebhookPullRequestReviewCommentCreatedPropCommentPropLinksPropPullRequest", - "WebhookPullRequestReviewCommentCreatedPropCommentPropLinksPropSelf", - "WebhookPullRequestReviewCommentCreatedPropPullRequest", - "WebhookPullRequestReviewCommentCreatedPropPullRequestPropAssignee", - "WebhookPullRequestReviewCommentCreatedPropPullRequestPropAssigneesItems", - "WebhookPullRequestReviewCommentCreatedPropPullRequestPropAutoMerge", - "WebhookPullRequestReviewCommentCreatedPropPullRequestPropAutoMergePropEnabledBy", - "WebhookPullRequestReviewCommentCreatedPropPullRequestPropLabelsItems", - "WebhookPullRequestReviewCommentCreatedPropPullRequestPropMilestone", - "WebhookPullRequestReviewCommentCreatedPropPullRequestPropMilestonePropCreator", - "WebhookPullRequestReviewCommentCreatedPropPullRequestPropRequestedReviewersItemsOneof0", - "WebhookPullRequestReviewCommentCreatedPropPullRequestPropUser", - "WebhookPullRequestReviewCommentCreatedPropPullRequestPropLinks", - "WebhookPullRequestReviewCommentCreatedPropPullRequestPropLinksPropComments", - "WebhookPullRequestReviewCommentCreatedPropPullRequestPropLinksPropCommits", - "WebhookPullRequestReviewCommentCreatedPropPullRequestPropLinksPropHtml", - "WebhookPullRequestReviewCommentCreatedPropPullRequestPropLinksPropIssue", - "WebhookPullRequestReviewCommentCreatedPropPullRequestPropLinksPropReviewComment", - "WebhookPullRequestReviewCommentCreatedPropPullRequestPropLinksPropReviewComments", - "WebhookPullRequestReviewCommentCreatedPropPullRequestPropLinksPropSelf", - "WebhookPullRequestReviewCommentCreatedPropPullRequestPropLinksPropStatuses", - "WebhookPullRequestReviewCommentCreatedPropPullRequestPropBase", - "WebhookPullRequestReviewCommentCreatedPropPullRequestPropBasePropUser", - "WebhookPullRequestReviewCommentCreatedPropPullRequestPropBasePropRepo", - "WebhookPullRequestReviewCommentCreatedPropPullRequestPropBasePropRepoPropLicense", - "WebhookPullRequestReviewCommentCreatedPropPullRequestPropBasePropRepoPropOwner", - "WebhookPullRequestReviewCommentCreatedPropPullRequestPropBasePropRepoPropPermissions", - "WebhookPullRequestReviewCommentCreatedPropPullRequestPropHead", - "WebhookPullRequestReviewCommentCreatedPropPullRequestPropHeadPropRepo", - "WebhookPullRequestReviewCommentCreatedPropPullRequestPropHeadPropRepoPropLicense", - "WebhookPullRequestReviewCommentCreatedPropPullRequestPropHeadPropRepoPropOwner", - "WebhookPullRequestReviewCommentCreatedPropPullRequestPropHeadPropRepoPropPermissions", - "WebhookPullRequestReviewCommentCreatedPropPullRequestPropHeadPropUser", - "WebhookPullRequestReviewCommentCreatedPropPullRequestPropRequestedReviewersItemsOneof1", - "WebhookPullRequestReviewCommentCreatedPropPullRequestPropRequestedReviewersItemsOneof1PropParent", - "WebhookPullRequestReviewCommentCreatedPropPullRequestPropRequestedTeamsItems", - "WebhookPullRequestReviewCommentCreatedPropPullRequestPropRequestedTeamsItemsPropParent", - "WebhookPullRequestReviewCommentDeleted", - "WebhookPullRequestReviewCommentDeletedPropPullRequest", - "WebhookPullRequestReviewCommentDeletedPropPullRequestPropAssignee", - "WebhookPullRequestReviewCommentDeletedPropPullRequestPropAssigneesItems", - "WebhookPullRequestReviewCommentDeletedPropPullRequestPropAutoMerge", - "WebhookPullRequestReviewCommentDeletedPropPullRequestPropAutoMergePropEnabledBy", - "WebhookPullRequestReviewCommentDeletedPropPullRequestPropLabelsItems", - "WebhookPullRequestReviewCommentDeletedPropPullRequestPropMilestone", - "WebhookPullRequestReviewCommentDeletedPropPullRequestPropMilestonePropCreator", - "WebhookPullRequestReviewCommentDeletedPropPullRequestPropRequestedReviewersItemsOneof0", - "WebhookPullRequestReviewCommentDeletedPropPullRequestPropUser", - "WebhookPullRequestReviewCommentDeletedPropPullRequestPropLinks", - "WebhookPullRequestReviewCommentDeletedPropPullRequestPropLinksPropComments", - "WebhookPullRequestReviewCommentDeletedPropPullRequestPropLinksPropCommits", - "WebhookPullRequestReviewCommentDeletedPropPullRequestPropLinksPropHtml", - "WebhookPullRequestReviewCommentDeletedPropPullRequestPropLinksPropIssue", - "WebhookPullRequestReviewCommentDeletedPropPullRequestPropLinksPropReviewComment", - "WebhookPullRequestReviewCommentDeletedPropPullRequestPropLinksPropReviewComments", - "WebhookPullRequestReviewCommentDeletedPropPullRequestPropLinksPropSelf", - "WebhookPullRequestReviewCommentDeletedPropPullRequestPropLinksPropStatuses", - "WebhookPullRequestReviewCommentDeletedPropPullRequestPropBase", - "WebhookPullRequestReviewCommentDeletedPropPullRequestPropBasePropUser", - "WebhookPullRequestReviewCommentDeletedPropPullRequestPropBasePropRepo", - "WebhookPullRequestReviewCommentDeletedPropPullRequestPropBasePropRepoPropLicense", - "WebhookPullRequestReviewCommentDeletedPropPullRequestPropBasePropRepoPropOwner", - "WebhookPullRequestReviewCommentDeletedPropPullRequestPropBasePropRepoPropPermissions", - "WebhookPullRequestReviewCommentDeletedPropPullRequestPropHead", - "WebhookPullRequestReviewCommentDeletedPropPullRequestPropHeadPropRepo", - "WebhookPullRequestReviewCommentDeletedPropPullRequestPropHeadPropRepoPropLicense", - "WebhookPullRequestReviewCommentDeletedPropPullRequestPropHeadPropRepoPropOwner", - "WebhookPullRequestReviewCommentDeletedPropPullRequestPropHeadPropRepoPropPermissions", - "WebhookPullRequestReviewCommentDeletedPropPullRequestPropHeadPropUser", - "WebhookPullRequestReviewCommentDeletedPropPullRequestPropRequestedReviewersItemsOneof1", - "WebhookPullRequestReviewCommentDeletedPropPullRequestPropRequestedReviewersItemsOneof1PropParent", - "WebhookPullRequestReviewCommentDeletedPropPullRequestPropRequestedTeamsItems", - "WebhookPullRequestReviewCommentDeletedPropPullRequestPropRequestedTeamsItemsPropParent", - "WebhookPullRequestReviewCommentEdited", - "WebhookPullRequestReviewCommentEditedPropPullRequest", - "WebhookPullRequestReviewCommentEditedPropPullRequestPropAssignee", - "WebhookPullRequestReviewCommentEditedPropPullRequestPropAssigneesItems", - "WebhookPullRequestReviewCommentEditedPropPullRequestPropAutoMerge", - "WebhookPullRequestReviewCommentEditedPropPullRequestPropAutoMergePropEnabledBy", - "WebhookPullRequestReviewCommentEditedPropPullRequestPropLabelsItems", - "WebhookPullRequestReviewCommentEditedPropPullRequestPropMilestone", - "WebhookPullRequestReviewCommentEditedPropPullRequestPropMilestonePropCreator", - "WebhookPullRequestReviewCommentEditedPropPullRequestPropRequestedReviewersItemsOneof0", - "WebhookPullRequestReviewCommentEditedPropPullRequestPropUser", - "WebhookPullRequestReviewCommentEditedPropPullRequestPropLinks", - "WebhookPullRequestReviewCommentEditedPropPullRequestPropLinksPropComments", - "WebhookPullRequestReviewCommentEditedPropPullRequestPropLinksPropCommits", - "WebhookPullRequestReviewCommentEditedPropPullRequestPropLinksPropHtml", - "WebhookPullRequestReviewCommentEditedPropPullRequestPropLinksPropIssue", - "WebhookPullRequestReviewCommentEditedPropPullRequestPropLinksPropReviewComment", - "WebhookPullRequestReviewCommentEditedPropPullRequestPropLinksPropReviewComments", - "WebhookPullRequestReviewCommentEditedPropPullRequestPropLinksPropSelf", - "WebhookPullRequestReviewCommentEditedPropPullRequestPropLinksPropStatuses", - "WebhookPullRequestReviewCommentEditedPropPullRequestPropBase", - "WebhookPullRequestReviewCommentEditedPropPullRequestPropBasePropUser", - "WebhookPullRequestReviewCommentEditedPropPullRequestPropBasePropRepo", - "WebhookPullRequestReviewCommentEditedPropPullRequestPropBasePropRepoPropLicense", - "WebhookPullRequestReviewCommentEditedPropPullRequestPropBasePropRepoPropOwner", - "WebhookPullRequestReviewCommentEditedPropPullRequestPropBasePropRepoPropPermissions", - "WebhookPullRequestReviewCommentEditedPropPullRequestPropHead", - "WebhookPullRequestReviewCommentEditedPropPullRequestPropHeadPropRepo", - "WebhookPullRequestReviewCommentEditedPropPullRequestPropHeadPropRepoPropLicense", - "WebhookPullRequestReviewCommentEditedPropPullRequestPropHeadPropRepoPropOwner", - "WebhookPullRequestReviewCommentEditedPropPullRequestPropHeadPropRepoPropPermissions", - "WebhookPullRequestReviewCommentEditedPropPullRequestPropHeadPropUser", - "WebhookPullRequestReviewCommentEditedPropPullRequestPropRequestedReviewersItemsOneof1", - "WebhookPullRequestReviewCommentEditedPropPullRequestPropRequestedReviewersItemsOneof1PropParent", - "WebhookPullRequestReviewCommentEditedPropPullRequestPropRequestedTeamsItems", - "WebhookPullRequestReviewCommentEditedPropPullRequestPropRequestedTeamsItemsPropParent", - "WebhookPullRequestReviewDismissed", - "WebhookPullRequestReviewDismissedPropReview", - "WebhookPullRequestReviewDismissedPropReviewPropUser", - "WebhookPullRequestReviewDismissedPropReviewPropLinks", - "WebhookPullRequestReviewDismissedPropReviewPropLinksPropHtml", - "WebhookPullRequestReviewDismissedPropReviewPropLinksPropPullRequest", - "WebhookPullRequestReviewDismissedPropPullRequest", - "WebhookPullRequestReviewDismissedPropPullRequestPropAssignee", - "WebhookPullRequestReviewDismissedPropPullRequestPropAssigneesItems", - "WebhookPullRequestReviewDismissedPropPullRequestPropAutoMerge", - "WebhookPullRequestReviewDismissedPropPullRequestPropAutoMergePropEnabledBy", - "WebhookPullRequestReviewDismissedPropPullRequestPropLabelsItems", - "WebhookPullRequestReviewDismissedPropPullRequestPropMilestone", - "WebhookPullRequestReviewDismissedPropPullRequestPropMilestonePropCreator", - "WebhookPullRequestReviewDismissedPropPullRequestPropRequestedReviewersItemsOneof0", - "WebhookPullRequestReviewDismissedPropPullRequestPropUser", - "WebhookPullRequestReviewDismissedPropPullRequestPropLinks", - "WebhookPullRequestReviewDismissedPropPullRequestPropLinksPropComments", - "WebhookPullRequestReviewDismissedPropPullRequestPropLinksPropCommits", - "WebhookPullRequestReviewDismissedPropPullRequestPropLinksPropHtml", - "WebhookPullRequestReviewDismissedPropPullRequestPropLinksPropIssue", - "WebhookPullRequestReviewDismissedPropPullRequestPropLinksPropReviewComment", - "WebhookPullRequestReviewDismissedPropPullRequestPropLinksPropReviewComments", - "WebhookPullRequestReviewDismissedPropPullRequestPropLinksPropSelf", - "WebhookPullRequestReviewDismissedPropPullRequestPropLinksPropStatuses", - "WebhookPullRequestReviewDismissedPropPullRequestPropBase", - "WebhookPullRequestReviewDismissedPropPullRequestPropBasePropUser", - "WebhookPullRequestReviewDismissedPropPullRequestPropBasePropRepo", - "WebhookPullRequestReviewDismissedPropPullRequestPropBasePropRepoPropLicense", - "WebhookPullRequestReviewDismissedPropPullRequestPropBasePropRepoPropOwner", - "WebhookPullRequestReviewDismissedPropPullRequestPropBasePropRepoPropPermissions", - "WebhookPullRequestReviewDismissedPropPullRequestPropHead", - "WebhookPullRequestReviewDismissedPropPullRequestPropHeadPropRepo", - "WebhookPullRequestReviewDismissedPropPullRequestPropHeadPropRepoPropLicense", - "WebhookPullRequestReviewDismissedPropPullRequestPropHeadPropRepoPropOwner", - "WebhookPullRequestReviewDismissedPropPullRequestPropHeadPropRepoPropPermissions", - "WebhookPullRequestReviewDismissedPropPullRequestPropHeadPropUser", - "WebhookPullRequestReviewDismissedPropPullRequestPropRequestedReviewersItemsOneof1", - "WebhookPullRequestReviewDismissedPropPullRequestPropRequestedReviewersItemsOneof1PropParent", - "WebhookPullRequestReviewDismissedPropPullRequestPropRequestedTeamsItems", - "WebhookPullRequestReviewDismissedPropPullRequestPropRequestedTeamsItemsPropParent", - "WebhookPullRequestReviewEdited", - "WebhookPullRequestReviewEditedPropChanges", - "WebhookPullRequestReviewEditedPropChangesPropBody", - "WebhookPullRequestReviewEditedPropPullRequest", - "WebhookPullRequestReviewEditedPropPullRequestPropAssignee", - "WebhookPullRequestReviewEditedPropPullRequestPropAssigneesItems", - "WebhookPullRequestReviewEditedPropPullRequestPropAutoMerge", - "WebhookPullRequestReviewEditedPropPullRequestPropAutoMergePropEnabledBy", - "WebhookPullRequestReviewEditedPropPullRequestPropLabelsItems", - "WebhookPullRequestReviewEditedPropPullRequestPropMilestone", - "WebhookPullRequestReviewEditedPropPullRequestPropMilestonePropCreator", - "WebhookPullRequestReviewEditedPropPullRequestPropRequestedReviewersItemsOneof0", - "WebhookPullRequestReviewEditedPropPullRequestPropUser", - "WebhookPullRequestReviewEditedPropPullRequestPropLinks", - "WebhookPullRequestReviewEditedPropPullRequestPropLinksPropComments", - "WebhookPullRequestReviewEditedPropPullRequestPropLinksPropCommits", - "WebhookPullRequestReviewEditedPropPullRequestPropLinksPropHtml", - "WebhookPullRequestReviewEditedPropPullRequestPropLinksPropIssue", - "WebhookPullRequestReviewEditedPropPullRequestPropLinksPropReviewComment", - "WebhookPullRequestReviewEditedPropPullRequestPropLinksPropReviewComments", - "WebhookPullRequestReviewEditedPropPullRequestPropLinksPropSelf", - "WebhookPullRequestReviewEditedPropPullRequestPropLinksPropStatuses", - "WebhookPullRequestReviewEditedPropPullRequestPropBase", - "WebhookPullRequestReviewEditedPropPullRequestPropBasePropUser", - "WebhookPullRequestReviewEditedPropPullRequestPropBasePropRepo", - "WebhookPullRequestReviewEditedPropPullRequestPropBasePropRepoPropLicense", - "WebhookPullRequestReviewEditedPropPullRequestPropBasePropRepoPropOwner", - "WebhookPullRequestReviewEditedPropPullRequestPropBasePropRepoPropPermissions", - "WebhookPullRequestReviewEditedPropPullRequestPropHead", - "WebhookPullRequestReviewEditedPropPullRequestPropHeadPropRepo", - "WebhookPullRequestReviewEditedPropPullRequestPropHeadPropRepoPropLicense", - "WebhookPullRequestReviewEditedPropPullRequestPropHeadPropRepoPropOwner", - "WebhookPullRequestReviewEditedPropPullRequestPropHeadPropRepoPropPermissions", - "WebhookPullRequestReviewEditedPropPullRequestPropHeadPropUser", - "WebhookPullRequestReviewEditedPropPullRequestPropRequestedReviewersItemsOneof1", - "WebhookPullRequestReviewEditedPropPullRequestPropRequestedReviewersItemsOneof1PropParent", - "WebhookPullRequestReviewEditedPropPullRequestPropRequestedTeamsItems", - "WebhookPullRequestReviewEditedPropPullRequestPropRequestedTeamsItemsPropParent", - "WebhookPullRequestReviewRequestRemovedOneof0", - "WebhookPullRequestReviewRequestRemovedOneof0PropRequestedReviewer", - "WebhookPullRequestReviewRequestRemovedOneof0PropPullRequest", - "WebhookPullRequestReviewRequestRemovedOneof0PropPullRequestPropAssignee", - "WebhookPullRequestReviewRequestRemovedOneof0PropPullRequestPropAssigneesItems", - "WebhookPullRequestReviewRequestRemovedOneof0PropPullRequestPropAutoMerge", - "WebhookPullRequestReviewRequestRemovedOneof0PropPullRequestPropAutoMergePropEnabledBy", - "WebhookPullRequestReviewRequestRemovedOneof0PropPullRequestPropLabelsItems", - "WebhookPullRequestReviewRequestRemovedOneof0PropPullRequestPropMergedBy", - "WebhookPullRequestReviewRequestRemovedOneof0PropPullRequestPropMilestone", - "WebhookPullRequestReviewRequestRemovedOneof0PropPullRequestPropMilestonePropCreator", - "WebhookPullRequestReviewRequestRemovedOneof0PropPullRequestPropRequestedReviewersItemsOneof0", - "WebhookPullRequestReviewRequestRemovedOneof0PropPullRequestPropUser", - "WebhookPullRequestReviewRequestRemovedOneof0PropPullRequestPropLinks", - "WebhookPullRequestReviewRequestRemovedOneof0PropPullRequestPropLinksPropComments", - "WebhookPullRequestReviewRequestRemovedOneof0PropPullRequestPropLinksPropCommits", - "WebhookPullRequestReviewRequestRemovedOneof0PropPullRequestPropLinksPropHtml", - "WebhookPullRequestReviewRequestRemovedOneof0PropPullRequestPropLinksPropIssue", - "WebhookPullRequestReviewRequestRemovedOneof0PropPullRequestPropLinksPropReviewComment", - "WebhookPullRequestReviewRequestRemovedOneof0PropPullRequestPropLinksPropReviewComments", - "WebhookPullRequestReviewRequestRemovedOneof0PropPullRequestPropLinksPropSelf", - "WebhookPullRequestReviewRequestRemovedOneof0PropPullRequestPropLinksPropStatuses", - "WebhookPullRequestReviewRequestRemovedOneof0PropPullRequestPropBase", - "WebhookPullRequestReviewRequestRemovedOneof0PropPullRequestPropBasePropUser", - "WebhookPullRequestReviewRequestRemovedOneof0PropPullRequestPropBasePropRepo", - "WebhookPullRequestReviewRequestRemovedOneof0PropPullRequestPropBasePropRepoPropLicense", - "WebhookPullRequestReviewRequestRemovedOneof0PropPullRequestPropBasePropRepoPropOwner", - "WebhookPullRequestReviewRequestRemovedOneof0PropPullRequestPropBasePropRepoPropPermissions", - "WebhookPullRequestReviewRequestRemovedOneof0PropPullRequestPropHead", - "WebhookPullRequestReviewRequestRemovedOneof0PropPullRequestPropHeadPropUser", - "WebhookPullRequestReviewRequestRemovedOneof0PropPullRequestPropHeadPropRepo", - "WebhookPullRequestReviewRequestRemovedOneof0PropPullRequestPropHeadPropRepoPropLicense", - "WebhookPullRequestReviewRequestRemovedOneof0PropPullRequestPropHeadPropRepoPropOwner", - "WebhookPullRequestReviewRequestRemovedOneof0PropPullRequestPropHeadPropRepoPropPermissions", - "WebhookPullRequestReviewRequestRemovedOneof0PropPullRequestPropRequestedReviewersItemsOneof1", - "WebhookPullRequestReviewRequestRemovedOneof0PropPullRequestPropRequestedReviewersItemsOneof1PropParent", - "WebhookPullRequestReviewRequestRemovedOneof0PropPullRequestPropRequestedTeamsItems", - "WebhookPullRequestReviewRequestRemovedOneof0PropPullRequestPropRequestedTeamsItemsPropParent", - "WebhookPullRequestReviewRequestRemovedOneof1", - "WebhookPullRequestReviewRequestRemovedOneof1PropRequestedTeam", - "WebhookPullRequestReviewRequestRemovedOneof1PropRequestedTeamPropParent", - "WebhookPullRequestReviewRequestRemovedOneof1PropPullRequest", - "WebhookPullRequestReviewRequestRemovedOneof1PropPullRequestPropAssignee", - "WebhookPullRequestReviewRequestRemovedOneof1PropPullRequestPropAssigneesItems", - "WebhookPullRequestReviewRequestRemovedOneof1PropPullRequestPropAutoMerge", - "WebhookPullRequestReviewRequestRemovedOneof1PropPullRequestPropAutoMergePropEnabledBy", - "WebhookPullRequestReviewRequestRemovedOneof1PropPullRequestPropLabelsItems", - "WebhookPullRequestReviewRequestRemovedOneof1PropPullRequestPropMergedBy", - "WebhookPullRequestReviewRequestRemovedOneof1PropPullRequestPropMilestone", - "WebhookPullRequestReviewRequestRemovedOneof1PropPullRequestPropMilestonePropCreator", - "WebhookPullRequestReviewRequestRemovedOneof1PropPullRequestPropRequestedReviewersItemsOneof0", - "WebhookPullRequestReviewRequestRemovedOneof1PropPullRequestPropUser", - "WebhookPullRequestReviewRequestRemovedOneof1PropPullRequestPropLinks", - "WebhookPullRequestReviewRequestRemovedOneof1PropPullRequestPropLinksPropComments", - "WebhookPullRequestReviewRequestRemovedOneof1PropPullRequestPropLinksPropCommits", - "WebhookPullRequestReviewRequestRemovedOneof1PropPullRequestPropLinksPropHtml", - "WebhookPullRequestReviewRequestRemovedOneof1PropPullRequestPropLinksPropIssue", - "WebhookPullRequestReviewRequestRemovedOneof1PropPullRequestPropLinksPropReviewComment", - "WebhookPullRequestReviewRequestRemovedOneof1PropPullRequestPropLinksPropReviewComments", - "WebhookPullRequestReviewRequestRemovedOneof1PropPullRequestPropLinksPropSelf", - "WebhookPullRequestReviewRequestRemovedOneof1PropPullRequestPropLinksPropStatuses", - "WebhookPullRequestReviewRequestRemovedOneof1PropPullRequestPropBase", - "WebhookPullRequestReviewRequestRemovedOneof1PropPullRequestPropBasePropUser", - "WebhookPullRequestReviewRequestRemovedOneof1PropPullRequestPropBasePropRepo", - "WebhookPullRequestReviewRequestRemovedOneof1PropPullRequestPropBasePropRepoPropLicense", - "WebhookPullRequestReviewRequestRemovedOneof1PropPullRequestPropBasePropRepoPropOwner", - "WebhookPullRequestReviewRequestRemovedOneof1PropPullRequestPropBasePropRepoPropPermissions", - "WebhookPullRequestReviewRequestRemovedOneof1PropPullRequestPropHead", - "WebhookPullRequestReviewRequestRemovedOneof1PropPullRequestPropHeadPropUser", - "WebhookPullRequestReviewRequestRemovedOneof1PropPullRequestPropHeadPropRepo", - "WebhookPullRequestReviewRequestRemovedOneof1PropPullRequestPropHeadPropRepoPropLicense", - "WebhookPullRequestReviewRequestRemovedOneof1PropPullRequestPropHeadPropRepoPropOwner", - "WebhookPullRequestReviewRequestRemovedOneof1PropPullRequestPropHeadPropRepoPropPermissions", - "WebhookPullRequestReviewRequestRemovedOneof1PropPullRequestPropRequestedReviewersItemsOneof1", - "WebhookPullRequestReviewRequestRemovedOneof1PropPullRequestPropRequestedReviewersItemsOneof1PropParent", - "WebhookPullRequestReviewRequestRemovedOneof1PropPullRequestPropRequestedTeamsItems", - "WebhookPullRequestReviewRequestRemovedOneof1PropPullRequestPropRequestedTeamsItemsPropParent", - "WebhookPullRequestReviewRequestedOneof0", - "WebhookPullRequestReviewRequestedOneof0PropRequestedReviewer", - "WebhookPullRequestReviewRequestedOneof0PropPullRequest", - "WebhookPullRequestReviewRequestedOneof0PropPullRequestPropAssignee", - "WebhookPullRequestReviewRequestedOneof0PropPullRequestPropAssigneesItems", - "WebhookPullRequestReviewRequestedOneof0PropPullRequestPropAutoMerge", - "WebhookPullRequestReviewRequestedOneof0PropPullRequestPropAutoMergePropEnabledBy", - "WebhookPullRequestReviewRequestedOneof0PropPullRequestPropLabelsItems", - "WebhookPullRequestReviewRequestedOneof0PropPullRequestPropMergedBy", - "WebhookPullRequestReviewRequestedOneof0PropPullRequestPropMilestone", - "WebhookPullRequestReviewRequestedOneof0PropPullRequestPropMilestonePropCreator", - "WebhookPullRequestReviewRequestedOneof0PropPullRequestPropRequestedReviewersItemsOneof0", - "WebhookPullRequestReviewRequestedOneof0PropPullRequestPropUser", - "WebhookPullRequestReviewRequestedOneof0PropPullRequestPropLinks", - "WebhookPullRequestReviewRequestedOneof0PropPullRequestPropLinksPropComments", - "WebhookPullRequestReviewRequestedOneof0PropPullRequestPropLinksPropCommits", - "WebhookPullRequestReviewRequestedOneof0PropPullRequestPropLinksPropHtml", - "WebhookPullRequestReviewRequestedOneof0PropPullRequestPropLinksPropIssue", - "WebhookPullRequestReviewRequestedOneof0PropPullRequestPropLinksPropReviewComment", - "WebhookPullRequestReviewRequestedOneof0PropPullRequestPropLinksPropReviewComments", - "WebhookPullRequestReviewRequestedOneof0PropPullRequestPropLinksPropSelf", - "WebhookPullRequestReviewRequestedOneof0PropPullRequestPropLinksPropStatuses", - "WebhookPullRequestReviewRequestedOneof0PropPullRequestPropBase", - "WebhookPullRequestReviewRequestedOneof0PropPullRequestPropBasePropUser", - "WebhookPullRequestReviewRequestedOneof0PropPullRequestPropBasePropRepo", - "WebhookPullRequestReviewRequestedOneof0PropPullRequestPropBasePropRepoPropLicense", - "WebhookPullRequestReviewRequestedOneof0PropPullRequestPropBasePropRepoPropOwner", - "WebhookPullRequestReviewRequestedOneof0PropPullRequestPropBasePropRepoPropPermissions", - "WebhookPullRequestReviewRequestedOneof0PropPullRequestPropHead", - "WebhookPullRequestReviewRequestedOneof0PropPullRequestPropHeadPropUser", - "WebhookPullRequestReviewRequestedOneof0PropPullRequestPropHeadPropRepo", - "WebhookPullRequestReviewRequestedOneof0PropPullRequestPropHeadPropRepoPropLicense", - "WebhookPullRequestReviewRequestedOneof0PropPullRequestPropHeadPropRepoPropOwner", - "WebhookPullRequestReviewRequestedOneof0PropPullRequestPropHeadPropRepoPropPermissions", - "WebhookPullRequestReviewRequestedOneof0PropPullRequestPropRequestedReviewersItemsOneof1", - "WebhookPullRequestReviewRequestedOneof0PropPullRequestPropRequestedReviewersItemsOneof1PropParent", - "WebhookPullRequestReviewRequestedOneof0PropPullRequestPropRequestedTeamsItems", - "WebhookPullRequestReviewRequestedOneof0PropPullRequestPropRequestedTeamsItemsPropParent", - "WebhookPullRequestReviewRequestedOneof1", - "WebhookPullRequestReviewRequestedOneof1PropRequestedTeam", - "WebhookPullRequestReviewRequestedOneof1PropRequestedTeamPropParent", - "WebhookPullRequestReviewRequestedOneof1PropPullRequest", - "WebhookPullRequestReviewRequestedOneof1PropPullRequestPropAssignee", - "WebhookPullRequestReviewRequestedOneof1PropPullRequestPropAssigneesItems", - "WebhookPullRequestReviewRequestedOneof1PropPullRequestPropAutoMerge", - "WebhookPullRequestReviewRequestedOneof1PropPullRequestPropAutoMergePropEnabledBy", - "WebhookPullRequestReviewRequestedOneof1PropPullRequestPropLabelsItems", - "WebhookPullRequestReviewRequestedOneof1PropPullRequestPropMergedBy", - "WebhookPullRequestReviewRequestedOneof1PropPullRequestPropMilestone", - "WebhookPullRequestReviewRequestedOneof1PropPullRequestPropMilestonePropCreator", - "WebhookPullRequestReviewRequestedOneof1PropPullRequestPropRequestedReviewersItemsOneof0", - "WebhookPullRequestReviewRequestedOneof1PropPullRequestPropUser", - "WebhookPullRequestReviewRequestedOneof1PropPullRequestPropLinks", - "WebhookPullRequestReviewRequestedOneof1PropPullRequestPropLinksPropComments", - "WebhookPullRequestReviewRequestedOneof1PropPullRequestPropLinksPropCommits", - "WebhookPullRequestReviewRequestedOneof1PropPullRequestPropLinksPropHtml", - "WebhookPullRequestReviewRequestedOneof1PropPullRequestPropLinksPropIssue", - "WebhookPullRequestReviewRequestedOneof1PropPullRequestPropLinksPropReviewComment", - "WebhookPullRequestReviewRequestedOneof1PropPullRequestPropLinksPropReviewComments", - "WebhookPullRequestReviewRequestedOneof1PropPullRequestPropLinksPropSelf", - "WebhookPullRequestReviewRequestedOneof1PropPullRequestPropLinksPropStatuses", - "WebhookPullRequestReviewRequestedOneof1PropPullRequestPropBase", - "WebhookPullRequestReviewRequestedOneof1PropPullRequestPropBasePropUser", - "WebhookPullRequestReviewRequestedOneof1PropPullRequestPropBasePropRepo", - "WebhookPullRequestReviewRequestedOneof1PropPullRequestPropBasePropRepoPropLicense", - "WebhookPullRequestReviewRequestedOneof1PropPullRequestPropBasePropRepoPropOwner", - "WebhookPullRequestReviewRequestedOneof1PropPullRequestPropBasePropRepoPropPermissions", - "WebhookPullRequestReviewRequestedOneof1PropPullRequestPropHead", - "WebhookPullRequestReviewRequestedOneof1PropPullRequestPropHeadPropUser", - "WebhookPullRequestReviewRequestedOneof1PropPullRequestPropHeadPropRepo", - "WebhookPullRequestReviewRequestedOneof1PropPullRequestPropHeadPropRepoPropLicense", - "WebhookPullRequestReviewRequestedOneof1PropPullRequestPropHeadPropRepoPropOwner", - "WebhookPullRequestReviewRequestedOneof1PropPullRequestPropHeadPropRepoPropPermissions", - "WebhookPullRequestReviewRequestedOneof1PropPullRequestPropRequestedReviewersItemsOneof1", - "WebhookPullRequestReviewRequestedOneof1PropPullRequestPropRequestedReviewersItemsOneof1PropParent", - "WebhookPullRequestReviewRequestedOneof1PropPullRequestPropRequestedTeamsItems", - "WebhookPullRequestReviewRequestedOneof1PropPullRequestPropRequestedTeamsItemsPropParent", - "WebhookPullRequestReviewSubmitted", - "WebhookPullRequestReviewSubmittedPropPullRequest", - "WebhookPullRequestReviewSubmittedPropPullRequestPropAssignee", - "WebhookPullRequestReviewSubmittedPropPullRequestPropAssigneesItems", - "WebhookPullRequestReviewSubmittedPropPullRequestPropAutoMerge", - "WebhookPullRequestReviewSubmittedPropPullRequestPropAutoMergePropEnabledBy", - "WebhookPullRequestReviewSubmittedPropPullRequestPropLabelsItems", - "WebhookPullRequestReviewSubmittedPropPullRequestPropMilestone", - "WebhookPullRequestReviewSubmittedPropPullRequestPropMilestonePropCreator", - "WebhookPullRequestReviewSubmittedPropPullRequestPropRequestedReviewersItemsOneof0", - "WebhookPullRequestReviewSubmittedPropPullRequestPropUser", - "WebhookPullRequestReviewSubmittedPropPullRequestPropLinks", - "WebhookPullRequestReviewSubmittedPropPullRequestPropLinksPropComments", - "WebhookPullRequestReviewSubmittedPropPullRequestPropLinksPropCommits", - "WebhookPullRequestReviewSubmittedPropPullRequestPropLinksPropHtml", - "WebhookPullRequestReviewSubmittedPropPullRequestPropLinksPropIssue", - "WebhookPullRequestReviewSubmittedPropPullRequestPropLinksPropReviewComment", - "WebhookPullRequestReviewSubmittedPropPullRequestPropLinksPropReviewComments", - "WebhookPullRequestReviewSubmittedPropPullRequestPropLinksPropSelf", - "WebhookPullRequestReviewSubmittedPropPullRequestPropLinksPropStatuses", - "WebhookPullRequestReviewSubmittedPropPullRequestPropBase", - "WebhookPullRequestReviewSubmittedPropPullRequestPropBasePropUser", - "WebhookPullRequestReviewSubmittedPropPullRequestPropBasePropRepo", - "WebhookPullRequestReviewSubmittedPropPullRequestPropBasePropRepoPropLicense", - "WebhookPullRequestReviewSubmittedPropPullRequestPropBasePropRepoPropOwner", - "WebhookPullRequestReviewSubmittedPropPullRequestPropBasePropRepoPropPermissions", - "WebhookPullRequestReviewSubmittedPropPullRequestPropHead", - "WebhookPullRequestReviewSubmittedPropPullRequestPropHeadPropRepo", - "WebhookPullRequestReviewSubmittedPropPullRequestPropHeadPropRepoPropLicense", - "WebhookPullRequestReviewSubmittedPropPullRequestPropHeadPropRepoPropOwner", - "WebhookPullRequestReviewSubmittedPropPullRequestPropHeadPropRepoPropPermissions", - "WebhookPullRequestReviewSubmittedPropPullRequestPropHeadPropUser", - "WebhookPullRequestReviewSubmittedPropPullRequestPropRequestedReviewersItemsOneof1", - "WebhookPullRequestReviewSubmittedPropPullRequestPropRequestedReviewersItemsOneof1PropParent", - "WebhookPullRequestReviewSubmittedPropPullRequestPropRequestedTeamsItems", - "WebhookPullRequestReviewSubmittedPropPullRequestPropRequestedTeamsItemsPropParent", - "WebhookPullRequestReviewThreadResolved", - "WebhookPullRequestReviewThreadResolvedPropPullRequest", - "WebhookPullRequestReviewThreadResolvedPropPullRequestPropAssignee", - "WebhookPullRequestReviewThreadResolvedPropPullRequestPropAssigneesItems", - "WebhookPullRequestReviewThreadResolvedPropPullRequestPropAutoMerge", - "WebhookPullRequestReviewThreadResolvedPropPullRequestPropAutoMergePropEnabledBy", - "WebhookPullRequestReviewThreadResolvedPropPullRequestPropLabelsItems", - "WebhookPullRequestReviewThreadResolvedPropPullRequestPropMilestone", - "WebhookPullRequestReviewThreadResolvedPropPullRequestPropMilestonePropCreator", - "WebhookPullRequestReviewThreadResolvedPropPullRequestPropRequestedReviewersItemsOneof0", - "WebhookPullRequestReviewThreadResolvedPropPullRequestPropUser", - "WebhookPullRequestReviewThreadResolvedPropPullRequestPropLinks", - "WebhookPullRequestReviewThreadResolvedPropPullRequestPropLinksPropComments", - "WebhookPullRequestReviewThreadResolvedPropPullRequestPropLinksPropCommits", - "WebhookPullRequestReviewThreadResolvedPropPullRequestPropLinksPropHtml", - "WebhookPullRequestReviewThreadResolvedPropPullRequestPropLinksPropIssue", - "WebhookPullRequestReviewThreadResolvedPropPullRequestPropLinksPropReviewComment", - "WebhookPullRequestReviewThreadResolvedPropPullRequestPropLinksPropReviewComments", - "WebhookPullRequestReviewThreadResolvedPropPullRequestPropLinksPropSelf", - "WebhookPullRequestReviewThreadResolvedPropPullRequestPropLinksPropStatuses", - "WebhookPullRequestReviewThreadResolvedPropPullRequestPropBase", - "WebhookPullRequestReviewThreadResolvedPropPullRequestPropBasePropUser", - "WebhookPullRequestReviewThreadResolvedPropPullRequestPropBasePropRepo", - "WebhookPullRequestReviewThreadResolvedPropPullRequestPropBasePropRepoPropLicense", - "WebhookPullRequestReviewThreadResolvedPropPullRequestPropBasePropRepoPropOwner", - "WebhookPullRequestReviewThreadResolvedPropPullRequestPropBasePropRepoPropPermissions", - "WebhookPullRequestReviewThreadResolvedPropPullRequestPropHead", - "WebhookPullRequestReviewThreadResolvedPropPullRequestPropHeadPropRepo", - "WebhookPullRequestReviewThreadResolvedPropPullRequestPropHeadPropRepoPropLicense", - "WebhookPullRequestReviewThreadResolvedPropPullRequestPropHeadPropRepoPropOwner", - "WebhookPullRequestReviewThreadResolvedPropPullRequestPropHeadPropRepoPropPermissions", - "WebhookPullRequestReviewThreadResolvedPropPullRequestPropHeadPropUser", - "WebhookPullRequestReviewThreadResolvedPropPullRequestPropRequestedReviewersItemsOneof1", - "WebhookPullRequestReviewThreadResolvedPropPullRequestPropRequestedReviewersItemsOneof1PropParent", - "WebhookPullRequestReviewThreadResolvedPropPullRequestPropRequestedTeamsItems", - "WebhookPullRequestReviewThreadResolvedPropPullRequestPropRequestedTeamsItemsPropParent", - "WebhookPullRequestReviewThreadResolvedPropThread", - "WebhookPullRequestReviewThreadResolvedPropThreadPropCommentsItems", - "WebhookPullRequestReviewThreadResolvedPropThreadPropCommentsItemsPropReactions", - "WebhookPullRequestReviewThreadResolvedPropThreadPropCommentsItemsPropUser", - "WebhookPullRequestReviewThreadResolvedPropThreadPropCommentsItemsPropLinks", - "WebhookPullRequestReviewThreadResolvedPropThreadPropCommentsItemsPropLinksPropHtml", - "WebhookPullRequestReviewThreadResolvedPropThreadPropCommentsItemsPropLinksPropPullRequest", - "WebhookPullRequestReviewThreadResolvedPropThreadPropCommentsItemsPropLinksPropSelf", - "WebhookPullRequestReviewThreadUnresolved", - "WebhookPullRequestReviewThreadUnresolvedPropPullRequest", - "WebhookPullRequestReviewThreadUnresolvedPropPullRequestPropAssignee", - "WebhookPullRequestReviewThreadUnresolvedPropPullRequestPropAssigneesItems", - "WebhookPullRequestReviewThreadUnresolvedPropPullRequestPropAutoMerge", - "WebhookPullRequestReviewThreadUnresolvedPropPullRequestPropAutoMergePropEnabledBy", - "WebhookPullRequestReviewThreadUnresolvedPropPullRequestPropLabelsItems", - "WebhookPullRequestReviewThreadUnresolvedPropPullRequestPropMilestone", - "WebhookPullRequestReviewThreadUnresolvedPropPullRequestPropMilestonePropCreator", - "WebhookPullRequestReviewThreadUnresolvedPropPullRequestPropRequestedReviewersItemsOneof0", - "WebhookPullRequestReviewThreadUnresolvedPropPullRequestPropUser", - "WebhookPullRequestReviewThreadUnresolvedPropPullRequestPropLinks", - "WebhookPullRequestReviewThreadUnresolvedPropPullRequestPropLinksPropComments", - "WebhookPullRequestReviewThreadUnresolvedPropPullRequestPropLinksPropCommits", - "WebhookPullRequestReviewThreadUnresolvedPropPullRequestPropLinksPropHtml", - "WebhookPullRequestReviewThreadUnresolvedPropPullRequestPropLinksPropIssue", - "WebhookPullRequestReviewThreadUnresolvedPropPullRequestPropLinksPropReviewComment", - "WebhookPullRequestReviewThreadUnresolvedPropPullRequestPropLinksPropReviewComments", - "WebhookPullRequestReviewThreadUnresolvedPropPullRequestPropLinksPropSelf", - "WebhookPullRequestReviewThreadUnresolvedPropPullRequestPropLinksPropStatuses", - "WebhookPullRequestReviewThreadUnresolvedPropPullRequestPropBase", - "WebhookPullRequestReviewThreadUnresolvedPropPullRequestPropBasePropUser", - "WebhookPullRequestReviewThreadUnresolvedPropPullRequestPropBasePropRepo", - "WebhookPullRequestReviewThreadUnresolvedPropPullRequestPropBasePropRepoPropLicense", - "WebhookPullRequestReviewThreadUnresolvedPropPullRequestPropBasePropRepoPropOwner", - "WebhookPullRequestReviewThreadUnresolvedPropPullRequestPropBasePropRepoPropPermissions", - "WebhookPullRequestReviewThreadUnresolvedPropPullRequestPropHead", - "WebhookPullRequestReviewThreadUnresolvedPropPullRequestPropHeadPropUser", - "WebhookPullRequestReviewThreadUnresolvedPropPullRequestPropHeadPropRepo", - "WebhookPullRequestReviewThreadUnresolvedPropPullRequestPropHeadPropRepoPropLicense", - "WebhookPullRequestReviewThreadUnresolvedPropPullRequestPropHeadPropRepoPropOwner", - "WebhookPullRequestReviewThreadUnresolvedPropPullRequestPropHeadPropRepoPropPermissions", - "WebhookPullRequestReviewThreadUnresolvedPropPullRequestPropRequestedReviewersItemsOneof1", - "WebhookPullRequestReviewThreadUnresolvedPropPullRequestPropRequestedReviewersItemsOneof1PropParent", - "WebhookPullRequestReviewThreadUnresolvedPropPullRequestPropRequestedTeamsItems", - "WebhookPullRequestReviewThreadUnresolvedPropPullRequestPropRequestedTeamsItemsPropParent", - "WebhookPullRequestReviewThreadUnresolvedPropThread", - "WebhookPullRequestReviewThreadUnresolvedPropThreadPropCommentsItems", - "WebhookPullRequestReviewThreadUnresolvedPropThreadPropCommentsItemsPropReactions", - "WebhookPullRequestReviewThreadUnresolvedPropThreadPropCommentsItemsPropUser", - "WebhookPullRequestReviewThreadUnresolvedPropThreadPropCommentsItemsPropLinks", - "WebhookPullRequestReviewThreadUnresolvedPropThreadPropCommentsItemsPropLinksPropHtml", - "WebhookPullRequestReviewThreadUnresolvedPropThreadPropCommentsItemsPropLinksPropPullRequest", - "WebhookPullRequestReviewThreadUnresolvedPropThreadPropCommentsItemsPropLinksPropSelf", - "WebhookPullRequestSynchronize", - "WebhookPullRequestSynchronizePropPullRequest", - "WebhookPullRequestSynchronizePropPullRequestPropAssignee", - "WebhookPullRequestSynchronizePropPullRequestPropAssigneesItems", - "WebhookPullRequestSynchronizePropPullRequestPropAutoMerge", - "WebhookPullRequestSynchronizePropPullRequestPropAutoMergePropEnabledBy", - "WebhookPullRequestSynchronizePropPullRequestPropLabelsItems", - "WebhookPullRequestSynchronizePropPullRequestPropMergedBy", - "WebhookPullRequestSynchronizePropPullRequestPropMilestone", - "WebhookPullRequestSynchronizePropPullRequestPropMilestonePropCreator", - "WebhookPullRequestSynchronizePropPullRequestPropRequestedReviewersItemsOneof0", - "WebhookPullRequestSynchronizePropPullRequestPropUser", - "WebhookPullRequestSynchronizePropPullRequestPropLinks", - "WebhookPullRequestSynchronizePropPullRequestPropLinksPropComments", - "WebhookPullRequestSynchronizePropPullRequestPropLinksPropCommits", - "WebhookPullRequestSynchronizePropPullRequestPropLinksPropHtml", - "WebhookPullRequestSynchronizePropPullRequestPropLinksPropIssue", - "WebhookPullRequestSynchronizePropPullRequestPropLinksPropReviewComment", - "WebhookPullRequestSynchronizePropPullRequestPropLinksPropReviewComments", - "WebhookPullRequestSynchronizePropPullRequestPropLinksPropSelf", - "WebhookPullRequestSynchronizePropPullRequestPropLinksPropStatuses", - "WebhookPullRequestSynchronizePropPullRequestPropBase", - "WebhookPullRequestSynchronizePropPullRequestPropBasePropUser", - "WebhookPullRequestSynchronizePropPullRequestPropBasePropRepo", - "WebhookPullRequestSynchronizePropPullRequestPropBasePropRepoPropLicense", - "WebhookPullRequestSynchronizePropPullRequestPropBasePropRepoPropOwner", - "WebhookPullRequestSynchronizePropPullRequestPropBasePropRepoPropPermissions", - "WebhookPullRequestSynchronizePropPullRequestPropHead", - "WebhookPullRequestSynchronizePropPullRequestPropHeadPropUser", - "WebhookPullRequestSynchronizePropPullRequestPropHeadPropRepo", - "WebhookPullRequestSynchronizePropPullRequestPropHeadPropRepoPropLicense", - "WebhookPullRequestSynchronizePropPullRequestPropHeadPropRepoPropOwner", - "WebhookPullRequestSynchronizePropPullRequestPropHeadPropRepoPropPermissions", - "WebhookPullRequestSynchronizePropPullRequestPropRequestedReviewersItemsOneof1", - "WebhookPullRequestSynchronizePropPullRequestPropRequestedReviewersItemsOneof1PropParent", - "WebhookPullRequestSynchronizePropPullRequestPropRequestedTeamsItems", - "WebhookPullRequestSynchronizePropPullRequestPropRequestedTeamsItemsPropParent", - "WebhookPullRequestUnassigned", - "WebhookPullRequestUnassignedPropPullRequest", - "WebhookPullRequestUnassignedPropPullRequestPropAssignee", - "WebhookPullRequestUnassignedPropPullRequestPropAssigneesItems", - "WebhookPullRequestUnassignedPropPullRequestPropAutoMerge", - "WebhookPullRequestUnassignedPropPullRequestPropAutoMergePropEnabledBy", - "WebhookPullRequestUnassignedPropPullRequestPropLabelsItems", - "WebhookPullRequestUnassignedPropPullRequestPropMergedBy", - "WebhookPullRequestUnassignedPropPullRequestPropMilestone", - "WebhookPullRequestUnassignedPropPullRequestPropMilestonePropCreator", - "WebhookPullRequestUnassignedPropPullRequestPropRequestedReviewersItemsOneof0", - "WebhookPullRequestUnassignedPropPullRequestPropUser", - "WebhookPullRequestUnassignedPropPullRequestPropLinks", - "WebhookPullRequestUnassignedPropPullRequestPropLinksPropComments", - "WebhookPullRequestUnassignedPropPullRequestPropLinksPropCommits", - "WebhookPullRequestUnassignedPropPullRequestPropLinksPropHtml", - "WebhookPullRequestUnassignedPropPullRequestPropLinksPropIssue", - "WebhookPullRequestUnassignedPropPullRequestPropLinksPropReviewComment", - "WebhookPullRequestUnassignedPropPullRequestPropLinksPropReviewComments", - "WebhookPullRequestUnassignedPropPullRequestPropLinksPropSelf", - "WebhookPullRequestUnassignedPropPullRequestPropLinksPropStatuses", - "WebhookPullRequestUnassignedPropPullRequestPropBase", - "WebhookPullRequestUnassignedPropPullRequestPropBasePropUser", - "WebhookPullRequestUnassignedPropPullRequestPropBasePropRepo", - "WebhookPullRequestUnassignedPropPullRequestPropBasePropRepoPropLicense", - "WebhookPullRequestUnassignedPropPullRequestPropBasePropRepoPropOwner", - "WebhookPullRequestUnassignedPropPullRequestPropBasePropRepoPropPermissions", - "WebhookPullRequestUnassignedPropPullRequestPropHead", - "WebhookPullRequestUnassignedPropPullRequestPropHeadPropRepo", - "WebhookPullRequestUnassignedPropPullRequestPropHeadPropRepoPropLicense", - "WebhookPullRequestUnassignedPropPullRequestPropHeadPropRepoPropOwner", - "WebhookPullRequestUnassignedPropPullRequestPropHeadPropRepoPropPermissions", - "WebhookPullRequestUnassignedPropPullRequestPropHeadPropUser", - "WebhookPullRequestUnassignedPropPullRequestPropRequestedReviewersItemsOneof1", - "WebhookPullRequestUnassignedPropPullRequestPropRequestedReviewersItemsOneof1PropParent", - "WebhookPullRequestUnassignedPropPullRequestPropRequestedTeamsItems", - "WebhookPullRequestUnassignedPropPullRequestPropRequestedTeamsItemsPropParent", - "WebhookPullRequestUnlabeled", - "WebhookPullRequestUnlabeledPropPullRequest", - "WebhookPullRequestUnlabeledPropPullRequestPropAssignee", - "WebhookPullRequestUnlabeledPropPullRequestPropAssigneesItems", - "WebhookPullRequestUnlabeledPropPullRequestPropAutoMerge", - "WebhookPullRequestUnlabeledPropPullRequestPropAutoMergePropEnabledBy", - "WebhookPullRequestUnlabeledPropPullRequestPropLabelsItems", - "WebhookPullRequestUnlabeledPropPullRequestPropMergedBy", - "WebhookPullRequestUnlabeledPropPullRequestPropMilestone", - "WebhookPullRequestUnlabeledPropPullRequestPropMilestonePropCreator", - "WebhookPullRequestUnlabeledPropPullRequestPropRequestedReviewersItemsOneof0", - "WebhookPullRequestUnlabeledPropPullRequestPropUser", - "WebhookPullRequestUnlabeledPropPullRequestPropLinks", - "WebhookPullRequestUnlabeledPropPullRequestPropLinksPropComments", - "WebhookPullRequestUnlabeledPropPullRequestPropLinksPropCommits", - "WebhookPullRequestUnlabeledPropPullRequestPropLinksPropHtml", - "WebhookPullRequestUnlabeledPropPullRequestPropLinksPropIssue", - "WebhookPullRequestUnlabeledPropPullRequestPropLinksPropReviewComment", - "WebhookPullRequestUnlabeledPropPullRequestPropLinksPropReviewComments", - "WebhookPullRequestUnlabeledPropPullRequestPropLinksPropSelf", - "WebhookPullRequestUnlabeledPropPullRequestPropLinksPropStatuses", - "WebhookPullRequestUnlabeledPropPullRequestPropBase", - "WebhookPullRequestUnlabeledPropPullRequestPropBasePropUser", - "WebhookPullRequestUnlabeledPropPullRequestPropBasePropRepo", - "WebhookPullRequestUnlabeledPropPullRequestPropBasePropRepoPropLicense", - "WebhookPullRequestUnlabeledPropPullRequestPropBasePropRepoPropOwner", - "WebhookPullRequestUnlabeledPropPullRequestPropBasePropRepoPropPermissions", - "WebhookPullRequestUnlabeledPropPullRequestPropHead", - "WebhookPullRequestUnlabeledPropPullRequestPropHeadPropRepo", - "WebhookPullRequestUnlabeledPropPullRequestPropHeadPropRepoPropLicense", - "WebhookPullRequestUnlabeledPropPullRequestPropHeadPropRepoPropOwner", - "WebhookPullRequestUnlabeledPropPullRequestPropHeadPropRepoPropPermissions", - "WebhookPullRequestUnlabeledPropPullRequestPropHeadPropUser", - "WebhookPullRequestUnlabeledPropPullRequestPropRequestedReviewersItemsOneof1", - "WebhookPullRequestUnlabeledPropPullRequestPropRequestedReviewersItemsOneof1PropParent", - "WebhookPullRequestUnlabeledPropPullRequestPropRequestedTeamsItems", - "WebhookPullRequestUnlabeledPropPullRequestPropRequestedTeamsItemsPropParent", - "WebhookPullRequestUnlocked", - "WebhookPullRequestUnlockedPropPullRequest", - "WebhookPullRequestUnlockedPropPullRequestPropAssignee", - "WebhookPullRequestUnlockedPropPullRequestPropAssigneesItems", - "WebhookPullRequestUnlockedPropPullRequestPropAutoMerge", - "WebhookPullRequestUnlockedPropPullRequestPropAutoMergePropEnabledBy", - "WebhookPullRequestUnlockedPropPullRequestPropLabelsItems", - "WebhookPullRequestUnlockedPropPullRequestPropMergedBy", - "WebhookPullRequestUnlockedPropPullRequestPropMilestone", - "WebhookPullRequestUnlockedPropPullRequestPropMilestonePropCreator", - "WebhookPullRequestUnlockedPropPullRequestPropRequestedReviewersItemsOneof0", - "WebhookPullRequestUnlockedPropPullRequestPropUser", - "WebhookPullRequestUnlockedPropPullRequestPropLinks", - "WebhookPullRequestUnlockedPropPullRequestPropLinksPropComments", - "WebhookPullRequestUnlockedPropPullRequestPropLinksPropCommits", - "WebhookPullRequestUnlockedPropPullRequestPropLinksPropHtml", - "WebhookPullRequestUnlockedPropPullRequestPropLinksPropIssue", - "WebhookPullRequestUnlockedPropPullRequestPropLinksPropReviewComment", - "WebhookPullRequestUnlockedPropPullRequestPropLinksPropReviewComments", - "WebhookPullRequestUnlockedPropPullRequestPropLinksPropSelf", - "WebhookPullRequestUnlockedPropPullRequestPropLinksPropStatuses", - "WebhookPullRequestUnlockedPropPullRequestPropBase", - "WebhookPullRequestUnlockedPropPullRequestPropBasePropUser", - "WebhookPullRequestUnlockedPropPullRequestPropBasePropRepo", - "WebhookPullRequestUnlockedPropPullRequestPropBasePropRepoPropLicense", - "WebhookPullRequestUnlockedPropPullRequestPropBasePropRepoPropOwner", - "WebhookPullRequestUnlockedPropPullRequestPropBasePropRepoPropPermissions", - "WebhookPullRequestUnlockedPropPullRequestPropHead", - "WebhookPullRequestUnlockedPropPullRequestPropHeadPropRepo", - "WebhookPullRequestUnlockedPropPullRequestPropHeadPropRepoPropLicense", - "WebhookPullRequestUnlockedPropPullRequestPropHeadPropRepoPropOwner", - "WebhookPullRequestUnlockedPropPullRequestPropHeadPropRepoPropPermissions", - "WebhookPullRequestUnlockedPropPullRequestPropHeadPropUser", - "WebhookPullRequestUnlockedPropPullRequestPropRequestedReviewersItemsOneof1", - "WebhookPullRequestUnlockedPropPullRequestPropRequestedReviewersItemsOneof1PropParent", - "WebhookPullRequestUnlockedPropPullRequestPropRequestedTeamsItems", - "WebhookPullRequestUnlockedPropPullRequestPropRequestedTeamsItemsPropParent", - "WebhookPush", - "WebhookPushPropHeadCommit", - "WebhookPushPropHeadCommitPropAuthor", - "WebhookPushPropHeadCommitPropCommitter", - "WebhookPushPropPusher", - "WebhookPushPropCommitsItems", - "WebhookPushPropCommitsItemsPropAuthor", - "WebhookPushPropCommitsItemsPropCommitter", - "WebhookPushPropRepository", - "WebhookPushPropRepositoryPropCustomProperties", - "WebhookPushPropRepositoryPropLicense", - "WebhookPushPropRepositoryPropOwner", - "WebhookPushPropRepositoryPropPermissions", - "WebhookRegistryPackagePublished", - "WebhookRegistryPackagePublishedPropRegistryPackage", - "WebhookRegistryPackagePublishedPropRegistryPackagePropOwner", - "WebhookRegistryPackagePublishedPropRegistryPackagePropRegistry", - "WebhookRegistryPackagePublishedPropRegistryPackagePropPackageVersion", - "WebhookRegistryPackagePublishedPropRegistryPackagePropPackageVersionPropAuthor", - "WebhookRegistryPackagePublishedPropRegistryPackagePropPackageVersionPropBodyOneof1", - "WebhookRegistryPackagePublishedPropRegistryPackagePropPackageVersionPropDockerMetadataItems", - "WebhookRegistryPackagePublishedPropRegistryPackagePropPackageVersionPropMetadataItems", - "WebhookRegistryPackagePublishedPropRegistryPackagePropPackageVersionPropNpmMetadata", - "WebhookRegistryPackagePublishedPropRegistryPackagePropPackageVersionPropNpmMetadataPropAuthorOneof1", - "WebhookRegistryPackagePublishedPropRegistryPackagePropPackageVersionPropNpmMetadataPropBugsOneof1", - "WebhookRegistryPackagePublishedPropRegistryPackagePropPackageVersionPropNpmMetadataPropDependencies", - "WebhookRegistryPackagePublishedPropRegistryPackagePropPackageVersionPropNpmMetadataPropDevDependencies", - "WebhookRegistryPackagePublishedPropRegistryPackagePropPackageVersionPropNpmMetadataPropPeerDependencies", - "WebhookRegistryPackagePublishedPropRegistryPackagePropPackageVersionPropNpmMetadataPropOptionalDependencies", - "WebhookRegistryPackagePublishedPropRegistryPackagePropPackageVersionPropNpmMetadataPropDistOneof1", - "WebhookRegistryPackagePublishedPropRegistryPackagePropPackageVersionPropNpmMetadataPropRepositoryOneof1", - "WebhookRegistryPackagePublishedPropRegistryPackagePropPackageVersionPropNpmMetadataPropScripts", - "WebhookRegistryPackagePublishedPropRegistryPackagePropPackageVersionPropNpmMetadataPropEngines", - "WebhookRegistryPackagePublishedPropRegistryPackagePropPackageVersionPropNpmMetadataPropBin", - "WebhookRegistryPackagePublishedPropRegistryPackagePropPackageVersionPropNpmMetadataPropMan", - "WebhookRegistryPackagePublishedPropRegistryPackagePropPackageVersionPropNpmMetadataPropDirectoriesOneof1", - "WebhookRegistryPackagePublishedPropRegistryPackagePropPackageVersionPropPackageFilesItems", - "WebhookRegistryPackagePublishedPropRegistryPackagePropPackageVersionPropContainerMetadata", - "WebhookRegistryPackagePublishedPropRegistryPackagePropPackageVersionPropContainerMetadataPropLabels", - "WebhookRegistryPackagePublishedPropRegistryPackagePropPackageVersionPropContainerMetadataPropManifest", - "WebhookRegistryPackagePublishedPropRegistryPackagePropPackageVersionPropContainerMetadataPropTag", - "WebhookRegistryPackagePublishedPropRegistryPackagePropPackageVersionPropNugetMetadataItems", - "WebhookRegistryPackagePublishedPropRegistryPackagePropPackageVersionPropNugetMetadataItemsPropIdOneof1", - "WebhookRegistryPackagePublishedPropRegistryPackagePropPackageVersionPropNugetMetadataItemsPropValueOneof3", - "WebhookRegistryPackagePublishedPropRegistryPackagePropPackageVersionPropRelease", - "WebhookRegistryPackagePublishedPropRegistryPackagePropPackageVersionPropReleasePropAuthor", - "WebhookRegistryPackageUpdated", - "WebhookRegistryPackageUpdatedPropRegistryPackage", - "WebhookRegistryPackageUpdatedPropRegistryPackagePropOwner", - "WebhookRegistryPackageUpdatedPropRegistryPackagePropRegistry", - "WebhookRegistryPackageUpdatedPropRegistryPackagePropPackageVersion", - "WebhookRegistryPackageUpdatedPropRegistryPackagePropPackageVersionPropAuthor", - "WebhookRegistryPackageUpdatedPropRegistryPackagePropPackageVersionPropDockerMetadataItems", - "WebhookRegistryPackageUpdatedPropRegistryPackagePropPackageVersionPropMetadataItems", - "WebhookRegistryPackageUpdatedPropRegistryPackagePropPackageVersionPropPackageFilesItems", - "WebhookRegistryPackageUpdatedPropRegistryPackagePropPackageVersionPropRelease", - "WebhookRegistryPackageUpdatedPropRegistryPackagePropPackageVersionPropReleasePropAuthor", - "WebhookReleaseCreated", - "WebhookReleaseDeleted", - "WebhookReleaseEdited", - "WebhookReleaseEditedPropChanges", - "WebhookReleaseEditedPropChangesPropBody", - "WebhookReleaseEditedPropChangesPropName", - "WebhookReleaseEditedPropChangesPropTagName", - "WebhookReleaseEditedPropChangesPropMakeLatest", - "WebhookReleasePrereleased", - "WebhookReleasePrereleasedPropRelease", - "WebhookReleasePrereleasedPropReleasePropAssetsItems", - "WebhookReleasePrereleasedPropReleasePropAssetsItemsPropUploader", - "WebhookReleasePrereleasedPropReleasePropAuthor", - "WebhookReleasePrereleasedPropReleasePropReactions", - "WebhookReleasePublished", - "WebhookReleaseReleased", - "WebhookReleaseUnpublished", - "WebhookRepositoryAdvisoryPublished", - "WebhookRepositoryAdvisoryReported", - "WebhookRepositoryArchived", - "WebhookRepositoryCreated", - "WebhookRepositoryDeleted", - "WebhookRepositoryDispatchSample", - "WebhookRepositoryDispatchSamplePropClientPayload", - "WebhookRepositoryEdited", - "WebhookRepositoryEditedPropChanges", - "WebhookRepositoryEditedPropChangesPropDefaultBranch", - "WebhookRepositoryEditedPropChangesPropDescription", - "WebhookRepositoryEditedPropChangesPropHomepage", - "WebhookRepositoryEditedPropChangesPropTopics", - "WebhookRepositoryImport", - "WebhookRepositoryPrivatized", - "WebhookRepositoryPublicized", - "WebhookRepositoryRenamed", - "WebhookRepositoryRenamedPropChanges", - "WebhookRepositoryRenamedPropChangesPropRepository", - "WebhookRepositoryRenamedPropChangesPropRepositoryPropName", - "WebhookRepositoryRulesetCreated", - "WebhookRepositoryRulesetDeleted", - "WebhookRepositoryRulesetEdited", - "WebhookRepositoryRulesetEditedPropChanges", - "WebhookRepositoryRulesetEditedPropChangesPropName", - "WebhookRepositoryRulesetEditedPropChangesPropEnforcement", - "WebhookRepositoryRulesetEditedPropChangesPropConditions", - "WebhookRepositoryRulesetEditedPropChangesPropConditionsPropUpdatedItems", - "WebhookRepositoryRulesetEditedPropChangesPropConditionsPropUpdatedItemsPropChanges", - "WebhookRepositoryRulesetEditedPropChangesPropConditionsPropUpdatedItemsPropChangesPropConditionType", - "WebhookRepositoryRulesetEditedPropChangesPropConditionsPropUpdatedItemsPropChangesPropTarget", - "WebhookRepositoryRulesetEditedPropChangesPropConditionsPropUpdatedItemsPropChangesPropInclude", - "WebhookRepositoryRulesetEditedPropChangesPropConditionsPropUpdatedItemsPropChangesPropExclude", - "WebhookRepositoryRulesetEditedPropChangesPropRules", - "WebhookRepositoryRulesetEditedPropChangesPropRulesPropUpdatedItems", - "WebhookRepositoryRulesetEditedPropChangesPropRulesPropUpdatedItemsPropChanges", - "WebhookRepositoryRulesetEditedPropChangesPropRulesPropUpdatedItemsPropChangesPropConfiguration", - "WebhookRepositoryRulesetEditedPropChangesPropRulesPropUpdatedItemsPropChangesPropRuleType", - "WebhookRepositoryRulesetEditedPropChangesPropRulesPropUpdatedItemsPropChangesPropPattern", - "WebhookRepositoryTransferred", - "WebhookRepositoryTransferredPropChanges", - "WebhookRepositoryTransferredPropChangesPropOwner", - "WebhookRepositoryTransferredPropChangesPropOwnerPropFrom", - "WebhookRepositoryTransferredPropChangesPropOwnerPropFromPropOrganization", - "WebhookRepositoryTransferredPropChangesPropOwnerPropFromPropUser", - "WebhookRepositoryUnarchived", - "WebhookRepositoryVulnerabilityAlertCreate", - "WebhookRepositoryVulnerabilityAlertDismiss", - "WebhookRepositoryVulnerabilityAlertDismissPropAlert", - "WebhookRepositoryVulnerabilityAlertDismissPropAlertPropDismisser", - "WebhookRepositoryVulnerabilityAlertReopen", - "WebhookRepositoryVulnerabilityAlertResolve", - "WebhookRepositoryVulnerabilityAlertResolvePropAlert", - "WebhookRepositoryVulnerabilityAlertResolvePropAlertPropDismisser", - "WebhookSecretScanningAlertAssigned", - "WebhookSecretScanningAlertCreated", - "WebhookSecretScanningAlertLocationCreated", - "WebhookSecretScanningAlertLocationCreatedFormEncoded", - "WebhookSecretScanningAlertPubliclyLeaked", - "WebhookSecretScanningAlertReopened", - "WebhookSecretScanningAlertResolved", - "WebhookSecretScanningAlertUnassigned", - "WebhookSecretScanningAlertValidated", - "WebhookSecretScanningScanCompleted", - "WebhookSecurityAdvisoryPublished", - "WebhookSecurityAdvisoryUpdated", - "WebhookSecurityAdvisoryWithdrawn", - "WebhookSecurityAdvisoryWithdrawnPropSecurityAdvisory", - "WebhookSecurityAdvisoryWithdrawnPropSecurityAdvisoryPropCwesItems", - "WebhookSecurityAdvisoryWithdrawnPropSecurityAdvisoryPropIdentifiersItems", - "WebhookSecurityAdvisoryWithdrawnPropSecurityAdvisoryPropReferencesItems", - "WebhookSecurityAdvisoryWithdrawnPropSecurityAdvisoryPropVulnerabilitiesItems", - "WebhookSecurityAdvisoryWithdrawnPropSecurityAdvisoryPropVulnerabilitiesItemsPropFirstPatchedVersion", - "WebhookSecurityAdvisoryWithdrawnPropSecurityAdvisoryPropVulnerabilitiesItemsPropPackage", - "WebhookSecurityAndAnalysis", - "WebhookSecurityAndAnalysisPropChanges", - "WebhookSecurityAndAnalysisPropChangesPropFrom", - "WebhookSponsorshipCancelled", - "WebhookSponsorshipCreated", - "WebhookSponsorshipEdited", - "WebhookSponsorshipEditedPropChanges", - "WebhookSponsorshipEditedPropChangesPropPrivacyLevel", - "WebhookSponsorshipPendingCancellation", - "WebhookSponsorshipPendingTierChange", - "WebhookSponsorshipTierChanged", - "WebhookStarCreated", - "WebhookStarDeleted", - "WebhookStatus", - "WebhookStatusPropBranchesItems", - "WebhookStatusPropBranchesItemsPropCommit", - "WebhookStatusPropCommit", - "WebhookStatusPropCommitPropAuthor", - "WebhookStatusPropCommitPropCommitter", - "WebhookStatusPropCommitPropParentsItems", - "WebhookStatusPropCommitPropCommit", - "WebhookStatusPropCommitPropCommitPropAuthor", - "WebhookStatusPropCommitPropCommitPropCommitter", - "WebhookStatusPropCommitPropCommitPropTree", - "WebhookStatusPropCommitPropCommitPropVerification", - "WebhookStatusPropCommitPropCommitPropAuthorAllof0", - "WebhookStatusPropCommitPropCommitPropAuthorAllof1", - "WebhookStatusPropCommitPropCommitPropCommitterAllof0", - "WebhookStatusPropCommitPropCommitPropCommitterAllof1", - "WebhookSubIssuesParentIssueAdded", - "WebhookSubIssuesParentIssueRemoved", - "WebhookSubIssuesSubIssueAdded", - "WebhookSubIssuesSubIssueRemoved", - "WebhookTeamAdd", - "WebhookTeamAddedToRepository", - "WebhookTeamAddedToRepositoryPropRepository", - "WebhookTeamAddedToRepositoryPropRepositoryPropCustomProperties", - "WebhookTeamAddedToRepositoryPropRepositoryPropLicense", - "WebhookTeamAddedToRepositoryPropRepositoryPropOwner", - "WebhookTeamAddedToRepositoryPropRepositoryPropPermissions", - "WebhookTeamCreated", - "WebhookTeamCreatedPropRepository", - "WebhookTeamCreatedPropRepositoryPropCustomProperties", - "WebhookTeamCreatedPropRepositoryPropLicense", - "WebhookTeamCreatedPropRepositoryPropOwner", - "WebhookTeamCreatedPropRepositoryPropPermissions", - "WebhookTeamDeleted", - "WebhookTeamDeletedPropRepository", - "WebhookTeamDeletedPropRepositoryPropCustomProperties", - "WebhookTeamDeletedPropRepositoryPropLicense", - "WebhookTeamDeletedPropRepositoryPropOwner", - "WebhookTeamDeletedPropRepositoryPropPermissions", - "WebhookTeamEdited", - "WebhookTeamEditedPropRepository", - "WebhookTeamEditedPropRepositoryPropCustomProperties", - "WebhookTeamEditedPropRepositoryPropLicense", - "WebhookTeamEditedPropRepositoryPropOwner", - "WebhookTeamEditedPropRepositoryPropPermissions", - "WebhookTeamEditedPropChanges", - "WebhookTeamEditedPropChangesPropDescription", - "WebhookTeamEditedPropChangesPropName", - "WebhookTeamEditedPropChangesPropPrivacy", - "WebhookTeamEditedPropChangesPropNotificationSetting", - "WebhookTeamEditedPropChangesPropRepository", - "WebhookTeamEditedPropChangesPropRepositoryPropPermissions", - "WebhookTeamEditedPropChangesPropRepositoryPropPermissionsPropFrom", - "WebhookTeamRemovedFromRepository", - "WebhookTeamRemovedFromRepositoryPropRepository", - "WebhookTeamRemovedFromRepositoryPropRepositoryPropCustomProperties", - "WebhookTeamRemovedFromRepositoryPropRepositoryPropLicense", - "WebhookTeamRemovedFromRepositoryPropRepositoryPropOwner", - "WebhookTeamRemovedFromRepositoryPropRepositoryPropPermissions", - "WebhookWatchStarted", - "WebhookWorkflowDispatch", - "WebhookWorkflowDispatchPropInputs", - "WebhookWorkflowJobCompleted", - "WebhookWorkflowJobCompletedPropWorkflowJob", - "WebhookWorkflowJobCompletedPropWorkflowJobMergedSteps", - "WebhookWorkflowJobCompletedPropWorkflowJobAllof0", - "WebhookWorkflowJobCompletedPropWorkflowJobAllof0PropStepsItems", - "WebhookWorkflowJobCompletedPropWorkflowJobAllof1", - "WebhookWorkflowJobCompletedPropWorkflowJobAllof1PropStepsItems", - "WebhookWorkflowJobInProgress", - "WebhookWorkflowJobInProgressPropWorkflowJob", - "WebhookWorkflowJobInProgressPropWorkflowJobMergedSteps", - "WebhookWorkflowJobInProgressPropWorkflowJobAllof0", - "WebhookWorkflowJobInProgressPropWorkflowJobAllof0PropStepsItems", - "WebhookWorkflowJobInProgressPropWorkflowJobAllof1", - "WebhookWorkflowJobInProgressPropWorkflowJobAllof1PropStepsItems", - "WebhookWorkflowJobQueued", - "WebhookWorkflowJobQueuedPropWorkflowJob", - "WebhookWorkflowJobQueuedPropWorkflowJobPropStepsItems", - "WebhookWorkflowJobWaiting", - "WebhookWorkflowJobWaitingPropWorkflowJob", - "WebhookWorkflowJobWaitingPropWorkflowJobPropStepsItems", - "WebhookWorkflowRunCompleted", - "WebhookWorkflowRunCompletedPropWorkflowRun", - "WebhookWorkflowRunCompletedPropWorkflowRunPropActor", - "WebhookWorkflowRunCompletedPropWorkflowRunPropReferencedWorkflowsItems", - "WebhookWorkflowRunCompletedPropWorkflowRunPropTriggeringActor", - "WebhookWorkflowRunCompletedPropWorkflowRunPropHeadCommit", - "WebhookWorkflowRunCompletedPropWorkflowRunPropHeadCommitPropAuthor", - "WebhookWorkflowRunCompletedPropWorkflowRunPropHeadCommitPropCommitter", - "WebhookWorkflowRunCompletedPropWorkflowRunPropHeadRepository", - "WebhookWorkflowRunCompletedPropWorkflowRunPropHeadRepositoryPropOwner", - "WebhookWorkflowRunCompletedPropWorkflowRunPropRepository", - "WebhookWorkflowRunCompletedPropWorkflowRunPropRepositoryPropOwner", - "WebhookWorkflowRunCompletedPropWorkflowRunPropPullRequestsItems", - "WebhookWorkflowRunCompletedPropWorkflowRunPropPullRequestsItemsPropBase", - "WebhookWorkflowRunCompletedPropWorkflowRunPropPullRequestsItemsPropBasePropRepo", - "WebhookWorkflowRunCompletedPropWorkflowRunPropPullRequestsItemsPropHead", - "WebhookWorkflowRunCompletedPropWorkflowRunPropPullRequestsItemsPropHeadPropRepo", - "WebhookWorkflowRunInProgress", - "WebhookWorkflowRunInProgressPropWorkflowRun", - "WebhookWorkflowRunInProgressPropWorkflowRunPropActor", - "WebhookWorkflowRunInProgressPropWorkflowRunPropReferencedWorkflowsItems", - "WebhookWorkflowRunInProgressPropWorkflowRunPropTriggeringActor", - "WebhookWorkflowRunInProgressPropWorkflowRunPropHeadCommit", - "WebhookWorkflowRunInProgressPropWorkflowRunPropHeadCommitPropAuthor", - "WebhookWorkflowRunInProgressPropWorkflowRunPropHeadCommitPropCommitter", - "WebhookWorkflowRunInProgressPropWorkflowRunPropHeadRepository", - "WebhookWorkflowRunInProgressPropWorkflowRunPropHeadRepositoryPropOwner", - "WebhookWorkflowRunInProgressPropWorkflowRunPropRepository", - "WebhookWorkflowRunInProgressPropWorkflowRunPropRepositoryPropOwner", - "WebhookWorkflowRunInProgressPropWorkflowRunPropPullRequestsItems", - "WebhookWorkflowRunInProgressPropWorkflowRunPropPullRequestsItemsPropBase", - "WebhookWorkflowRunInProgressPropWorkflowRunPropPullRequestsItemsPropBasePropRepo", - "WebhookWorkflowRunInProgressPropWorkflowRunPropPullRequestsItemsPropHead", - "WebhookWorkflowRunInProgressPropWorkflowRunPropPullRequestsItemsPropHeadPropRepo", - "WebhookWorkflowRunRequested", - "WebhookWorkflowRunRequestedPropWorkflowRun", - "WebhookWorkflowRunRequestedPropWorkflowRunPropActor", - "WebhookWorkflowRunRequestedPropWorkflowRunPropReferencedWorkflowsItems", - "WebhookWorkflowRunRequestedPropWorkflowRunPropTriggeringActor", - "WebhookWorkflowRunRequestedPropWorkflowRunPropHeadCommit", - "WebhookWorkflowRunRequestedPropWorkflowRunPropHeadCommitPropAuthor", - "WebhookWorkflowRunRequestedPropWorkflowRunPropHeadCommitPropCommitter", - "WebhookWorkflowRunRequestedPropWorkflowRunPropHeadRepository", - "WebhookWorkflowRunRequestedPropWorkflowRunPropHeadRepositoryPropOwner", - "WebhookWorkflowRunRequestedPropWorkflowRunPropRepository", - "WebhookWorkflowRunRequestedPropWorkflowRunPropRepositoryPropOwner", - "WebhookWorkflowRunRequestedPropWorkflowRunPropPullRequestsItems", - "WebhookWorkflowRunRequestedPropWorkflowRunPropPullRequestsItemsPropBase", - "WebhookWorkflowRunRequestedPropWorkflowRunPropPullRequestsItemsPropBasePropRepo", - "WebhookWorkflowRunRequestedPropWorkflowRunPropPullRequestsItemsPropHead", - "WebhookWorkflowRunRequestedPropWorkflowRunPropPullRequestsItemsPropHeadPropRepo", - "AppManifestsCodeConversionsPostResponse201", - "AppManifestsCodeConversionsPostResponse201Allof1", - "AppHookConfigPatchBody", - "AppHookDeliveriesDeliveryIdAttemptsPostResponse202", - "AppInstallationsInstallationIdAccessTokensPostBody", - "ApplicationsClientIdGrantDeleteBody", - "ApplicationsClientIdTokenPostBody", - "ApplicationsClientIdTokenDeleteBody", - "ApplicationsClientIdTokenPatchBody", - "ApplicationsClientIdTokenScopedPostBody", - "CredentialsRevokePostBody", - "EmojisGetResponse200", - "EnterprisesEnterpriseCodeSecurityConfigurationsPostBody", - "EnterprisesEnterpriseCodeSecurityConfigurationsPostBodyPropDependencyGraphAutosubmitActionOptions", - "EnterprisesEnterpriseCodeSecurityConfigurationsConfigurationIdPatchBody", - "EnterprisesEnterpriseCodeSecurityConfigurationsConfigurationIdPatchBodyPropDependencyGraphAutosubmitActionOptions", - "EnterprisesEnterpriseCodeSecurityConfigurationsConfigurationIdAttachPostBody", - "EnterprisesEnterpriseCodeSecurityConfigurationsConfigurationIdDefaultsPutBody", - "EnterprisesEnterpriseCodeSecurityConfigurationsConfigurationIdDefaultsPutResponse200", - "EnterprisesEnterpriseCopilotPoliciesCodingAgentPutBody", - "EnterprisesEnterpriseCopilotPoliciesCodingAgentOrganizationsPostBody", - "EnterprisesEnterpriseCopilotPoliciesCodingAgentOrganizationsPostBodyPropCustomPropertiesItems", - "EnterprisesEnterpriseCopilotPoliciesCodingAgentOrganizationsDeleteBody", - "EnterprisesEnterpriseCopilotPoliciesCodingAgentOrganizationsDeleteBodyPropCustomPropertiesItems", - "EnterprisesEnterpriseDependabotRepositoryAccessPatchBody", - "EnterprisesEnterpriseDependabotRepositoryAccessDefaultLevelPutBody", - "EnterprisesEnterpriseTeamsPostBody", - "EnterprisesEnterpriseTeamsEnterpriseTeamMembershipsAddPostBody", - "EnterprisesEnterpriseTeamsEnterpriseTeamMembershipsRemovePostBody", - "EnterprisesEnterpriseTeamsEnterpriseTeamOrganizationsAddPostBody", - "EnterprisesEnterpriseTeamsEnterpriseTeamOrganizationsRemovePostBody", - "EnterprisesEnterpriseTeamsTeamSlugPatchBody", - "EventsGetResponse503", - "GistsPostBody", - "GistsPostBodyPropFiles", - "GistsGistIdGetResponse403", - "GistsGistIdGetResponse403PropBlock", - "GistsGistIdPatchBody", - "GistsGistIdPatchBodyPropFiles", - "GistsGistIdCommentsPostBody", - "GistsGistIdCommentsCommentIdPatchBody", - "GistsGistIdStarGetResponse404", - "InstallationRepositoriesGetResponse200PropRepositoriesItems", - "InstallationRepositoriesGetResponse200", - "MarkdownPostBody", - "NotificationsPutBody", - "NotificationsPutResponse202", - "NotificationsThreadsThreadIdSubscriptionPutBody", - "OrganizationsOrgSettingsBillingBudgetsBudgetIdPatchBody", - "OrganizationsOrgSettingsBillingBudgetsBudgetIdPatchBodyPropBudgetAlerting", - "OrganizationsOrgSettingsBillingBudgetsBudgetIdPatchResponse200", - "OrganizationsOrgSettingsBillingBudgetsBudgetIdPatchResponse200PropBudget", - "OrganizationsOrgSettingsBillingBudgetsBudgetIdPatchResponse200PropBudgetPropBudgetAlerting", - "OrgsOrgPatchBody", - "OrgsOrgActionsCacheUsageByRepositoryGetResponse200", - "ActionsCacheUsageByRepository", - "OrgsOrgActionsHostedRunnersGetResponse200", - "OrgsOrgActionsHostedRunnersPostBody", - "OrgsOrgActionsHostedRunnersPostBodyPropImage", - "OrgsOrgActionsHostedRunnersImagesCustomGetResponse200", - "ActionsHostedRunnerCustomImage", - "OrgsOrgActionsHostedRunnersImagesCustomImageDefinitionIdVersionsGetResponse200", - "ActionsHostedRunnerCustomImageVersion", - "OrgsOrgActionsHostedRunnersImagesGithubOwnedGetResponse200", - "OrgsOrgActionsHostedRunnersImagesPartnerGetResponse200", - "OrgsOrgActionsHostedRunnersMachineSizesGetResponse200", - "OrgsOrgActionsHostedRunnersPlatformsGetResponse200", - "OrgsOrgActionsHostedRunnersHostedRunnerIdPatchBody", - "OrgsOrgActionsOidcCustomizationSubPutBody", - "OrgsOrgActionsPermissionsPutBody", - "OrgsOrgActionsPermissionsRepositoriesGetResponse200", - "OrgsOrgActionsPermissionsRepositoriesPutBody", - "OrgsOrgActionsPermissionsSelfHostedRunnersPutBody", - "OrgsOrgActionsPermissionsSelfHostedRunnersRepositoriesGetResponse200", - "OrgsOrgActionsPermissionsSelfHostedRunnersRepositoriesPutBody", - "OrgsOrgActionsRunnerGroupsGetResponse200", - "RunnerGroupsOrg", - "OrgsOrgActionsRunnerGroupsPostBody", - "OrgsOrgActionsRunnerGroupsRunnerGroupIdPatchBody", - "OrgsOrgActionsRunnerGroupsRunnerGroupIdHostedRunnersGetResponse200", - "OrgsOrgActionsRunnerGroupsRunnerGroupIdRepositoriesGetResponse200", - "OrgsOrgActionsRunnerGroupsRunnerGroupIdRepositoriesPutBody", - "OrgsOrgActionsRunnerGroupsRunnerGroupIdRunnersGetResponse200", - "OrgsOrgActionsRunnerGroupsRunnerGroupIdRunnersPutBody", - "OrgsOrgActionsRunnersGetResponse200", - "OrgsOrgActionsRunnersGenerateJitconfigPostBody", - "OrgsOrgActionsRunnersGenerateJitconfigPostResponse201", - "OrgsOrgActionsRunnersRunnerIdLabelsGetResponse200", - "OrgsOrgActionsRunnersRunnerIdLabelsPutBody", - "OrgsOrgActionsRunnersRunnerIdLabelsPostBody", - "OrgsOrgActionsRunnersRunnerIdLabelsDeleteResponse200", - "OrgsOrgActionsSecretsGetResponse200", - "OrganizationActionsSecret", - "OrgsOrgActionsSecretsSecretNamePutBody", - "OrgsOrgActionsSecretsSecretNameRepositoriesGetResponse200", - "OrgsOrgActionsSecretsSecretNameRepositoriesPutBody", - "OrgsOrgActionsVariablesGetResponse200", - "OrganizationActionsVariable", - "OrgsOrgActionsVariablesPostBody", - "OrgsOrgActionsVariablesNamePatchBody", - "OrgsOrgActionsVariablesNameRepositoriesGetResponse200", - "OrgsOrgActionsVariablesNameRepositoriesPutBody", - "OrgsOrgArtifactsMetadataDeploymentRecordPostBody", - "OrgsOrgArtifactsMetadataDeploymentRecordPostBodyPropTags", - "OrgsOrgArtifactsMetadataDeploymentRecordPostResponse200", - "OrgsOrgArtifactsMetadataDeploymentRecordClusterClusterPostBody", - "OrgsOrgArtifactsMetadataDeploymentRecordClusterClusterPostBodyPropDeploymentsItems", - "OrgsOrgArtifactsMetadataDeploymentRecordClusterClusterPostBodyPropDeploymentsItemsPropTags", - "OrgsOrgArtifactsMetadataDeploymentRecordClusterClusterPostResponse200", - "OrgsOrgArtifactsMetadataStorageRecordPostBody", - "OrgsOrgArtifactsMetadataStorageRecordPostResponse200", - "OrgsOrgArtifactsMetadataStorageRecordPostResponse200PropStorageRecordsItems", - "OrgsOrgArtifactsSubjectDigestMetadataDeploymentRecordsGetResponse200", - "OrgsOrgArtifactsSubjectDigestMetadataStorageRecordsGetResponse200", - "OrgsOrgArtifactsSubjectDigestMetadataStorageRecordsGetResponse200PropStorageRecordsItems", - "OrgsOrgAttestationsBulkListPostBody", - "OrgsOrgAttestationsBulkListPostResponse200", - "OrgsOrgAttestationsBulkListPostResponse200PropAttestationsSubjectDigests", - "OrgsOrgAttestationsBulkListPostResponse200PropPageInfo", - "OrgsOrgAttestationsDeleteRequestPostBodyOneof0", - "OrgsOrgAttestationsDeleteRequestPostBodyOneof1", - "OrgsOrgAttestationsRepositoriesGetResponse200Items", - "OrgsOrgAttestationsSubjectDigestGetResponse200", - "OrgsOrgAttestationsSubjectDigestGetResponse200PropAttestationsItems", - "OrgsOrgCampaignsPostBodyPropCodeScanningAlertsItems", - "OrgsOrgCampaignsPostBodyOneof0", - "OrgsOrgCampaignsPostBodyOneof1", - "OrgsOrgCampaignsCampaignNumberPatchBody", - "OrgsOrgCodeSecurityConfigurationsPostBody", - "OrgsOrgCodeSecurityConfigurationsPostBodyPropDependencyGraphAutosubmitActionOptions", - "OrgsOrgCodeSecurityConfigurationsPostBodyPropSecretScanningDelegatedBypassOptions", - "OrgsOrgCodeSecurityConfigurationsPostBodyPropSecretScanningDelegatedBypassOptionsPropReviewersItems", - "OrgsOrgCodeSecurityConfigurationsDetachDeleteBody", - "OrgsOrgCodeSecurityConfigurationsConfigurationIdPatchBody", - "OrgsOrgCodeSecurityConfigurationsConfigurationIdPatchBodyPropDependencyGraphAutosubmitActionOptions", - "OrgsOrgCodeSecurityConfigurationsConfigurationIdPatchBodyPropSecretScanningDelegatedBypassOptions", - "OrgsOrgCodeSecurityConfigurationsConfigurationIdPatchBodyPropSecretScanningDelegatedBypassOptionsPropReviewersItems", - "OrgsOrgCodeSecurityConfigurationsConfigurationIdAttachPostBody", - "OrgsOrgCodeSecurityConfigurationsConfigurationIdDefaultsPutBody", - "OrgsOrgCodeSecurityConfigurationsConfigurationIdDefaultsPutResponse200", - "OrgsOrgCodespacesGetResponse200", - "OrgsOrgCodespacesAccessPutBody", - "OrgsOrgCodespacesAccessSelectedUsersPostBody", - "OrgsOrgCodespacesAccessSelectedUsersDeleteBody", - "OrgsOrgCodespacesSecretsGetResponse200", - "CodespacesOrgSecret", - "OrgsOrgCodespacesSecretsSecretNamePutBody", - "OrgsOrgCodespacesSecretsSecretNameRepositoriesGetResponse200", - "OrgsOrgCodespacesSecretsSecretNameRepositoriesPutBody", - "OrgsOrgCopilotSpacesGetResponse200", - "OrgsOrgCopilotSpacesPostBody", - "OrgsOrgCopilotSpacesPostBodyPropResourcesAttributesItems", - "OrgsOrgCopilotSpacesPostBodyPropResourcesAttributesItemsPropMetadata", - "OrgsOrgCopilotSpacesSpaceNumberPutBody", - "OrgsOrgCopilotSpacesSpaceNumberPutBodyPropResourcesAttributesItems", - "OrgsOrgCopilotSpacesSpaceNumberPutBodyPropResourcesAttributesItemsPropMetadata", - "OrgsOrgCopilotSpacesSpaceNumberCollaboratorsGetResponse200", - "OrgsOrgCopilotSpacesSpaceNumberCollaboratorsPostBody", - "OrgsOrgCopilotSpacesSpaceNumberCollaboratorsActorTypeActorIdentifierPutBody", - "OrgsOrgCopilotSpacesSpaceNumberResourcesGetResponse200", - "OrgsOrgCopilotSpacesSpaceNumberResourcesPostBody", - "OrgsOrgCopilotSpacesSpaceNumberResourcesPostBodyPropMetadata", - "OrgsOrgCopilotSpacesSpaceNumberResourcesSpaceResourceIdPutBody", - "OrgsOrgCopilotSpacesSpaceNumberResourcesSpaceResourceIdPutBodyPropMetadata", - "OrgsOrgCopilotBillingSelectedTeamsPostBody", - "OrgsOrgCopilotBillingSelectedTeamsPostResponse201", - "OrgsOrgCopilotBillingSelectedTeamsDeleteBody", - "OrgsOrgCopilotBillingSelectedTeamsDeleteResponse200", - "OrgsOrgCopilotBillingSelectedUsersPostBody", - "OrgsOrgCopilotBillingSelectedUsersPostResponse201", - "OrgsOrgCopilotBillingSelectedUsersDeleteBody", - "OrgsOrgCopilotBillingSelectedUsersDeleteResponse200", - "OrgsOrgCopilotCodingAgentPermissionsGetResponse200", - "OrgsOrgCopilotCodingAgentPermissionsPutBody", - "OrgsOrgCopilotCodingAgentPermissionsRepositoriesGetResponse200", - "OrgsOrgCopilotCodingAgentPermissionsRepositoriesPutBody", - "OrgsOrgCopilotContentExclusionPutBody", - "OrgsOrgCopilotContentExclusionPutResponse200", - "OrgsOrgDependabotRepositoryAccessPatchBody", - "OrgsOrgDependabotRepositoryAccessDefaultLevelPutBody", - "OrgsOrgDependabotSecretsGetResponse200", - "OrganizationDependabotSecret", - "OrgsOrgDependabotSecretsSecretNamePutBody", - "OrgsOrgDependabotSecretsSecretNameRepositoriesGetResponse200", - "OrgsOrgDependabotSecretsSecretNameRepositoriesPutBody", - "OrgsOrgHooksPostBody", - "OrgsOrgHooksPostBodyPropConfig", - "OrgsOrgHooksHookIdPatchBody", - "OrgsOrgHooksHookIdPatchBodyPropConfig", - "OrgsOrgHooksHookIdConfigPatchBody", - "OrgsOrgInstallationsGetResponse200", - "OrgsOrgInteractionLimitsGetResponse200Anyof1", - "OrgsOrgInvitationsPostBody", - "OrgsOrgMembersUsernameCodespacesGetResponse200", - "OrgsOrgMembershipsUsernamePutBody", - "OrgsOrgMigrationsPostBody", - "OrgsOrgOutsideCollaboratorsUsernamePutBody", - "OrgsOrgOutsideCollaboratorsUsernamePutResponse202", - "OrgsOrgOutsideCollaboratorsUsernameDeleteResponse422", - "OrgsOrgPersonalAccessTokenRequestsPostBody", - "OrgsOrgPersonalAccessTokenRequestsPatRequestIdPostBody", - "OrgsOrgPersonalAccessTokensPostBody", - "OrgsOrgPersonalAccessTokensPatIdPostBody", - "OrgsOrgPrivateRegistriesGetResponse200", - "OrgPrivateRegistryConfiguration", - "OrgsOrgPrivateRegistriesPostBody", - "OrgsOrgPrivateRegistriesPublicKeyGetResponse200", - "OrgsOrgPrivateRegistriesSecretNamePatchBody", - "OrgsOrgProjectsV2ProjectNumberDraftsPostBody", - "OrgsOrgProjectsV2ProjectNumberFieldsPostBodyOneof0", - "OrgsOrgProjectsV2ProjectNumberFieldsPostBodyOneof1", - "OrgsOrgProjectsV2ProjectNumberFieldsPostBodyOneof2", - "OrgsOrgProjectsV2ProjectNumberFieldsPostBodyOneof3", - "OrgsOrgProjectsV2ProjectNumberItemsPostBodyOneof0", - "OrgsOrgProjectsV2ProjectNumberItemsPostBodyOneof1", - "OrgsOrgProjectsV2ProjectNumberItemsItemIdPatchBody", - "OrgsOrgProjectsV2ProjectNumberItemsItemIdPatchBodyPropFieldsItems", - "OrgsOrgProjectsV2ProjectNumberViewsPostBody", - "OrgsOrgPropertiesSchemaPatchBody", - "OrgsOrgPropertiesValuesPatchBody", - "OrgsOrgReposPostBody", - "OrgsOrgReposPostBodyPropCustomProperties", - "OrgsOrgRulesetsPostBody", - "OrgsOrgRulesetsRulesetIdPutBody", - "OrgsOrgSecretScanningPatternConfigurationsPatchBody", - "OrgsOrgSecretScanningPatternConfigurationsPatchBodyPropProviderPatternSettingsItems", - "OrgsOrgSecretScanningPatternConfigurationsPatchBodyPropCustomPatternSettingsItems", - "OrgsOrgSecretScanningPatternConfigurationsPatchResponse200", - "OrgsOrgSettingsImmutableReleasesPutBody", - "OrgsOrgSettingsImmutableReleasesRepositoriesGetResponse200", - "OrgsOrgSettingsImmutableReleasesRepositoriesPutBody", - "OrgsOrgSettingsNetworkConfigurationsGetResponse200", - "NetworkConfiguration", - "OrgsOrgSettingsNetworkConfigurationsPostBody", - "OrgsOrgSettingsNetworkConfigurationsNetworkConfigurationIdPatchBody", - "OrgsOrgTeamsPostBody", - "OrgsOrgTeamsTeamSlugPatchBody", - "OrgsOrgTeamsTeamSlugMembershipsUsernamePutBody", - "OrgsOrgTeamsTeamSlugReposOwnerRepoPutBody", - "OrgsOrgSecurityProductEnablementPostBody", - "ReposOwnerRepoDeleteResponse403", - "ReposOwnerRepoPatchBody", - "ReposOwnerRepoPatchBodyPropSecurityAndAnalysis", - "ReposOwnerRepoPatchBodyPropSecurityAndAnalysisPropAdvancedSecurity", - "ReposOwnerRepoPatchBodyPropSecurityAndAnalysisPropCodeSecurity", - "ReposOwnerRepoPatchBodyPropSecurityAndAnalysisPropSecretScanning", - "ReposOwnerRepoPatchBodyPropSecurityAndAnalysisPropSecretScanningPushProtection", - "ReposOwnerRepoPatchBodyPropSecurityAndAnalysisPropSecretScanningAiDetection", - "ReposOwnerRepoPatchBodyPropSecurityAndAnalysisPropSecretScanningNonProviderPatterns", - "ReposOwnerRepoPatchBodyPropSecurityAndAnalysisPropSecretScanningDelegatedAlertDismissal", - "ReposOwnerRepoPatchBodyPropSecurityAndAnalysisPropSecretScanningDelegatedBypass", - "ReposOwnerRepoPatchBodyPropSecurityAndAnalysisPropSecretScanningDelegatedBypassOptions", - "ReposOwnerRepoPatchBodyPropSecurityAndAnalysisPropSecretScanningDelegatedBypassOptionsPropReviewersItems", - "ReposOwnerRepoActionsArtifactsGetResponse200", - "ReposOwnerRepoActionsJobsJobIdRerunPostBody", - "ReposOwnerRepoActionsOidcCustomizationSubPutBody", - "ReposOwnerRepoActionsOrganizationSecretsGetResponse200", - "ReposOwnerRepoActionsOrganizationVariablesGetResponse200", - "ReposOwnerRepoActionsPermissionsPutBody", - "ReposOwnerRepoActionsRunnersGetResponse200", - "ReposOwnerRepoActionsRunnersGenerateJitconfigPostBody", - "ReposOwnerRepoActionsRunnersRunnerIdLabelsPutBody", - "ReposOwnerRepoActionsRunnersRunnerIdLabelsPostBody", - "ReposOwnerRepoActionsRunsGetResponse200", - "ReposOwnerRepoActionsRunsRunIdArtifactsGetResponse200", - "ReposOwnerRepoActionsRunsRunIdAttemptsAttemptNumberJobsGetResponse200", - "ReposOwnerRepoActionsRunsRunIdJobsGetResponse200", - "ReposOwnerRepoActionsRunsRunIdPendingDeploymentsPostBody", - "ReposOwnerRepoActionsRunsRunIdRerunPostBody", - "ReposOwnerRepoActionsRunsRunIdRerunFailedJobsPostBody", - "ReposOwnerRepoActionsSecretsGetResponse200", - "ReposOwnerRepoActionsSecretsSecretNamePutBody", - "ReposOwnerRepoActionsVariablesGetResponse200", - "ReposOwnerRepoActionsVariablesPostBody", - "ReposOwnerRepoActionsVariablesNamePatchBody", - "ReposOwnerRepoActionsWorkflowsGetResponse200", - "Workflow", - "ReposOwnerRepoActionsWorkflowsWorkflowIdDispatchesPostBody", - "ReposOwnerRepoActionsWorkflowsWorkflowIdDispatchesPostBodyPropInputs", - "ReposOwnerRepoActionsWorkflowsWorkflowIdRunsGetResponse200", - "ReposOwnerRepoAttestationsPostBody", - "ReposOwnerRepoAttestationsPostBodyPropBundle", - "ReposOwnerRepoAttestationsPostBodyPropBundlePropVerificationMaterial", - "ReposOwnerRepoAttestationsPostBodyPropBundlePropDsseEnvelope", - "ReposOwnerRepoAttestationsPostResponse201", - "ReposOwnerRepoAttestationsSubjectDigestGetResponse200", - "ReposOwnerRepoAttestationsSubjectDigestGetResponse200PropAttestationsItems", - "ReposOwnerRepoAutolinksPostBody", - "ReposOwnerRepoBranchesBranchProtectionPutBody", - "ReposOwnerRepoBranchesBranchProtectionPutBodyPropRequiredStatusChecks", - "ReposOwnerRepoBranchesBranchProtectionPutBodyPropRequiredStatusChecksPropChecksItems", - "ReposOwnerRepoBranchesBranchProtectionPutBodyPropRequiredPullRequestReviews", - "ReposOwnerRepoBranchesBranchProtectionPutBodyPropRequiredPullRequestReviewsPropDismissalRestrictions", - "ReposOwnerRepoBranchesBranchProtectionPutBodyPropRequiredPullRequestReviewsPropBypassPullRequestAllowances", - "ReposOwnerRepoBranchesBranchProtectionPutBodyPropRestrictions", - "ReposOwnerRepoBranchesBranchProtectionRequiredPullRequestReviewsPatchBody", - "ReposOwnerRepoBranchesBranchProtectionRequiredPullRequestReviewsPatchBodyPropDismissalRestrictions", - "ReposOwnerRepoBranchesBranchProtectionRequiredPullRequestReviewsPatchBodyPropBypassPullRequestAllowances", - "ReposOwnerRepoBranchesBranchProtectionRequiredStatusChecksPatchBody", - "ReposOwnerRepoBranchesBranchProtectionRequiredStatusChecksPatchBodyPropChecksItems", - "ReposOwnerRepoBranchesBranchProtectionRequiredStatusChecksContextsPutBodyOneof0", - "ReposOwnerRepoBranchesBranchProtectionRequiredStatusChecksContextsPostBodyOneof0", - "ReposOwnerRepoBranchesBranchProtectionRequiredStatusChecksContextsDeleteBodyOneof0", - "ReposOwnerRepoBranchesBranchProtectionRestrictionsAppsPutBody", - "ReposOwnerRepoBranchesBranchProtectionRestrictionsAppsPostBody", - "ReposOwnerRepoBranchesBranchProtectionRestrictionsAppsDeleteBody", - "ReposOwnerRepoBranchesBranchProtectionRestrictionsTeamsPutBodyOneof0", - "ReposOwnerRepoBranchesBranchProtectionRestrictionsTeamsPostBodyOneof0", - "ReposOwnerRepoBranchesBranchProtectionRestrictionsTeamsDeleteBodyOneof0", - "ReposOwnerRepoBranchesBranchProtectionRestrictionsUsersPutBody", - "ReposOwnerRepoBranchesBranchProtectionRestrictionsUsersPostBody", - "ReposOwnerRepoBranchesBranchProtectionRestrictionsUsersDeleteBody", - "ReposOwnerRepoBranchesBranchRenamePostBody", - "ReposOwnerRepoCheckRunsPostBodyPropOutput", - "ReposOwnerRepoCheckRunsPostBodyPropOutputPropAnnotationsItems", - "ReposOwnerRepoCheckRunsPostBodyPropOutputPropImagesItems", - "ReposOwnerRepoCheckRunsPostBodyPropActionsItems", - "ReposOwnerRepoCheckRunsPostBodyOneof0", - "ReposOwnerRepoCheckRunsPostBodyOneof1", - "ReposOwnerRepoCheckRunsCheckRunIdPatchBodyPropOutput", - "ReposOwnerRepoCheckRunsCheckRunIdPatchBodyPropOutputPropAnnotationsItems", - "ReposOwnerRepoCheckRunsCheckRunIdPatchBodyPropOutputPropImagesItems", - "ReposOwnerRepoCheckRunsCheckRunIdPatchBodyPropActionsItems", - "ReposOwnerRepoCheckRunsCheckRunIdPatchBodyAnyof0", - "ReposOwnerRepoCheckRunsCheckRunIdPatchBodyAnyof1", - "ReposOwnerRepoCheckSuitesPostBody", - "ReposOwnerRepoCheckSuitesPreferencesPatchBody", - "ReposOwnerRepoCheckSuitesPreferencesPatchBodyPropAutoTriggerChecksItems", - "ReposOwnerRepoCheckSuitesCheckSuiteIdCheckRunsGetResponse200", - "ReposOwnerRepoCodeScanningAlertsAlertNumberPatchBodyAnyof0", - "ReposOwnerRepoCodeScanningAlertsAlertNumberPatchBodyAnyof1", - "ReposOwnerRepoCodeScanningCodeqlVariantAnalysesPostBodyOneof0", - "ReposOwnerRepoCodeScanningCodeqlVariantAnalysesPostBodyOneof1", - "ReposOwnerRepoCodeScanningCodeqlVariantAnalysesPostBodyOneof2", - "ReposOwnerRepoCodeScanningSarifsPostBody", - "ReposOwnerRepoCodespacesGetResponse200", - "ReposOwnerRepoCodespacesPostBody", - "ReposOwnerRepoCodespacesDevcontainersGetResponse200", - "ReposOwnerRepoCodespacesDevcontainersGetResponse200PropDevcontainersItems", - "ReposOwnerRepoCodespacesMachinesGetResponse200", - "ReposOwnerRepoCodespacesNewGetResponse200", - "ReposOwnerRepoCodespacesNewGetResponse200PropDefaults", - "ReposOwnerRepoCodespacesSecretsGetResponse200", - "RepoCodespacesSecret", - "ReposOwnerRepoCodespacesSecretsSecretNamePutBody", - "ReposOwnerRepoCollaboratorsUsernamePutBody", - "ReposOwnerRepoCommentsCommentIdPatchBody", - "ReposOwnerRepoCommentsCommentIdReactionsPostBody", - "ReposOwnerRepoCommitsCommitShaCommentsPostBody", - "ReposOwnerRepoCommitsRefCheckRunsGetResponse200", - "ReposOwnerRepoContentsPathPutBody", - "ReposOwnerRepoContentsPathPutBodyPropCommitter", - "ReposOwnerRepoContentsPathPutBodyPropAuthor", - "ReposOwnerRepoContentsPathDeleteBody", - "ReposOwnerRepoContentsPathDeleteBodyPropCommitter", - "ReposOwnerRepoContentsPathDeleteBodyPropAuthor", - "ReposOwnerRepoDependabotAlertsAlertNumberPatchBodyAnyof0", - "ReposOwnerRepoDependabotAlertsAlertNumberPatchBodyAnyof1", - "ReposOwnerRepoDependabotSecretsGetResponse200", - "DependabotSecret", - "ReposOwnerRepoDependabotSecretsSecretNamePutBody", - "ReposOwnerRepoDependencyGraphSbomGenerateReportGetResponse201", - "ReposOwnerRepoDependencyGraphSnapshotsPostResponse201", - "ReposOwnerRepoDeploymentsPostBody", - "ReposOwnerRepoDeploymentsPostBodyPropPayloadOneof0", - "ReposOwnerRepoDeploymentsPostResponse202", - "ReposOwnerRepoDeploymentsDeploymentIdStatusesPostBody", - "ReposOwnerRepoDispatchesPostBody", - "ReposOwnerRepoDispatchesPostBodyPropClientPayload", - "ReposOwnerRepoEnvironmentsEnvironmentNamePutBody", - "ReposOwnerRepoEnvironmentsEnvironmentNamePutBodyPropReviewersItems", - "ReposOwnerRepoEnvironmentsEnvironmentNameDeploymentBranchPoliciesGetResponse200", - "DeploymentBranchPolicy", - "ReposOwnerRepoEnvironmentsEnvironmentNameDeploymentProtectionRulesPostBody", - "ReposOwnerRepoEnvironmentsEnvironmentNameDeploymentProtectionRulesAppsGetResponse200", - "ReposOwnerRepoEnvironmentsEnvironmentNameSecretsGetResponse200", - "ReposOwnerRepoEnvironmentsEnvironmentNameSecretsSecretNamePutBody", - "ReposOwnerRepoEnvironmentsEnvironmentNameVariablesGetResponse200", - "ReposOwnerRepoEnvironmentsEnvironmentNameVariablesPostBody", - "ReposOwnerRepoEnvironmentsEnvironmentNameVariablesNamePatchBody", - "ReposOwnerRepoForksPostBody", - "ReposOwnerRepoGitBlobsPostBody", - "ReposOwnerRepoGitCommitsPostBody", - "ReposOwnerRepoGitCommitsPostBodyPropAuthor", - "ReposOwnerRepoGitCommitsPostBodyPropCommitter", - "ReposOwnerRepoGitRefsPostBody", - "ReposOwnerRepoGitRefsRefPatchBody", - "ReposOwnerRepoGitTagsPostBody", - "ReposOwnerRepoGitTagsPostBodyPropTagger", - "ReposOwnerRepoGitTreesPostBody", - "ReposOwnerRepoGitTreesPostBodyPropTreeItems", - "ReposOwnerRepoHooksPostBody", - "ReposOwnerRepoHooksPostBodyPropConfig", - "ReposOwnerRepoHooksHookIdPatchBody", - "ReposOwnerRepoHooksHookIdConfigPatchBody", - "ReposOwnerRepoImportPutBody", - "ReposOwnerRepoImportPatchBody", - "ReposOwnerRepoImportAuthorsAuthorIdPatchBody", - "ReposOwnerRepoImportLfsPatchBody", - "ReposOwnerRepoInteractionLimitsGetResponse200Anyof1", - "ReposOwnerRepoInvitationsInvitationIdPatchBody", - "ReposOwnerRepoIssuesPostBody", - "ReposOwnerRepoIssuesPostBodyPropLabelsItemsOneof1", - "ReposOwnerRepoIssuesCommentsCommentIdPatchBody", - "ReposOwnerRepoIssuesCommentsCommentIdReactionsPostBody", - "ReposOwnerRepoIssuesIssueNumberPatchBody", - "ReposOwnerRepoIssuesIssueNumberPatchBodyPropLabelsItemsOneof1", - "ReposOwnerRepoIssuesIssueNumberPatchBodyPropIssueFieldValuesItems", - "ReposOwnerRepoIssuesIssueNumberAssigneesPostBody", - "ReposOwnerRepoIssuesIssueNumberAssigneesDeleteBody", - "ReposOwnerRepoIssuesIssueNumberCommentsPostBody", - "ReposOwnerRepoIssuesIssueNumberDependenciesBlockedByPostBody", - "ReposOwnerRepoIssuesIssueNumberIssueFieldValuesPutBody", - "ReposOwnerRepoIssuesIssueNumberIssueFieldValuesPutBodyPropIssueFieldValuesItems", - "ReposOwnerRepoIssuesIssueNumberIssueFieldValuesPostBody", - "ReposOwnerRepoIssuesIssueNumberIssueFieldValuesPostBodyPropIssueFieldValuesItems", - "ReposOwnerRepoIssuesIssueNumberLabelsPutBodyOneof0", - "ReposOwnerRepoIssuesIssueNumberLabelsPutBodyOneof2", - "ReposOwnerRepoIssuesIssueNumberLabelsPutBodyOneof2PropLabelsItems", - "ReposOwnerRepoIssuesIssueNumberLabelsPutBodyOneof3Items", - "ReposOwnerRepoIssuesIssueNumberLabelsPostBodyOneof0", - "ReposOwnerRepoIssuesIssueNumberLabelsPostBodyOneof2Items", - "ReposOwnerRepoIssuesIssueNumberLockPutBody", - "ReposOwnerRepoIssuesIssueNumberReactionsPostBody", - "ReposOwnerRepoIssuesIssueNumberSubIssueDeleteBody", - "ReposOwnerRepoIssuesIssueNumberSubIssuesPostBody", - "ReposOwnerRepoIssuesIssueNumberSubIssuesPriorityPatchBody", - "ReposOwnerRepoKeysPostBody", - "ReposOwnerRepoLabelsPostBody", - "ReposOwnerRepoLabelsNamePatchBody", - "ReposOwnerRepoMergeUpstreamPostBody", - "ReposOwnerRepoMergesPostBody", - "ReposOwnerRepoMilestonesPostBody", - "ReposOwnerRepoMilestonesMilestoneNumberPatchBody", - "ReposOwnerRepoNotificationsPutBody", - "ReposOwnerRepoNotificationsPutResponse202", - "ReposOwnerRepoPagesPutBodyPropSourceAnyof1", - "ReposOwnerRepoPagesPutBodyAnyof0", - "ReposOwnerRepoPagesPutBodyAnyof1", - "ReposOwnerRepoPagesPutBodyAnyof2", - "ReposOwnerRepoPagesPutBodyAnyof3", - "ReposOwnerRepoPagesPutBodyAnyof4", - "ReposOwnerRepoPagesPostBodyPropSource", - "ReposOwnerRepoPagesPostBodyAnyof0", - "ReposOwnerRepoPagesPostBodyAnyof1", - "ReposOwnerRepoPagesDeploymentsPostBody", - "ReposOwnerRepoPrivateVulnerabilityReportingGetResponse200", - "ReposOwnerRepoPropertiesValuesPatchBody", - "ReposOwnerRepoPullsPostBody", - "ReposOwnerRepoPullsCommentsCommentIdPatchBody", - "ReposOwnerRepoPullsCommentsCommentIdReactionsPostBody", - "ReposOwnerRepoPullsPullNumberPatchBody", - "ReposOwnerRepoPullsPullNumberCodespacesPostBody", - "ReposOwnerRepoPullsPullNumberCommentsPostBody", - "ReposOwnerRepoPullsPullNumberCommentsCommentIdRepliesPostBody", - "ReposOwnerRepoPullsPullNumberMergePutBody", - "ReposOwnerRepoPullsPullNumberMergePutResponse405", - "ReposOwnerRepoPullsPullNumberMergePutResponse409", - "ReposOwnerRepoPullsPullNumberRequestedReviewersPostBodyAnyof0", - "ReposOwnerRepoPullsPullNumberRequestedReviewersPostBodyAnyof1", - "ReposOwnerRepoPullsPullNumberRequestedReviewersDeleteBody", - "ReposOwnerRepoPullsPullNumberReviewsPostBody", - "ReposOwnerRepoPullsPullNumberReviewsPostBodyPropCommentsItems", - "ReposOwnerRepoPullsPullNumberReviewsReviewIdPutBody", - "ReposOwnerRepoPullsPullNumberReviewsReviewIdDismissalsPutBody", - "ReposOwnerRepoPullsPullNumberReviewsReviewIdEventsPostBody", - "ReposOwnerRepoPullsPullNumberUpdateBranchPutBody", - "ReposOwnerRepoPullsPullNumberUpdateBranchPutResponse202", - "ReposOwnerRepoReleasesPostBody", - "ReposOwnerRepoReleasesAssetsAssetIdPatchBody", - "ReposOwnerRepoReleasesGenerateNotesPostBody", - "ReposOwnerRepoReleasesReleaseIdPatchBody", - "ReposOwnerRepoReleasesReleaseIdReactionsPostBody", - "ReposOwnerRepoRulesetsPostBody", - "ReposOwnerRepoRulesetsRulesetIdPutBody", - "ReposOwnerRepoSecretScanningAlertsAlertNumberPatchBodyAnyof0", - "ReposOwnerRepoSecretScanningAlertsAlertNumberPatchBodyAnyof1", - "ReposOwnerRepoSecretScanningAlertsAlertNumberPatchBodyAnyof2", - "ReposOwnerRepoSecretScanningPushProtectionBypassesPostBody", - "ReposOwnerRepoStatusesShaPostBody", - "ReposOwnerRepoSubscriptionPutBody", - "ReposOwnerRepoTopicsPutBody", - "ReposOwnerRepoTransferPostBody", - "ReposTemplateOwnerTemplateRepoGeneratePostBody", - "TeamsTeamIdPatchBody", - "TeamsTeamIdMembershipsUsernamePutBody", - "TeamsTeamIdReposOwnerRepoPutBody", - "UserPatchBody", - "UserCodespacesGetResponse200", - "UserCodespacesPostBodyOneof0", - "UserCodespacesPostBodyOneof1", - "UserCodespacesPostBodyOneof1PropPullRequest", - "UserCodespacesSecretsGetResponse200", - "CodespacesSecret", - "UserCodespacesSecretsSecretNamePutBody", - "UserCodespacesSecretsSecretNameRepositoriesGetResponse200", - "UserCodespacesSecretsSecretNameRepositoriesPutBody", - "UserCodespacesCodespaceNamePatchBody", - "UserCodespacesCodespaceNameMachinesGetResponse200", - "UserCodespacesCodespaceNamePublishPostBody", - "UserEmailVisibilityPatchBody", - "UserEmailsPostBodyOneof0", - "UserEmailsDeleteBodyOneof0", - "UserGpgKeysPostBody", - "UserInstallationsGetResponse200", - "UserInstallationsInstallationIdRepositoriesGetResponse200PropRepositoriesItems", - "UserInstallationsInstallationIdRepositoriesGetResponse200", - "UserInteractionLimitsGetResponse200Anyof1", - "UserKeysPostBody", - "UserMembershipsOrgsOrgPatchBody", - "UserMigrationsPostBody", - "UserReposPostBody", - "UserSocialAccountsPostBody", - "UserSocialAccountsDeleteBody", - "UserSshSigningKeysPostBody", - "UserUserIdProjectsV2ProjectNumberDraftsPostBody", - "UsersUserIdProjectsV2ProjectNumberViewsPostBody", - "UsersUsernameAttestationsBulkListPostBody", - "UsersUsernameAttestationsBulkListPostResponse200", - "UsersUsernameAttestationsBulkListPostResponse200PropAttestationsSubjectDigests", - "UsersUsernameAttestationsBulkListPostResponse200PropPageInfo", - "UsersUsernameAttestationsDeleteRequestPostBodyOneof0", - "UsersUsernameAttestationsDeleteRequestPostBodyOneof1", - "UsersUsernameAttestationsSubjectDigestGetResponse200", - "UsersUsernameAttestationsSubjectDigestGetResponse200PropAttestationsItems", - "UsersUsernameCopilotSpacesGetResponse200", - "UsersUsernameCopilotSpacesPostBody", - "UsersUsernameCopilotSpacesPostBodyPropResourcesAttributesItems", - "UsersUsernameCopilotSpacesPostBodyPropResourcesAttributesItemsPropMetadata", - "UsersUsernameCopilotSpacesSpaceNumberPutBody", - "UsersUsernameCopilotSpacesSpaceNumberPutBodyPropResourcesAttributesItems", - "UsersUsernameCopilotSpacesSpaceNumberPutBodyPropResourcesAttributesItemsPropMetadata", - "UsersUsernameCopilotSpacesSpaceNumberCollaboratorsGetResponse200", - "UsersUsernameCopilotSpacesSpaceNumberCollaboratorsPostBody", - "UsersUsernameCopilotSpacesSpaceNumberCollaboratorsActorTypeActorIdentifierPutBody", - "UsersUsernameCopilotSpacesSpaceNumberResourcesGetResponse200", - "UsersUsernameCopilotSpacesSpaceNumberResourcesPostBody", - "UsersUsernameCopilotSpacesSpaceNumberResourcesPostBodyPropMetadata", - "UsersUsernameCopilotSpacesSpaceNumberResourcesSpaceResourceIdPutBody", - "UsersUsernameCopilotSpacesSpaceNumberResourcesSpaceResourceIdPutBodyPropMetadata", - "UsersUsernameProjectsV2ProjectNumberFieldsPostBodyOneof0", - "UsersUsernameProjectsV2ProjectNumberFieldsPostBodyOneof1", - "UsersUsernameProjectsV2ProjectNumberFieldsPostBodyOneof2", - "UsersUsernameProjectsV2ProjectNumberItemsPostBodyOneof0", - "UsersUsernameProjectsV2ProjectNumberItemsPostBodyOneof1", - "UsersUsernameProjectsV2ProjectNumberItemsItemIdPatchBody", - "UsersUsernameProjectsV2ProjectNumberItemsItemIdPatchBodyPropFieldsItems", - ) - } diff --git a/githubkit/versions/__init__.py b/githubkit/versions/__init__.py index 835d937822..51139e289e 100644 --- a/githubkit/versions/__init__.py +++ b/githubkit/versions/__init__.py @@ -1,22 +1,5 @@ -"""DO NOT EDIT THIS FILE! - -This file is automatically @generated by githubkit using the follow command: - -bash ./scripts/run-codegen.sh - -See https://github.com/github/rest-api-description for more information. -""" - -from typing import Literal - -VERSIONS = { - "2022-11-28": "v2022_11_28", - "ghec-2022-11-28": "ghec_v2022_11_28", - "2026-03-10": "v2026_03_10", - "ghec-2026-03-10": "ghec_v2026_03_10", -} -LATEST_VERSION = "2026-03-10" -VERSION_TYPE = Literal["2022-11-28", "ghec-2022-11-28", "2026-03-10", "ghec-2026-03-10"] - -from .rest import RestVersionSwitcher as RestVersionSwitcher -from .webhooks import WebhooksVersionSwitcher as WebhooksVersionSwitcher +from githubkit_schemas.core import LATEST_VERSION as LATEST_VERSION +from githubkit_schemas.core import VERSION_TYPE as VERSION_TYPE +from githubkit_schemas.core import VERSIONS as VERSIONS +from githubkit_schemas.core import RestVersionSwitcher as RestVersionSwitcher +from githubkit_schemas.core import WebhooksVersionSwitcher as WebhooksVersionSwitcher diff --git a/githubkit/webhooks/__init__.py b/githubkit/webhooks/__init__.py index 4c71779338..002dfb335d 100644 --- a/githubkit/webhooks/__init__.py +++ b/githubkit/webhooks/__init__.py @@ -1,4 +1,4 @@ -from githubkit.versions.latest.webhooks import WebhookNamespace +from githubkit_schemas.latest.webhooks import WebhookNamespace parse_without_name = WebhookNamespace.parse_without_name diff --git a/packages/githubkit-schemas-2022-11-28/README.md b/packages/githubkit-schemas-2022-11-28/README.md new file mode 100644 index 0000000000..240b20da76 --- /dev/null +++ b/packages/githubkit-schemas-2022-11-28/README.md @@ -0,0 +1,57 @@ + +
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Documentation | + Report Bug | + GitHub Docs +
+ +This package provides the models and GitHub schemas for GitHubKit. + +When GitHub schemas are updated, this package will be updated accordingly. You can also lock the version of this package using a dependency manager like `uv` to ensure that your project is using a specific version of the schemas. + +## Getting Started + +For more, see the [documentation](https://yanyongyu.github.io/githubkit). diff --git a/githubkit/versions/ghec_v2022_11_28/__init__.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/__init__.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/__init__.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/__init__.py diff --git a/githubkit/versions/v2022_11_28/models/__init__.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/__init__.py similarity index 99% rename from githubkit/versions/v2022_11_28/models/__init__.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/__init__.py index b939cfff6c..d58e622712 100644 --- a/githubkit/versions/v2022_11_28/models/__init__.py +++ b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/__init__.py @@ -9,7 +9,7 @@ from typing import TYPE_CHECKING -from githubkit.lazy_module import is_lazy_disabled +from githubkit.module_hooks.lazy_module import is_lazy_disabled if TYPE_CHECKING or is_lazy_disabled(): from .group_0000 import Root as Root diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0000.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0000.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0000.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0000.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0001.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0001.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0001.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0001.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0002.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0002.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0002.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0002.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0003.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0003.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0003.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0003.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0004.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0004.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0004.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0004.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0005.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0005.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0005.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0005.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0006.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0006.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0006.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0006.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0007.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0007.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0007.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0007.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0008.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0008.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0008.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0008.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0009.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0009.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0009.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0009.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0010.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0010.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0010.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0010.py diff --git a/githubkit/versions/v2022_11_28/models/group_0011.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0011.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0011.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0011.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0012.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0012.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0012.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0012.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0013.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0013.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0013.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0013.py diff --git a/githubkit/versions/v2022_11_28/models/group_0014.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0014.py similarity index 92% rename from githubkit/versions/v2022_11_28/models/group_0014.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0014.py index d347d5d9ad..120f59894b 100644 --- a/githubkit/versions/v2022_11_28/models/group_0014.py +++ b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0014.py @@ -37,7 +37,7 @@ class ValidationErrorPropErrorsItems(GitHubModel): message: Missing[str] = Field(default=UNSET) code: str = Field() index: Missing[int] = Field(default=UNSET) - value: Missing[Union[str, None, int, None, list[str], None]] = Field(default=UNSET) + value: Missing[Union[str, None, int, list[str]]] = Field(default=UNSET) model_rebuild(ValidationError) diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0015.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0015.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0015.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0015.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0016.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0016.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0016.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0016.py diff --git a/githubkit/versions/v2022_11_28/models/group_0017.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0017.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0017.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0017.py diff --git a/githubkit/versions/v2022_11_28/models/group_0018.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0018.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0018.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0018.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0019.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0019.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0019.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0019.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0020.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0020.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0020.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0020.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0021.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0021.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0021.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0021.py diff --git a/githubkit/versions/v2022_11_28/models/group_0022.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0022.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0022.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0022.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0023.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0023.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0023.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0023.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0024.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0024.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0024.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0024.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0025.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0025.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0025.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0025.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0026.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0026.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0026.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0026.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0027.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0027.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0027.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0027.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0028.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0028.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0028.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0028.py diff --git a/githubkit/versions/v2022_11_28/models/group_0029.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0029.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0029.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0029.py diff --git a/githubkit/versions/v2022_11_28/models/group_0030.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0030.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0030.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0030.py diff --git a/githubkit/versions/v2022_11_28/models/group_0031.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0031.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0031.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0031.py diff --git a/githubkit/versions/v2022_11_28/models/group_0032.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0032.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0032.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0032.py diff --git a/githubkit/versions/v2022_11_28/models/group_0033.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0033.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0033.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0033.py diff --git a/githubkit/versions/v2022_11_28/models/group_0034.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0034.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0034.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0034.py diff --git a/githubkit/versions/v2022_11_28/models/group_0035.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0035.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0035.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0035.py diff --git a/githubkit/versions/v2022_11_28/models/group_0036.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0036.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0036.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0036.py diff --git a/githubkit/versions/v2022_11_28/models/group_0037.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0037.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0037.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0037.py diff --git a/githubkit/versions/v2022_11_28/models/group_0038.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0038.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0038.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0038.py diff --git a/githubkit/versions/v2022_11_28/models/group_0039.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0039.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0039.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0039.py diff --git a/githubkit/versions/v2022_11_28/models/group_0040.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0040.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0040.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0040.py diff --git a/githubkit/versions/v2022_11_28/models/group_0041.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0041.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0041.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0041.py diff --git a/githubkit/versions/v2022_11_28/models/group_0042.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0042.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0042.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0042.py diff --git a/githubkit/versions/v2022_11_28/models/group_0043.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0043.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0043.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0043.py diff --git a/githubkit/versions/v2022_11_28/models/group_0044.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0044.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0044.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0044.py diff --git a/githubkit/versions/v2022_11_28/models/group_0045.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0045.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0045.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0045.py diff --git a/githubkit/versions/v2022_11_28/models/group_0046.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0046.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0046.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0046.py diff --git a/githubkit/versions/v2022_11_28/models/group_0047.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0047.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0047.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0047.py diff --git a/githubkit/versions/v2022_11_28/models/group_0048.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0048.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0048.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0048.py diff --git a/githubkit/versions/v2022_11_28/models/group_0049.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0049.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0049.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0049.py diff --git a/githubkit/versions/v2022_11_28/models/group_0050.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0050.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0050.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0050.py diff --git a/githubkit/versions/v2022_11_28/models/group_0051.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0051.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0051.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0051.py diff --git a/githubkit/versions/v2022_11_28/models/group_0052.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0052.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0052.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0052.py diff --git a/githubkit/versions/v2022_11_28/models/group_0053.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0053.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0053.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0053.py diff --git a/githubkit/versions/v2022_11_28/models/group_0054.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0054.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0054.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0054.py diff --git a/githubkit/versions/v2022_11_28/models/group_0055.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0055.py similarity index 94% rename from githubkit/versions/v2022_11_28/models/group_0055.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0055.py index 3024b76ad4..0fcfd776c5 100644 --- a/githubkit/versions/v2022_11_28/models/group_0055.py +++ b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0055.py @@ -59,9 +59,7 @@ class IssueComment(GitHubModel): title="author_association", description="How the author is associated with the repository.", ) - performed_via_github_app: Missing[Union[None, Integration, None]] = Field( - default=UNSET - ) + performed_via_github_app: Missing[Union[None, Integration]] = Field(default=UNSET) reactions: Missing[ReactionRollup] = Field(default=UNSET, title="Reaction Rollup") pin: Missing[Union[None, PinnedIssueComment]] = Field(default=UNSET) diff --git a/githubkit/versions/v2022_11_28/models/group_0056.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0056.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0056.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0056.py diff --git a/githubkit/versions/v2022_11_28/models/group_0057.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0057.py similarity index 98% rename from githubkit/versions/v2022_11_28/models/group_0057.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0057.py index 5512230d7e..9637ac5c25 100644 --- a/githubkit/versions/v2022_11_28/models/group_0057.py +++ b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0057.py @@ -80,9 +80,7 @@ class Issue(GitHubModel): repository: Missing[Repository] = Field( default=UNSET, title="Repository", description="A repository on GitHub." ) - performed_via_github_app: Missing[Union[None, Integration, None]] = Field( - default=UNSET - ) + performed_via_github_app: Missing[Union[None, Integration]] = Field(default=UNSET) author_association: Missing[ Literal[ "COLLABORATOR", diff --git a/githubkit/versions/v2022_11_28/models/group_0058.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0058.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0058.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0058.py diff --git a/githubkit/versions/v2022_11_28/models/group_0059.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0059.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0059.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0059.py diff --git a/githubkit/versions/v2022_11_28/models/group_0060.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0060.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0060.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0060.py diff --git a/githubkit/versions/v2022_11_28/models/group_0061.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0061.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0061.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0061.py diff --git a/githubkit/versions/v2022_11_28/models/group_0062.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0062.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0062.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0062.py diff --git a/githubkit/versions/v2022_11_28/models/group_0063.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0063.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0063.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0063.py diff --git a/githubkit/versions/v2022_11_28/models/group_0064.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0064.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0064.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0064.py diff --git a/githubkit/versions/v2022_11_28/models/group_0065.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0065.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0065.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0065.py diff --git a/githubkit/versions/v2022_11_28/models/group_0066.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0066.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0066.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0066.py diff --git a/githubkit/versions/v2022_11_28/models/group_0067.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0067.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0067.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0067.py diff --git a/githubkit/versions/v2022_11_28/models/group_0068.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0068.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0068.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0068.py diff --git a/githubkit/versions/v2022_11_28/models/group_0069.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0069.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0069.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0069.py diff --git a/githubkit/versions/v2022_11_28/models/group_0070.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0070.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0070.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0070.py diff --git a/githubkit/versions/v2022_11_28/models/group_0071.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0071.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0071.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0071.py diff --git a/githubkit/versions/v2022_11_28/models/group_0072.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0072.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0072.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0072.py diff --git a/githubkit/versions/v2022_11_28/models/group_0073.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0073.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0073.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0073.py diff --git a/githubkit/versions/v2022_11_28/models/group_0074.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0074.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0074.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0074.py diff --git a/githubkit/versions/v2022_11_28/models/group_0075.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0075.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0075.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0075.py diff --git a/githubkit/versions/v2022_11_28/models/group_0076.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0076.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0076.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0076.py diff --git a/githubkit/versions/v2022_11_28/models/group_0077.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0077.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0077.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0077.py diff --git a/githubkit/versions/v2022_11_28/models/group_0078.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0078.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0078.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0078.py diff --git a/githubkit/versions/v2022_11_28/models/group_0079.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0079.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0079.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0079.py diff --git a/githubkit/versions/v2022_11_28/models/group_0080.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0080.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0080.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0080.py diff --git a/githubkit/versions/v2022_11_28/models/group_0081.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0081.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0081.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0081.py diff --git a/githubkit/versions/v2022_11_28/models/group_0082.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0082.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0082.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0082.py diff --git a/githubkit/versions/v2022_11_28/models/group_0083.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0083.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0083.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0083.py diff --git a/githubkit/versions/v2022_11_28/models/group_0084.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0084.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0084.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0084.py diff --git a/githubkit/versions/v2022_11_28/models/group_0085.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0085.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0085.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0085.py diff --git a/githubkit/versions/v2022_11_28/models/group_0086.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0086.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0086.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0086.py diff --git a/githubkit/versions/v2022_11_28/models/group_0087.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0087.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0087.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0087.py diff --git a/githubkit/versions/v2022_11_28/models/group_0088.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0088.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0088.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0088.py diff --git a/githubkit/versions/v2022_11_28/models/group_0089.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0089.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0089.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0089.py diff --git a/githubkit/versions/v2022_11_28/models/group_0090.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0090.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0090.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0090.py diff --git a/githubkit/versions/v2022_11_28/models/group_0091.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0091.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0091.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0091.py diff --git a/githubkit/versions/v2022_11_28/models/group_0092.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0092.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0092.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0092.py diff --git a/githubkit/versions/v2022_11_28/models/group_0093.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0093.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0093.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0093.py diff --git a/githubkit/versions/v2022_11_28/models/group_0094.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0094.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0094.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0094.py diff --git a/githubkit/versions/v2022_11_28/models/group_0095.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0095.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0095.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0095.py diff --git a/githubkit/versions/v2022_11_28/models/group_0096.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0096.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0096.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0096.py diff --git a/githubkit/versions/v2022_11_28/models/group_0097.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0097.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0097.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0097.py diff --git a/githubkit/versions/v2022_11_28/models/group_0098.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0098.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0098.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0098.py diff --git a/githubkit/versions/v2022_11_28/models/group_0099.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0099.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0099.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0099.py diff --git a/githubkit/versions/v2022_11_28/models/group_0100.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0100.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0100.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0100.py diff --git a/githubkit/versions/v2022_11_28/models/group_0101.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0101.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0101.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0101.py diff --git a/githubkit/versions/v2022_11_28/models/group_0102.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0102.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0102.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0102.py diff --git a/githubkit/versions/v2022_11_28/models/group_0103.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0103.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0103.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0103.py diff --git a/githubkit/versions/v2022_11_28/models/group_0104.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0104.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0104.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0104.py diff --git a/githubkit/versions/v2022_11_28/models/group_0105.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0105.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0105.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0105.py diff --git a/githubkit/versions/v2022_11_28/models/group_0106.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0106.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0106.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0106.py diff --git a/githubkit/versions/v2022_11_28/models/group_0107.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0107.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0107.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0107.py diff --git a/githubkit/versions/v2022_11_28/models/group_0108.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0108.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0108.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0108.py diff --git a/githubkit/versions/v2022_11_28/models/group_0109.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0109.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0109.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0109.py diff --git a/githubkit/versions/v2022_11_28/models/group_0110.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0110.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0110.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0110.py diff --git a/githubkit/versions/v2022_11_28/models/group_0111.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0111.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0111.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0111.py diff --git a/githubkit/versions/v2022_11_28/models/group_0112.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0112.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0112.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0112.py diff --git a/githubkit/versions/v2022_11_28/models/group_0113.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0113.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0113.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0113.py diff --git a/githubkit/versions/v2022_11_28/models/group_0114.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0114.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0114.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0114.py diff --git a/githubkit/versions/v2022_11_28/models/group_0115.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0115.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0115.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0115.py diff --git a/githubkit/versions/v2022_11_28/models/group_0116.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0116.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0116.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0116.py diff --git a/githubkit/versions/v2022_11_28/models/group_0117.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0117.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0117.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0117.py diff --git a/githubkit/versions/v2022_11_28/models/group_0118.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0118.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0118.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0118.py diff --git a/githubkit/versions/v2022_11_28/models/group_0119.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0119.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0119.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0119.py diff --git a/githubkit/versions/v2022_11_28/models/group_0120.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0120.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0120.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0120.py diff --git a/githubkit/versions/v2022_11_28/models/group_0121.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0121.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0121.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0121.py diff --git a/githubkit/versions/v2022_11_28/models/group_0122.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0122.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0122.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0122.py diff --git a/githubkit/versions/v2022_11_28/models/group_0123.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0123.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0123.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0123.py diff --git a/githubkit/versions/v2022_11_28/models/group_0124.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0124.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0124.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0124.py diff --git a/githubkit/versions/v2022_11_28/models/group_0125.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0125.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0125.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0125.py diff --git a/githubkit/versions/v2022_11_28/models/group_0126.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0126.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0126.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0126.py diff --git a/githubkit/versions/v2022_11_28/models/group_0127.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0127.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0127.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0127.py diff --git a/githubkit/versions/v2022_11_28/models/group_0128.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0128.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0128.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0128.py diff --git a/githubkit/versions/v2022_11_28/models/group_0129.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0129.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0129.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0129.py diff --git a/githubkit/versions/v2022_11_28/models/group_0130.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0130.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0130.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0130.py diff --git a/githubkit/versions/v2022_11_28/models/group_0131.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0131.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0131.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0131.py diff --git a/githubkit/versions/v2022_11_28/models/group_0132.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0132.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0132.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0132.py diff --git a/githubkit/versions/v2022_11_28/models/group_0133.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0133.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0133.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0133.py diff --git a/githubkit/versions/v2022_11_28/models/group_0134.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0134.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0134.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0134.py diff --git a/githubkit/versions/v2022_11_28/models/group_0135.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0135.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0135.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0135.py diff --git a/githubkit/versions/v2022_11_28/models/group_0136.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0136.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0136.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0136.py diff --git a/githubkit/versions/v2022_11_28/models/group_0137.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0137.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0137.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0137.py diff --git a/githubkit/versions/v2022_11_28/models/group_0138.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0138.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0138.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0138.py diff --git a/githubkit/versions/v2022_11_28/models/group_0139.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0139.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0139.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0139.py diff --git a/githubkit/versions/v2022_11_28/models/group_0140.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0140.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0140.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0140.py diff --git a/githubkit/versions/v2022_11_28/models/group_0141.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0141.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0141.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0141.py diff --git a/githubkit/versions/v2022_11_28/models/group_0142.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0142.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0142.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0142.py diff --git a/githubkit/versions/v2022_11_28/models/group_0143.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0143.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0143.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0143.py diff --git a/githubkit/versions/v2022_11_28/models/group_0144.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0144.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0144.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0144.py diff --git a/githubkit/versions/v2022_11_28/models/group_0145.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0145.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0145.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0145.py diff --git a/githubkit/versions/v2022_11_28/models/group_0146.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0146.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0146.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0146.py diff --git a/githubkit/versions/v2022_11_28/models/group_0147.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0147.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0147.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0147.py diff --git a/githubkit/versions/v2022_11_28/models/group_0148.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0148.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0148.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0148.py diff --git a/githubkit/versions/v2022_11_28/models/group_0149.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0149.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0149.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0149.py diff --git a/githubkit/versions/v2022_11_28/models/group_0150.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0150.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0150.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0150.py diff --git a/githubkit/versions/v2022_11_28/models/group_0151.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0151.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0151.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0151.py diff --git a/githubkit/versions/v2022_11_28/models/group_0152.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0152.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0152.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0152.py diff --git a/githubkit/versions/v2022_11_28/models/group_0153.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0153.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0153.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0153.py diff --git a/githubkit/versions/v2022_11_28/models/group_0154.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0154.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0154.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0154.py diff --git a/githubkit/versions/v2022_11_28/models/group_0155.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0155.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0155.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0155.py diff --git a/githubkit/versions/v2022_11_28/models/group_0156.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0156.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0156.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0156.py diff --git a/githubkit/versions/v2022_11_28/models/group_0157.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0157.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0157.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0157.py diff --git a/githubkit/versions/v2022_11_28/models/group_0158.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0158.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0158.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0158.py diff --git a/githubkit/versions/v2022_11_28/models/group_0159.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0159.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0159.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0159.py diff --git a/githubkit/versions/v2022_11_28/models/group_0160.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0160.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0160.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0160.py diff --git a/githubkit/versions/v2022_11_28/models/group_0161.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0161.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0161.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0161.py diff --git a/githubkit/versions/v2022_11_28/models/group_0162.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0162.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0162.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0162.py diff --git a/githubkit/versions/v2022_11_28/models/group_0163.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0163.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0163.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0163.py diff --git a/githubkit/versions/v2022_11_28/models/group_0164.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0164.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0164.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0164.py diff --git a/githubkit/versions/v2022_11_28/models/group_0165.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0165.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0165.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0165.py diff --git a/githubkit/versions/v2022_11_28/models/group_0166.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0166.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0166.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0166.py diff --git a/githubkit/versions/v2022_11_28/models/group_0167.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0167.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0167.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0167.py diff --git a/githubkit/versions/v2022_11_28/models/group_0168.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0168.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0168.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0168.py diff --git a/githubkit/versions/v2022_11_28/models/group_0169.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0169.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0169.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0169.py diff --git a/githubkit/versions/v2022_11_28/models/group_0170.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0170.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0170.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0170.py diff --git a/githubkit/versions/v2022_11_28/models/group_0171.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0171.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0171.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0171.py diff --git a/githubkit/versions/v2022_11_28/models/group_0172.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0172.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0172.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0172.py diff --git a/githubkit/versions/v2022_11_28/models/group_0173.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0173.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0173.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0173.py diff --git a/githubkit/versions/v2022_11_28/models/group_0174.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0174.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0174.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0174.py diff --git a/githubkit/versions/v2022_11_28/models/group_0175.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0175.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0175.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0175.py diff --git a/githubkit/versions/v2022_11_28/models/group_0176.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0176.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0176.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0176.py diff --git a/githubkit/versions/v2022_11_28/models/group_0177.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0177.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0177.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0177.py diff --git a/githubkit/versions/v2022_11_28/models/group_0178.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0178.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0178.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0178.py diff --git a/githubkit/versions/v2022_11_28/models/group_0179.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0179.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0179.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0179.py diff --git a/githubkit/versions/v2022_11_28/models/group_0180.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0180.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0180.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0180.py diff --git a/githubkit/versions/v2022_11_28/models/group_0181.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0181.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0181.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0181.py diff --git a/githubkit/versions/v2022_11_28/models/group_0182.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0182.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0182.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0182.py diff --git a/githubkit/versions/v2022_11_28/models/group_0183.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0183.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0183.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0183.py diff --git a/githubkit/versions/v2022_11_28/models/group_0184.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0184.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0184.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0184.py diff --git a/githubkit/versions/v2022_11_28/models/group_0185.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0185.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0185.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0185.py diff --git a/githubkit/versions/v2022_11_28/models/group_0186.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0186.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0186.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0186.py diff --git a/githubkit/versions/v2022_11_28/models/group_0187.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0187.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0187.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0187.py diff --git a/githubkit/versions/v2022_11_28/models/group_0188.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0188.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0188.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0188.py diff --git a/githubkit/versions/v2022_11_28/models/group_0189.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0189.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0189.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0189.py diff --git a/githubkit/versions/v2022_11_28/models/group_0190.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0190.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0190.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0190.py diff --git a/githubkit/versions/v2022_11_28/models/group_0191.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0191.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0191.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0191.py diff --git a/githubkit/versions/v2022_11_28/models/group_0192.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0192.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0192.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0192.py diff --git a/githubkit/versions/v2022_11_28/models/group_0193.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0193.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0193.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0193.py diff --git a/githubkit/versions/v2022_11_28/models/group_0194.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0194.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0194.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0194.py diff --git a/githubkit/versions/v2022_11_28/models/group_0195.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0195.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0195.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0195.py diff --git a/githubkit/versions/v2022_11_28/models/group_0196.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0196.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0196.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0196.py diff --git a/githubkit/versions/v2022_11_28/models/group_0197.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0197.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0197.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0197.py diff --git a/githubkit/versions/v2022_11_28/models/group_0198.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0198.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0198.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0198.py diff --git a/githubkit/versions/v2022_11_28/models/group_0199.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0199.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0199.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0199.py diff --git a/githubkit/versions/v2022_11_28/models/group_0200.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0200.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0200.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0200.py diff --git a/githubkit/versions/v2022_11_28/models/group_0201.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0201.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0201.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0201.py diff --git a/githubkit/versions/v2022_11_28/models/group_0202.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0202.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0202.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0202.py diff --git a/githubkit/versions/v2022_11_28/models/group_0203.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0203.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0203.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0203.py diff --git a/githubkit/versions/v2022_11_28/models/group_0204.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0204.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0204.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0204.py diff --git a/githubkit/versions/v2022_11_28/models/group_0205.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0205.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0205.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0205.py diff --git a/githubkit/versions/v2022_11_28/models/group_0206.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0206.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0206.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0206.py diff --git a/githubkit/versions/v2022_11_28/models/group_0207.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0207.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0207.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0207.py diff --git a/githubkit/versions/v2022_11_28/models/group_0208.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0208.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0208.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0208.py diff --git a/githubkit/versions/v2022_11_28/models/group_0209.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0209.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0209.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0209.py diff --git a/githubkit/versions/v2022_11_28/models/group_0210.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0210.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0210.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0210.py diff --git a/githubkit/versions/v2022_11_28/models/group_0211.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0211.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0211.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0211.py diff --git a/githubkit/versions/v2022_11_28/models/group_0212.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0212.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0212.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0212.py diff --git a/githubkit/versions/v2022_11_28/models/group_0213.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0213.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0213.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0213.py diff --git a/githubkit/versions/v2022_11_28/models/group_0214.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0214.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0214.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0214.py diff --git a/githubkit/versions/v2022_11_28/models/group_0215.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0215.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0215.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0215.py diff --git a/githubkit/versions/v2022_11_28/models/group_0216.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0216.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0216.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0216.py diff --git a/githubkit/versions/v2022_11_28/models/group_0217.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0217.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0217.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0217.py diff --git a/githubkit/versions/v2022_11_28/models/group_0218.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0218.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0218.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0218.py diff --git a/githubkit/versions/v2022_11_28/models/group_0219.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0219.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0219.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0219.py diff --git a/githubkit/versions/v2022_11_28/models/group_0220.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0220.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0220.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0220.py diff --git a/githubkit/versions/v2022_11_28/models/group_0221.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0221.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0221.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0221.py diff --git a/githubkit/versions/v2022_11_28/models/group_0222.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0222.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0222.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0222.py diff --git a/githubkit/versions/v2022_11_28/models/group_0223.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0223.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0223.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0223.py diff --git a/githubkit/versions/v2022_11_28/models/group_0224.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0224.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0224.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0224.py diff --git a/githubkit/versions/v2022_11_28/models/group_0225.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0225.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0225.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0225.py diff --git a/githubkit/versions/v2022_11_28/models/group_0226.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0226.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0226.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0226.py diff --git a/githubkit/versions/v2022_11_28/models/group_0227.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0227.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0227.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0227.py diff --git a/githubkit/versions/v2022_11_28/models/group_0228.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0228.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0228.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0228.py diff --git a/githubkit/versions/v2022_11_28/models/group_0229.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0229.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0229.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0229.py diff --git a/githubkit/versions/v2022_11_28/models/group_0230.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0230.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0230.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0230.py diff --git a/githubkit/versions/v2022_11_28/models/group_0231.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0231.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0231.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0231.py diff --git a/githubkit/versions/v2022_11_28/models/group_0232.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0232.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0232.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0232.py diff --git a/githubkit/versions/v2022_11_28/models/group_0233.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0233.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0233.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0233.py diff --git a/githubkit/versions/v2022_11_28/models/group_0234.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0234.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0234.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0234.py diff --git a/githubkit/versions/v2022_11_28/models/group_0235.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0235.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0235.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0235.py diff --git a/githubkit/versions/v2022_11_28/models/group_0236.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0236.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0236.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0236.py diff --git a/githubkit/versions/v2022_11_28/models/group_0237.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0237.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0237.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0237.py diff --git a/githubkit/versions/v2022_11_28/models/group_0238.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0238.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0238.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0238.py diff --git a/githubkit/versions/v2022_11_28/models/group_0239.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0239.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0239.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0239.py diff --git a/githubkit/versions/v2022_11_28/models/group_0240.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0240.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0240.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0240.py diff --git a/githubkit/versions/v2022_11_28/models/group_0241.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0241.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0241.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0241.py diff --git a/githubkit/versions/v2022_11_28/models/group_0242.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0242.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0242.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0242.py diff --git a/githubkit/versions/v2022_11_28/models/group_0243.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0243.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0243.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0243.py diff --git a/githubkit/versions/v2022_11_28/models/group_0244.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0244.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0244.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0244.py diff --git a/githubkit/versions/v2022_11_28/models/group_0245.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0245.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0245.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0245.py diff --git a/githubkit/versions/v2022_11_28/models/group_0246.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0246.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0246.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0246.py diff --git a/githubkit/versions/v2022_11_28/models/group_0247.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0247.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0247.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0247.py diff --git a/githubkit/versions/v2022_11_28/models/group_0248.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0248.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0248.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0248.py diff --git a/githubkit/versions/v2022_11_28/models/group_0249.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0249.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0249.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0249.py diff --git a/githubkit/versions/v2022_11_28/models/group_0250.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0250.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0250.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0250.py diff --git a/githubkit/versions/v2022_11_28/models/group_0251.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0251.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0251.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0251.py diff --git a/githubkit/versions/v2022_11_28/models/group_0252.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0252.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0252.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0252.py diff --git a/githubkit/versions/v2022_11_28/models/group_0253.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0253.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0253.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0253.py diff --git a/githubkit/versions/v2022_11_28/models/group_0254.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0254.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0254.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0254.py diff --git a/githubkit/versions/v2022_11_28/models/group_0255.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0255.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0255.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0255.py diff --git a/githubkit/versions/v2022_11_28/models/group_0256.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0256.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0256.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0256.py diff --git a/githubkit/versions/v2022_11_28/models/group_0257.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0257.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0257.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0257.py diff --git a/githubkit/versions/v2022_11_28/models/group_0258.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0258.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0258.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0258.py diff --git a/githubkit/versions/v2022_11_28/models/group_0259.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0259.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0259.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0259.py diff --git a/githubkit/versions/v2022_11_28/models/group_0260.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0260.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0260.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0260.py diff --git a/githubkit/versions/v2022_11_28/models/group_0261.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0261.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0261.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0261.py diff --git a/githubkit/versions/v2022_11_28/models/group_0262.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0262.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0262.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0262.py diff --git a/githubkit/versions/v2022_11_28/models/group_0263.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0263.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0263.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0263.py diff --git a/githubkit/versions/v2022_11_28/models/group_0264.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0264.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0264.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0264.py diff --git a/githubkit/versions/v2022_11_28/models/group_0265.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0265.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0265.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0265.py diff --git a/githubkit/versions/v2022_11_28/models/group_0266.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0266.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0266.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0266.py diff --git a/githubkit/versions/v2022_11_28/models/group_0267.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0267.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0267.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0267.py diff --git a/githubkit/versions/v2022_11_28/models/group_0268.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0268.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0268.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0268.py diff --git a/githubkit/versions/v2022_11_28/models/group_0269.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0269.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0269.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0269.py diff --git a/githubkit/versions/v2022_11_28/models/group_0270.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0270.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0270.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0270.py diff --git a/githubkit/versions/v2022_11_28/models/group_0271.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0271.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0271.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0271.py diff --git a/githubkit/versions/v2022_11_28/models/group_0272.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0272.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0272.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0272.py diff --git a/githubkit/versions/v2022_11_28/models/group_0273.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0273.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0273.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0273.py diff --git a/githubkit/versions/v2022_11_28/models/group_0274.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0274.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0274.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0274.py diff --git a/githubkit/versions/v2022_11_28/models/group_0275.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0275.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0275.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0275.py diff --git a/githubkit/versions/v2022_11_28/models/group_0276.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0276.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0276.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0276.py diff --git a/githubkit/versions/v2022_11_28/models/group_0277.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0277.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0277.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0277.py diff --git a/githubkit/versions/v2022_11_28/models/group_0278.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0278.py similarity index 95% rename from githubkit/versions/v2022_11_28/models/group_0278.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0278.py index 95359f3748..986961f173 100644 --- a/githubkit/versions/v2022_11_28/models/group_0278.py +++ b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0278.py @@ -53,9 +53,7 @@ class Deployment(GitHubModel): default=UNSET, description="Specifies if the given environment is one that end-users directly interact with. Default: false.", ) - performed_via_github_app: Missing[Union[None, Integration, None]] = Field( - default=UNSET - ) + performed_via_github_app: Missing[Union[None, Integration]] = Field(default=UNSET) class DeploymentPropPayloadOneof0(ExtraGitHubModel): diff --git a/githubkit/versions/v2022_11_28/models/group_0279.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0279.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0279.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0279.py diff --git a/githubkit/versions/v2022_11_28/models/group_0280.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0280.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0280.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0280.py diff --git a/githubkit/versions/v2022_11_28/models/group_0281.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0281.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0281.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0281.py diff --git a/githubkit/versions/v2022_11_28/models/group_0282.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0282.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0282.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0282.py diff --git a/githubkit/versions/v2022_11_28/models/group_0283.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0283.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0283.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0283.py diff --git a/githubkit/versions/v2022_11_28/models/group_0284.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0284.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0284.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0284.py diff --git a/githubkit/versions/v2022_11_28/models/group_0285.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0285.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0285.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0285.py diff --git a/githubkit/versions/v2022_11_28/models/group_0286.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0286.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0286.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0286.py diff --git a/githubkit/versions/v2022_11_28/models/group_0287.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0287.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0287.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0287.py diff --git a/githubkit/versions/v2022_11_28/models/group_0288.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0288.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0288.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0288.py diff --git a/githubkit/versions/v2022_11_28/models/group_0289.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0289.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0289.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0289.py diff --git a/githubkit/versions/v2022_11_28/models/group_0290.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0290.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0290.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0290.py diff --git a/githubkit/versions/v2022_11_28/models/group_0291.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0291.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0291.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0291.py diff --git a/githubkit/versions/v2022_11_28/models/group_0292.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0292.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0292.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0292.py diff --git a/githubkit/versions/v2022_11_28/models/group_0293.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0293.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0293.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0293.py diff --git a/githubkit/versions/v2022_11_28/models/group_0294.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0294.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0294.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0294.py diff --git a/githubkit/versions/v2022_11_28/models/group_0295.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0295.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0295.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0295.py diff --git a/githubkit/versions/v2022_11_28/models/group_0296.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0296.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0296.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0296.py diff --git a/githubkit/versions/v2022_11_28/models/group_0297.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0297.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0297.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0297.py diff --git a/githubkit/versions/v2022_11_28/models/group_0298.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0298.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0298.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0298.py diff --git a/githubkit/versions/v2022_11_28/models/group_0299.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0299.py similarity index 94% rename from githubkit/versions/v2022_11_28/models/group_0299.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0299.py index 19eaea59f7..f16ebab022 100644 --- a/githubkit/versions/v2022_11_28/models/group_0299.py +++ b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0299.py @@ -47,9 +47,7 @@ class DeploymentSimple(GitHubModel): default=UNSET, description="Specifies if the given environment is one that end-users directly interact with. Default: false.", ) - performed_via_github_app: Missing[Union[None, Integration, None]] = Field( - default=UNSET - ) + performed_via_github_app: Missing[Union[None, Integration]] = Field(default=UNSET) model_rebuild(DeploymentSimple) diff --git a/githubkit/versions/v2022_11_28/models/group_0300.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0300.py similarity index 98% rename from githubkit/versions/v2022_11_28/models/group_0300.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0300.py index c24b7409b5..3fdf543c56 100644 --- a/githubkit/versions/v2022_11_28/models/group_0300.py +++ b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0300.py @@ -58,7 +58,7 @@ class CheckRun(GitHubModel): output: CheckRunPropOutput = Field() name: str = Field(description="The name of the check.") check_suite: Union[CheckRunPropCheckSuite, None] = Field() - app: Union[None, Integration, None] = Field() + app: Union[None, Integration] = Field() pull_requests: list[PullRequestMinimal] = Field( description="Pull requests that are open with a `head_sha` or `head_branch` that matches the check. The returned pull requests do not necessarily indicate pull requests that triggered the check." ) diff --git a/githubkit/versions/v2022_11_28/models/group_0301.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0301.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0301.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0301.py diff --git a/githubkit/versions/v2022_11_28/models/group_0302.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0302.py similarity index 98% rename from githubkit/versions/v2022_11_28/models/group_0302.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0302.py index 573000dd0b..1af172e194 100644 --- a/githubkit/versions/v2022_11_28/models/group_0302.py +++ b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0302.py @@ -62,7 +62,7 @@ class CheckSuite(GitHubModel): before: Union[str, None] = Field() after: Union[str, None] = Field() pull_requests: Union[list[PullRequestMinimal], None] = Field() - app: Union[None, Integration, None] = Field() + app: Union[None, Integration] = Field() repository: MinimalRepository = Field( title="Minimal Repository", description="Minimal Repository" ) diff --git a/githubkit/versions/v2022_11_28/models/group_0303.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0303.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0303.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0303.py diff --git a/githubkit/versions/v2022_11_28/models/group_0304.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0304.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0304.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0304.py diff --git a/githubkit/versions/v2022_11_28/models/group_0305.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0305.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0305.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0305.py diff --git a/githubkit/versions/v2022_11_28/models/group_0306.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0306.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0306.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0306.py diff --git a/githubkit/versions/v2022_11_28/models/group_0307.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0307.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0307.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0307.py diff --git a/githubkit/versions/v2022_11_28/models/group_0308.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0308.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0308.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0308.py diff --git a/githubkit/versions/v2022_11_28/models/group_0309.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0309.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0309.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0309.py diff --git a/githubkit/versions/v2022_11_28/models/group_0310.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0310.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0310.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0310.py diff --git a/githubkit/versions/v2022_11_28/models/group_0311.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0311.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0311.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0311.py diff --git a/githubkit/versions/v2022_11_28/models/group_0312.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0312.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0312.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0312.py diff --git a/githubkit/versions/v2022_11_28/models/group_0313.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0313.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0313.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0313.py diff --git a/githubkit/versions/v2022_11_28/models/group_0314.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0314.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0314.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0314.py diff --git a/githubkit/versions/v2022_11_28/models/group_0315.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0315.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0315.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0315.py diff --git a/githubkit/versions/v2022_11_28/models/group_0316.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0316.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0316.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0316.py diff --git a/githubkit/versions/v2022_11_28/models/group_0317.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0317.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0317.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0317.py diff --git a/githubkit/versions/v2022_11_28/models/group_0318.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0318.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0318.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0318.py diff --git a/githubkit/versions/v2022_11_28/models/group_0319.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0319.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0319.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0319.py diff --git a/githubkit/versions/v2022_11_28/models/group_0320.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0320.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0320.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0320.py diff --git a/githubkit/versions/v2022_11_28/models/group_0321.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0321.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0321.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0321.py diff --git a/githubkit/versions/v2022_11_28/models/group_0322.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0322.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0322.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0322.py diff --git a/githubkit/versions/v2022_11_28/models/group_0323.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0323.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0323.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0323.py diff --git a/githubkit/versions/v2022_11_28/models/group_0324.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0324.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0324.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0324.py diff --git a/githubkit/versions/v2022_11_28/models/group_0325.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0325.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0325.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0325.py diff --git a/githubkit/versions/v2022_11_28/models/group_0326.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0326.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0326.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0326.py diff --git a/githubkit/versions/v2022_11_28/models/group_0327.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0327.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0327.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0327.py diff --git a/githubkit/versions/v2022_11_28/models/group_0328.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0328.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0328.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0328.py diff --git a/githubkit/versions/v2022_11_28/models/group_0329.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0329.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0329.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0329.py diff --git a/githubkit/versions/v2022_11_28/models/group_0330.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0330.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0330.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0330.py diff --git a/githubkit/versions/v2022_11_28/models/group_0331.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0331.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0331.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0331.py diff --git a/githubkit/versions/v2022_11_28/models/group_0332.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0332.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0332.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0332.py diff --git a/githubkit/versions/v2022_11_28/models/group_0333.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0333.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0333.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0333.py diff --git a/githubkit/versions/v2022_11_28/models/group_0334.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0334.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0334.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0334.py diff --git a/githubkit/versions/v2022_11_28/models/group_0335.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0335.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0335.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0335.py diff --git a/githubkit/versions/v2022_11_28/models/group_0336.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0336.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0336.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0336.py diff --git a/githubkit/versions/v2022_11_28/models/group_0337.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0337.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0337.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0337.py diff --git a/githubkit/versions/v2022_11_28/models/group_0338.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0338.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0338.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0338.py diff --git a/githubkit/versions/v2022_11_28/models/group_0339.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0339.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0339.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0339.py diff --git a/githubkit/versions/v2022_11_28/models/group_0340.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0340.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0340.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0340.py diff --git a/githubkit/versions/v2022_11_28/models/group_0341.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0341.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0341.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0341.py diff --git a/githubkit/versions/v2022_11_28/models/group_0342.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0342.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0342.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0342.py diff --git a/githubkit/versions/v2022_11_28/models/group_0343.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0343.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0343.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0343.py diff --git a/githubkit/versions/v2022_11_28/models/group_0344.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0344.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0344.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0344.py diff --git a/githubkit/versions/v2022_11_28/models/group_0345.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0345.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0345.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0345.py diff --git a/githubkit/versions/v2022_11_28/models/group_0346.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0346.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0346.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0346.py diff --git a/githubkit/versions/v2022_11_28/models/group_0347.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0347.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0347.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0347.py diff --git a/githubkit/versions/v2022_11_28/models/group_0348.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0348.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0348.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0348.py diff --git a/githubkit/versions/v2022_11_28/models/group_0349.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0349.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0349.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0349.py diff --git a/githubkit/versions/v2022_11_28/models/group_0350.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0350.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0350.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0350.py diff --git a/githubkit/versions/v2022_11_28/models/group_0351.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0351.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0351.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0351.py diff --git a/githubkit/versions/v2022_11_28/models/group_0352.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0352.py similarity index 94% rename from githubkit/versions/v2022_11_28/models/group_0352.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0352.py index 4329e238bc..d886fb6755 100644 --- a/githubkit/versions/v2022_11_28/models/group_0352.py +++ b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0352.py @@ -56,9 +56,7 @@ class DeploymentStatus(GitHubModel): log_url: Missing[str] = Field( default=UNSET, description="The URL to associate with this status." ) - performed_via_github_app: Missing[Union[None, Integration, None]] = Field( - default=UNSET - ) + performed_via_github_app: Missing[Union[None, Integration]] = Field(default=UNSET) model_rebuild(DeploymentStatus) diff --git a/githubkit/versions/v2022_11_28/models/group_0353.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0353.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0353.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0353.py diff --git a/githubkit/versions/v2022_11_28/models/group_0354.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0354.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0354.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0354.py diff --git a/githubkit/versions/v2022_11_28/models/group_0355.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0355.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0355.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0355.py diff --git a/githubkit/versions/v2022_11_28/models/group_0356.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0356.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0356.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0356.py diff --git a/githubkit/versions/v2022_11_28/models/group_0357.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0357.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0357.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0357.py diff --git a/githubkit/versions/v2022_11_28/models/group_0358.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0358.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0358.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0358.py diff --git a/githubkit/versions/v2022_11_28/models/group_0359.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0359.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0359.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0359.py diff --git a/githubkit/versions/v2022_11_28/models/group_0360.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0360.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0360.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0360.py diff --git a/githubkit/versions/v2022_11_28/models/group_0361.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0361.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0361.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0361.py diff --git a/githubkit/versions/v2022_11_28/models/group_0362.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0362.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0362.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0362.py diff --git a/githubkit/versions/v2022_11_28/models/group_0363.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0363.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0363.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0363.py diff --git a/githubkit/versions/v2022_11_28/models/group_0364.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0364.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0364.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0364.py diff --git a/githubkit/versions/v2022_11_28/models/group_0365.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0365.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0365.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0365.py diff --git a/githubkit/versions/v2022_11_28/models/group_0366.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0366.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0366.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0366.py diff --git a/githubkit/versions/v2022_11_28/models/group_0367.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0367.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0367.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0367.py diff --git a/githubkit/versions/v2022_11_28/models/group_0368.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0368.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0368.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0368.py diff --git a/githubkit/versions/v2022_11_28/models/group_0369.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0369.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0369.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0369.py diff --git a/githubkit/versions/v2022_11_28/models/group_0370.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0370.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0370.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0370.py diff --git a/githubkit/versions/v2022_11_28/models/group_0371.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0371.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0371.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0371.py diff --git a/githubkit/versions/v2022_11_28/models/group_0372.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0372.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0372.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0372.py diff --git a/githubkit/versions/v2022_11_28/models/group_0373.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0373.py similarity index 97% rename from githubkit/versions/v2022_11_28/models/group_0373.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0373.py index 6f17cb560c..c5f2ede6db 100644 --- a/githubkit/versions/v2022_11_28/models/group_0373.py +++ b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0373.py @@ -84,9 +84,7 @@ class IssueEvent(GitHubModel): description="How the author is associated with the repository.", ) lock_reason: Missing[Union[str, None]] = Field(default=UNSET) - performed_via_github_app: Missing[Union[None, Integration, None]] = Field( - default=UNSET - ) + performed_via_github_app: Missing[Union[None, Integration]] = Field(default=UNSET) class IssueEventLabel(GitHubModel): diff --git a/githubkit/versions/v2022_11_28/models/group_0374.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0374.py similarity index 94% rename from githubkit/versions/v2022_11_28/models/group_0374.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0374.py index 3ec22fb630..f62792ffa1 100644 --- a/githubkit/versions/v2022_11_28/models/group_0374.py +++ b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0374.py @@ -33,7 +33,7 @@ class LabeledIssueEvent(GitHubModel): commit_id: Union[str, None] = Field() commit_url: Union[str, None] = Field() created_at: str = Field() - performed_via_github_app: Union[None, Integration, None] = Field() + performed_via_github_app: Union[None, Integration] = Field() label: LabeledIssueEventPropLabel = Field() diff --git a/githubkit/versions/v2022_11_28/models/group_0375.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0375.py similarity index 94% rename from githubkit/versions/v2022_11_28/models/group_0375.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0375.py index 695ea4a4eb..f949ecf726 100644 --- a/githubkit/versions/v2022_11_28/models/group_0375.py +++ b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0375.py @@ -33,7 +33,7 @@ class UnlabeledIssueEvent(GitHubModel): commit_id: Union[str, None] = Field() commit_url: Union[str, None] = Field() created_at: str = Field() - performed_via_github_app: Union[None, Integration, None] = Field() + performed_via_github_app: Union[None, Integration] = Field() label: UnlabeledIssueEventPropLabel = Field() diff --git a/githubkit/versions/v2022_11_28/models/group_0376.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0376.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0376.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0376.py diff --git a/githubkit/versions/v2022_11_28/models/group_0377.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0377.py similarity index 93% rename from githubkit/versions/v2022_11_28/models/group_0377.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0377.py index d36e83286a..9fcb9db594 100644 --- a/githubkit/versions/v2022_11_28/models/group_0377.py +++ b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0377.py @@ -33,7 +33,7 @@ class UnassignedIssueEvent(GitHubModel): commit_id: Union[str, None] = Field() commit_url: Union[str, None] = Field() created_at: str = Field() - performed_via_github_app: Union[None, Integration, None] = Field() + performed_via_github_app: Union[None, Integration] = Field() assignee: SimpleUser = Field(title="Simple User", description="A GitHub user.") assigner: SimpleUser = Field(title="Simple User", description="A GitHub user.") diff --git a/githubkit/versions/v2022_11_28/models/group_0378.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0378.py similarity index 94% rename from githubkit/versions/v2022_11_28/models/group_0378.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0378.py index 734796d8a5..6f795ed55c 100644 --- a/githubkit/versions/v2022_11_28/models/group_0378.py +++ b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0378.py @@ -33,7 +33,7 @@ class MilestonedIssueEvent(GitHubModel): commit_id: Union[str, None] = Field() commit_url: Union[str, None] = Field() created_at: str = Field() - performed_via_github_app: Union[None, Integration, None] = Field() + performed_via_github_app: Union[None, Integration] = Field() milestone: MilestonedIssueEventPropMilestone = Field() diff --git a/githubkit/versions/v2022_11_28/models/group_0379.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0379.py similarity index 94% rename from githubkit/versions/v2022_11_28/models/group_0379.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0379.py index 1b03cd99a5..c9224cbb54 100644 --- a/githubkit/versions/v2022_11_28/models/group_0379.py +++ b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0379.py @@ -33,7 +33,7 @@ class DemilestonedIssueEvent(GitHubModel): commit_id: Union[str, None] = Field() commit_url: Union[str, None] = Field() created_at: str = Field() - performed_via_github_app: Union[None, Integration, None] = Field() + performed_via_github_app: Union[None, Integration] = Field() milestone: DemilestonedIssueEventPropMilestone = Field() diff --git a/githubkit/versions/v2022_11_28/models/group_0380.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0380.py similarity index 94% rename from githubkit/versions/v2022_11_28/models/group_0380.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0380.py index 234895caf4..c09adc19c9 100644 --- a/githubkit/versions/v2022_11_28/models/group_0380.py +++ b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0380.py @@ -33,7 +33,7 @@ class RenamedIssueEvent(GitHubModel): commit_id: Union[str, None] = Field() commit_url: Union[str, None] = Field() created_at: str = Field() - performed_via_github_app: Union[None, Integration, None] = Field() + performed_via_github_app: Union[None, Integration] = Field() rename: RenamedIssueEventPropRename = Field() diff --git a/githubkit/versions/v2022_11_28/models/group_0381.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0381.py similarity index 95% rename from githubkit/versions/v2022_11_28/models/group_0381.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0381.py index e863e47398..40e3322f10 100644 --- a/githubkit/versions/v2022_11_28/models/group_0381.py +++ b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0381.py @@ -36,7 +36,7 @@ class ReviewRequestedIssueEvent(GitHubModel): commit_id: Union[str, None] = Field() commit_url: Union[str, None] = Field() created_at: str = Field() - performed_via_github_app: Union[None, Integration, None] = Field() + performed_via_github_app: Union[None, Integration] = Field() review_requester: SimpleUser = Field( title="Simple User", description="A GitHub user." ) diff --git a/githubkit/versions/v2022_11_28/models/group_0382.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0382.py similarity index 95% rename from githubkit/versions/v2022_11_28/models/group_0382.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0382.py index 95f9cba011..384ea9ae06 100644 --- a/githubkit/versions/v2022_11_28/models/group_0382.py +++ b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0382.py @@ -36,7 +36,7 @@ class ReviewRequestRemovedIssueEvent(GitHubModel): commit_id: Union[str, None] = Field() commit_url: Union[str, None] = Field() created_at: str = Field() - performed_via_github_app: Union[None, Integration, None] = Field() + performed_via_github_app: Union[None, Integration] = Field() review_requester: SimpleUser = Field( title="Simple User", description="A GitHub user." ) diff --git a/githubkit/versions/v2022_11_28/models/group_0383.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0383.py similarity index 95% rename from githubkit/versions/v2022_11_28/models/group_0383.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0383.py index bc686e09d6..cc4a94a56f 100644 --- a/githubkit/versions/v2022_11_28/models/group_0383.py +++ b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0383.py @@ -35,7 +35,7 @@ class ReviewDismissedIssueEvent(GitHubModel): commit_id: Union[str, None] = Field() commit_url: Union[str, None] = Field() created_at: str = Field() - performed_via_github_app: Union[None, Integration, None] = Field() + performed_via_github_app: Union[None, Integration] = Field() dismissed_review: ReviewDismissedIssueEventPropDismissedReview = Field() diff --git a/githubkit/versions/v2022_11_28/models/group_0384.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0384.py similarity index 93% rename from githubkit/versions/v2022_11_28/models/group_0384.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0384.py index e0130f1522..c47c1c3352 100644 --- a/githubkit/versions/v2022_11_28/models/group_0384.py +++ b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0384.py @@ -33,7 +33,7 @@ class LockedIssueEvent(GitHubModel): commit_id: Union[str, None] = Field() commit_url: Union[str, None] = Field() created_at: str = Field() - performed_via_github_app: Union[None, Integration, None] = Field() + performed_via_github_app: Union[None, Integration] = Field() lock_reason: Union[str, None] = Field() diff --git a/githubkit/versions/v2022_11_28/models/group_0385.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0385.py similarity index 95% rename from githubkit/versions/v2022_11_28/models/group_0385.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0385.py index cf2b6b5f8f..e3c6fb1be8 100644 --- a/githubkit/versions/v2022_11_28/models/group_0385.py +++ b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0385.py @@ -35,7 +35,7 @@ class AddedToProjectIssueEvent(GitHubModel): commit_id: Union[str, None] = Field() commit_url: Union[str, None] = Field() created_at: str = Field() - performed_via_github_app: Union[None, Integration, None] = Field() + performed_via_github_app: Union[None, Integration] = Field() project_card: Missing[AddedToProjectIssueEventPropProjectCard] = Field( default=UNSET ) diff --git a/githubkit/versions/v2022_11_28/models/group_0386.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0386.py similarity index 95% rename from githubkit/versions/v2022_11_28/models/group_0386.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0386.py index 5d2b15f176..04b216df30 100644 --- a/githubkit/versions/v2022_11_28/models/group_0386.py +++ b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0386.py @@ -35,7 +35,7 @@ class MovedColumnInProjectIssueEvent(GitHubModel): commit_id: Union[str, None] = Field() commit_url: Union[str, None] = Field() created_at: str = Field() - performed_via_github_app: Union[None, Integration, None] = Field() + performed_via_github_app: Union[None, Integration] = Field() project_card: Missing[MovedColumnInProjectIssueEventPropProjectCard] = Field( default=UNSET ) diff --git a/githubkit/versions/v2022_11_28/models/group_0387.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0387.py similarity index 95% rename from githubkit/versions/v2022_11_28/models/group_0387.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0387.py index 3bd6fbf406..d935784e81 100644 --- a/githubkit/versions/v2022_11_28/models/group_0387.py +++ b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0387.py @@ -35,7 +35,7 @@ class RemovedFromProjectIssueEvent(GitHubModel): commit_id: Union[str, None] = Field() commit_url: Union[str, None] = Field() created_at: str = Field() - performed_via_github_app: Union[None, Integration, None] = Field() + performed_via_github_app: Union[None, Integration] = Field() project_card: Missing[RemovedFromProjectIssueEventPropProjectCard] = Field( default=UNSET ) diff --git a/githubkit/versions/v2022_11_28/models/group_0388.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0388.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0388.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0388.py diff --git a/githubkit/versions/v2022_11_28/models/group_0389.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0389.py similarity index 94% rename from githubkit/versions/v2022_11_28/models/group_0389.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0389.py index e7c93372c0..c0932d771f 100644 --- a/githubkit/versions/v2022_11_28/models/group_0389.py +++ b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0389.py @@ -58,9 +58,7 @@ class TimelineCommentEvent(GitHubModel): title="author_association", description="How the author is associated with the repository.", ) - performed_via_github_app: Missing[Union[None, Integration, None]] = Field( - default=UNSET - ) + performed_via_github_app: Missing[Union[None, Integration]] = Field(default=UNSET) reactions: Missing[ReactionRollup] = Field(default=UNSET, title="Reaction Rollup") pin: Missing[Union[None, PinnedIssueComment]] = Field(default=UNSET) diff --git a/githubkit/versions/v2022_11_28/models/group_0390.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0390.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0390.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0390.py diff --git a/githubkit/versions/v2022_11_28/models/group_0391.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0391.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0391.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0391.py diff --git a/githubkit/versions/v2022_11_28/models/group_0392.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0392.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0392.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0392.py diff --git a/githubkit/versions/v2022_11_28/models/group_0393.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0393.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0393.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0393.py diff --git a/githubkit/versions/v2022_11_28/models/group_0394.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0394.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0394.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0394.py diff --git a/githubkit/versions/v2022_11_28/models/group_0395.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0395.py similarity index 93% rename from githubkit/versions/v2022_11_28/models/group_0395.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0395.py index c45a39f8c0..4c346d16a7 100644 --- a/githubkit/versions/v2022_11_28/models/group_0395.py +++ b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0395.py @@ -33,7 +33,7 @@ class TimelineAssignedIssueEvent(GitHubModel): commit_id: Union[str, None] = Field() commit_url: Union[str, None] = Field() created_at: str = Field() - performed_via_github_app: Union[None, Integration, None] = Field() + performed_via_github_app: Union[None, Integration] = Field() assignee: SimpleUser = Field(title="Simple User", description="A GitHub user.") diff --git a/githubkit/versions/v2022_11_28/models/group_0396.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0396.py similarity index 93% rename from githubkit/versions/v2022_11_28/models/group_0396.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0396.py index 420f91c260..1345ff8005 100644 --- a/githubkit/versions/v2022_11_28/models/group_0396.py +++ b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0396.py @@ -33,7 +33,7 @@ class TimelineUnassignedIssueEvent(GitHubModel): commit_id: Union[str, None] = Field() commit_url: Union[str, None] = Field() created_at: str = Field() - performed_via_github_app: Union[None, Integration, None] = Field() + performed_via_github_app: Union[None, Integration] = Field() assignee: SimpleUser = Field(title="Simple User", description="A GitHub user.") diff --git a/githubkit/versions/v2022_11_28/models/group_0397.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0397.py similarity index 93% rename from githubkit/versions/v2022_11_28/models/group_0397.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0397.py index 799278e566..2f31082e88 100644 --- a/githubkit/versions/v2022_11_28/models/group_0397.py +++ b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0397.py @@ -35,7 +35,7 @@ class StateChangeIssueEvent(GitHubModel): commit_id: Union[str, None] = Field() commit_url: Union[str, None] = Field() created_at: str = Field() - performed_via_github_app: Union[None, Integration, None] = Field() + performed_via_github_app: Union[None, Integration] = Field() state_reason: Missing[Union[str, None]] = Field(default=UNSET) diff --git a/githubkit/versions/v2022_11_28/models/group_0398.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0398.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0398.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0398.py diff --git a/githubkit/versions/v2022_11_28/models/group_0399.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0399.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0399.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0399.py diff --git a/githubkit/versions/v2022_11_28/models/group_0400.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0400.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0400.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0400.py diff --git a/githubkit/versions/v2022_11_28/models/group_0401.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0401.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0401.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0401.py diff --git a/githubkit/versions/v2022_11_28/models/group_0402.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0402.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0402.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0402.py diff --git a/githubkit/versions/v2022_11_28/models/group_0403.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0403.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0403.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0403.py diff --git a/githubkit/versions/v2022_11_28/models/group_0404.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0404.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0404.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0404.py diff --git a/githubkit/versions/v2022_11_28/models/group_0405.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0405.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0405.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0405.py diff --git a/githubkit/versions/v2022_11_28/models/group_0406.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0406.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0406.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0406.py diff --git a/githubkit/versions/v2022_11_28/models/group_0407.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0407.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0407.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0407.py diff --git a/githubkit/versions/v2022_11_28/models/group_0408.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0408.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0408.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0408.py diff --git a/githubkit/versions/v2022_11_28/models/group_0409.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0409.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0409.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0409.py diff --git a/githubkit/versions/v2022_11_28/models/group_0410.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0410.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0410.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0410.py diff --git a/githubkit/versions/v2022_11_28/models/group_0411.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0411.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0411.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0411.py diff --git a/githubkit/versions/v2022_11_28/models/group_0412.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0412.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0412.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0412.py diff --git a/githubkit/versions/v2022_11_28/models/group_0413.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0413.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0413.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0413.py diff --git a/githubkit/versions/v2022_11_28/models/group_0414.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0414.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0414.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0414.py diff --git a/githubkit/versions/v2022_11_28/models/group_0415.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0415.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0415.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0415.py diff --git a/githubkit/versions/v2022_11_28/models/group_0416.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0416.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0416.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0416.py diff --git a/githubkit/versions/v2022_11_28/models/group_0417.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0417.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0417.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0417.py diff --git a/githubkit/versions/v2022_11_28/models/group_0418.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0418.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0418.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0418.py diff --git a/githubkit/versions/v2022_11_28/models/group_0419.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0419.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0419.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0419.py diff --git a/githubkit/versions/v2022_11_28/models/group_0420.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0420.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0420.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0420.py diff --git a/githubkit/versions/v2022_11_28/models/group_0421.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0421.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0421.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0421.py diff --git a/githubkit/versions/v2022_11_28/models/group_0422.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0422.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0422.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0422.py diff --git a/githubkit/versions/v2022_11_28/models/group_0423.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0423.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0423.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0423.py diff --git a/githubkit/versions/v2022_11_28/models/group_0424.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0424.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0424.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0424.py diff --git a/githubkit/versions/v2022_11_28/models/group_0425.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0425.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0425.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0425.py diff --git a/githubkit/versions/v2022_11_28/models/group_0426.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0426.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0426.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0426.py diff --git a/githubkit/versions/v2022_11_28/models/group_0427.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0427.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0427.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0427.py diff --git a/githubkit/versions/v2022_11_28/models/group_0428.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0428.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0428.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0428.py diff --git a/githubkit/versions/v2022_11_28/models/group_0429.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0429.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0429.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0429.py diff --git a/githubkit/versions/v2022_11_28/models/group_0430.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0430.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0430.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0430.py diff --git a/githubkit/versions/v2022_11_28/models/group_0431.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0431.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0431.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0431.py diff --git a/githubkit/versions/v2022_11_28/models/group_0432.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0432.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0432.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0432.py diff --git a/githubkit/versions/v2022_11_28/models/group_0433.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0433.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0433.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0433.py diff --git a/githubkit/versions/v2022_11_28/models/group_0434.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0434.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0434.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0434.py diff --git a/githubkit/versions/v2022_11_28/models/group_0435.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0435.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0435.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0435.py diff --git a/githubkit/versions/v2022_11_28/models/group_0436.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0436.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0436.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0436.py diff --git a/githubkit/versions/v2022_11_28/models/group_0437.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0437.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0437.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0437.py diff --git a/githubkit/versions/v2022_11_28/models/group_0438.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0438.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0438.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0438.py diff --git a/githubkit/versions/v2022_11_28/models/group_0439.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0439.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0439.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0439.py diff --git a/githubkit/versions/v2022_11_28/models/group_0440.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0440.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0440.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0440.py diff --git a/githubkit/versions/v2022_11_28/models/group_0441.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0441.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0441.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0441.py diff --git a/githubkit/versions/v2022_11_28/models/group_0442.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0442.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0442.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0442.py diff --git a/githubkit/versions/v2022_11_28/models/group_0443.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0443.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0443.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0443.py diff --git a/githubkit/versions/v2022_11_28/models/group_0444.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0444.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0444.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0444.py diff --git a/githubkit/versions/v2022_11_28/models/group_0445.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0445.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0445.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0445.py diff --git a/githubkit/versions/v2022_11_28/models/group_0446.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0446.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0446.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0446.py diff --git a/githubkit/versions/v2022_11_28/models/group_0447.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0447.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0447.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0447.py diff --git a/githubkit/versions/v2022_11_28/models/group_0448.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0448.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0448.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0448.py diff --git a/githubkit/versions/v2022_11_28/models/group_0449.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0449.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0449.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0449.py diff --git a/githubkit/versions/v2022_11_28/models/group_0450.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0450.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0450.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0450.py diff --git a/githubkit/versions/v2022_11_28/models/group_0451.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0451.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0451.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0451.py diff --git a/githubkit/versions/v2022_11_28/models/group_0452.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0452.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0452.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0452.py diff --git a/githubkit/versions/v2022_11_28/models/group_0453.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0453.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0453.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0453.py diff --git a/githubkit/versions/v2022_11_28/models/group_0454.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0454.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0454.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0454.py diff --git a/githubkit/versions/v2022_11_28/models/group_0455.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0455.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0455.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0455.py diff --git a/githubkit/versions/v2022_11_28/models/group_0456.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0456.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0456.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0456.py diff --git a/githubkit/versions/v2022_11_28/models/group_0457.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0457.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0457.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0457.py diff --git a/githubkit/versions/v2022_11_28/models/group_0458.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0458.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0458.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0458.py diff --git a/githubkit/versions/v2022_11_28/models/group_0459.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0459.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0459.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0459.py diff --git a/githubkit/versions/v2022_11_28/models/group_0460.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0460.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0460.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0460.py diff --git a/githubkit/versions/v2022_11_28/models/group_0461.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0461.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0461.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0461.py diff --git a/githubkit/versions/v2022_11_28/models/group_0462.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0462.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0462.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0462.py diff --git a/githubkit/versions/v2022_11_28/models/group_0463.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0463.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0463.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0463.py diff --git a/githubkit/versions/v2022_11_28/models/group_0464.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0464.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0464.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0464.py diff --git a/githubkit/versions/v2022_11_28/models/group_0465.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0465.py similarity index 98% rename from githubkit/versions/v2022_11_28/models/group_0465.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0465.py index 8a4436f386..3fe8057d06 100644 --- a/githubkit/versions/v2022_11_28/models/group_0465.py +++ b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0465.py @@ -95,9 +95,7 @@ class IssueSearchResultItem(GitHubModel): type: Missing[Union[IssueType, None]] = Field( default=UNSET, title="Issue Type", description="The type of issue." ) - performed_via_github_app: Missing[Union[None, Integration, None]] = Field( - default=UNSET - ) + performed_via_github_app: Missing[Union[None, Integration]] = Field(default=UNSET) pinned_comment: Missing[Union[None, IssueComment]] = Field(default=UNSET) reactions: Missing[ReactionRollup] = Field(default=UNSET, title="Reaction Rollup") diff --git a/githubkit/versions/v2022_11_28/models/group_0466.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0466.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0466.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0466.py diff --git a/githubkit/versions/v2022_11_28/models/group_0467.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0467.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0467.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0467.py diff --git a/githubkit/versions/v2022_11_28/models/group_0468.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0468.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0468.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0468.py diff --git a/githubkit/versions/v2022_11_28/models/group_0469.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0469.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0469.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0469.py diff --git a/githubkit/versions/v2022_11_28/models/group_0470.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0470.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0470.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0470.py diff --git a/githubkit/versions/v2022_11_28/models/group_0471.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0471.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0471.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0471.py diff --git a/githubkit/versions/v2022_11_28/models/group_0472.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0472.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0472.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0472.py diff --git a/githubkit/versions/v2022_11_28/models/group_0473.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0473.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0473.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0473.py diff --git a/githubkit/versions/v2022_11_28/models/group_0474.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0474.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0474.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0474.py diff --git a/githubkit/versions/v2022_11_28/models/group_0475.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0475.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0475.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0475.py diff --git a/githubkit/versions/v2022_11_28/models/group_0476.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0476.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0476.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0476.py diff --git a/githubkit/versions/v2022_11_28/models/group_0477.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0477.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0477.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0477.py diff --git a/githubkit/versions/v2022_11_28/models/group_0478.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0478.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0478.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0478.py diff --git a/githubkit/versions/v2022_11_28/models/group_0479.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0479.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0479.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0479.py diff --git a/githubkit/versions/v2022_11_28/models/group_0480.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0480.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0480.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0480.py diff --git a/githubkit/versions/v2022_11_28/models/group_0481.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0481.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0481.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0481.py diff --git a/githubkit/versions/v2022_11_28/models/group_0482.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0482.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0482.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0482.py diff --git a/githubkit/versions/v2022_11_28/models/group_0483.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0483.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0483.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0483.py diff --git a/githubkit/versions/v2022_11_28/models/group_0484.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0484.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0484.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0484.py diff --git a/githubkit/versions/v2022_11_28/models/group_0485.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0485.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0485.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0485.py diff --git a/githubkit/versions/v2022_11_28/models/group_0486.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0486.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0486.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0486.py diff --git a/githubkit/versions/v2022_11_28/models/group_0487.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0487.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0487.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0487.py diff --git a/githubkit/versions/v2022_11_28/models/group_0488.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0488.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0488.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0488.py diff --git a/githubkit/versions/v2022_11_28/models/group_0489.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0489.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0489.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0489.py diff --git a/githubkit/versions/v2022_11_28/models/group_0490.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0490.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0490.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0490.py diff --git a/githubkit/versions/v2022_11_28/models/group_0491.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0491.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0491.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0491.py diff --git a/githubkit/versions/v2022_11_28/models/group_0492.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0492.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0492.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0492.py diff --git a/githubkit/versions/v2022_11_28/models/group_0493.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0493.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0493.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0493.py diff --git a/githubkit/versions/v2022_11_28/models/group_0494.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0494.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0494.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0494.py diff --git a/githubkit/versions/v2022_11_28/models/group_0495.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0495.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0495.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0495.py diff --git a/githubkit/versions/v2022_11_28/models/group_0496.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0496.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0496.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0496.py diff --git a/githubkit/versions/v2022_11_28/models/group_0497.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0497.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0497.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0497.py diff --git a/githubkit/versions/v2022_11_28/models/group_0498.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0498.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0498.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0498.py diff --git a/githubkit/versions/v2022_11_28/models/group_0499.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0499.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0499.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0499.py diff --git a/githubkit/versions/v2022_11_28/models/group_0500.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0500.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0500.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0500.py diff --git a/githubkit/versions/v2022_11_28/models/group_0501.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0501.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0501.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0501.py diff --git a/githubkit/versions/v2022_11_28/models/group_0502.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0502.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0502.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0502.py diff --git a/githubkit/versions/v2022_11_28/models/group_0503.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0503.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0503.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0503.py diff --git a/githubkit/versions/v2022_11_28/models/group_0504.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0504.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0504.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0504.py diff --git a/githubkit/versions/v2022_11_28/models/group_0505.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0505.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0505.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0505.py diff --git a/githubkit/versions/v2022_11_28/models/group_0506.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0506.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0506.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0506.py diff --git a/githubkit/versions/v2022_11_28/models/group_0507.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0507.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0507.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0507.py diff --git a/githubkit/versions/v2022_11_28/models/group_0508.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0508.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0508.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0508.py diff --git a/githubkit/versions/v2022_11_28/models/group_0509.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0509.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0509.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0509.py diff --git a/githubkit/versions/v2022_11_28/models/group_0510.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0510.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0510.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0510.py diff --git a/githubkit/versions/v2022_11_28/models/group_0511.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0511.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0511.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0511.py diff --git a/githubkit/versions/v2022_11_28/models/group_0512.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0512.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0512.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0512.py diff --git a/githubkit/versions/v2022_11_28/models/group_0513.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0513.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0513.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0513.py diff --git a/githubkit/versions/v2022_11_28/models/group_0514.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0514.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0514.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0514.py diff --git a/githubkit/versions/v2022_11_28/models/group_0515.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0515.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0515.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0515.py diff --git a/githubkit/versions/v2022_11_28/models/group_0516.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0516.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0516.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0516.py diff --git a/githubkit/versions/v2022_11_28/models/group_0517.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0517.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0517.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0517.py diff --git a/githubkit/versions/v2022_11_28/models/group_0518.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0518.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0518.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0518.py diff --git a/githubkit/versions/v2022_11_28/models/group_0519.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0519.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0519.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0519.py diff --git a/githubkit/versions/v2022_11_28/models/group_0520.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0520.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0520.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0520.py diff --git a/githubkit/versions/v2022_11_28/models/group_0521.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0521.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0521.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0521.py diff --git a/githubkit/versions/v2022_11_28/models/group_0522.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0522.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0522.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0522.py diff --git a/githubkit/versions/v2022_11_28/models/group_0523.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0523.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0523.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0523.py diff --git a/githubkit/versions/v2022_11_28/models/group_0524.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0524.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0524.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0524.py diff --git a/githubkit/versions/v2022_11_28/models/group_0525.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0525.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0525.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0525.py diff --git a/githubkit/versions/v2022_11_28/models/group_0526.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0526.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0526.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0526.py diff --git a/githubkit/versions/v2022_11_28/models/group_0527.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0527.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0527.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0527.py diff --git a/githubkit/versions/v2022_11_28/models/group_0528.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0528.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0528.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0528.py diff --git a/githubkit/versions/v2022_11_28/models/group_0529.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0529.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0529.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0529.py diff --git a/githubkit/versions/v2022_11_28/models/group_0530.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0530.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0530.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0530.py diff --git a/githubkit/versions/v2022_11_28/models/group_0531.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0531.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0531.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0531.py diff --git a/githubkit/versions/v2022_11_28/models/group_0532.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0532.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0532.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0532.py diff --git a/githubkit/versions/v2022_11_28/models/group_0533.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0533.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0533.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0533.py diff --git a/githubkit/versions/v2022_11_28/models/group_0534.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0534.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0534.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0534.py diff --git a/githubkit/versions/v2022_11_28/models/group_0535.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0535.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0535.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0535.py diff --git a/githubkit/versions/v2022_11_28/models/group_0536.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0536.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0536.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0536.py diff --git a/githubkit/versions/v2022_11_28/models/group_0537.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0537.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0537.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0537.py diff --git a/githubkit/versions/v2022_11_28/models/group_0538.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0538.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0538.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0538.py diff --git a/githubkit/versions/v2022_11_28/models/group_0539.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0539.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0539.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0539.py diff --git a/githubkit/versions/v2022_11_28/models/group_0540.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0540.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0540.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0540.py diff --git a/githubkit/versions/v2022_11_28/models/group_0541.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0541.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0541.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0541.py diff --git a/githubkit/versions/v2022_11_28/models/group_0542.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0542.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0542.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0542.py diff --git a/githubkit/versions/v2022_11_28/models/group_0543.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0543.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0543.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0543.py diff --git a/githubkit/versions/v2022_11_28/models/group_0544.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0544.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0544.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0544.py diff --git a/githubkit/versions/v2022_11_28/models/group_0545.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0545.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0545.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0545.py diff --git a/githubkit/versions/v2022_11_28/models/group_0546.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0546.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0546.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0546.py diff --git a/githubkit/versions/v2022_11_28/models/group_0547.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0547.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0547.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0547.py diff --git a/githubkit/versions/v2022_11_28/models/group_0548.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0548.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0548.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0548.py diff --git a/githubkit/versions/v2022_11_28/models/group_0549.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0549.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0549.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0549.py diff --git a/githubkit/versions/v2022_11_28/models/group_0550.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0550.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0550.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0550.py diff --git a/githubkit/versions/v2022_11_28/models/group_0551.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0551.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0551.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0551.py diff --git a/githubkit/versions/v2022_11_28/models/group_0552.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0552.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0552.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0552.py diff --git a/githubkit/versions/v2022_11_28/models/group_0553.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0553.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0553.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0553.py diff --git a/githubkit/versions/v2022_11_28/models/group_0554.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0554.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0554.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0554.py diff --git a/githubkit/versions/v2022_11_28/models/group_0555.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0555.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0555.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0555.py diff --git a/githubkit/versions/v2022_11_28/models/group_0556.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0556.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0556.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0556.py diff --git a/githubkit/versions/v2022_11_28/models/group_0557.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0557.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0557.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0557.py diff --git a/githubkit/versions/v2022_11_28/models/group_0558.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0558.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0558.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0558.py diff --git a/githubkit/versions/v2022_11_28/models/group_0559.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0559.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0559.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0559.py diff --git a/githubkit/versions/v2022_11_28/models/group_0560.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0560.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0560.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0560.py diff --git a/githubkit/versions/v2022_11_28/models/group_0561.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0561.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0561.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0561.py diff --git a/githubkit/versions/v2022_11_28/models/group_0562.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0562.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0562.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0562.py diff --git a/githubkit/versions/v2022_11_28/models/group_0563.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0563.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0563.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0563.py diff --git a/githubkit/versions/v2022_11_28/models/group_0564.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0564.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0564.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0564.py diff --git a/githubkit/versions/v2022_11_28/models/group_0565.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0565.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0565.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0565.py diff --git a/githubkit/versions/v2022_11_28/models/group_0566.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0566.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0566.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0566.py diff --git a/githubkit/versions/v2022_11_28/models/group_0567.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0567.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0567.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0567.py diff --git a/githubkit/versions/v2022_11_28/models/group_0568.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0568.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0568.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0568.py diff --git a/githubkit/versions/v2022_11_28/models/group_0569.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0569.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0569.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0569.py diff --git a/githubkit/versions/v2022_11_28/models/group_0570.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0570.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0570.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0570.py diff --git a/githubkit/versions/v2022_11_28/models/group_0571.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0571.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0571.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0571.py diff --git a/githubkit/versions/v2022_11_28/models/group_0572.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0572.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0572.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0572.py diff --git a/githubkit/versions/v2022_11_28/models/group_0573.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0573.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0573.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0573.py diff --git a/githubkit/versions/v2022_11_28/models/group_0574.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0574.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0574.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0574.py diff --git a/githubkit/versions/v2022_11_28/models/group_0575.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0575.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0575.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0575.py diff --git a/githubkit/versions/v2022_11_28/models/group_0576.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0576.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0576.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0576.py diff --git a/githubkit/versions/v2022_11_28/models/group_0577.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0577.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0577.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0577.py diff --git a/githubkit/versions/v2022_11_28/models/group_0578.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0578.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0578.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0578.py diff --git a/githubkit/versions/v2022_11_28/models/group_0579.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0579.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0579.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0579.py diff --git a/githubkit/versions/v2022_11_28/models/group_0580.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0580.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0580.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0580.py diff --git a/githubkit/versions/v2022_11_28/models/group_0581.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0581.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0581.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0581.py diff --git a/githubkit/versions/v2022_11_28/models/group_0582.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0582.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0582.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0582.py diff --git a/githubkit/versions/v2022_11_28/models/group_0583.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0583.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0583.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0583.py diff --git a/githubkit/versions/v2022_11_28/models/group_0584.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0584.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0584.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0584.py diff --git a/githubkit/versions/v2022_11_28/models/group_0585.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0585.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0585.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0585.py diff --git a/githubkit/versions/v2022_11_28/models/group_0586.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0586.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0586.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0586.py diff --git a/githubkit/versions/v2022_11_28/models/group_0587.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0587.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0587.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0587.py diff --git a/githubkit/versions/v2022_11_28/models/group_0588.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0588.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0588.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0588.py diff --git a/githubkit/versions/v2022_11_28/models/group_0589.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0589.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0589.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0589.py diff --git a/githubkit/versions/v2022_11_28/models/group_0590.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0590.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0590.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0590.py diff --git a/githubkit/versions/v2022_11_28/models/group_0591.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0591.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0591.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0591.py diff --git a/githubkit/versions/v2022_11_28/models/group_0592.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0592.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0592.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0592.py diff --git a/githubkit/versions/v2022_11_28/models/group_0593.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0593.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0593.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0593.py diff --git a/githubkit/versions/v2022_11_28/models/group_0594.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0594.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0594.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0594.py diff --git a/githubkit/versions/v2022_11_28/models/group_0595.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0595.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0595.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0595.py diff --git a/githubkit/versions/v2022_11_28/models/group_0596.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0596.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0596.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0596.py diff --git a/githubkit/versions/v2022_11_28/models/group_0597.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0597.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0597.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0597.py diff --git a/githubkit/versions/v2022_11_28/models/group_0598.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0598.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0598.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0598.py diff --git a/githubkit/versions/v2022_11_28/models/group_0599.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0599.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0599.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0599.py diff --git a/githubkit/versions/v2022_11_28/models/group_0600.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0600.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0600.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0600.py diff --git a/githubkit/versions/v2022_11_28/models/group_0601.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0601.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0601.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0601.py diff --git a/githubkit/versions/v2022_11_28/models/group_0602.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0602.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0602.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0602.py diff --git a/githubkit/versions/v2022_11_28/models/group_0603.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0603.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0603.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0603.py diff --git a/githubkit/versions/v2022_11_28/models/group_0604.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0604.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0604.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0604.py diff --git a/githubkit/versions/v2022_11_28/models/group_0605.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0605.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0605.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0605.py diff --git a/githubkit/versions/v2022_11_28/models/group_0606.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0606.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0606.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0606.py diff --git a/githubkit/versions/v2022_11_28/models/group_0607.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0607.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0607.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0607.py diff --git a/githubkit/versions/v2022_11_28/models/group_0608.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0608.py similarity index 98% rename from githubkit/versions/v2022_11_28/models/group_0608.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0608.py index 440cabc27c..8e9fd68c3e 100644 --- a/githubkit/versions/v2022_11_28/models/group_0608.py +++ b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0608.py @@ -65,7 +65,7 @@ class WebhookForkPropForkee(GitHubModel): description="Whether to delete head branches when pull requests are merged", ) deployments_url: str = Field() - description: Union[Union[str, None], None] = Field() + description: Union[str, None] = Field() disabled: Missing[bool] = Field( default=UNSET, description="Returns whether or not this repository is disabled." ) @@ -89,7 +89,7 @@ class WebhookForkPropForkee(GitHubModel): default=True, description="Whether projects are enabled." ) has_wiki: bool = Field(default=True, description="Whether the wiki is enabled.") - homepage: Union[Union[str, None], None] = Field() + homepage: Union[str, None] = Field() hooks_url: str = Field() html_url: str = Field() id: int = Field(description="Unique identifier of the repository") diff --git a/githubkit/versions/v2022_11_28/models/group_0609.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0609.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0609.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0609.py diff --git a/githubkit/versions/v2022_11_28/models/group_0610.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0610.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0610.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0610.py diff --git a/githubkit/versions/v2022_11_28/models/group_0611.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0611.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0611.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0611.py diff --git a/githubkit/versions/v2022_11_28/models/group_0612.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0612.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0612.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0612.py diff --git a/githubkit/versions/v2022_11_28/models/group_0613.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0613.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0613.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0613.py diff --git a/githubkit/versions/v2022_11_28/models/group_0614.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0614.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0614.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0614.py diff --git a/githubkit/versions/v2022_11_28/models/group_0615.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0615.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0615.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0615.py diff --git a/githubkit/versions/v2022_11_28/models/group_0616.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0616.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0616.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0616.py diff --git a/githubkit/versions/v2022_11_28/models/group_0617.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0617.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0617.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0617.py diff --git a/githubkit/versions/v2022_11_28/models/group_0618.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0618.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0618.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0618.py diff --git a/githubkit/versions/v2022_11_28/models/group_0619.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0619.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0619.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0619.py diff --git a/githubkit/versions/v2022_11_28/models/group_0620.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0620.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0620.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0620.py diff --git a/githubkit/versions/v2022_11_28/models/group_0621.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0621.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0621.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0621.py diff --git a/githubkit/versions/v2022_11_28/models/group_0622.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0622.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0622.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0622.py diff --git a/githubkit/versions/v2022_11_28/models/group_0623.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0623.py similarity index 98% rename from githubkit/versions/v2022_11_28/models/group_0623.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0623.py index bbcaf82c4f..c65da36bcf 100644 --- a/githubkit/versions/v2022_11_28/models/group_0623.py +++ b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0623.py @@ -48,7 +48,7 @@ class WebhookIssueCommentCreatedPropComment(GitHubModel): id: int = Field(description="Unique identifier of the issue comment") issue_url: str = Field() node_id: str = Field() - performed_via_github_app: Union[None, Integration, None] = Field() + performed_via_github_app: Union[None, Integration] = Field() reactions: WebhookIssueCommentCreatedPropCommentPropReactions = Field( title="Reactions" ) diff --git a/githubkit/versions/v2022_11_28/models/group_0624.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0624.py similarity index 97% rename from githubkit/versions/v2022_11_28/models/group_0624.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0624.py index 7a35821131..6bf0c9f55d 100644 --- a/githubkit/versions/v2022_11_28/models/group_0624.py +++ b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0624.py @@ -39,9 +39,9 @@ class WebhookIssueCommentCreatedPropIssue(GitHubModel): active_lock_reason: Union[ Literal["resolved", "off-topic", "too heated", "spam"], None ] = Field() - assignee: Union[ - Union[WebhookIssueCommentCreatedPropIssueAllof0PropAssignee, None], None - ] = Field(title="User") + assignee: Union[WebhookIssueCommentCreatedPropIssueAllof0PropAssignee, None] = ( + Field(title="User") + ) assignees: list[WebhookIssueCommentCreatedPropIssueMergedAssignees] = Field() author_association: Literal[ "COLLABORATOR", @@ -56,7 +56,7 @@ class WebhookIssueCommentCreatedPropIssue(GitHubModel): title="AuthorAssociation", description="How the author is associated with the repository.", ) - body: Union[Union[str, None], None] = Field(description="Contents of the issue") + body: Union[str, None] = Field(description="Contents of the issue") closed_at: Union[_dt.datetime, None] = Field() comments: int = Field() comments_url: str = Field() diff --git a/githubkit/versions/v2022_11_28/models/group_0625.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0625.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0625.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0625.py diff --git a/githubkit/versions/v2022_11_28/models/group_0626.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0626.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0626.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0626.py diff --git a/githubkit/versions/v2022_11_28/models/group_0627.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0627.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0627.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0627.py diff --git a/githubkit/versions/v2022_11_28/models/group_0628.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0628.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0628.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0628.py diff --git a/githubkit/versions/v2022_11_28/models/group_0629.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0629.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0629.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0629.py diff --git a/githubkit/versions/v2022_11_28/models/group_0630.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0630.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0630.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0630.py diff --git a/githubkit/versions/v2022_11_28/models/group_0631.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0631.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0631.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0631.py diff --git a/githubkit/versions/v2022_11_28/models/group_0632.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0632.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0632.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0632.py diff --git a/githubkit/versions/v2022_11_28/models/group_0633.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0633.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0633.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0633.py diff --git a/githubkit/versions/v2022_11_28/models/group_0634.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0634.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0634.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0634.py diff --git a/githubkit/versions/v2022_11_28/models/group_0635.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0635.py similarity index 97% rename from githubkit/versions/v2022_11_28/models/group_0635.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0635.py index 7b083c3efd..6968b754ff 100644 --- a/githubkit/versions/v2022_11_28/models/group_0635.py +++ b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0635.py @@ -39,9 +39,9 @@ class WebhookIssueCommentDeletedPropIssue(GitHubModel): active_lock_reason: Union[ Literal["resolved", "off-topic", "too heated", "spam"], None ] = Field() - assignee: Union[ - Union[WebhookIssueCommentDeletedPropIssueAllof0PropAssignee, None], None - ] = Field(title="User") + assignee: Union[WebhookIssueCommentDeletedPropIssueAllof0PropAssignee, None] = ( + Field(title="User") + ) assignees: list[WebhookIssueCommentDeletedPropIssueMergedAssignees] = Field() author_association: Literal[ "COLLABORATOR", @@ -56,7 +56,7 @@ class WebhookIssueCommentDeletedPropIssue(GitHubModel): title="AuthorAssociation", description="How the author is associated with the repository.", ) - body: Union[Union[str, None], None] = Field(description="Contents of the issue") + body: Union[str, None] = Field(description="Contents of the issue") closed_at: Union[_dt.datetime, None] = Field() comments: int = Field() comments_url: str = Field() diff --git a/githubkit/versions/v2022_11_28/models/group_0636.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0636.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0636.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0636.py diff --git a/githubkit/versions/v2022_11_28/models/group_0637.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0637.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0637.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0637.py diff --git a/githubkit/versions/v2022_11_28/models/group_0638.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0638.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0638.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0638.py diff --git a/githubkit/versions/v2022_11_28/models/group_0639.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0639.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0639.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0639.py diff --git a/githubkit/versions/v2022_11_28/models/group_0640.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0640.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0640.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0640.py diff --git a/githubkit/versions/v2022_11_28/models/group_0641.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0641.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0641.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0641.py diff --git a/githubkit/versions/v2022_11_28/models/group_0642.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0642.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0642.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0642.py diff --git a/githubkit/versions/v2022_11_28/models/group_0643.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0643.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0643.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0643.py diff --git a/githubkit/versions/v2022_11_28/models/group_0644.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0644.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0644.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0644.py diff --git a/githubkit/versions/v2022_11_28/models/group_0645.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0645.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0645.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0645.py diff --git a/githubkit/versions/v2022_11_28/models/group_0646.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0646.py similarity index 97% rename from githubkit/versions/v2022_11_28/models/group_0646.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0646.py index e2934d72a4..98c3a343f3 100644 --- a/githubkit/versions/v2022_11_28/models/group_0646.py +++ b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0646.py @@ -39,9 +39,9 @@ class WebhookIssueCommentEditedPropIssue(GitHubModel): active_lock_reason: Union[ Literal["resolved", "off-topic", "too heated", "spam"], None ] = Field() - assignee: Union[ - Union[WebhookIssueCommentEditedPropIssueAllof0PropAssignee, None], None - ] = Field(title="User") + assignee: Union[WebhookIssueCommentEditedPropIssueAllof0PropAssignee, None] = Field( + title="User" + ) assignees: list[WebhookIssueCommentEditedPropIssueMergedAssignees] = Field() author_association: Literal[ "COLLABORATOR", @@ -56,7 +56,7 @@ class WebhookIssueCommentEditedPropIssue(GitHubModel): title="AuthorAssociation", description="How the author is associated with the repository.", ) - body: Union[Union[str, None], None] = Field(description="Contents of the issue") + body: Union[str, None] = Field(description="Contents of the issue") closed_at: Union[_dt.datetime, None] = Field() comments: int = Field() comments_url: str = Field() diff --git a/githubkit/versions/v2022_11_28/models/group_0647.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0647.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0647.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0647.py diff --git a/githubkit/versions/v2022_11_28/models/group_0648.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0648.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0648.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0648.py diff --git a/githubkit/versions/v2022_11_28/models/group_0649.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0649.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0649.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0649.py diff --git a/githubkit/versions/v2022_11_28/models/group_0650.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0650.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0650.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0650.py diff --git a/githubkit/versions/v2022_11_28/models/group_0651.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0651.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0651.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0651.py diff --git a/githubkit/versions/v2022_11_28/models/group_0652.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0652.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0652.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0652.py diff --git a/githubkit/versions/v2022_11_28/models/group_0653.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0653.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0653.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0653.py diff --git a/githubkit/versions/v2022_11_28/models/group_0654.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0654.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0654.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0654.py diff --git a/githubkit/versions/v2022_11_28/models/group_0655.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0655.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0655.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0655.py diff --git a/githubkit/versions/v2022_11_28/models/group_0656.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0656.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0656.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0656.py diff --git a/githubkit/versions/v2022_11_28/models/group_0657.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0657.py similarity index 97% rename from githubkit/versions/v2022_11_28/models/group_0657.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0657.py index 3a7f0b31d7..f17ce21b81 100644 --- a/githubkit/versions/v2022_11_28/models/group_0657.py +++ b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0657.py @@ -39,9 +39,9 @@ class WebhookIssueCommentPinnedPropIssue(GitHubModel): active_lock_reason: Union[ Literal["resolved", "off-topic", "too heated", "spam"], None ] = Field() - assignee: Union[ - Union[WebhookIssueCommentPinnedPropIssueAllof0PropAssignee, None], None - ] = Field(title="User") + assignee: Union[WebhookIssueCommentPinnedPropIssueAllof0PropAssignee, None] = Field( + title="User" + ) assignees: list[WebhookIssueCommentPinnedPropIssueMergedAssignees] = Field() author_association: Literal[ "COLLABORATOR", @@ -56,7 +56,7 @@ class WebhookIssueCommentPinnedPropIssue(GitHubModel): title="AuthorAssociation", description="How the author is associated with the repository.", ) - body: Union[Union[str, None], None] = Field(description="Contents of the issue") + body: Union[str, None] = Field(description="Contents of the issue") closed_at: Union[_dt.datetime, None] = Field() comments: int = Field() comments_url: str = Field() diff --git a/githubkit/versions/v2022_11_28/models/group_0658.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0658.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0658.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0658.py diff --git a/githubkit/versions/v2022_11_28/models/group_0659.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0659.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0659.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0659.py diff --git a/githubkit/versions/v2022_11_28/models/group_0660.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0660.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0660.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0660.py diff --git a/githubkit/versions/v2022_11_28/models/group_0661.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0661.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0661.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0661.py diff --git a/githubkit/versions/v2022_11_28/models/group_0662.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0662.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0662.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0662.py diff --git a/githubkit/versions/v2022_11_28/models/group_0663.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0663.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0663.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0663.py diff --git a/githubkit/versions/v2022_11_28/models/group_0664.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0664.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0664.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0664.py diff --git a/githubkit/versions/v2022_11_28/models/group_0665.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0665.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0665.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0665.py diff --git a/githubkit/versions/v2022_11_28/models/group_0666.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0666.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0666.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0666.py diff --git a/githubkit/versions/v2022_11_28/models/group_0667.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0667.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0667.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0667.py diff --git a/githubkit/versions/v2022_11_28/models/group_0668.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0668.py similarity index 97% rename from githubkit/versions/v2022_11_28/models/group_0668.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0668.py index ea4a7f1a0d..d7c7d33bf2 100644 --- a/githubkit/versions/v2022_11_28/models/group_0668.py +++ b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0668.py @@ -39,9 +39,9 @@ class WebhookIssueCommentUnpinnedPropIssue(GitHubModel): active_lock_reason: Union[ Literal["resolved", "off-topic", "too heated", "spam"], None ] = Field() - assignee: Union[ - Union[WebhookIssueCommentUnpinnedPropIssueAllof0PropAssignee, None], None - ] = Field(title="User") + assignee: Union[WebhookIssueCommentUnpinnedPropIssueAllof0PropAssignee, None] = ( + Field(title="User") + ) assignees: list[WebhookIssueCommentUnpinnedPropIssueMergedAssignees] = Field() author_association: Literal[ "COLLABORATOR", @@ -56,7 +56,7 @@ class WebhookIssueCommentUnpinnedPropIssue(GitHubModel): title="AuthorAssociation", description="How the author is associated with the repository.", ) - body: Union[Union[str, None], None] = Field(description="Contents of the issue") + body: Union[str, None] = Field(description="Contents of the issue") closed_at: Union[_dt.datetime, None] = Field() comments: int = Field() comments_url: str = Field() diff --git a/githubkit/versions/v2022_11_28/models/group_0669.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0669.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0669.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0669.py diff --git a/githubkit/versions/v2022_11_28/models/group_0670.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0670.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0670.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0670.py diff --git a/githubkit/versions/v2022_11_28/models/group_0671.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0671.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0671.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0671.py diff --git a/githubkit/versions/v2022_11_28/models/group_0672.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0672.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0672.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0672.py diff --git a/githubkit/versions/v2022_11_28/models/group_0673.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0673.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0673.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0673.py diff --git a/githubkit/versions/v2022_11_28/models/group_0674.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0674.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0674.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0674.py diff --git a/githubkit/versions/v2022_11_28/models/group_0675.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0675.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0675.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0675.py diff --git a/githubkit/versions/v2022_11_28/models/group_0676.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0676.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0676.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0676.py diff --git a/githubkit/versions/v2022_11_28/models/group_0677.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0677.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0677.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0677.py diff --git a/githubkit/versions/v2022_11_28/models/group_0678.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0678.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0678.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0678.py diff --git a/githubkit/versions/v2022_11_28/models/group_0679.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0679.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0679.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0679.py diff --git a/githubkit/versions/v2022_11_28/models/group_0680.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0680.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0680.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0680.py diff --git a/githubkit/versions/v2022_11_28/models/group_0681.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0681.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0681.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0681.py diff --git a/githubkit/versions/v2022_11_28/models/group_0682.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0682.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0682.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0682.py diff --git a/githubkit/versions/v2022_11_28/models/group_0683.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0683.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0683.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0683.py diff --git a/githubkit/versions/v2022_11_28/models/group_0684.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0684.py similarity index 99% rename from githubkit/versions/v2022_11_28/models/group_0684.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0684.py index 5e8705b47d..3f20be4d72 100644 --- a/githubkit/versions/v2022_11_28/models/group_0684.py +++ b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0684.py @@ -53,7 +53,7 @@ class WebhookIssuesClosedPropIssue(GitHubModel): title="AuthorAssociation", description="How the author is associated with the repository.", ) - body: Union[Union[str, None], None] = Field(description="Contents of the issue") + body: Union[str, None] = Field(description="Contents of the issue") closed_at: Union[_dt.datetime, None] = Field() comments: int = Field() comments_url: str = Field() diff --git a/githubkit/versions/v2022_11_28/models/group_0685.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0685.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0685.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0685.py diff --git a/githubkit/versions/v2022_11_28/models/group_0686.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0686.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0686.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0686.py diff --git a/githubkit/versions/v2022_11_28/models/group_0687.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0687.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0687.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0687.py diff --git a/githubkit/versions/v2022_11_28/models/group_0688.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0688.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0688.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0688.py diff --git a/githubkit/versions/v2022_11_28/models/group_0689.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0689.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0689.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0689.py diff --git a/githubkit/versions/v2022_11_28/models/group_0690.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0690.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0690.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0690.py diff --git a/githubkit/versions/v2022_11_28/models/group_0691.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0691.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0691.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0691.py diff --git a/githubkit/versions/v2022_11_28/models/group_0692.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0692.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0692.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0692.py diff --git a/githubkit/versions/v2022_11_28/models/group_0693.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0693.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0693.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0693.py diff --git a/githubkit/versions/v2022_11_28/models/group_0694.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0694.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0694.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0694.py diff --git a/githubkit/versions/v2022_11_28/models/group_0695.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0695.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0695.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0695.py diff --git a/githubkit/versions/v2022_11_28/models/group_0696.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0696.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0696.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0696.py diff --git a/githubkit/versions/v2022_11_28/models/group_0697.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0697.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0697.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0697.py diff --git a/githubkit/versions/v2022_11_28/models/group_0698.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0698.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0698.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0698.py diff --git a/githubkit/versions/v2022_11_28/models/group_0699.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0699.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0699.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0699.py diff --git a/githubkit/versions/v2022_11_28/models/group_0700.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0700.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0700.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0700.py diff --git a/githubkit/versions/v2022_11_28/models/group_0701.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0701.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0701.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0701.py diff --git a/githubkit/versions/v2022_11_28/models/group_0702.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0702.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0702.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0702.py diff --git a/githubkit/versions/v2022_11_28/models/group_0703.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0703.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0703.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0703.py diff --git a/githubkit/versions/v2022_11_28/models/group_0704.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0704.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0704.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0704.py diff --git a/githubkit/versions/v2022_11_28/models/group_0705.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0705.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0705.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0705.py diff --git a/githubkit/versions/v2022_11_28/models/group_0706.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0706.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0706.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0706.py diff --git a/githubkit/versions/v2022_11_28/models/group_0707.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0707.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0707.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0707.py diff --git a/githubkit/versions/v2022_11_28/models/group_0708.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0708.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0708.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0708.py diff --git a/githubkit/versions/v2022_11_28/models/group_0709.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0709.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0709.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0709.py diff --git a/githubkit/versions/v2022_11_28/models/group_0710.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0710.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0710.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0710.py diff --git a/githubkit/versions/v2022_11_28/models/group_0711.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0711.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0711.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0711.py diff --git a/githubkit/versions/v2022_11_28/models/group_0712.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0712.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0712.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0712.py diff --git a/githubkit/versions/v2022_11_28/models/group_0713.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0713.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0713.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0713.py diff --git a/githubkit/versions/v2022_11_28/models/group_0714.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0714.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0714.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0714.py diff --git a/githubkit/versions/v2022_11_28/models/group_0715.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0715.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0715.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0715.py diff --git a/githubkit/versions/v2022_11_28/models/group_0716.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0716.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0716.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0716.py diff --git a/githubkit/versions/v2022_11_28/models/group_0717.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0717.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0717.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0717.py diff --git a/githubkit/versions/v2022_11_28/models/group_0718.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0718.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0718.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0718.py diff --git a/githubkit/versions/v2022_11_28/models/group_0719.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0719.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0719.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0719.py diff --git a/githubkit/versions/v2022_11_28/models/group_0720.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0720.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0720.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0720.py diff --git a/githubkit/versions/v2022_11_28/models/group_0721.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0721.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0721.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0721.py diff --git a/githubkit/versions/v2022_11_28/models/group_0722.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0722.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0722.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0722.py diff --git a/githubkit/versions/v2022_11_28/models/group_0723.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0723.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0723.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0723.py diff --git a/githubkit/versions/v2022_11_28/models/group_0724.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0724.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0724.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0724.py diff --git a/githubkit/versions/v2022_11_28/models/group_0725.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0725.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0725.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0725.py diff --git a/githubkit/versions/v2022_11_28/models/group_0726.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0726.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0726.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0726.py diff --git a/githubkit/versions/v2022_11_28/models/group_0727.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0727.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0727.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0727.py diff --git a/githubkit/versions/v2022_11_28/models/group_0728.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0728.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0728.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0728.py diff --git a/githubkit/versions/v2022_11_28/models/group_0729.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0729.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0729.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0729.py diff --git a/githubkit/versions/v2022_11_28/models/group_0730.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0730.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0730.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0730.py diff --git a/githubkit/versions/v2022_11_28/models/group_0731.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0731.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0731.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0731.py diff --git a/githubkit/versions/v2022_11_28/models/group_0732.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0732.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0732.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0732.py diff --git a/githubkit/versions/v2022_11_28/models/group_0733.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0733.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0733.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0733.py diff --git a/githubkit/versions/v2022_11_28/models/group_0734.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0734.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0734.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0734.py diff --git a/githubkit/versions/v2022_11_28/models/group_0735.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0735.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0735.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0735.py diff --git a/githubkit/versions/v2022_11_28/models/group_0736.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0736.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0736.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0736.py diff --git a/githubkit/versions/v2022_11_28/models/group_0737.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0737.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0737.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0737.py diff --git a/githubkit/versions/v2022_11_28/models/group_0738.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0738.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0738.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0738.py diff --git a/githubkit/versions/v2022_11_28/models/group_0739.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0739.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0739.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0739.py diff --git a/githubkit/versions/v2022_11_28/models/group_0740.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0740.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0740.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0740.py diff --git a/githubkit/versions/v2022_11_28/models/group_0741.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0741.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0741.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0741.py diff --git a/githubkit/versions/v2022_11_28/models/group_0742.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0742.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0742.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0742.py diff --git a/githubkit/versions/v2022_11_28/models/group_0743.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0743.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0743.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0743.py diff --git a/githubkit/versions/v2022_11_28/models/group_0744.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0744.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0744.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0744.py diff --git a/githubkit/versions/v2022_11_28/models/group_0745.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0745.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0745.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0745.py diff --git a/githubkit/versions/v2022_11_28/models/group_0746.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0746.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0746.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0746.py diff --git a/githubkit/versions/v2022_11_28/models/group_0747.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0747.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0747.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0747.py diff --git a/githubkit/versions/v2022_11_28/models/group_0748.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0748.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0748.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0748.py diff --git a/githubkit/versions/v2022_11_28/models/group_0749.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0749.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0749.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0749.py diff --git a/githubkit/versions/v2022_11_28/models/group_0750.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0750.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0750.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0750.py diff --git a/githubkit/versions/v2022_11_28/models/group_0751.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0751.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0751.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0751.py diff --git a/githubkit/versions/v2022_11_28/models/group_0752.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0752.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0752.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0752.py diff --git a/githubkit/versions/v2022_11_28/models/group_0753.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0753.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0753.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0753.py diff --git a/githubkit/versions/v2022_11_28/models/group_0754.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0754.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0754.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0754.py diff --git a/githubkit/versions/v2022_11_28/models/group_0755.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0755.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0755.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0755.py diff --git a/githubkit/versions/v2022_11_28/models/group_0756.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0756.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0756.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0756.py diff --git a/githubkit/versions/v2022_11_28/models/group_0757.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0757.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0757.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0757.py diff --git a/githubkit/versions/v2022_11_28/models/group_0758.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0758.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0758.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0758.py diff --git a/githubkit/versions/v2022_11_28/models/group_0759.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0759.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0759.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0759.py diff --git a/githubkit/versions/v2022_11_28/models/group_0760.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0760.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0760.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0760.py diff --git a/githubkit/versions/v2022_11_28/models/group_0761.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0761.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0761.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0761.py diff --git a/githubkit/versions/v2022_11_28/models/group_0762.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0762.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0762.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0762.py diff --git a/githubkit/versions/v2022_11_28/models/group_0763.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0763.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0763.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0763.py diff --git a/githubkit/versions/v2022_11_28/models/group_0764.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0764.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0764.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0764.py diff --git a/githubkit/versions/v2022_11_28/models/group_0765.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0765.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0765.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0765.py diff --git a/githubkit/versions/v2022_11_28/models/group_0766.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0766.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0766.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0766.py diff --git a/githubkit/versions/v2022_11_28/models/group_0767.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0767.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0767.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0767.py diff --git a/githubkit/versions/v2022_11_28/models/group_0768.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0768.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0768.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0768.py diff --git a/githubkit/versions/v2022_11_28/models/group_0769.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0769.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0769.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0769.py diff --git a/githubkit/versions/v2022_11_28/models/group_0770.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0770.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0770.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0770.py diff --git a/githubkit/versions/v2022_11_28/models/group_0771.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0771.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0771.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0771.py diff --git a/githubkit/versions/v2022_11_28/models/group_0772.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0772.py similarity index 98% rename from githubkit/versions/v2022_11_28/models/group_0772.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0772.py index cb7a46b6e4..c3b32efdcf 100644 --- a/githubkit/versions/v2022_11_28/models/group_0772.py +++ b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0772.py @@ -69,7 +69,7 @@ class WebhookProjectCardMovedPropChangesPropColumnId(GitHubModel): class WebhookProjectCardMovedPropProjectCard(GitHubModel): """WebhookProjectCardMovedPropProjectCard""" - after_id: Union[Union[int, None], None] = Field() + after_id: Union[int, None] = Field() archived: bool = Field(description="Whether or not the card is archived") column_id: int = Field() column_url: str = Field() @@ -78,7 +78,7 @@ class WebhookProjectCardMovedPropProjectCard(GitHubModel): creator: Union[WebhookProjectCardMovedPropProjectCardMergedCreator, None] = Field() id: int = Field(description="The project card's ID") node_id: str = Field() - note: Union[Union[str, None], None] = Field() + note: Union[str, None] = Field() project_url: str = Field() updated_at: _dt.datetime = Field() url: str = Field() diff --git a/githubkit/versions/v2022_11_28/models/group_0773.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0773.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0773.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0773.py diff --git a/githubkit/versions/v2022_11_28/models/group_0774.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0774.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0774.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0774.py diff --git a/githubkit/versions/v2022_11_28/models/group_0775.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0775.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0775.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0775.py diff --git a/githubkit/versions/v2022_11_28/models/group_0776.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0776.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0776.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0776.py diff --git a/githubkit/versions/v2022_11_28/models/group_0777.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0777.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0777.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0777.py diff --git a/githubkit/versions/v2022_11_28/models/group_0778.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0778.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0778.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0778.py diff --git a/githubkit/versions/v2022_11_28/models/group_0779.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0779.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0779.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0779.py diff --git a/githubkit/versions/v2022_11_28/models/group_0780.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0780.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0780.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0780.py diff --git a/githubkit/versions/v2022_11_28/models/group_0781.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0781.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0781.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0781.py diff --git a/githubkit/versions/v2022_11_28/models/group_0782.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0782.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0782.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0782.py diff --git a/githubkit/versions/v2022_11_28/models/group_0783.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0783.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0783.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0783.py diff --git a/githubkit/versions/v2022_11_28/models/group_0784.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0784.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0784.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0784.py diff --git a/githubkit/versions/v2022_11_28/models/group_0785.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0785.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0785.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0785.py diff --git a/githubkit/versions/v2022_11_28/models/group_0786.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0786.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0786.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0786.py diff --git a/githubkit/versions/v2022_11_28/models/group_0787.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0787.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0787.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0787.py diff --git a/githubkit/versions/v2022_11_28/models/group_0788.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0788.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0788.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0788.py diff --git a/githubkit/versions/v2022_11_28/models/group_0789.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0789.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0789.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0789.py diff --git a/githubkit/versions/v2022_11_28/models/group_0790.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0790.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0790.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0790.py diff --git a/githubkit/versions/v2022_11_28/models/group_0791.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0791.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0791.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0791.py diff --git a/githubkit/versions/v2022_11_28/models/group_0792.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0792.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0792.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0792.py diff --git a/githubkit/versions/v2022_11_28/models/group_0793.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0793.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0793.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0793.py diff --git a/githubkit/versions/v2022_11_28/models/group_0794.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0794.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0794.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0794.py diff --git a/githubkit/versions/v2022_11_28/models/group_0795.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0795.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0795.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0795.py diff --git a/githubkit/versions/v2022_11_28/models/group_0796.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0796.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0796.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0796.py diff --git a/githubkit/versions/v2022_11_28/models/group_0797.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0797.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0797.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0797.py diff --git a/githubkit/versions/v2022_11_28/models/group_0798.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0798.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0798.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0798.py diff --git a/githubkit/versions/v2022_11_28/models/group_0799.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0799.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0799.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0799.py diff --git a/githubkit/versions/v2022_11_28/models/group_0800.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0800.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0800.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0800.py diff --git a/githubkit/versions/v2022_11_28/models/group_0801.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0801.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0801.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0801.py diff --git a/githubkit/versions/v2022_11_28/models/group_0802.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0802.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0802.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0802.py diff --git a/githubkit/versions/v2022_11_28/models/group_0803.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0803.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0803.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0803.py diff --git a/githubkit/versions/v2022_11_28/models/group_0804.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0804.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0804.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0804.py diff --git a/githubkit/versions/v2022_11_28/models/group_0805.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0805.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0805.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0805.py diff --git a/githubkit/versions/v2022_11_28/models/group_0806.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0806.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0806.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0806.py diff --git a/githubkit/versions/v2022_11_28/models/group_0807.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0807.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0807.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0807.py diff --git a/githubkit/versions/v2022_11_28/models/group_0808.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0808.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0808.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0808.py diff --git a/githubkit/versions/v2022_11_28/models/group_0809.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0809.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0809.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0809.py diff --git a/githubkit/versions/v2022_11_28/models/group_0810.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0810.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0810.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0810.py diff --git a/githubkit/versions/v2022_11_28/models/group_0811.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0811.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0811.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0811.py diff --git a/githubkit/versions/v2022_11_28/models/group_0812.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0812.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0812.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0812.py diff --git a/githubkit/versions/v2022_11_28/models/group_0813.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0813.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0813.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0813.py diff --git a/githubkit/versions/v2022_11_28/models/group_0814.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0814.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0814.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0814.py diff --git a/githubkit/versions/v2022_11_28/models/group_0815.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0815.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0815.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0815.py diff --git a/githubkit/versions/v2022_11_28/models/group_0816.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0816.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0816.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0816.py diff --git a/githubkit/versions/v2022_11_28/models/group_0817.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0817.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0817.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0817.py diff --git a/githubkit/versions/v2022_11_28/models/group_0818.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0818.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0818.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0818.py diff --git a/githubkit/versions/v2022_11_28/models/group_0819.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0819.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0819.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0819.py diff --git a/githubkit/versions/v2022_11_28/models/group_0820.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0820.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0820.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0820.py diff --git a/githubkit/versions/v2022_11_28/models/group_0821.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0821.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0821.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0821.py diff --git a/githubkit/versions/v2022_11_28/models/group_0822.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0822.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0822.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0822.py diff --git a/githubkit/versions/v2022_11_28/models/group_0823.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0823.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0823.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0823.py diff --git a/githubkit/versions/v2022_11_28/models/group_0824.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0824.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0824.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0824.py diff --git a/githubkit/versions/v2022_11_28/models/group_0825.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0825.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0825.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0825.py diff --git a/githubkit/versions/v2022_11_28/models/group_0826.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0826.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0826.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0826.py diff --git a/githubkit/versions/v2022_11_28/models/group_0827.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0827.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0827.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0827.py diff --git a/githubkit/versions/v2022_11_28/models/group_0828.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0828.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0828.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0828.py diff --git a/githubkit/versions/v2022_11_28/models/group_0829.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0829.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0829.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0829.py diff --git a/githubkit/versions/v2022_11_28/models/group_0830.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0830.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0830.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0830.py diff --git a/githubkit/versions/v2022_11_28/models/group_0831.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0831.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0831.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0831.py diff --git a/githubkit/versions/v2022_11_28/models/group_0832.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0832.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0832.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0832.py diff --git a/githubkit/versions/v2022_11_28/models/group_0833.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0833.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0833.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0833.py diff --git a/githubkit/versions/v2022_11_28/models/group_0834.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0834.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0834.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0834.py diff --git a/githubkit/versions/v2022_11_28/models/group_0835.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0835.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0835.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0835.py diff --git a/githubkit/versions/v2022_11_28/models/group_0836.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0836.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0836.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0836.py diff --git a/githubkit/versions/v2022_11_28/models/group_0837.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0837.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0837.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0837.py diff --git a/githubkit/versions/v2022_11_28/models/group_0838.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0838.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0838.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0838.py diff --git a/githubkit/versions/v2022_11_28/models/group_0839.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0839.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0839.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0839.py diff --git a/githubkit/versions/v2022_11_28/models/group_0840.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0840.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0840.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0840.py diff --git a/githubkit/versions/v2022_11_28/models/group_0841.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0841.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0841.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0841.py diff --git a/githubkit/versions/v2022_11_28/models/group_0842.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0842.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0842.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0842.py diff --git a/githubkit/versions/v2022_11_28/models/group_0843.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0843.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0843.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0843.py diff --git a/githubkit/versions/v2022_11_28/models/group_0844.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0844.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0844.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0844.py diff --git a/githubkit/versions/v2022_11_28/models/group_0845.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0845.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0845.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0845.py diff --git a/githubkit/versions/v2022_11_28/models/group_0846.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0846.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0846.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0846.py diff --git a/githubkit/versions/v2022_11_28/models/group_0847.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0847.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0847.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0847.py diff --git a/githubkit/versions/v2022_11_28/models/group_0848.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0848.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0848.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0848.py diff --git a/githubkit/versions/v2022_11_28/models/group_0849.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0849.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0849.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0849.py diff --git a/githubkit/versions/v2022_11_28/models/group_0850.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0850.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0850.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0850.py diff --git a/githubkit/versions/v2022_11_28/models/group_0851.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0851.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0851.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0851.py diff --git a/githubkit/versions/v2022_11_28/models/group_0852.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0852.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0852.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0852.py diff --git a/githubkit/versions/v2022_11_28/models/group_0853.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0853.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0853.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0853.py diff --git a/githubkit/versions/v2022_11_28/models/group_0854.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0854.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0854.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0854.py diff --git a/githubkit/versions/v2022_11_28/models/group_0855.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0855.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0855.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0855.py diff --git a/githubkit/versions/v2022_11_28/models/group_0856.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0856.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0856.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0856.py diff --git a/githubkit/versions/v2022_11_28/models/group_0857.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0857.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0857.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0857.py diff --git a/githubkit/versions/v2022_11_28/models/group_0858.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0858.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0858.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0858.py diff --git a/githubkit/versions/v2022_11_28/models/group_0859.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0859.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0859.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0859.py diff --git a/githubkit/versions/v2022_11_28/models/group_0860.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0860.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0860.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0860.py diff --git a/githubkit/versions/v2022_11_28/models/group_0861.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0861.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0861.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0861.py diff --git a/githubkit/versions/v2022_11_28/models/group_0862.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0862.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0862.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0862.py diff --git a/githubkit/versions/v2022_11_28/models/group_0863.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0863.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0863.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0863.py diff --git a/githubkit/versions/v2022_11_28/models/group_0864.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0864.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0864.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0864.py diff --git a/githubkit/versions/v2022_11_28/models/group_0865.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0865.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0865.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0865.py diff --git a/githubkit/versions/v2022_11_28/models/group_0866.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0866.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0866.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0866.py diff --git a/githubkit/versions/v2022_11_28/models/group_0867.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0867.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0867.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0867.py diff --git a/githubkit/versions/v2022_11_28/models/group_0868.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0868.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0868.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0868.py diff --git a/githubkit/versions/v2022_11_28/models/group_0869.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0869.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0869.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0869.py diff --git a/githubkit/versions/v2022_11_28/models/group_0870.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0870.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0870.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0870.py diff --git a/githubkit/versions/v2022_11_28/models/group_0871.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0871.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0871.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0871.py diff --git a/githubkit/versions/v2022_11_28/models/group_0872.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0872.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0872.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0872.py diff --git a/githubkit/versions/v2022_11_28/models/group_0873.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0873.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0873.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0873.py diff --git a/githubkit/versions/v2022_11_28/models/group_0874.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0874.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0874.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0874.py diff --git a/githubkit/versions/v2022_11_28/models/group_0875.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0875.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0875.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0875.py diff --git a/githubkit/versions/v2022_11_28/models/group_0876.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0876.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0876.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0876.py diff --git a/githubkit/versions/v2022_11_28/models/group_0877.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0877.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0877.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0877.py diff --git a/githubkit/versions/v2022_11_28/models/group_0878.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0878.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0878.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0878.py diff --git a/githubkit/versions/v2022_11_28/models/group_0879.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0879.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0879.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0879.py diff --git a/githubkit/versions/v2022_11_28/models/group_0880.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0880.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0880.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0880.py diff --git a/githubkit/versions/v2022_11_28/models/group_0881.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0881.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0881.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0881.py diff --git a/githubkit/versions/v2022_11_28/models/group_0882.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0882.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0882.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0882.py diff --git a/githubkit/versions/v2022_11_28/models/group_0883.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0883.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0883.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0883.py diff --git a/githubkit/versions/v2022_11_28/models/group_0884.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0884.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0884.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0884.py diff --git a/githubkit/versions/v2022_11_28/models/group_0885.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0885.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0885.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0885.py diff --git a/githubkit/versions/v2022_11_28/models/group_0886.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0886.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0886.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0886.py diff --git a/githubkit/versions/v2022_11_28/models/group_0887.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0887.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0887.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0887.py diff --git a/githubkit/versions/v2022_11_28/models/group_0888.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0888.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0888.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0888.py diff --git a/githubkit/versions/v2022_11_28/models/group_0889.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0889.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0889.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0889.py diff --git a/githubkit/versions/v2022_11_28/models/group_0890.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0890.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0890.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0890.py diff --git a/githubkit/versions/v2022_11_28/models/group_0891.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0891.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0891.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0891.py diff --git a/githubkit/versions/v2022_11_28/models/group_0892.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0892.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0892.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0892.py diff --git a/githubkit/versions/v2022_11_28/models/group_0893.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0893.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0893.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0893.py diff --git a/githubkit/versions/v2022_11_28/models/group_0894.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0894.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0894.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0894.py diff --git a/githubkit/versions/v2022_11_28/models/group_0895.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0895.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0895.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0895.py diff --git a/githubkit/versions/v2022_11_28/models/group_0896.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0896.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0896.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0896.py diff --git a/githubkit/versions/v2022_11_28/models/group_0897.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0897.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0897.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0897.py diff --git a/githubkit/versions/v2022_11_28/models/group_0898.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0898.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0898.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0898.py diff --git a/githubkit/versions/v2022_11_28/models/group_0899.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0899.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0899.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0899.py diff --git a/githubkit/versions/v2022_11_28/models/group_0900.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0900.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0900.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0900.py diff --git a/githubkit/versions/v2022_11_28/models/group_0901.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0901.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0901.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0901.py diff --git a/githubkit/versions/v2022_11_28/models/group_0902.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0902.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0902.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0902.py diff --git a/githubkit/versions/v2022_11_28/models/group_0903.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0903.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0903.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0903.py diff --git a/githubkit/versions/v2022_11_28/models/group_0904.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0904.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0904.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0904.py diff --git a/githubkit/versions/v2022_11_28/models/group_0905.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0905.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0905.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0905.py diff --git a/githubkit/versions/v2022_11_28/models/group_0906.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0906.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0906.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0906.py diff --git a/githubkit/versions/v2022_11_28/models/group_0907.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0907.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0907.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0907.py diff --git a/githubkit/versions/v2022_11_28/models/group_0908.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0908.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0908.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0908.py diff --git a/githubkit/versions/v2022_11_28/models/group_0909.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0909.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0909.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0909.py diff --git a/githubkit/versions/v2022_11_28/models/group_0910.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0910.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0910.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0910.py diff --git a/githubkit/versions/v2022_11_28/models/group_0911.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0911.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0911.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0911.py diff --git a/githubkit/versions/v2022_11_28/models/group_0912.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0912.py similarity index 92% rename from githubkit/versions/v2022_11_28/models/group_0912.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0912.py index 7b2c9e7497..9b05d83df8 100644 --- a/githubkit/versions/v2022_11_28/models/group_0912.py +++ b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0912.py @@ -83,28 +83,24 @@ class WebhookWorkflowJobCompletedPropWorkflowJob(GitHubModel): run_attempt: int = Field() run_id: int = Field() run_url: str = Field() - runner_group_id: Union[Union[int, None], None] = Field( + runner_group_id: Union[int, None] = Field( description="The ID of the runner group that is running this job. This will be `null` as long as `workflow_job[status]` is `queued`." ) - runner_group_name: Union[Union[str, None], None] = Field( + runner_group_name: Union[str, None] = Field( description="The name of the runner group that is running this job. This will be `null` as long as `workflow_job[status]` is `queued`." ) - runner_id: Union[Union[int, None], None] = Field( + runner_id: Union[int, None] = Field( description="The ID of the runner that is running this job. This will be `null` as long as `workflow_job[status]` is `queued`." ) - runner_name: Union[Union[str, None], None] = Field( + runner_name: Union[str, None] = Field( description="The name of the runner that is running this job. This will be `null` as long as `workflow_job[status]` is `queued`." ) started_at: str = Field() status: Literal["queued", "in_progress", "completed", "waiting"] = Field( description="The current status of the job. Can be `queued`, `in_progress`, `waiting`, or `completed`." ) - head_branch: Union[Union[str, None], None] = Field( - description="The name of the current branch." - ) - workflow_name: Union[Union[str, None], None] = Field( - description="The name of the workflow." - ) + head_branch: Union[str, None] = Field(description="The name of the current branch.") + workflow_name: Union[str, None] = Field(description="The name of the workflow.") steps: list[WebhookWorkflowJobCompletedPropWorkflowJobMergedSteps] = Field() url: str = Field() diff --git a/githubkit/versions/v2022_11_28/models/group_0913.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0913.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0913.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0913.py diff --git a/githubkit/versions/v2022_11_28/models/group_0914.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0914.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0914.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0914.py diff --git a/githubkit/versions/v2022_11_28/models/group_0915.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0915.py similarity index 88% rename from githubkit/versions/v2022_11_28/models/group_0915.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0915.py index 9813a0d942..7a9af00e18 100644 --- a/githubkit/versions/v2022_11_28/models/group_0915.py +++ b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0915.py @@ -61,7 +61,7 @@ class WebhookWorkflowJobInProgressPropWorkflowJob(GitHubModel): """WebhookWorkflowJobInProgressPropWorkflowJob""" check_run_url: str = Field() - completed_at: Union[Union[str, None], None] = Field() + completed_at: Union[str, None] = Field() conclusion: Union[Literal["success", "failure", "cancelled", "neutral"], None] = ( Field() ) @@ -77,28 +77,24 @@ class WebhookWorkflowJobInProgressPropWorkflowJob(GitHubModel): run_attempt: int = Field() run_id: int = Field() run_url: str = Field() - runner_group_id: Union[Union[int, None], None] = Field( + runner_group_id: Union[int, None] = Field( description="The ID of the runner group that is running this job. This will be `null` as long as `workflow_job[status]` is `queued`." ) - runner_group_name: Union[Union[str, None], None] = Field( + runner_group_name: Union[str, None] = Field( description="The name of the runner group that is running this job. This will be `null` as long as `workflow_job[status]` is `queued`." ) - runner_id: Union[Union[int, None], None] = Field( + runner_id: Union[int, None] = Field( description="The ID of the runner that is running this job. This will be `null` as long as `workflow_job[status]` is `queued`." ) - runner_name: Union[Union[str, None], None] = Field( + runner_name: Union[str, None] = Field( description="The name of the runner that is running this job. This will be `null` as long as `workflow_job[status]` is `queued`." ) started_at: str = Field() status: Literal["queued", "in_progress", "completed"] = Field( description="The current status of the job. Can be `queued`, `in_progress`, or `completed`." ) - head_branch: Union[Union[str, None], None] = Field( - description="The name of the current branch." - ) - workflow_name: Union[Union[str, None], None] = Field( - description="The name of the workflow." - ) + head_branch: Union[str, None] = Field(description="The name of the current branch.") + workflow_name: Union[str, None] = Field(description="The name of the workflow.") steps: list[WebhookWorkflowJobInProgressPropWorkflowJobMergedSteps] = Field() url: str = Field() @@ -106,13 +102,13 @@ class WebhookWorkflowJobInProgressPropWorkflowJob(GitHubModel): class WebhookWorkflowJobInProgressPropWorkflowJobMergedSteps(GitHubModel): """WebhookWorkflowJobInProgressPropWorkflowJobMergedSteps""" - completed_at: Union[Union[str, None], None] = Field() + completed_at: Union[str, None] = Field() conclusion: Union[Literal["failure", "skipped", "success", "cancelled"], None] = ( Field() ) name: str = Field() number: int = Field() - started_at: Union[Union[str, None], None] = Field() + started_at: Union[str, None] = Field() status: Literal["in_progress", "completed", "queued", "pending"] = Field() diff --git a/githubkit/versions/v2022_11_28/models/group_0916.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0916.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0916.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0916.py diff --git a/githubkit/versions/v2022_11_28/models/group_0917.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0917.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0917.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0917.py diff --git a/githubkit/versions/v2022_11_28/models/group_0918.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0918.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0918.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0918.py diff --git a/githubkit/versions/v2022_11_28/models/group_0919.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0919.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0919.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0919.py diff --git a/githubkit/versions/v2022_11_28/models/group_0920.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0920.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0920.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0920.py diff --git a/githubkit/versions/v2022_11_28/models/group_0921.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0921.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0921.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0921.py diff --git a/githubkit/versions/v2022_11_28/models/group_0922.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0922.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0922.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0922.py diff --git a/githubkit/versions/v2022_11_28/models/group_0923.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0923.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0923.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0923.py diff --git a/githubkit/versions/v2022_11_28/models/group_0924.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0924.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0924.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0924.py diff --git a/githubkit/versions/v2022_11_28/models/group_0925.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0925.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0925.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0925.py diff --git a/githubkit/versions/v2022_11_28/models/group_0926.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0926.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0926.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0926.py diff --git a/githubkit/versions/v2022_11_28/models/group_0927.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0927.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0927.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0927.py diff --git a/githubkit/versions/v2022_11_28/models/group_0928.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0928.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0928.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0928.py diff --git a/githubkit/versions/v2022_11_28/models/group_0929.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0929.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0929.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0929.py diff --git a/githubkit/versions/v2022_11_28/models/group_0930.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0930.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0930.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0930.py diff --git a/githubkit/versions/v2022_11_28/models/group_0931.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0931.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0931.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0931.py diff --git a/githubkit/versions/v2022_11_28/models/group_0932.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0932.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0932.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0932.py diff --git a/githubkit/versions/v2022_11_28/models/group_0933.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0933.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0933.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0933.py diff --git a/githubkit/versions/v2022_11_28/models/group_0934.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0934.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0934.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0934.py diff --git a/githubkit/versions/v2022_11_28/models/group_0935.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0935.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0935.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0935.py diff --git a/githubkit/versions/v2022_11_28/models/group_0936.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0936.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0936.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0936.py diff --git a/githubkit/versions/v2022_11_28/models/group_0937.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0937.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0937.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0937.py diff --git a/githubkit/versions/v2022_11_28/models/group_0938.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0938.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0938.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0938.py diff --git a/githubkit/versions/v2022_11_28/models/group_0939.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0939.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0939.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0939.py diff --git a/githubkit/versions/v2022_11_28/models/group_0940.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0940.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0940.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0940.py diff --git a/githubkit/versions/v2022_11_28/models/group_0941.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0941.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0941.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0941.py diff --git a/githubkit/versions/v2022_11_28/models/group_0942.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0942.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0942.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0942.py diff --git a/githubkit/versions/v2022_11_28/models/group_0943.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0943.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0943.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0943.py diff --git a/githubkit/versions/v2022_11_28/models/group_0944.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0944.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0944.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0944.py diff --git a/githubkit/versions/v2022_11_28/models/group_0945.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0945.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0945.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0945.py diff --git a/githubkit/versions/v2022_11_28/models/group_0946.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0946.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0946.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0946.py diff --git a/githubkit/versions/v2022_11_28/models/group_0947.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0947.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0947.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0947.py diff --git a/githubkit/versions/v2022_11_28/models/group_0948.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0948.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0948.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0948.py diff --git a/githubkit/versions/v2022_11_28/models/group_0949.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0949.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0949.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0949.py diff --git a/githubkit/versions/v2022_11_28/models/group_0950.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0950.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0950.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0950.py diff --git a/githubkit/versions/v2022_11_28/models/group_0951.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0951.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0951.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0951.py diff --git a/githubkit/versions/v2022_11_28/models/group_0952.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0952.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0952.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0952.py diff --git a/githubkit/versions/v2022_11_28/models/group_0953.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0953.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0953.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0953.py diff --git a/githubkit/versions/v2022_11_28/models/group_0954.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0954.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0954.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0954.py diff --git a/githubkit/versions/v2022_11_28/models/group_0955.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0955.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0955.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0955.py diff --git a/githubkit/versions/v2022_11_28/models/group_0956.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0956.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0956.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0956.py diff --git a/githubkit/versions/v2022_11_28/models/group_0957.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0957.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0957.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0957.py diff --git a/githubkit/versions/v2022_11_28/models/group_0958.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0958.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0958.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0958.py diff --git a/githubkit/versions/v2022_11_28/models/group_0959.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0959.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0959.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0959.py diff --git a/githubkit/versions/v2022_11_28/models/group_0960.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0960.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0960.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0960.py diff --git a/githubkit/versions/v2022_11_28/models/group_0961.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0961.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0961.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0961.py diff --git a/githubkit/versions/v2022_11_28/models/group_0962.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0962.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0962.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0962.py diff --git a/githubkit/versions/v2022_11_28/models/group_0963.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0963.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0963.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0963.py diff --git a/githubkit/versions/v2022_11_28/models/group_0964.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0964.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0964.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0964.py diff --git a/githubkit/versions/v2022_11_28/models/group_0965.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0965.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0965.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0965.py diff --git a/githubkit/versions/v2022_11_28/models/group_0966.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0966.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0966.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0966.py diff --git a/githubkit/versions/v2022_11_28/models/group_0967.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0967.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0967.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0967.py diff --git a/githubkit/versions/v2022_11_28/models/group_0968.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0968.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0968.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0968.py diff --git a/githubkit/versions/v2022_11_28/models/group_0969.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0969.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0969.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0969.py diff --git a/githubkit/versions/v2022_11_28/models/group_0970.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0970.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0970.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0970.py diff --git a/githubkit/versions/v2022_11_28/models/group_0971.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0971.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0971.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0971.py diff --git a/githubkit/versions/v2022_11_28/models/group_0972.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0972.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0972.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0972.py diff --git a/githubkit/versions/v2022_11_28/models/group_0973.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0973.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0973.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0973.py diff --git a/githubkit/versions/v2022_11_28/models/group_0974.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0974.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0974.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0974.py diff --git a/githubkit/versions/v2022_11_28/models/group_0975.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0975.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0975.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0975.py diff --git a/githubkit/versions/v2022_11_28/models/group_0976.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0976.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0976.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0976.py diff --git a/githubkit/versions/v2022_11_28/models/group_0977.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0977.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0977.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0977.py diff --git a/githubkit/versions/v2022_11_28/models/group_0978.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0978.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0978.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0978.py diff --git a/githubkit/versions/v2022_11_28/models/group_0979.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0979.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0979.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0979.py diff --git a/githubkit/versions/v2022_11_28/models/group_0980.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0980.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0980.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0980.py diff --git a/githubkit/versions/v2022_11_28/models/group_0981.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0981.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0981.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0981.py diff --git a/githubkit/versions/v2022_11_28/models/group_0982.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0982.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0982.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0982.py diff --git a/githubkit/versions/v2022_11_28/models/group_0983.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0983.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0983.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0983.py diff --git a/githubkit/versions/v2022_11_28/models/group_0984.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0984.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0984.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0984.py diff --git a/githubkit/versions/v2022_11_28/models/group_0985.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0985.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0985.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0985.py diff --git a/githubkit/versions/v2022_11_28/models/group_0986.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0986.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0986.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0986.py diff --git a/githubkit/versions/v2022_11_28/models/group_0987.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0987.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0987.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0987.py diff --git a/githubkit/versions/v2022_11_28/models/group_0988.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0988.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0988.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0988.py diff --git a/githubkit/versions/v2022_11_28/models/group_0989.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0989.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0989.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0989.py diff --git a/githubkit/versions/v2022_11_28/models/group_0990.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0990.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0990.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0990.py diff --git a/githubkit/versions/v2022_11_28/models/group_0991.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0991.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0991.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0991.py diff --git a/githubkit/versions/v2022_11_28/models/group_0992.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0992.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0992.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0992.py diff --git a/githubkit/versions/v2022_11_28/models/group_0993.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0993.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0993.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0993.py diff --git a/githubkit/versions/v2022_11_28/models/group_0994.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0994.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0994.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0994.py diff --git a/githubkit/versions/v2022_11_28/models/group_0995.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0995.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0995.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0995.py diff --git a/githubkit/versions/v2022_11_28/models/group_0996.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0996.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0996.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0996.py diff --git a/githubkit/versions/v2022_11_28/models/group_0997.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0997.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0997.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0997.py diff --git a/githubkit/versions/v2022_11_28/models/group_0998.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0998.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0998.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0998.py diff --git a/githubkit/versions/v2022_11_28/models/group_0999.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0999.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0999.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_0999.py diff --git a/githubkit/versions/v2022_11_28/models/group_1000.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1000.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1000.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1000.py diff --git a/githubkit/versions/v2022_11_28/models/group_1001.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1001.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1001.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1001.py diff --git a/githubkit/versions/v2022_11_28/models/group_1002.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1002.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1002.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1002.py diff --git a/githubkit/versions/v2022_11_28/models/group_1003.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1003.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1003.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1003.py diff --git a/githubkit/versions/v2022_11_28/models/group_1004.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1004.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1004.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1004.py diff --git a/githubkit/versions/v2022_11_28/models/group_1005.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1005.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1005.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1005.py diff --git a/githubkit/versions/v2022_11_28/models/group_1006.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1006.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1006.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1006.py diff --git a/githubkit/versions/v2022_11_28/models/group_1007.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1007.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1007.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1007.py diff --git a/githubkit/versions/v2022_11_28/models/group_1008.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1008.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1008.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1008.py diff --git a/githubkit/versions/v2022_11_28/models/group_1009.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1009.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1009.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1009.py diff --git a/githubkit/versions/v2022_11_28/models/group_1010.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1010.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1010.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1010.py diff --git a/githubkit/versions/v2022_11_28/models/group_1011.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1011.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1011.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1011.py diff --git a/githubkit/versions/v2022_11_28/models/group_1012.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1012.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1012.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1012.py diff --git a/githubkit/versions/v2022_11_28/models/group_1013.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1013.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1013.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1013.py diff --git a/githubkit/versions/v2022_11_28/models/group_1014.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1014.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1014.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1014.py diff --git a/githubkit/versions/v2022_11_28/models/group_1015.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1015.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1015.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1015.py diff --git a/githubkit/versions/v2022_11_28/models/group_1016.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1016.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1016.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1016.py diff --git a/githubkit/versions/v2022_11_28/models/group_1017.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1017.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1017.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1017.py diff --git a/githubkit/versions/v2022_11_28/models/group_1018.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1018.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1018.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1018.py diff --git a/githubkit/versions/v2022_11_28/models/group_1019.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1019.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1019.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1019.py diff --git a/githubkit/versions/v2022_11_28/models/group_1020.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1020.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1020.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1020.py diff --git a/githubkit/versions/v2022_11_28/models/group_1021.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1021.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1021.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1021.py diff --git a/githubkit/versions/v2022_11_28/models/group_1022.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1022.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1022.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1022.py diff --git a/githubkit/versions/v2022_11_28/models/group_1023.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1023.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1023.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1023.py diff --git a/githubkit/versions/v2022_11_28/models/group_1024.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1024.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1024.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1024.py diff --git a/githubkit/versions/v2022_11_28/models/group_1025.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1025.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1025.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1025.py diff --git a/githubkit/versions/v2022_11_28/models/group_1026.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1026.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1026.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1026.py diff --git a/githubkit/versions/v2022_11_28/models/group_1027.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1027.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1027.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1027.py diff --git a/githubkit/versions/v2022_11_28/models/group_1028.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1028.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1028.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1028.py diff --git a/githubkit/versions/v2022_11_28/models/group_1029.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1029.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1029.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1029.py diff --git a/githubkit/versions/v2022_11_28/models/group_1030.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1030.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1030.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1030.py diff --git a/githubkit/versions/v2022_11_28/models/group_1031.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1031.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1031.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1031.py diff --git a/githubkit/versions/v2022_11_28/models/group_1032.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1032.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1032.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1032.py diff --git a/githubkit/versions/v2022_11_28/models/group_1033.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1033.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1033.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1033.py diff --git a/githubkit/versions/v2022_11_28/models/group_1034.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1034.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1034.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1034.py diff --git a/githubkit/versions/v2022_11_28/models/group_1035.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1035.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1035.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1035.py diff --git a/githubkit/versions/v2022_11_28/models/group_1036.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1036.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1036.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1036.py diff --git a/githubkit/versions/v2022_11_28/models/group_1037.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1037.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1037.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1037.py diff --git a/githubkit/versions/v2022_11_28/models/group_1038.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1038.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1038.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1038.py diff --git a/githubkit/versions/v2022_11_28/models/group_1039.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1039.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1039.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1039.py diff --git a/githubkit/versions/v2022_11_28/models/group_1040.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1040.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1040.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1040.py diff --git a/githubkit/versions/v2022_11_28/models/group_1041.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1041.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1041.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1041.py diff --git a/githubkit/versions/v2022_11_28/models/group_1042.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1042.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1042.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1042.py diff --git a/githubkit/versions/v2022_11_28/models/group_1043.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1043.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1043.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1043.py diff --git a/githubkit/versions/v2022_11_28/models/group_1044.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1044.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1044.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1044.py diff --git a/githubkit/versions/v2022_11_28/models/group_1045.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1045.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1045.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1045.py diff --git a/githubkit/versions/v2022_11_28/models/group_1046.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1046.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1046.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1046.py diff --git a/githubkit/versions/v2022_11_28/models/group_1047.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1047.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1047.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1047.py diff --git a/githubkit/versions/v2022_11_28/models/group_1048.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1048.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1048.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1048.py diff --git a/githubkit/versions/v2022_11_28/models/group_1049.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1049.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1049.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1049.py diff --git a/githubkit/versions/v2022_11_28/models/group_1050.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1050.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1050.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1050.py diff --git a/githubkit/versions/v2022_11_28/models/group_1051.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1051.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1051.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1051.py diff --git a/githubkit/versions/v2022_11_28/models/group_1052.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1052.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1052.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1052.py diff --git a/githubkit/versions/v2022_11_28/models/group_1053.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1053.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1053.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1053.py diff --git a/githubkit/versions/v2022_11_28/models/group_1054.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1054.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1054.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1054.py diff --git a/githubkit/versions/v2022_11_28/models/group_1055.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1055.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1055.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1055.py diff --git a/githubkit/versions/v2022_11_28/models/group_1056.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1056.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1056.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1056.py diff --git a/githubkit/versions/v2022_11_28/models/group_1057.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1057.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1057.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1057.py diff --git a/githubkit/versions/v2022_11_28/models/group_1058.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1058.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1058.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1058.py diff --git a/githubkit/versions/v2022_11_28/models/group_1059.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1059.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1059.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1059.py diff --git a/githubkit/versions/v2022_11_28/models/group_1060.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1060.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1060.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1060.py diff --git a/githubkit/versions/v2022_11_28/models/group_1061.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1061.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1061.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1061.py diff --git a/githubkit/versions/v2022_11_28/models/group_1062.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1062.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1062.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1062.py diff --git a/githubkit/versions/v2022_11_28/models/group_1063.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1063.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1063.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1063.py diff --git a/githubkit/versions/v2022_11_28/models/group_1064.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1064.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1064.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1064.py diff --git a/githubkit/versions/v2022_11_28/models/group_1065.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1065.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1065.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1065.py diff --git a/githubkit/versions/v2022_11_28/models/group_1066.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1066.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1066.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1066.py diff --git a/githubkit/versions/v2022_11_28/models/group_1067.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1067.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1067.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1067.py diff --git a/githubkit/versions/v2022_11_28/models/group_1068.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1068.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1068.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1068.py diff --git a/githubkit/versions/v2022_11_28/models/group_1069.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1069.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1069.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1069.py diff --git a/githubkit/versions/v2022_11_28/models/group_1070.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1070.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1070.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1070.py diff --git a/githubkit/versions/v2022_11_28/models/group_1071.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1071.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1071.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1071.py diff --git a/githubkit/versions/v2022_11_28/models/group_1072.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1072.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1072.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1072.py diff --git a/githubkit/versions/v2022_11_28/models/group_1073.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1073.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1073.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1073.py diff --git a/githubkit/versions/v2022_11_28/models/group_1074.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1074.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1074.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1074.py diff --git a/githubkit/versions/v2022_11_28/models/group_1075.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1075.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1075.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1075.py diff --git a/githubkit/versions/v2022_11_28/models/group_1076.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1076.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1076.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1076.py diff --git a/githubkit/versions/v2022_11_28/models/group_1077.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1077.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1077.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1077.py diff --git a/githubkit/versions/v2022_11_28/models/group_1078.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1078.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1078.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1078.py diff --git a/githubkit/versions/v2022_11_28/models/group_1079.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1079.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1079.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1079.py diff --git a/githubkit/versions/v2022_11_28/models/group_1080.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1080.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1080.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1080.py diff --git a/githubkit/versions/v2022_11_28/models/group_1081.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1081.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1081.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1081.py diff --git a/githubkit/versions/v2022_11_28/models/group_1082.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1082.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1082.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1082.py diff --git a/githubkit/versions/v2022_11_28/models/group_1083.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1083.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1083.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1083.py diff --git a/githubkit/versions/v2022_11_28/models/group_1084.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1084.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1084.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1084.py diff --git a/githubkit/versions/v2022_11_28/models/group_1085.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1085.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1085.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1085.py diff --git a/githubkit/versions/v2022_11_28/models/group_1086.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1086.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1086.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1086.py diff --git a/githubkit/versions/v2022_11_28/models/group_1087.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1087.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1087.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1087.py diff --git a/githubkit/versions/v2022_11_28/models/group_1088.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1088.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1088.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1088.py diff --git a/githubkit/versions/v2022_11_28/models/group_1089.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1089.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1089.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1089.py diff --git a/githubkit/versions/v2022_11_28/models/group_1090.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1090.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1090.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1090.py diff --git a/githubkit/versions/v2022_11_28/models/group_1091.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1091.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1091.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1091.py diff --git a/githubkit/versions/v2022_11_28/models/group_1092.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1092.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1092.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1092.py diff --git a/githubkit/versions/v2022_11_28/models/group_1093.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1093.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1093.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1093.py diff --git a/githubkit/versions/v2022_11_28/models/group_1094.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1094.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1094.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1094.py diff --git a/githubkit/versions/v2022_11_28/models/group_1095.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1095.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1095.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1095.py diff --git a/githubkit/versions/v2022_11_28/models/group_1096.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1096.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1096.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1096.py diff --git a/githubkit/versions/v2022_11_28/models/group_1097.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1097.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1097.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1097.py diff --git a/githubkit/versions/v2022_11_28/models/group_1098.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1098.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1098.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1098.py diff --git a/githubkit/versions/v2022_11_28/models/group_1099.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1099.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1099.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1099.py diff --git a/githubkit/versions/v2022_11_28/models/group_1100.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1100.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1100.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1100.py diff --git a/githubkit/versions/v2022_11_28/models/group_1101.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1101.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1101.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1101.py diff --git a/githubkit/versions/v2022_11_28/models/group_1102.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1102.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1102.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1102.py diff --git a/githubkit/versions/v2022_11_28/models/group_1103.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1103.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1103.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1103.py diff --git a/githubkit/versions/v2022_11_28/models/group_1104.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1104.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1104.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1104.py diff --git a/githubkit/versions/v2022_11_28/models/group_1105.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1105.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1105.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1105.py diff --git a/githubkit/versions/v2022_11_28/models/group_1106.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1106.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1106.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1106.py diff --git a/githubkit/versions/v2022_11_28/models/group_1107.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1107.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1107.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1107.py diff --git a/githubkit/versions/v2022_11_28/models/group_1108.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1108.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1108.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1108.py diff --git a/githubkit/versions/v2022_11_28/models/group_1109.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1109.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1109.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1109.py diff --git a/githubkit/versions/v2022_11_28/models/group_1110.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1110.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1110.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1110.py diff --git a/githubkit/versions/v2022_11_28/models/group_1111.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1111.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1111.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1111.py diff --git a/githubkit/versions/v2022_11_28/models/group_1112.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1112.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1112.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1112.py diff --git a/githubkit/versions/v2022_11_28/models/group_1113.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1113.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1113.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1113.py diff --git a/githubkit/versions/v2022_11_28/models/group_1114.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1114.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1114.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1114.py diff --git a/githubkit/versions/v2022_11_28/models/group_1115.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1115.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1115.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1115.py diff --git a/githubkit/versions/v2022_11_28/models/group_1116.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1116.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1116.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1116.py diff --git a/githubkit/versions/v2022_11_28/models/group_1117.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1117.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1117.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1117.py diff --git a/githubkit/versions/v2022_11_28/models/group_1118.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1118.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1118.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1118.py diff --git a/githubkit/versions/v2022_11_28/models/group_1119.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1119.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1119.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1119.py diff --git a/githubkit/versions/v2022_11_28/models/group_1120.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1120.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1120.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1120.py diff --git a/githubkit/versions/v2022_11_28/models/group_1121.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1121.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1121.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1121.py diff --git a/githubkit/versions/v2022_11_28/models/group_1122.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1122.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1122.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1122.py diff --git a/githubkit/versions/v2022_11_28/models/group_1123.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1123.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1123.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1123.py diff --git a/githubkit/versions/v2022_11_28/models/group_1124.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1124.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1124.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1124.py diff --git a/githubkit/versions/v2022_11_28/models/group_1125.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1125.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1125.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1125.py diff --git a/githubkit/versions/v2022_11_28/models/group_1126.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1126.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1126.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1126.py diff --git a/githubkit/versions/v2022_11_28/models/group_1127.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1127.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1127.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1127.py diff --git a/githubkit/versions/v2022_11_28/models/group_1128.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1128.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1128.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1128.py diff --git a/githubkit/versions/v2022_11_28/models/group_1129.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1129.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1129.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1129.py diff --git a/githubkit/versions/v2022_11_28/models/group_1130.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1130.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1130.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1130.py diff --git a/githubkit/versions/v2022_11_28/models/group_1131.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1131.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1131.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1131.py diff --git a/githubkit/versions/v2022_11_28/models/group_1132.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1132.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1132.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1132.py diff --git a/githubkit/versions/v2022_11_28/models/group_1133.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1133.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1133.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1133.py diff --git a/githubkit/versions/v2022_11_28/models/group_1134.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1134.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1134.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1134.py diff --git a/githubkit/versions/v2022_11_28/models/group_1135.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1135.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1135.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1135.py diff --git a/githubkit/versions/v2022_11_28/models/group_1136.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1136.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1136.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1136.py diff --git a/githubkit/versions/v2022_11_28/models/group_1137.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1137.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1137.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1137.py diff --git a/githubkit/versions/v2022_11_28/models/group_1138.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1138.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1138.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1138.py diff --git a/githubkit/versions/v2022_11_28/models/group_1139.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1139.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1139.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1139.py diff --git a/githubkit/versions/v2022_11_28/models/group_1140.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1140.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1140.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1140.py diff --git a/githubkit/versions/v2022_11_28/models/group_1141.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1141.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1141.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1141.py diff --git a/githubkit/versions/v2022_11_28/models/group_1142.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1142.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1142.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1142.py diff --git a/githubkit/versions/v2022_11_28/models/group_1143.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1143.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1143.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1143.py diff --git a/githubkit/versions/v2022_11_28/models/group_1144.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1144.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1144.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1144.py diff --git a/githubkit/versions/v2022_11_28/models/group_1145.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1145.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1145.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1145.py diff --git a/githubkit/versions/v2022_11_28/models/group_1146.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1146.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1146.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1146.py diff --git a/githubkit/versions/v2022_11_28/models/group_1147.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1147.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1147.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1147.py diff --git a/githubkit/versions/v2022_11_28/models/group_1148.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1148.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1148.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1148.py diff --git a/githubkit/versions/v2022_11_28/models/group_1149.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1149.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1149.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1149.py diff --git a/githubkit/versions/v2022_11_28/models/group_1150.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1150.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1150.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1150.py diff --git a/githubkit/versions/v2022_11_28/models/group_1151.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1151.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1151.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1151.py diff --git a/githubkit/versions/v2022_11_28/models/group_1152.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1152.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1152.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1152.py diff --git a/githubkit/versions/v2022_11_28/models/group_1153.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1153.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1153.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1153.py diff --git a/githubkit/versions/v2022_11_28/models/group_1154.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1154.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1154.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1154.py diff --git a/githubkit/versions/v2022_11_28/models/group_1155.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1155.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1155.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1155.py diff --git a/githubkit/versions/v2022_11_28/models/group_1156.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1156.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1156.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1156.py diff --git a/githubkit/versions/v2022_11_28/models/group_1157.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1157.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1157.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1157.py diff --git a/githubkit/versions/v2022_11_28/models/group_1158.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1158.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1158.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1158.py diff --git a/githubkit/versions/v2022_11_28/models/group_1159.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1159.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1159.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1159.py diff --git a/githubkit/versions/v2022_11_28/models/group_1160.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1160.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1160.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1160.py diff --git a/githubkit/versions/v2022_11_28/models/group_1161.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1161.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1161.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1161.py diff --git a/githubkit/versions/v2022_11_28/models/group_1162.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1162.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1162.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1162.py diff --git a/githubkit/versions/v2022_11_28/models/group_1163.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1163.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1163.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1163.py diff --git a/githubkit/versions/v2022_11_28/models/group_1164.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1164.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1164.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1164.py diff --git a/githubkit/versions/v2022_11_28/models/group_1165.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1165.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1165.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1165.py diff --git a/githubkit/versions/v2022_11_28/models/group_1166.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1166.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1166.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1166.py diff --git a/githubkit/versions/v2022_11_28/models/group_1167.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1167.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1167.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1167.py diff --git a/githubkit/versions/v2022_11_28/models/group_1168.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1168.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1168.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1168.py diff --git a/githubkit/versions/v2022_11_28/models/group_1169.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1169.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1169.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1169.py diff --git a/githubkit/versions/v2022_11_28/models/group_1170.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1170.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1170.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1170.py diff --git a/githubkit/versions/v2022_11_28/models/group_1171.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1171.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1171.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1171.py diff --git a/githubkit/versions/v2022_11_28/models/group_1172.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1172.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1172.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1172.py diff --git a/githubkit/versions/v2022_11_28/models/group_1173.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1173.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1173.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1173.py diff --git a/githubkit/versions/v2022_11_28/models/group_1174.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1174.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1174.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1174.py diff --git a/githubkit/versions/v2022_11_28/models/group_1175.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1175.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1175.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1175.py diff --git a/githubkit/versions/v2022_11_28/models/group_1176.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1176.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1176.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1176.py diff --git a/githubkit/versions/v2022_11_28/models/group_1177.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1177.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1177.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1177.py diff --git a/githubkit/versions/v2022_11_28/models/group_1178.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1178.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1178.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1178.py diff --git a/githubkit/versions/v2022_11_28/models/group_1179.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1179.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1179.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1179.py diff --git a/githubkit/versions/v2022_11_28/models/group_1180.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1180.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1180.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1180.py diff --git a/githubkit/versions/v2022_11_28/models/group_1181.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1181.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1181.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1181.py diff --git a/githubkit/versions/v2022_11_28/models/group_1182.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1182.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1182.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1182.py diff --git a/githubkit/versions/v2022_11_28/models/group_1183.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1183.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1183.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1183.py diff --git a/githubkit/versions/v2022_11_28/models/group_1184.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1184.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1184.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1184.py diff --git a/githubkit/versions/v2022_11_28/models/group_1185.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1185.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1185.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1185.py diff --git a/githubkit/versions/v2022_11_28/models/group_1186.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1186.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1186.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1186.py diff --git a/githubkit/versions/v2022_11_28/models/group_1187.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1187.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1187.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1187.py diff --git a/githubkit/versions/v2022_11_28/models/group_1188.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1188.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1188.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1188.py diff --git a/githubkit/versions/v2022_11_28/models/group_1189.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1189.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1189.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1189.py diff --git a/githubkit/versions/v2022_11_28/models/group_1190.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1190.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1190.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1190.py diff --git a/githubkit/versions/v2022_11_28/models/group_1191.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1191.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1191.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1191.py diff --git a/githubkit/versions/v2022_11_28/models/group_1192.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1192.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1192.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1192.py diff --git a/githubkit/versions/v2022_11_28/models/group_1193.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1193.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1193.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1193.py diff --git a/githubkit/versions/v2022_11_28/models/group_1194.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1194.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1194.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1194.py diff --git a/githubkit/versions/v2022_11_28/models/group_1195.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1195.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1195.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1195.py diff --git a/githubkit/versions/v2022_11_28/models/group_1196.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1196.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1196.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1196.py diff --git a/githubkit/versions/v2022_11_28/models/group_1197.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1197.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1197.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1197.py diff --git a/githubkit/versions/v2022_11_28/models/group_1198.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1198.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1198.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1198.py diff --git a/githubkit/versions/v2022_11_28/models/group_1199.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1199.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1199.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1199.py diff --git a/githubkit/versions/v2022_11_28/models/group_1200.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1200.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1200.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1200.py diff --git a/githubkit/versions/v2022_11_28/models/group_1201.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1201.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1201.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1201.py diff --git a/githubkit/versions/v2022_11_28/models/group_1202.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1202.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1202.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1202.py diff --git a/githubkit/versions/v2022_11_28/models/group_1203.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1203.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1203.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1203.py diff --git a/githubkit/versions/v2022_11_28/models/group_1204.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1204.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1204.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1204.py diff --git a/githubkit/versions/v2022_11_28/models/group_1205.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1205.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1205.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1205.py diff --git a/githubkit/versions/v2022_11_28/models/group_1206.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1206.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1206.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1206.py diff --git a/githubkit/versions/v2022_11_28/models/group_1207.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1207.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1207.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1207.py diff --git a/githubkit/versions/v2022_11_28/models/group_1208.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1208.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1208.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1208.py diff --git a/githubkit/versions/v2022_11_28/models/group_1209.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1209.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1209.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1209.py diff --git a/githubkit/versions/v2022_11_28/models/group_1210.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1210.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1210.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1210.py diff --git a/githubkit/versions/v2022_11_28/models/group_1211.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1211.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1211.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1211.py diff --git a/githubkit/versions/v2022_11_28/models/group_1212.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1212.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1212.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1212.py diff --git a/githubkit/versions/v2022_11_28/models/group_1213.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1213.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1213.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1213.py diff --git a/githubkit/versions/v2022_11_28/models/group_1214.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1214.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1214.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1214.py diff --git a/githubkit/versions/v2022_11_28/models/group_1215.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1215.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1215.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1215.py diff --git a/githubkit/versions/v2022_11_28/models/group_1216.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1216.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1216.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1216.py diff --git a/githubkit/versions/v2022_11_28/models/group_1217.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1217.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1217.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1217.py diff --git a/githubkit/versions/v2022_11_28/models/group_1218.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1218.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1218.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1218.py diff --git a/githubkit/versions/v2022_11_28/models/group_1219.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1219.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1219.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1219.py diff --git a/githubkit/versions/v2022_11_28/models/group_1220.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1220.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1220.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1220.py diff --git a/githubkit/versions/v2022_11_28/models/group_1221.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1221.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1221.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1221.py diff --git a/githubkit/versions/v2022_11_28/models/group_1222.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1222.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1222.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1222.py diff --git a/githubkit/versions/v2022_11_28/models/group_1223.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1223.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1223.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1223.py diff --git a/githubkit/versions/v2022_11_28/models/group_1224.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1224.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1224.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1224.py diff --git a/githubkit/versions/v2022_11_28/models/group_1225.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1225.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1225.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1225.py diff --git a/githubkit/versions/v2022_11_28/models/group_1226.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1226.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1226.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1226.py diff --git a/githubkit/versions/v2022_11_28/models/group_1227.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1227.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1227.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1227.py diff --git a/githubkit/versions/v2022_11_28/models/group_1228.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1228.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1228.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1228.py diff --git a/githubkit/versions/v2022_11_28/models/group_1229.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1229.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1229.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1229.py diff --git a/githubkit/versions/v2022_11_28/models/group_1230.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1230.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1230.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1230.py diff --git a/githubkit/versions/v2022_11_28/models/group_1231.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1231.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1231.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1231.py diff --git a/githubkit/versions/v2022_11_28/models/group_1232.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1232.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1232.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1232.py diff --git a/githubkit/versions/v2022_11_28/models/group_1233.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1233.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1233.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1233.py diff --git a/githubkit/versions/v2022_11_28/models/group_1234.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1234.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1234.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1234.py diff --git a/githubkit/versions/v2022_11_28/models/group_1235.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1235.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1235.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1235.py diff --git a/githubkit/versions/v2022_11_28/models/group_1236.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1236.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1236.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1236.py diff --git a/githubkit/versions/v2022_11_28/models/group_1237.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1237.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1237.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1237.py diff --git a/githubkit/versions/v2022_11_28/models/group_1238.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1238.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1238.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1238.py diff --git a/githubkit/versions/v2022_11_28/models/group_1239.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1239.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1239.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1239.py diff --git a/githubkit/versions/v2022_11_28/models/group_1240.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1240.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1240.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1240.py diff --git a/githubkit/versions/v2022_11_28/models/group_1241.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1241.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1241.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1241.py diff --git a/githubkit/versions/v2022_11_28/models/group_1242.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1242.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1242.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1242.py diff --git a/githubkit/versions/v2022_11_28/models/group_1243.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1243.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1243.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1243.py diff --git a/githubkit/versions/v2022_11_28/models/group_1244.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1244.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1244.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1244.py diff --git a/githubkit/versions/v2022_11_28/models/group_1245.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1245.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1245.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1245.py diff --git a/githubkit/versions/v2022_11_28/models/group_1246.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1246.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1246.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1246.py diff --git a/githubkit/versions/v2022_11_28/models/group_1247.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1247.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1247.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1247.py diff --git a/githubkit/versions/v2022_11_28/models/group_1248.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1248.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1248.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1248.py diff --git a/githubkit/versions/v2022_11_28/models/group_1249.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1249.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1249.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1249.py diff --git a/githubkit/versions/v2022_11_28/models/group_1250.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1250.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1250.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1250.py diff --git a/githubkit/versions/v2022_11_28/models/group_1251.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1251.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1251.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1251.py diff --git a/githubkit/versions/v2022_11_28/models/group_1252.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1252.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1252.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1252.py diff --git a/githubkit/versions/v2022_11_28/models/group_1253.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1253.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1253.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1253.py diff --git a/githubkit/versions/v2022_11_28/models/group_1254.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1254.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1254.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1254.py diff --git a/githubkit/versions/v2022_11_28/models/group_1255.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1255.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1255.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1255.py diff --git a/githubkit/versions/v2022_11_28/models/group_1256.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1256.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1256.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1256.py diff --git a/githubkit/versions/v2022_11_28/models/group_1257.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1257.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1257.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1257.py diff --git a/githubkit/versions/v2022_11_28/models/group_1258.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1258.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1258.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1258.py diff --git a/githubkit/versions/v2022_11_28/models/group_1259.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1259.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1259.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1259.py diff --git a/githubkit/versions/v2022_11_28/models/group_1260.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1260.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1260.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1260.py diff --git a/githubkit/versions/v2022_11_28/models/group_1261.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1261.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1261.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1261.py diff --git a/githubkit/versions/v2022_11_28/models/group_1262.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1262.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1262.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1262.py diff --git a/githubkit/versions/v2022_11_28/models/group_1263.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1263.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1263.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1263.py diff --git a/githubkit/versions/v2022_11_28/models/group_1264.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1264.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1264.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1264.py diff --git a/githubkit/versions/v2022_11_28/models/group_1265.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1265.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1265.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1265.py diff --git a/githubkit/versions/v2022_11_28/models/group_1266.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1266.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1266.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1266.py diff --git a/githubkit/versions/v2022_11_28/models/group_1267.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1267.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1267.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1267.py diff --git a/githubkit/versions/v2022_11_28/models/group_1268.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1268.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1268.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1268.py diff --git a/githubkit/versions/v2022_11_28/models/group_1269.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1269.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1269.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1269.py diff --git a/githubkit/versions/v2022_11_28/models/group_1270.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1270.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1270.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1270.py diff --git a/githubkit/versions/v2022_11_28/models/group_1271.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1271.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1271.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1271.py diff --git a/githubkit/versions/v2022_11_28/models/group_1272.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1272.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1272.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1272.py diff --git a/githubkit/versions/v2022_11_28/models/group_1273.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1273.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1273.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1273.py diff --git a/githubkit/versions/v2022_11_28/models/group_1274.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1274.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1274.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1274.py diff --git a/githubkit/versions/v2022_11_28/models/group_1275.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1275.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1275.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1275.py diff --git a/githubkit/versions/v2022_11_28/models/group_1276.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1276.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1276.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1276.py diff --git a/githubkit/versions/v2022_11_28/models/group_1277.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1277.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1277.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1277.py diff --git a/githubkit/versions/v2022_11_28/models/group_1278.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1278.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1278.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1278.py diff --git a/githubkit/versions/v2022_11_28/models/group_1279.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1279.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1279.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1279.py diff --git a/githubkit/versions/v2022_11_28/models/group_1280.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1280.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1280.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1280.py diff --git a/githubkit/versions/v2022_11_28/models/group_1281.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1281.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1281.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1281.py diff --git a/githubkit/versions/v2022_11_28/models/group_1282.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1282.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1282.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1282.py diff --git a/githubkit/versions/v2022_11_28/models/group_1283.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1283.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1283.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1283.py diff --git a/githubkit/versions/v2022_11_28/models/group_1284.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1284.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1284.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1284.py diff --git a/githubkit/versions/v2022_11_28/models/group_1285.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1285.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1285.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1285.py diff --git a/githubkit/versions/v2022_11_28/models/group_1286.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1286.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1286.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1286.py diff --git a/githubkit/versions/v2022_11_28/models/group_1287.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1287.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1287.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1287.py diff --git a/githubkit/versions/v2022_11_28/models/group_1288.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1288.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1288.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1288.py diff --git a/githubkit/versions/v2022_11_28/models/group_1289.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1289.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1289.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1289.py diff --git a/githubkit/versions/v2022_11_28/models/group_1290.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1290.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1290.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1290.py diff --git a/githubkit/versions/v2022_11_28/models/group_1291.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1291.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1291.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1291.py diff --git a/githubkit/versions/v2022_11_28/models/group_1292.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1292.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1292.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1292.py diff --git a/githubkit/versions/v2022_11_28/models/group_1293.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1293.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1293.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1293.py diff --git a/githubkit/versions/v2022_11_28/models/group_1294.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1294.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1294.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1294.py diff --git a/githubkit/versions/v2022_11_28/models/group_1295.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1295.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1295.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1295.py diff --git a/githubkit/versions/v2022_11_28/models/group_1296.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1296.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1296.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1296.py diff --git a/githubkit/versions/v2022_11_28/models/group_1297.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1297.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1297.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1297.py diff --git a/githubkit/versions/v2022_11_28/models/group_1298.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1298.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1298.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1298.py diff --git a/githubkit/versions/v2022_11_28/models/group_1299.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1299.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1299.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1299.py diff --git a/githubkit/versions/v2022_11_28/models/group_1300.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1300.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1300.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1300.py diff --git a/githubkit/versions/v2022_11_28/models/group_1301.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1301.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1301.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1301.py diff --git a/githubkit/versions/v2022_11_28/models/group_1302.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1302.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1302.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1302.py diff --git a/githubkit/versions/v2022_11_28/models/group_1303.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1303.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1303.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1303.py diff --git a/githubkit/versions/v2022_11_28/models/group_1304.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1304.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1304.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1304.py diff --git a/githubkit/versions/v2022_11_28/models/group_1305.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1305.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1305.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1305.py diff --git a/githubkit/versions/v2022_11_28/models/group_1306.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1306.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1306.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1306.py diff --git a/githubkit/versions/v2022_11_28/models/group_1307.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1307.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1307.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1307.py diff --git a/githubkit/versions/v2022_11_28/models/group_1308.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1308.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1308.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1308.py diff --git a/githubkit/versions/v2022_11_28/models/group_1309.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1309.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1309.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1309.py diff --git a/githubkit/versions/v2022_11_28/models/group_1310.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1310.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1310.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1310.py diff --git a/githubkit/versions/v2022_11_28/models/group_1311.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1311.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1311.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1311.py diff --git a/githubkit/versions/v2022_11_28/models/group_1312.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1312.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1312.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1312.py diff --git a/githubkit/versions/v2022_11_28/models/group_1313.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1313.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1313.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1313.py diff --git a/githubkit/versions/v2022_11_28/models/group_1314.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1314.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1314.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1314.py diff --git a/githubkit/versions/v2022_11_28/models/group_1315.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1315.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1315.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1315.py diff --git a/githubkit/versions/v2022_11_28/models/group_1316.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1316.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1316.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1316.py diff --git a/githubkit/versions/v2022_11_28/models/group_1317.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1317.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1317.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1317.py diff --git a/githubkit/versions/v2022_11_28/models/group_1318.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1318.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1318.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1318.py diff --git a/githubkit/versions/v2022_11_28/models/group_1319.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1319.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1319.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1319.py diff --git a/githubkit/versions/v2022_11_28/models/group_1320.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1320.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1320.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1320.py diff --git a/githubkit/versions/v2022_11_28/models/group_1321.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1321.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1321.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1321.py diff --git a/githubkit/versions/v2022_11_28/models/group_1322.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1322.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1322.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1322.py diff --git a/githubkit/versions/v2022_11_28/models/group_1323.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1323.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1323.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1323.py diff --git a/githubkit/versions/v2022_11_28/models/group_1324.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1324.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1324.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1324.py diff --git a/githubkit/versions/v2022_11_28/models/group_1325.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1325.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1325.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1325.py diff --git a/githubkit/versions/v2022_11_28/models/group_1326.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1326.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1326.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1326.py diff --git a/githubkit/versions/v2022_11_28/models/group_1327.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1327.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1327.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1327.py diff --git a/githubkit/versions/v2022_11_28/models/group_1328.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1328.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1328.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1328.py diff --git a/githubkit/versions/v2022_11_28/models/group_1329.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1329.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1329.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1329.py diff --git a/githubkit/versions/v2022_11_28/models/group_1330.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1330.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1330.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1330.py diff --git a/githubkit/versions/v2022_11_28/models/group_1331.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1331.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1331.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1331.py diff --git a/githubkit/versions/v2022_11_28/models/group_1332.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1332.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1332.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1332.py diff --git a/githubkit/versions/v2022_11_28/models/group_1333.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1333.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1333.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1333.py diff --git a/githubkit/versions/v2022_11_28/models/group_1334.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1334.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1334.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1334.py diff --git a/githubkit/versions/v2022_11_28/models/group_1335.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1335.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1335.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1335.py diff --git a/githubkit/versions/v2022_11_28/models/group_1336.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1336.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1336.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1336.py diff --git a/githubkit/versions/v2022_11_28/models/group_1337.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1337.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1337.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1337.py diff --git a/githubkit/versions/v2022_11_28/models/group_1338.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1338.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1338.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1338.py diff --git a/githubkit/versions/v2022_11_28/models/group_1339.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1339.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1339.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1339.py diff --git a/githubkit/versions/v2022_11_28/models/group_1340.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1340.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1340.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1340.py diff --git a/githubkit/versions/v2022_11_28/models/group_1341.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1341.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1341.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1341.py diff --git a/githubkit/versions/v2022_11_28/models/group_1342.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1342.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1342.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1342.py diff --git a/githubkit/versions/v2022_11_28/models/group_1343.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1343.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1343.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1343.py diff --git a/githubkit/versions/v2022_11_28/models/group_1344.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1344.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1344.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1344.py diff --git a/githubkit/versions/v2022_11_28/models/group_1345.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1345.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1345.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1345.py diff --git a/githubkit/versions/v2022_11_28/models/group_1346.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1346.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1346.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1346.py diff --git a/githubkit/versions/v2022_11_28/models/group_1347.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1347.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1347.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1347.py diff --git a/githubkit/versions/v2022_11_28/models/group_1348.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1348.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1348.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1348.py diff --git a/githubkit/versions/v2022_11_28/models/group_1349.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1349.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1349.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1349.py diff --git a/githubkit/versions/v2022_11_28/models/group_1350.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1350.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1350.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1350.py diff --git a/githubkit/versions/v2022_11_28/models/group_1351.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1351.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_1351.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/models/group_1351.py diff --git a/githubkit/versions/v2022_11_28/rest/__init__.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/rest/__init__.py similarity index 100% rename from githubkit/versions/v2022_11_28/rest/__init__.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/rest/__init__.py diff --git a/githubkit/versions/v2022_11_28/rest/actions.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/rest/actions.py similarity index 100% rename from githubkit/versions/v2022_11_28/rest/actions.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/rest/actions.py diff --git a/githubkit/versions/v2022_11_28/rest/activity.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/rest/activity.py similarity index 100% rename from githubkit/versions/v2022_11_28/rest/activity.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/rest/activity.py diff --git a/githubkit/versions/v2022_11_28/rest/apps.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/rest/apps.py similarity index 100% rename from githubkit/versions/v2022_11_28/rest/apps.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/rest/apps.py diff --git a/githubkit/versions/v2022_11_28/rest/billing.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/rest/billing.py similarity index 100% rename from githubkit/versions/v2022_11_28/rest/billing.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/rest/billing.py diff --git a/githubkit/versions/v2022_11_28/rest/campaigns.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/rest/campaigns.py similarity index 100% rename from githubkit/versions/v2022_11_28/rest/campaigns.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/rest/campaigns.py diff --git a/githubkit/versions/v2022_11_28/rest/checks.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/rest/checks.py similarity index 100% rename from githubkit/versions/v2022_11_28/rest/checks.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/rest/checks.py diff --git a/githubkit/versions/v2022_11_28/rest/classroom.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/rest/classroom.py similarity index 100% rename from githubkit/versions/v2022_11_28/rest/classroom.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/rest/classroom.py diff --git a/githubkit/versions/v2022_11_28/rest/code_scanning.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/rest/code_scanning.py similarity index 100% rename from githubkit/versions/v2022_11_28/rest/code_scanning.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/rest/code_scanning.py diff --git a/githubkit/versions/v2022_11_28/rest/code_security.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/rest/code_security.py similarity index 100% rename from githubkit/versions/v2022_11_28/rest/code_security.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/rest/code_security.py diff --git a/githubkit/versions/v2022_11_28/rest/codes_of_conduct.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/rest/codes_of_conduct.py similarity index 100% rename from githubkit/versions/v2022_11_28/rest/codes_of_conduct.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/rest/codes_of_conduct.py diff --git a/githubkit/versions/v2022_11_28/rest/codespaces.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/rest/codespaces.py similarity index 100% rename from githubkit/versions/v2022_11_28/rest/codespaces.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/rest/codespaces.py diff --git a/githubkit/versions/v2022_11_28/rest/copilot.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/rest/copilot.py similarity index 100% rename from githubkit/versions/v2022_11_28/rest/copilot.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/rest/copilot.py diff --git a/githubkit/versions/v2022_11_28/rest/copilot_spaces.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/rest/copilot_spaces.py similarity index 100% rename from githubkit/versions/v2022_11_28/rest/copilot_spaces.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/rest/copilot_spaces.py diff --git a/githubkit/versions/v2022_11_28/rest/credentials.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/rest/credentials.py similarity index 100% rename from githubkit/versions/v2022_11_28/rest/credentials.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/rest/credentials.py diff --git a/githubkit/versions/v2022_11_28/rest/dependabot.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/rest/dependabot.py similarity index 100% rename from githubkit/versions/v2022_11_28/rest/dependabot.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/rest/dependabot.py diff --git a/githubkit/versions/v2022_11_28/rest/dependency_graph.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/rest/dependency_graph.py similarity index 100% rename from githubkit/versions/v2022_11_28/rest/dependency_graph.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/rest/dependency_graph.py diff --git a/githubkit/versions/v2022_11_28/rest/emojis.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/rest/emojis.py similarity index 100% rename from githubkit/versions/v2022_11_28/rest/emojis.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/rest/emojis.py diff --git a/githubkit/versions/v2022_11_28/rest/enterprise_team_memberships.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/rest/enterprise_team_memberships.py similarity index 100% rename from githubkit/versions/v2022_11_28/rest/enterprise_team_memberships.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/rest/enterprise_team_memberships.py diff --git a/githubkit/versions/v2022_11_28/rest/enterprise_team_organizations.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/rest/enterprise_team_organizations.py similarity index 100% rename from githubkit/versions/v2022_11_28/rest/enterprise_team_organizations.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/rest/enterprise_team_organizations.py diff --git a/githubkit/versions/v2022_11_28/rest/enterprise_teams.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/rest/enterprise_teams.py similarity index 100% rename from githubkit/versions/v2022_11_28/rest/enterprise_teams.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/rest/enterprise_teams.py diff --git a/githubkit/versions/v2022_11_28/rest/gists.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/rest/gists.py similarity index 100% rename from githubkit/versions/v2022_11_28/rest/gists.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/rest/gists.py diff --git a/githubkit/versions/v2022_11_28/rest/git.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/rest/git.py similarity index 100% rename from githubkit/versions/v2022_11_28/rest/git.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/rest/git.py diff --git a/githubkit/versions/v2022_11_28/rest/gitignore.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/rest/gitignore.py similarity index 100% rename from githubkit/versions/v2022_11_28/rest/gitignore.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/rest/gitignore.py diff --git a/githubkit/versions/v2022_11_28/rest/hosted_compute.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/rest/hosted_compute.py similarity index 100% rename from githubkit/versions/v2022_11_28/rest/hosted_compute.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/rest/hosted_compute.py diff --git a/githubkit/versions/v2022_11_28/rest/interactions.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/rest/interactions.py similarity index 100% rename from githubkit/versions/v2022_11_28/rest/interactions.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/rest/interactions.py diff --git a/githubkit/versions/v2022_11_28/rest/issues.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/rest/issues.py similarity index 100% rename from githubkit/versions/v2022_11_28/rest/issues.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/rest/issues.py diff --git a/githubkit/versions/v2022_11_28/rest/licenses.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/rest/licenses.py similarity index 100% rename from githubkit/versions/v2022_11_28/rest/licenses.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/rest/licenses.py diff --git a/githubkit/versions/v2022_11_28/rest/markdown.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/rest/markdown.py similarity index 100% rename from githubkit/versions/v2022_11_28/rest/markdown.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/rest/markdown.py diff --git a/githubkit/versions/v2022_11_28/rest/meta.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/rest/meta.py similarity index 100% rename from githubkit/versions/v2022_11_28/rest/meta.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/rest/meta.py diff --git a/githubkit/versions/v2022_11_28/rest/migrations.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/rest/migrations.py similarity index 100% rename from githubkit/versions/v2022_11_28/rest/migrations.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/rest/migrations.py diff --git a/githubkit/versions/v2022_11_28/rest/oidc.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/rest/oidc.py similarity index 100% rename from githubkit/versions/v2022_11_28/rest/oidc.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/rest/oidc.py diff --git a/githubkit/versions/v2022_11_28/rest/orgs.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/rest/orgs.py similarity index 100% rename from githubkit/versions/v2022_11_28/rest/orgs.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/rest/orgs.py diff --git a/githubkit/versions/v2022_11_28/rest/packages.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/rest/packages.py similarity index 100% rename from githubkit/versions/v2022_11_28/rest/packages.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/rest/packages.py diff --git a/githubkit/versions/v2022_11_28/rest/private_registries.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/rest/private_registries.py similarity index 100% rename from githubkit/versions/v2022_11_28/rest/private_registries.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/rest/private_registries.py diff --git a/githubkit/versions/v2022_11_28/rest/projects.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/rest/projects.py similarity index 100% rename from githubkit/versions/v2022_11_28/rest/projects.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/rest/projects.py diff --git a/githubkit/versions/v2022_11_28/rest/pulls.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/rest/pulls.py similarity index 100% rename from githubkit/versions/v2022_11_28/rest/pulls.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/rest/pulls.py diff --git a/githubkit/versions/v2022_11_28/rest/rate_limit.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/rest/rate_limit.py similarity index 100% rename from githubkit/versions/v2022_11_28/rest/rate_limit.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/rest/rate_limit.py diff --git a/githubkit/versions/v2022_11_28/rest/reactions.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/rest/reactions.py similarity index 100% rename from githubkit/versions/v2022_11_28/rest/reactions.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/rest/reactions.py diff --git a/githubkit/versions/v2022_11_28/rest/repos.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/rest/repos.py similarity index 99% rename from githubkit/versions/v2022_11_28/rest/repos.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/rest/repos.py index 8a14fc901b..6549e3010d 100644 --- a/githubkit/versions/v2022_11_28/rest/repos.py +++ b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/rest/repos.py @@ -15820,7 +15820,6 @@ def create_pages_site( ReposOwnerRepoPagesPostBodyAnyof0Type, None, ReposOwnerRepoPagesPostBodyAnyof1Type, - None, ], ) -> Response[Page, PageTypeForResponse]: ... @@ -15862,7 +15861,6 @@ def create_pages_site( ReposOwnerRepoPagesPostBodyAnyof0Type, None, ReposOwnerRepoPagesPostBodyAnyof1Type, - None, ] ] = UNSET, **kwargs, @@ -15905,7 +15903,6 @@ def create_pages_site( ReposOwnerRepoPagesPostBodyAnyof0, None, ReposOwnerRepoPagesPostBodyAnyof1, - None, ], json, ) @@ -15936,7 +15933,6 @@ async def async_create_pages_site( ReposOwnerRepoPagesPostBodyAnyof0Type, None, ReposOwnerRepoPagesPostBodyAnyof1Type, - None, ], ) -> Response[Page, PageTypeForResponse]: ... @@ -15978,7 +15974,6 @@ async def async_create_pages_site( ReposOwnerRepoPagesPostBodyAnyof0Type, None, ReposOwnerRepoPagesPostBodyAnyof1Type, - None, ] ] = UNSET, **kwargs, @@ -16021,7 +16016,6 @@ async def async_create_pages_site( ReposOwnerRepoPagesPostBodyAnyof0, None, ReposOwnerRepoPagesPostBodyAnyof1, - None, ], json, ) diff --git a/githubkit/versions/v2022_11_28/rest/search.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/rest/search.py similarity index 100% rename from githubkit/versions/v2022_11_28/rest/search.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/rest/search.py diff --git a/githubkit/versions/v2022_11_28/rest/secret_scanning.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/rest/secret_scanning.py similarity index 100% rename from githubkit/versions/v2022_11_28/rest/secret_scanning.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/rest/secret_scanning.py diff --git a/githubkit/versions/v2022_11_28/rest/security_advisories.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/rest/security_advisories.py similarity index 100% rename from githubkit/versions/v2022_11_28/rest/security_advisories.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/rest/security_advisories.py diff --git a/githubkit/versions/v2022_11_28/rest/teams.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/rest/teams.py similarity index 100% rename from githubkit/versions/v2022_11_28/rest/teams.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/rest/teams.py diff --git a/githubkit/versions/v2022_11_28/rest/users.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/rest/users.py similarity index 100% rename from githubkit/versions/v2022_11_28/rest/users.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/rest/users.py diff --git a/githubkit/versions/v2022_11_28/types/__init__.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/__init__.py similarity index 99% rename from githubkit/versions/v2022_11_28/types/__init__.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/__init__.py index 15345a47a4..3100786db1 100644 --- a/githubkit/versions/v2022_11_28/types/__init__.py +++ b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/__init__.py @@ -9,7 +9,7 @@ from typing import TYPE_CHECKING -from githubkit.lazy_module import is_lazy_disabled +from githubkit.module_hooks.lazy_module import is_lazy_disabled if TYPE_CHECKING or is_lazy_disabled(): from .group_0000 import RootType as RootType diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0000.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0000.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0000.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0000.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0001.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0001.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0001.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0001.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0002.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0002.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0002.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0002.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0003.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0003.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0003.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0003.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0004.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0004.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0004.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0004.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0005.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0005.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0005.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0005.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0006.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0006.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0006.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0006.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0007.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0007.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0007.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0007.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0008.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0008.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0008.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0008.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0009.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0009.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0009.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0009.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0010.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0010.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0010.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0010.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0011.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0011.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0011.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0011.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0012.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0012.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0012.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0012.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0013.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0013.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0013.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0013.py diff --git a/githubkit/versions/v2022_11_28/types/group_0014.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0014.py similarity index 91% rename from githubkit/versions/v2022_11_28/types/group_0014.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0014.py index 5dca7785ad..34841d0229 100644 --- a/githubkit/versions/v2022_11_28/types/group_0014.py +++ b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0014.py @@ -43,7 +43,7 @@ class ValidationErrorPropErrorsItemsType(TypedDict): message: NotRequired[str] code: str index: NotRequired[int] - value: NotRequired[Union[str, None, int, None, list[str], None]] + value: NotRequired[Union[str, None, int, list[str]]] class ValidationErrorPropErrorsItemsTypeForResponse(TypedDict): @@ -54,7 +54,7 @@ class ValidationErrorPropErrorsItemsTypeForResponse(TypedDict): message: NotRequired[str] code: str index: NotRequired[int] - value: NotRequired[Union[str, None, int, None, list[str], None]] + value: NotRequired[Union[str, None, int, list[str]]] __all__ = ( diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0015.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0015.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0015.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0015.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0016.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0016.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0016.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0016.py diff --git a/githubkit/versions/v2022_11_28/types/group_0017.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0017.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0017.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0017.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0018.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0018.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0018.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0018.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0019.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0019.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0019.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0019.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0020.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0020.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0020.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0020.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0021.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0021.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0021.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0021.py diff --git a/githubkit/versions/v2022_11_28/types/group_0022.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0022.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0022.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0022.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0023.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0023.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0023.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0023.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0024.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0024.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0024.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0024.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0025.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0025.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0025.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0025.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0026.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0026.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0026.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0026.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0027.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0027.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0027.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0027.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0028.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0028.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0028.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0028.py diff --git a/githubkit/versions/v2022_11_28/types/group_0029.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0029.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0029.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0029.py diff --git a/githubkit/versions/v2022_11_28/types/group_0030.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0030.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0030.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0030.py diff --git a/githubkit/versions/v2022_11_28/types/group_0031.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0031.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0031.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0031.py diff --git a/githubkit/versions/v2022_11_28/types/group_0032.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0032.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0032.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0032.py diff --git a/githubkit/versions/v2022_11_28/types/group_0033.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0033.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0033.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0033.py diff --git a/githubkit/versions/v2022_11_28/types/group_0034.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0034.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0034.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0034.py diff --git a/githubkit/versions/v2022_11_28/types/group_0035.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0035.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0035.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0035.py diff --git a/githubkit/versions/v2022_11_28/types/group_0036.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0036.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0036.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0036.py diff --git a/githubkit/versions/v2022_11_28/types/group_0037.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0037.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0037.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0037.py diff --git a/githubkit/versions/v2022_11_28/types/group_0038.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0038.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0038.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0038.py diff --git a/githubkit/versions/v2022_11_28/types/group_0039.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0039.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0039.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0039.py diff --git a/githubkit/versions/v2022_11_28/types/group_0040.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0040.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0040.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0040.py diff --git a/githubkit/versions/v2022_11_28/types/group_0041.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0041.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0041.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0041.py diff --git a/githubkit/versions/v2022_11_28/types/group_0042.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0042.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0042.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0042.py diff --git a/githubkit/versions/v2022_11_28/types/group_0043.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0043.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0043.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0043.py diff --git a/githubkit/versions/v2022_11_28/types/group_0044.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0044.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0044.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0044.py diff --git a/githubkit/versions/v2022_11_28/types/group_0045.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0045.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0045.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0045.py diff --git a/githubkit/versions/v2022_11_28/types/group_0046.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0046.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0046.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0046.py diff --git a/githubkit/versions/v2022_11_28/types/group_0047.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0047.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0047.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0047.py diff --git a/githubkit/versions/v2022_11_28/types/group_0048.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0048.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0048.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0048.py diff --git a/githubkit/versions/v2022_11_28/types/group_0049.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0049.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0049.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0049.py diff --git a/githubkit/versions/v2022_11_28/types/group_0050.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0050.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0050.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0050.py diff --git a/githubkit/versions/v2022_11_28/types/group_0051.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0051.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0051.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0051.py diff --git a/githubkit/versions/v2022_11_28/types/group_0052.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0052.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0052.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0052.py diff --git a/githubkit/versions/v2022_11_28/types/group_0053.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0053.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0053.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0053.py diff --git a/githubkit/versions/v2022_11_28/types/group_0054.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0054.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0054.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0054.py diff --git a/githubkit/versions/v2022_11_28/types/group_0055.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0055.py similarity index 98% rename from githubkit/versions/v2022_11_28/types/group_0055.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0055.py index 27468a3788..c760edb337 100644 --- a/githubkit/versions/v2022_11_28/types/group_0055.py +++ b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0055.py @@ -48,7 +48,7 @@ class IssueCommentType(TypedDict): "OWNER", ] ] - performed_via_github_app: NotRequired[Union[None, IntegrationType, None]] + performed_via_github_app: NotRequired[Union[None, IntegrationType]] reactions: NotRequired[ReactionRollupType] pin: NotRequired[Union[None, PinnedIssueCommentType]] @@ -82,7 +82,7 @@ class IssueCommentTypeForResponse(TypedDict): "OWNER", ] ] - performed_via_github_app: NotRequired[Union[None, IntegrationTypeForResponse, None]] + performed_via_github_app: NotRequired[Union[None, IntegrationTypeForResponse]] reactions: NotRequired[ReactionRollupTypeForResponse] pin: NotRequired[Union[None, PinnedIssueCommentTypeForResponse]] diff --git a/githubkit/versions/v2022_11_28/types/group_0056.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0056.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0056.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0056.py diff --git a/githubkit/versions/v2022_11_28/types/group_0057.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0057.py similarity index 99% rename from githubkit/versions/v2022_11_28/types/group_0057.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0057.py index 65b2ea7a7f..bb05e378b8 100644 --- a/githubkit/versions/v2022_11_28/types/group_0057.py +++ b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0057.py @@ -70,7 +70,7 @@ class IssueType(TypedDict): timeline_url: NotRequired[str] type: NotRequired[Union[IssueTypeType, None]] repository: NotRequired[RepositoryType] - performed_via_github_app: NotRequired[Union[None, IntegrationType, None]] + performed_via_github_app: NotRequired[Union[None, IntegrationType]] author_association: NotRequired[ Literal[ "COLLABORATOR", @@ -132,7 +132,7 @@ class IssueTypeForResponse(TypedDict): timeline_url: NotRequired[str] type: NotRequired[Union[IssueTypeTypeForResponse, None]] repository: NotRequired[RepositoryTypeForResponse] - performed_via_github_app: NotRequired[Union[None, IntegrationTypeForResponse, None]] + performed_via_github_app: NotRequired[Union[None, IntegrationTypeForResponse]] author_association: NotRequired[ Literal[ "COLLABORATOR", diff --git a/githubkit/versions/v2022_11_28/types/group_0058.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0058.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0058.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0058.py diff --git a/githubkit/versions/v2022_11_28/types/group_0059.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0059.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0059.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0059.py diff --git a/githubkit/versions/v2022_11_28/types/group_0060.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0060.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0060.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0060.py diff --git a/githubkit/versions/v2022_11_28/types/group_0061.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0061.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0061.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0061.py diff --git a/githubkit/versions/v2022_11_28/types/group_0062.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0062.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0062.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0062.py diff --git a/githubkit/versions/v2022_11_28/types/group_0063.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0063.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0063.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0063.py diff --git a/githubkit/versions/v2022_11_28/types/group_0064.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0064.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0064.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0064.py diff --git a/githubkit/versions/v2022_11_28/types/group_0065.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0065.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0065.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0065.py diff --git a/githubkit/versions/v2022_11_28/types/group_0066.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0066.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0066.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0066.py diff --git a/githubkit/versions/v2022_11_28/types/group_0067.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0067.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0067.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0067.py diff --git a/githubkit/versions/v2022_11_28/types/group_0068.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0068.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0068.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0068.py diff --git a/githubkit/versions/v2022_11_28/types/group_0069.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0069.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0069.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0069.py diff --git a/githubkit/versions/v2022_11_28/types/group_0070.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0070.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0070.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0070.py diff --git a/githubkit/versions/v2022_11_28/types/group_0071.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0071.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0071.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0071.py diff --git a/githubkit/versions/v2022_11_28/types/group_0072.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0072.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0072.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0072.py diff --git a/githubkit/versions/v2022_11_28/types/group_0073.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0073.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0073.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0073.py diff --git a/githubkit/versions/v2022_11_28/types/group_0074.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0074.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0074.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0074.py diff --git a/githubkit/versions/v2022_11_28/types/group_0075.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0075.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0075.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0075.py diff --git a/githubkit/versions/v2022_11_28/types/group_0076.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0076.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0076.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0076.py diff --git a/githubkit/versions/v2022_11_28/types/group_0077.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0077.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0077.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0077.py diff --git a/githubkit/versions/v2022_11_28/types/group_0078.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0078.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0078.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0078.py diff --git a/githubkit/versions/v2022_11_28/types/group_0079.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0079.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0079.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0079.py diff --git a/githubkit/versions/v2022_11_28/types/group_0080.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0080.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0080.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0080.py diff --git a/githubkit/versions/v2022_11_28/types/group_0081.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0081.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0081.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0081.py diff --git a/githubkit/versions/v2022_11_28/types/group_0082.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0082.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0082.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0082.py diff --git a/githubkit/versions/v2022_11_28/types/group_0083.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0083.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0083.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0083.py diff --git a/githubkit/versions/v2022_11_28/types/group_0084.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0084.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0084.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0084.py diff --git a/githubkit/versions/v2022_11_28/types/group_0085.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0085.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0085.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0085.py diff --git a/githubkit/versions/v2022_11_28/types/group_0086.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0086.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0086.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0086.py diff --git a/githubkit/versions/v2022_11_28/types/group_0087.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0087.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0087.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0087.py diff --git a/githubkit/versions/v2022_11_28/types/group_0088.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0088.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0088.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0088.py diff --git a/githubkit/versions/v2022_11_28/types/group_0089.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0089.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0089.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0089.py diff --git a/githubkit/versions/v2022_11_28/types/group_0090.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0090.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0090.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0090.py diff --git a/githubkit/versions/v2022_11_28/types/group_0091.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0091.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0091.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0091.py diff --git a/githubkit/versions/v2022_11_28/types/group_0092.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0092.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0092.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0092.py diff --git a/githubkit/versions/v2022_11_28/types/group_0093.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0093.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0093.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0093.py diff --git a/githubkit/versions/v2022_11_28/types/group_0094.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0094.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0094.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0094.py diff --git a/githubkit/versions/v2022_11_28/types/group_0095.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0095.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0095.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0095.py diff --git a/githubkit/versions/v2022_11_28/types/group_0096.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0096.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0096.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0096.py diff --git a/githubkit/versions/v2022_11_28/types/group_0097.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0097.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0097.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0097.py diff --git a/githubkit/versions/v2022_11_28/types/group_0098.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0098.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0098.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0098.py diff --git a/githubkit/versions/v2022_11_28/types/group_0099.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0099.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0099.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0099.py diff --git a/githubkit/versions/v2022_11_28/types/group_0100.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0100.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0100.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0100.py diff --git a/githubkit/versions/v2022_11_28/types/group_0101.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0101.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0101.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0101.py diff --git a/githubkit/versions/v2022_11_28/types/group_0102.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0102.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0102.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0102.py diff --git a/githubkit/versions/v2022_11_28/types/group_0103.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0103.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0103.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0103.py diff --git a/githubkit/versions/v2022_11_28/types/group_0104.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0104.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0104.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0104.py diff --git a/githubkit/versions/v2022_11_28/types/group_0105.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0105.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0105.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0105.py diff --git a/githubkit/versions/v2022_11_28/types/group_0106.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0106.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0106.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0106.py diff --git a/githubkit/versions/v2022_11_28/types/group_0107.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0107.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0107.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0107.py diff --git a/githubkit/versions/v2022_11_28/types/group_0108.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0108.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0108.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0108.py diff --git a/githubkit/versions/v2022_11_28/types/group_0109.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0109.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0109.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0109.py diff --git a/githubkit/versions/v2022_11_28/types/group_0110.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0110.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0110.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0110.py diff --git a/githubkit/versions/v2022_11_28/types/group_0111.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0111.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0111.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0111.py diff --git a/githubkit/versions/v2022_11_28/types/group_0112.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0112.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0112.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0112.py diff --git a/githubkit/versions/v2022_11_28/types/group_0113.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0113.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0113.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0113.py diff --git a/githubkit/versions/v2022_11_28/types/group_0114.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0114.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0114.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0114.py diff --git a/githubkit/versions/v2022_11_28/types/group_0115.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0115.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0115.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0115.py diff --git a/githubkit/versions/v2022_11_28/types/group_0116.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0116.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0116.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0116.py diff --git a/githubkit/versions/v2022_11_28/types/group_0117.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0117.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0117.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0117.py diff --git a/githubkit/versions/v2022_11_28/types/group_0118.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0118.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0118.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0118.py diff --git a/githubkit/versions/v2022_11_28/types/group_0119.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0119.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0119.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0119.py diff --git a/githubkit/versions/v2022_11_28/types/group_0120.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0120.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0120.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0120.py diff --git a/githubkit/versions/v2022_11_28/types/group_0121.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0121.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0121.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0121.py diff --git a/githubkit/versions/v2022_11_28/types/group_0122.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0122.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0122.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0122.py diff --git a/githubkit/versions/v2022_11_28/types/group_0123.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0123.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0123.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0123.py diff --git a/githubkit/versions/v2022_11_28/types/group_0124.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0124.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0124.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0124.py diff --git a/githubkit/versions/v2022_11_28/types/group_0125.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0125.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0125.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0125.py diff --git a/githubkit/versions/v2022_11_28/types/group_0126.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0126.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0126.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0126.py diff --git a/githubkit/versions/v2022_11_28/types/group_0127.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0127.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0127.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0127.py diff --git a/githubkit/versions/v2022_11_28/types/group_0128.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0128.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0128.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0128.py diff --git a/githubkit/versions/v2022_11_28/types/group_0129.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0129.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0129.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0129.py diff --git a/githubkit/versions/v2022_11_28/types/group_0130.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0130.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0130.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0130.py diff --git a/githubkit/versions/v2022_11_28/types/group_0131.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0131.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0131.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0131.py diff --git a/githubkit/versions/v2022_11_28/types/group_0132.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0132.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0132.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0132.py diff --git a/githubkit/versions/v2022_11_28/types/group_0133.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0133.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0133.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0133.py diff --git a/githubkit/versions/v2022_11_28/types/group_0134.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0134.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0134.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0134.py diff --git a/githubkit/versions/v2022_11_28/types/group_0135.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0135.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0135.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0135.py diff --git a/githubkit/versions/v2022_11_28/types/group_0136.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0136.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0136.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0136.py diff --git a/githubkit/versions/v2022_11_28/types/group_0137.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0137.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0137.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0137.py diff --git a/githubkit/versions/v2022_11_28/types/group_0138.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0138.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0138.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0138.py diff --git a/githubkit/versions/v2022_11_28/types/group_0139.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0139.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0139.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0139.py diff --git a/githubkit/versions/v2022_11_28/types/group_0140.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0140.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0140.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0140.py diff --git a/githubkit/versions/v2022_11_28/types/group_0141.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0141.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0141.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0141.py diff --git a/githubkit/versions/v2022_11_28/types/group_0142.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0142.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0142.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0142.py diff --git a/githubkit/versions/v2022_11_28/types/group_0143.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0143.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0143.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0143.py diff --git a/githubkit/versions/v2022_11_28/types/group_0144.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0144.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0144.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0144.py diff --git a/githubkit/versions/v2022_11_28/types/group_0145.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0145.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0145.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0145.py diff --git a/githubkit/versions/v2022_11_28/types/group_0146.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0146.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0146.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0146.py diff --git a/githubkit/versions/v2022_11_28/types/group_0147.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0147.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0147.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0147.py diff --git a/githubkit/versions/v2022_11_28/types/group_0148.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0148.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0148.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0148.py diff --git a/githubkit/versions/v2022_11_28/types/group_0149.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0149.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0149.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0149.py diff --git a/githubkit/versions/v2022_11_28/types/group_0150.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0150.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0150.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0150.py diff --git a/githubkit/versions/v2022_11_28/types/group_0151.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0151.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0151.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0151.py diff --git a/githubkit/versions/v2022_11_28/types/group_0152.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0152.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0152.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0152.py diff --git a/githubkit/versions/v2022_11_28/types/group_0153.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0153.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0153.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0153.py diff --git a/githubkit/versions/v2022_11_28/types/group_0154.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0154.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0154.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0154.py diff --git a/githubkit/versions/v2022_11_28/types/group_0155.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0155.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0155.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0155.py diff --git a/githubkit/versions/v2022_11_28/types/group_0156.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0156.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0156.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0156.py diff --git a/githubkit/versions/v2022_11_28/types/group_0157.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0157.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0157.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0157.py diff --git a/githubkit/versions/v2022_11_28/types/group_0158.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0158.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0158.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0158.py diff --git a/githubkit/versions/v2022_11_28/types/group_0159.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0159.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0159.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0159.py diff --git a/githubkit/versions/v2022_11_28/types/group_0160.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0160.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0160.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0160.py diff --git a/githubkit/versions/v2022_11_28/types/group_0161.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0161.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0161.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0161.py diff --git a/githubkit/versions/v2022_11_28/types/group_0162.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0162.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0162.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0162.py diff --git a/githubkit/versions/v2022_11_28/types/group_0163.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0163.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0163.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0163.py diff --git a/githubkit/versions/v2022_11_28/types/group_0164.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0164.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0164.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0164.py diff --git a/githubkit/versions/v2022_11_28/types/group_0165.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0165.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0165.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0165.py diff --git a/githubkit/versions/v2022_11_28/types/group_0166.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0166.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0166.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0166.py diff --git a/githubkit/versions/v2022_11_28/types/group_0167.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0167.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0167.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0167.py diff --git a/githubkit/versions/v2022_11_28/types/group_0168.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0168.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0168.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0168.py diff --git a/githubkit/versions/v2022_11_28/types/group_0169.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0169.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0169.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0169.py diff --git a/githubkit/versions/v2022_11_28/types/group_0170.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0170.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0170.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0170.py diff --git a/githubkit/versions/v2022_11_28/types/group_0171.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0171.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0171.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0171.py diff --git a/githubkit/versions/v2022_11_28/types/group_0172.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0172.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0172.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0172.py diff --git a/githubkit/versions/v2022_11_28/types/group_0173.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0173.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0173.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0173.py diff --git a/githubkit/versions/v2022_11_28/types/group_0174.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0174.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0174.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0174.py diff --git a/githubkit/versions/v2022_11_28/types/group_0175.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0175.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0175.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0175.py diff --git a/githubkit/versions/v2022_11_28/types/group_0176.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0176.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0176.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0176.py diff --git a/githubkit/versions/v2022_11_28/types/group_0177.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0177.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0177.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0177.py diff --git a/githubkit/versions/v2022_11_28/types/group_0178.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0178.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0178.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0178.py diff --git a/githubkit/versions/v2022_11_28/types/group_0179.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0179.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0179.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0179.py diff --git a/githubkit/versions/v2022_11_28/types/group_0180.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0180.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0180.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0180.py diff --git a/githubkit/versions/v2022_11_28/types/group_0181.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0181.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0181.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0181.py diff --git a/githubkit/versions/v2022_11_28/types/group_0182.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0182.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0182.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0182.py diff --git a/githubkit/versions/v2022_11_28/types/group_0183.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0183.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0183.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0183.py diff --git a/githubkit/versions/v2022_11_28/types/group_0184.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0184.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0184.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0184.py diff --git a/githubkit/versions/v2022_11_28/types/group_0185.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0185.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0185.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0185.py diff --git a/githubkit/versions/v2022_11_28/types/group_0186.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0186.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0186.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0186.py diff --git a/githubkit/versions/v2022_11_28/types/group_0187.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0187.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0187.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0187.py diff --git a/githubkit/versions/v2022_11_28/types/group_0188.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0188.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0188.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0188.py diff --git a/githubkit/versions/v2022_11_28/types/group_0189.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0189.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0189.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0189.py diff --git a/githubkit/versions/v2022_11_28/types/group_0190.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0190.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0190.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0190.py diff --git a/githubkit/versions/v2022_11_28/types/group_0191.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0191.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0191.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0191.py diff --git a/githubkit/versions/v2022_11_28/types/group_0192.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0192.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0192.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0192.py diff --git a/githubkit/versions/v2022_11_28/types/group_0193.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0193.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0193.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0193.py diff --git a/githubkit/versions/v2022_11_28/types/group_0194.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0194.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0194.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0194.py diff --git a/githubkit/versions/v2022_11_28/types/group_0195.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0195.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0195.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0195.py diff --git a/githubkit/versions/v2022_11_28/types/group_0196.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0196.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0196.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0196.py diff --git a/githubkit/versions/v2022_11_28/types/group_0197.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0197.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0197.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0197.py diff --git a/githubkit/versions/v2022_11_28/types/group_0198.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0198.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0198.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0198.py diff --git a/githubkit/versions/v2022_11_28/types/group_0199.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0199.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0199.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0199.py diff --git a/githubkit/versions/v2022_11_28/types/group_0200.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0200.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0200.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0200.py diff --git a/githubkit/versions/v2022_11_28/types/group_0201.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0201.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0201.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0201.py diff --git a/githubkit/versions/v2022_11_28/types/group_0202.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0202.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0202.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0202.py diff --git a/githubkit/versions/v2022_11_28/types/group_0203.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0203.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0203.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0203.py diff --git a/githubkit/versions/v2022_11_28/types/group_0204.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0204.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0204.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0204.py diff --git a/githubkit/versions/v2022_11_28/types/group_0205.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0205.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0205.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0205.py diff --git a/githubkit/versions/v2022_11_28/types/group_0206.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0206.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0206.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0206.py diff --git a/githubkit/versions/v2022_11_28/types/group_0207.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0207.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0207.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0207.py diff --git a/githubkit/versions/v2022_11_28/types/group_0208.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0208.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0208.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0208.py diff --git a/githubkit/versions/v2022_11_28/types/group_0209.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0209.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0209.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0209.py diff --git a/githubkit/versions/v2022_11_28/types/group_0210.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0210.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0210.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0210.py diff --git a/githubkit/versions/v2022_11_28/types/group_0211.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0211.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0211.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0211.py diff --git a/githubkit/versions/v2022_11_28/types/group_0212.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0212.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0212.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0212.py diff --git a/githubkit/versions/v2022_11_28/types/group_0213.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0213.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0213.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0213.py diff --git a/githubkit/versions/v2022_11_28/types/group_0214.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0214.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0214.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0214.py diff --git a/githubkit/versions/v2022_11_28/types/group_0215.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0215.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0215.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0215.py diff --git a/githubkit/versions/v2022_11_28/types/group_0216.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0216.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0216.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0216.py diff --git a/githubkit/versions/v2022_11_28/types/group_0217.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0217.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0217.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0217.py diff --git a/githubkit/versions/v2022_11_28/types/group_0218.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0218.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0218.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0218.py diff --git a/githubkit/versions/v2022_11_28/types/group_0219.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0219.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0219.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0219.py diff --git a/githubkit/versions/v2022_11_28/types/group_0220.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0220.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0220.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0220.py diff --git a/githubkit/versions/v2022_11_28/types/group_0221.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0221.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0221.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0221.py diff --git a/githubkit/versions/v2022_11_28/types/group_0222.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0222.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0222.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0222.py diff --git a/githubkit/versions/v2022_11_28/types/group_0223.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0223.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0223.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0223.py diff --git a/githubkit/versions/v2022_11_28/types/group_0224.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0224.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0224.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0224.py diff --git a/githubkit/versions/v2022_11_28/types/group_0225.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0225.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0225.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0225.py diff --git a/githubkit/versions/v2022_11_28/types/group_0226.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0226.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0226.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0226.py diff --git a/githubkit/versions/v2022_11_28/types/group_0227.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0227.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0227.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0227.py diff --git a/githubkit/versions/v2022_11_28/types/group_0228.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0228.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0228.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0228.py diff --git a/githubkit/versions/v2022_11_28/types/group_0229.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0229.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0229.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0229.py diff --git a/githubkit/versions/v2022_11_28/types/group_0230.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0230.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0230.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0230.py diff --git a/githubkit/versions/v2022_11_28/types/group_0231.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0231.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0231.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0231.py diff --git a/githubkit/versions/v2022_11_28/types/group_0232.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0232.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0232.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0232.py diff --git a/githubkit/versions/v2022_11_28/types/group_0233.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0233.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0233.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0233.py diff --git a/githubkit/versions/v2022_11_28/types/group_0234.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0234.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0234.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0234.py diff --git a/githubkit/versions/v2022_11_28/types/group_0235.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0235.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0235.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0235.py diff --git a/githubkit/versions/v2022_11_28/types/group_0236.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0236.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0236.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0236.py diff --git a/githubkit/versions/v2022_11_28/types/group_0237.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0237.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0237.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0237.py diff --git a/githubkit/versions/v2022_11_28/types/group_0238.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0238.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0238.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0238.py diff --git a/githubkit/versions/v2022_11_28/types/group_0239.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0239.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0239.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0239.py diff --git a/githubkit/versions/v2022_11_28/types/group_0240.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0240.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0240.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0240.py diff --git a/githubkit/versions/v2022_11_28/types/group_0241.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0241.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0241.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0241.py diff --git a/githubkit/versions/v2022_11_28/types/group_0242.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0242.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0242.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0242.py diff --git a/githubkit/versions/v2022_11_28/types/group_0243.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0243.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0243.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0243.py diff --git a/githubkit/versions/v2022_11_28/types/group_0244.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0244.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0244.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0244.py diff --git a/githubkit/versions/v2022_11_28/types/group_0245.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0245.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0245.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0245.py diff --git a/githubkit/versions/v2022_11_28/types/group_0246.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0246.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0246.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0246.py diff --git a/githubkit/versions/v2022_11_28/types/group_0247.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0247.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0247.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0247.py diff --git a/githubkit/versions/v2022_11_28/types/group_0248.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0248.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0248.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0248.py diff --git a/githubkit/versions/v2022_11_28/types/group_0249.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0249.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0249.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0249.py diff --git a/githubkit/versions/v2022_11_28/types/group_0250.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0250.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0250.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0250.py diff --git a/githubkit/versions/v2022_11_28/types/group_0251.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0251.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0251.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0251.py diff --git a/githubkit/versions/v2022_11_28/types/group_0252.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0252.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0252.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0252.py diff --git a/githubkit/versions/v2022_11_28/types/group_0253.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0253.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0253.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0253.py diff --git a/githubkit/versions/v2022_11_28/types/group_0254.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0254.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0254.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0254.py diff --git a/githubkit/versions/v2022_11_28/types/group_0255.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0255.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0255.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0255.py diff --git a/githubkit/versions/v2022_11_28/types/group_0256.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0256.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0256.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0256.py diff --git a/githubkit/versions/v2022_11_28/types/group_0257.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0257.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0257.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0257.py diff --git a/githubkit/versions/v2022_11_28/types/group_0258.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0258.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0258.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0258.py diff --git a/githubkit/versions/v2022_11_28/types/group_0259.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0259.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0259.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0259.py diff --git a/githubkit/versions/v2022_11_28/types/group_0260.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0260.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0260.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0260.py diff --git a/githubkit/versions/v2022_11_28/types/group_0261.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0261.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0261.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0261.py diff --git a/githubkit/versions/v2022_11_28/types/group_0262.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0262.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0262.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0262.py diff --git a/githubkit/versions/v2022_11_28/types/group_0263.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0263.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0263.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0263.py diff --git a/githubkit/versions/v2022_11_28/types/group_0264.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0264.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0264.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0264.py diff --git a/githubkit/versions/v2022_11_28/types/group_0265.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0265.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0265.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0265.py diff --git a/githubkit/versions/v2022_11_28/types/group_0266.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0266.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0266.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0266.py diff --git a/githubkit/versions/v2022_11_28/types/group_0267.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0267.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0267.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0267.py diff --git a/githubkit/versions/v2022_11_28/types/group_0268.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0268.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0268.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0268.py diff --git a/githubkit/versions/v2022_11_28/types/group_0269.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0269.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0269.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0269.py diff --git a/githubkit/versions/v2022_11_28/types/group_0270.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0270.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0270.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0270.py diff --git a/githubkit/versions/v2022_11_28/types/group_0271.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0271.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0271.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0271.py diff --git a/githubkit/versions/v2022_11_28/types/group_0272.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0272.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0272.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0272.py diff --git a/githubkit/versions/v2022_11_28/types/group_0273.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0273.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0273.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0273.py diff --git a/githubkit/versions/v2022_11_28/types/group_0274.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0274.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0274.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0274.py diff --git a/githubkit/versions/v2022_11_28/types/group_0275.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0275.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0275.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0275.py diff --git a/githubkit/versions/v2022_11_28/types/group_0276.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0276.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0276.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0276.py diff --git a/githubkit/versions/v2022_11_28/types/group_0277.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0277.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0277.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0277.py diff --git a/githubkit/versions/v2022_11_28/types/group_0278.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0278.py similarity index 98% rename from githubkit/versions/v2022_11_28/types/group_0278.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0278.py index ec9b47bfff..58cb672999 100644 --- a/githubkit/versions/v2022_11_28/types/group_0278.py +++ b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0278.py @@ -40,7 +40,7 @@ class DeploymentType(TypedDict): repository_url: str transient_environment: NotRequired[bool] production_environment: NotRequired[bool] - performed_via_github_app: NotRequired[Union[None, IntegrationType, None]] + performed_via_github_app: NotRequired[Union[None, IntegrationType]] class DeploymentTypeForResponse(TypedDict): @@ -66,7 +66,7 @@ class DeploymentTypeForResponse(TypedDict): repository_url: str transient_environment: NotRequired[bool] production_environment: NotRequired[bool] - performed_via_github_app: NotRequired[Union[None, IntegrationTypeForResponse, None]] + performed_via_github_app: NotRequired[Union[None, IntegrationTypeForResponse]] DeploymentPropPayloadOneof0Type: TypeAlias = dict[str, Any] diff --git a/githubkit/versions/v2022_11_28/types/group_0279.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0279.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0279.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0279.py diff --git a/githubkit/versions/v2022_11_28/types/group_0280.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0280.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0280.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0280.py diff --git a/githubkit/versions/v2022_11_28/types/group_0281.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0281.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0281.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0281.py diff --git a/githubkit/versions/v2022_11_28/types/group_0282.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0282.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0282.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0282.py diff --git a/githubkit/versions/v2022_11_28/types/group_0283.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0283.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0283.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0283.py diff --git a/githubkit/versions/v2022_11_28/types/group_0284.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0284.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0284.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0284.py diff --git a/githubkit/versions/v2022_11_28/types/group_0285.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0285.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0285.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0285.py diff --git a/githubkit/versions/v2022_11_28/types/group_0286.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0286.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0286.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0286.py diff --git a/githubkit/versions/v2022_11_28/types/group_0287.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0287.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0287.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0287.py diff --git a/githubkit/versions/v2022_11_28/types/group_0288.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0288.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0288.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0288.py diff --git a/githubkit/versions/v2022_11_28/types/group_0289.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0289.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0289.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0289.py diff --git a/githubkit/versions/v2022_11_28/types/group_0290.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0290.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0290.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0290.py diff --git a/githubkit/versions/v2022_11_28/types/group_0291.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0291.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0291.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0291.py diff --git a/githubkit/versions/v2022_11_28/types/group_0292.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0292.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0292.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0292.py diff --git a/githubkit/versions/v2022_11_28/types/group_0293.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0293.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0293.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0293.py diff --git a/githubkit/versions/v2022_11_28/types/group_0294.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0294.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0294.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0294.py diff --git a/githubkit/versions/v2022_11_28/types/group_0295.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0295.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0295.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0295.py diff --git a/githubkit/versions/v2022_11_28/types/group_0296.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0296.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0296.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0296.py diff --git a/githubkit/versions/v2022_11_28/types/group_0297.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0297.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0297.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0297.py diff --git a/githubkit/versions/v2022_11_28/types/group_0298.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0298.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0298.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0298.py diff --git a/githubkit/versions/v2022_11_28/types/group_0299.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0299.py similarity index 97% rename from githubkit/versions/v2022_11_28/types/group_0299.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0299.py index 5aa09ed91d..67b2d3310c 100644 --- a/githubkit/versions/v2022_11_28/types/group_0299.py +++ b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0299.py @@ -36,7 +36,7 @@ class DeploymentSimpleType(TypedDict): repository_url: str transient_environment: NotRequired[bool] production_environment: NotRequired[bool] - performed_via_github_app: NotRequired[Union[None, IntegrationType, None]] + performed_via_github_app: NotRequired[Union[None, IntegrationType]] class DeploymentSimpleTypeForResponse(TypedDict): @@ -59,7 +59,7 @@ class DeploymentSimpleTypeForResponse(TypedDict): repository_url: str transient_environment: NotRequired[bool] production_environment: NotRequired[bool] - performed_via_github_app: NotRequired[Union[None, IntegrationTypeForResponse, None]] + performed_via_github_app: NotRequired[Union[None, IntegrationTypeForResponse]] __all__ = ( diff --git a/githubkit/versions/v2022_11_28/types/group_0300.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0300.py similarity index 97% rename from githubkit/versions/v2022_11_28/types/group_0300.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0300.py index da25ad6563..be883fb992 100644 --- a/githubkit/versions/v2022_11_28/types/group_0300.py +++ b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0300.py @@ -51,7 +51,7 @@ class CheckRunType(TypedDict): output: CheckRunPropOutputType name: str check_suite: Union[CheckRunPropCheckSuiteType, None] - app: Union[None, IntegrationType, None] + app: Union[None, IntegrationType] pull_requests: list[PullRequestMinimalType] deployment: NotRequired[DeploymentSimpleType] @@ -89,7 +89,7 @@ class CheckRunTypeForResponse(TypedDict): output: CheckRunPropOutputTypeForResponse name: str check_suite: Union[CheckRunPropCheckSuiteTypeForResponse, None] - app: Union[None, IntegrationTypeForResponse, None] + app: Union[None, IntegrationTypeForResponse] pull_requests: list[PullRequestMinimalTypeForResponse] deployment: NotRequired[DeploymentSimpleTypeForResponse] diff --git a/githubkit/versions/v2022_11_28/types/group_0301.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0301.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0301.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0301.py diff --git a/githubkit/versions/v2022_11_28/types/group_0302.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0302.py similarity index 97% rename from githubkit/versions/v2022_11_28/types/group_0302.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0302.py index f78c222e1c..549525ca86 100644 --- a/githubkit/versions/v2022_11_28/types/group_0302.py +++ b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0302.py @@ -53,7 +53,7 @@ class CheckSuiteType(TypedDict): before: Union[str, None] after: Union[str, None] pull_requests: Union[list[PullRequestMinimalType], None] - app: Union[None, IntegrationType, None] + app: Union[None, IntegrationType] repository: MinimalRepositoryType created_at: Union[_dt.datetime, None] updated_at: Union[_dt.datetime, None] @@ -98,7 +98,7 @@ class CheckSuiteTypeForResponse(TypedDict): before: Union[str, None] after: Union[str, None] pull_requests: Union[list[PullRequestMinimalTypeForResponse], None] - app: Union[None, IntegrationTypeForResponse, None] + app: Union[None, IntegrationTypeForResponse] repository: MinimalRepositoryTypeForResponse created_at: Union[str, None] updated_at: Union[str, None] diff --git a/githubkit/versions/v2022_11_28/types/group_0303.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0303.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0303.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0303.py diff --git a/githubkit/versions/v2022_11_28/types/group_0304.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0304.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0304.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0304.py diff --git a/githubkit/versions/v2022_11_28/types/group_0305.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0305.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0305.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0305.py diff --git a/githubkit/versions/v2022_11_28/types/group_0306.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0306.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0306.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0306.py diff --git a/githubkit/versions/v2022_11_28/types/group_0307.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0307.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0307.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0307.py diff --git a/githubkit/versions/v2022_11_28/types/group_0308.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0308.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0308.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0308.py diff --git a/githubkit/versions/v2022_11_28/types/group_0309.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0309.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0309.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0309.py diff --git a/githubkit/versions/v2022_11_28/types/group_0310.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0310.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0310.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0310.py diff --git a/githubkit/versions/v2022_11_28/types/group_0311.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0311.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0311.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0311.py diff --git a/githubkit/versions/v2022_11_28/types/group_0312.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0312.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0312.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0312.py diff --git a/githubkit/versions/v2022_11_28/types/group_0313.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0313.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0313.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0313.py diff --git a/githubkit/versions/v2022_11_28/types/group_0314.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0314.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0314.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0314.py diff --git a/githubkit/versions/v2022_11_28/types/group_0315.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0315.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0315.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0315.py diff --git a/githubkit/versions/v2022_11_28/types/group_0316.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0316.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0316.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0316.py diff --git a/githubkit/versions/v2022_11_28/types/group_0317.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0317.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0317.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0317.py diff --git a/githubkit/versions/v2022_11_28/types/group_0318.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0318.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0318.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0318.py diff --git a/githubkit/versions/v2022_11_28/types/group_0319.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0319.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0319.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0319.py diff --git a/githubkit/versions/v2022_11_28/types/group_0320.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0320.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0320.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0320.py diff --git a/githubkit/versions/v2022_11_28/types/group_0321.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0321.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0321.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0321.py diff --git a/githubkit/versions/v2022_11_28/types/group_0322.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0322.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0322.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0322.py diff --git a/githubkit/versions/v2022_11_28/types/group_0323.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0323.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0323.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0323.py diff --git a/githubkit/versions/v2022_11_28/types/group_0324.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0324.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0324.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0324.py diff --git a/githubkit/versions/v2022_11_28/types/group_0325.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0325.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0325.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0325.py diff --git a/githubkit/versions/v2022_11_28/types/group_0326.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0326.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0326.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0326.py diff --git a/githubkit/versions/v2022_11_28/types/group_0327.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0327.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0327.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0327.py diff --git a/githubkit/versions/v2022_11_28/types/group_0328.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0328.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0328.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0328.py diff --git a/githubkit/versions/v2022_11_28/types/group_0329.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0329.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0329.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0329.py diff --git a/githubkit/versions/v2022_11_28/types/group_0330.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0330.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0330.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0330.py diff --git a/githubkit/versions/v2022_11_28/types/group_0331.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0331.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0331.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0331.py diff --git a/githubkit/versions/v2022_11_28/types/group_0332.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0332.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0332.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0332.py diff --git a/githubkit/versions/v2022_11_28/types/group_0333.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0333.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0333.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0333.py diff --git a/githubkit/versions/v2022_11_28/types/group_0334.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0334.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0334.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0334.py diff --git a/githubkit/versions/v2022_11_28/types/group_0335.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0335.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0335.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0335.py diff --git a/githubkit/versions/v2022_11_28/types/group_0336.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0336.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0336.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0336.py diff --git a/githubkit/versions/v2022_11_28/types/group_0337.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0337.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0337.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0337.py diff --git a/githubkit/versions/v2022_11_28/types/group_0338.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0338.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0338.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0338.py diff --git a/githubkit/versions/v2022_11_28/types/group_0339.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0339.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0339.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0339.py diff --git a/githubkit/versions/v2022_11_28/types/group_0340.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0340.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0340.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0340.py diff --git a/githubkit/versions/v2022_11_28/types/group_0341.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0341.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0341.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0341.py diff --git a/githubkit/versions/v2022_11_28/types/group_0342.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0342.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0342.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0342.py diff --git a/githubkit/versions/v2022_11_28/types/group_0343.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0343.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0343.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0343.py diff --git a/githubkit/versions/v2022_11_28/types/group_0344.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0344.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0344.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0344.py diff --git a/githubkit/versions/v2022_11_28/types/group_0345.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0345.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0345.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0345.py diff --git a/githubkit/versions/v2022_11_28/types/group_0346.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0346.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0346.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0346.py diff --git a/githubkit/versions/v2022_11_28/types/group_0347.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0347.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0347.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0347.py diff --git a/githubkit/versions/v2022_11_28/types/group_0348.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0348.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0348.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0348.py diff --git a/githubkit/versions/v2022_11_28/types/group_0349.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0349.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0349.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0349.py diff --git a/githubkit/versions/v2022_11_28/types/group_0350.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0350.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0350.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0350.py diff --git a/githubkit/versions/v2022_11_28/types/group_0351.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0351.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0351.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0351.py diff --git a/githubkit/versions/v2022_11_28/types/group_0352.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0352.py similarity index 97% rename from githubkit/versions/v2022_11_28/types/group_0352.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0352.py index 61d78a0498..b659d7ac2a 100644 --- a/githubkit/versions/v2022_11_28/types/group_0352.py +++ b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0352.py @@ -39,7 +39,7 @@ class DeploymentStatusType(TypedDict): repository_url: str environment_url: NotRequired[str] log_url: NotRequired[str] - performed_via_github_app: NotRequired[Union[None, IntegrationType, None]] + performed_via_github_app: NotRequired[Union[None, IntegrationType]] class DeploymentStatusTypeForResponse(TypedDict): @@ -64,7 +64,7 @@ class DeploymentStatusTypeForResponse(TypedDict): repository_url: str environment_url: NotRequired[str] log_url: NotRequired[str] - performed_via_github_app: NotRequired[Union[None, IntegrationTypeForResponse, None]] + performed_via_github_app: NotRequired[Union[None, IntegrationTypeForResponse]] __all__ = ( diff --git a/githubkit/versions/v2022_11_28/types/group_0353.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0353.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0353.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0353.py diff --git a/githubkit/versions/v2022_11_28/types/group_0354.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0354.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0354.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0354.py diff --git a/githubkit/versions/v2022_11_28/types/group_0355.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0355.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0355.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0355.py diff --git a/githubkit/versions/v2022_11_28/types/group_0356.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0356.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0356.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0356.py diff --git a/githubkit/versions/v2022_11_28/types/group_0357.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0357.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0357.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0357.py diff --git a/githubkit/versions/v2022_11_28/types/group_0358.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0358.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0358.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0358.py diff --git a/githubkit/versions/v2022_11_28/types/group_0359.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0359.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0359.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0359.py diff --git a/githubkit/versions/v2022_11_28/types/group_0360.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0360.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0360.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0360.py diff --git a/githubkit/versions/v2022_11_28/types/group_0361.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0361.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0361.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0361.py diff --git a/githubkit/versions/v2022_11_28/types/group_0362.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0362.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0362.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0362.py diff --git a/githubkit/versions/v2022_11_28/types/group_0363.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0363.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0363.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0363.py diff --git a/githubkit/versions/v2022_11_28/types/group_0364.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0364.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0364.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0364.py diff --git a/githubkit/versions/v2022_11_28/types/group_0365.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0365.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0365.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0365.py diff --git a/githubkit/versions/v2022_11_28/types/group_0366.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0366.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0366.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0366.py diff --git a/githubkit/versions/v2022_11_28/types/group_0367.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0367.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0367.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0367.py diff --git a/githubkit/versions/v2022_11_28/types/group_0368.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0368.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0368.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0368.py diff --git a/githubkit/versions/v2022_11_28/types/group_0369.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0369.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0369.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0369.py diff --git a/githubkit/versions/v2022_11_28/types/group_0370.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0370.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0370.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0370.py diff --git a/githubkit/versions/v2022_11_28/types/group_0371.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0371.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0371.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0371.py diff --git a/githubkit/versions/v2022_11_28/types/group_0372.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0372.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0372.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0372.py diff --git a/githubkit/versions/v2022_11_28/types/group_0373.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0373.py similarity index 99% rename from githubkit/versions/v2022_11_28/types/group_0373.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0373.py index ec3db06125..daf9f06fcd 100644 --- a/githubkit/versions/v2022_11_28/types/group_0373.py +++ b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0373.py @@ -57,7 +57,7 @@ class IssueEventType(TypedDict): ] ] lock_reason: NotRequired[Union[str, None]] - performed_via_github_app: NotRequired[Union[None, IntegrationType, None]] + performed_via_github_app: NotRequired[Union[None, IntegrationType]] class IssueEventTypeForResponse(TypedDict): @@ -98,7 +98,7 @@ class IssueEventTypeForResponse(TypedDict): ] ] lock_reason: NotRequired[Union[str, None]] - performed_via_github_app: NotRequired[Union[None, IntegrationTypeForResponse, None]] + performed_via_github_app: NotRequired[Union[None, IntegrationTypeForResponse]] class IssueEventLabelType(TypedDict): diff --git a/githubkit/versions/v2022_11_28/types/group_0374.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0374.py similarity index 95% rename from githubkit/versions/v2022_11_28/types/group_0374.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0374.py index 5b9522f972..890c6fd308 100644 --- a/githubkit/versions/v2022_11_28/types/group_0374.py +++ b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0374.py @@ -30,7 +30,7 @@ class LabeledIssueEventType(TypedDict): commit_id: Union[str, None] commit_url: Union[str, None] created_at: str - performed_via_github_app: Union[None, IntegrationType, None] + performed_via_github_app: Union[None, IntegrationType] label: LabeledIssueEventPropLabelType @@ -48,7 +48,7 @@ class LabeledIssueEventTypeForResponse(TypedDict): commit_id: Union[str, None] commit_url: Union[str, None] created_at: str - performed_via_github_app: Union[None, IntegrationTypeForResponse, None] + performed_via_github_app: Union[None, IntegrationTypeForResponse] label: LabeledIssueEventPropLabelTypeForResponse diff --git a/githubkit/versions/v2022_11_28/types/group_0375.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0375.py similarity index 95% rename from githubkit/versions/v2022_11_28/types/group_0375.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0375.py index 607ed755a0..f5b8170bef 100644 --- a/githubkit/versions/v2022_11_28/types/group_0375.py +++ b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0375.py @@ -30,7 +30,7 @@ class UnlabeledIssueEventType(TypedDict): commit_id: Union[str, None] commit_url: Union[str, None] created_at: str - performed_via_github_app: Union[None, IntegrationType, None] + performed_via_github_app: Union[None, IntegrationType] label: UnlabeledIssueEventPropLabelType @@ -48,7 +48,7 @@ class UnlabeledIssueEventTypeForResponse(TypedDict): commit_id: Union[str, None] commit_url: Union[str, None] created_at: str - performed_via_github_app: Union[None, IntegrationTypeForResponse, None] + performed_via_github_app: Union[None, IntegrationTypeForResponse] label: UnlabeledIssueEventPropLabelTypeForResponse diff --git a/githubkit/versions/v2022_11_28/types/group_0376.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0376.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0376.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0376.py diff --git a/githubkit/versions/v2022_11_28/types/group_0377.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0377.py similarity index 94% rename from githubkit/versions/v2022_11_28/types/group_0377.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0377.py index 9f3572b6aa..4a42df9599 100644 --- a/githubkit/versions/v2022_11_28/types/group_0377.py +++ b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0377.py @@ -30,7 +30,7 @@ class UnassignedIssueEventType(TypedDict): commit_id: Union[str, None] commit_url: Union[str, None] created_at: str - performed_via_github_app: Union[None, IntegrationType, None] + performed_via_github_app: Union[None, IntegrationType] assignee: SimpleUserType assigner: SimpleUserType @@ -49,7 +49,7 @@ class UnassignedIssueEventTypeForResponse(TypedDict): commit_id: Union[str, None] commit_url: Union[str, None] created_at: str - performed_via_github_app: Union[None, IntegrationTypeForResponse, None] + performed_via_github_app: Union[None, IntegrationTypeForResponse] assignee: SimpleUserTypeForResponse assigner: SimpleUserTypeForResponse diff --git a/githubkit/versions/v2022_11_28/types/group_0378.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0378.py similarity index 95% rename from githubkit/versions/v2022_11_28/types/group_0378.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0378.py index 1a28663c59..1724338327 100644 --- a/githubkit/versions/v2022_11_28/types/group_0378.py +++ b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0378.py @@ -30,7 +30,7 @@ class MilestonedIssueEventType(TypedDict): commit_id: Union[str, None] commit_url: Union[str, None] created_at: str - performed_via_github_app: Union[None, IntegrationType, None] + performed_via_github_app: Union[None, IntegrationType] milestone: MilestonedIssueEventPropMilestoneType @@ -48,7 +48,7 @@ class MilestonedIssueEventTypeForResponse(TypedDict): commit_id: Union[str, None] commit_url: Union[str, None] created_at: str - performed_via_github_app: Union[None, IntegrationTypeForResponse, None] + performed_via_github_app: Union[None, IntegrationTypeForResponse] milestone: MilestonedIssueEventPropMilestoneTypeForResponse diff --git a/githubkit/versions/v2022_11_28/types/group_0379.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0379.py similarity index 95% rename from githubkit/versions/v2022_11_28/types/group_0379.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0379.py index 60ccecc3f7..b44670af28 100644 --- a/githubkit/versions/v2022_11_28/types/group_0379.py +++ b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0379.py @@ -30,7 +30,7 @@ class DemilestonedIssueEventType(TypedDict): commit_id: Union[str, None] commit_url: Union[str, None] created_at: str - performed_via_github_app: Union[None, IntegrationType, None] + performed_via_github_app: Union[None, IntegrationType] milestone: DemilestonedIssueEventPropMilestoneType @@ -48,7 +48,7 @@ class DemilestonedIssueEventTypeForResponse(TypedDict): commit_id: Union[str, None] commit_url: Union[str, None] created_at: str - performed_via_github_app: Union[None, IntegrationTypeForResponse, None] + performed_via_github_app: Union[None, IntegrationTypeForResponse] milestone: DemilestonedIssueEventPropMilestoneTypeForResponse diff --git a/githubkit/versions/v2022_11_28/types/group_0380.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0380.py similarity index 95% rename from githubkit/versions/v2022_11_28/types/group_0380.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0380.py index 94b63e682f..c39a91c014 100644 --- a/githubkit/versions/v2022_11_28/types/group_0380.py +++ b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0380.py @@ -30,7 +30,7 @@ class RenamedIssueEventType(TypedDict): commit_id: Union[str, None] commit_url: Union[str, None] created_at: str - performed_via_github_app: Union[None, IntegrationType, None] + performed_via_github_app: Union[None, IntegrationType] rename: RenamedIssueEventPropRenameType @@ -48,7 +48,7 @@ class RenamedIssueEventTypeForResponse(TypedDict): commit_id: Union[str, None] commit_url: Union[str, None] created_at: str - performed_via_github_app: Union[None, IntegrationTypeForResponse, None] + performed_via_github_app: Union[None, IntegrationTypeForResponse] rename: RenamedIssueEventPropRenameTypeForResponse diff --git a/githubkit/versions/v2022_11_28/types/group_0381.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0381.py similarity index 95% rename from githubkit/versions/v2022_11_28/types/group_0381.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0381.py index 082f042234..7bdd02752c 100644 --- a/githubkit/versions/v2022_11_28/types/group_0381.py +++ b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0381.py @@ -31,7 +31,7 @@ class ReviewRequestedIssueEventType(TypedDict): commit_id: Union[str, None] commit_url: Union[str, None] created_at: str - performed_via_github_app: Union[None, IntegrationType, None] + performed_via_github_app: Union[None, IntegrationType] review_requester: SimpleUserType requested_team: NotRequired[TeamType] requested_reviewer: NotRequired[SimpleUserType] @@ -51,7 +51,7 @@ class ReviewRequestedIssueEventTypeForResponse(TypedDict): commit_id: Union[str, None] commit_url: Union[str, None] created_at: str - performed_via_github_app: Union[None, IntegrationTypeForResponse, None] + performed_via_github_app: Union[None, IntegrationTypeForResponse] review_requester: SimpleUserTypeForResponse requested_team: NotRequired[TeamTypeForResponse] requested_reviewer: NotRequired[SimpleUserTypeForResponse] diff --git a/githubkit/versions/v2022_11_28/types/group_0382.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0382.py similarity index 95% rename from githubkit/versions/v2022_11_28/types/group_0382.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0382.py index 4e3dc4c0ec..bdcfe6b7ae 100644 --- a/githubkit/versions/v2022_11_28/types/group_0382.py +++ b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0382.py @@ -31,7 +31,7 @@ class ReviewRequestRemovedIssueEventType(TypedDict): commit_id: Union[str, None] commit_url: Union[str, None] created_at: str - performed_via_github_app: Union[None, IntegrationType, None] + performed_via_github_app: Union[None, IntegrationType] review_requester: SimpleUserType requested_team: NotRequired[TeamType] requested_reviewer: NotRequired[SimpleUserType] @@ -51,7 +51,7 @@ class ReviewRequestRemovedIssueEventTypeForResponse(TypedDict): commit_id: Union[str, None] commit_url: Union[str, None] created_at: str - performed_via_github_app: Union[None, IntegrationTypeForResponse, None] + performed_via_github_app: Union[None, IntegrationTypeForResponse] review_requester: SimpleUserTypeForResponse requested_team: NotRequired[TeamTypeForResponse] requested_reviewer: NotRequired[SimpleUserTypeForResponse] diff --git a/githubkit/versions/v2022_11_28/types/group_0383.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0383.py similarity index 96% rename from githubkit/versions/v2022_11_28/types/group_0383.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0383.py index 60e83087f6..ca32726c75 100644 --- a/githubkit/versions/v2022_11_28/types/group_0383.py +++ b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0383.py @@ -30,7 +30,7 @@ class ReviewDismissedIssueEventType(TypedDict): commit_id: Union[str, None] commit_url: Union[str, None] created_at: str - performed_via_github_app: Union[None, IntegrationType, None] + performed_via_github_app: Union[None, IntegrationType] dismissed_review: ReviewDismissedIssueEventPropDismissedReviewType @@ -48,7 +48,7 @@ class ReviewDismissedIssueEventTypeForResponse(TypedDict): commit_id: Union[str, None] commit_url: Union[str, None] created_at: str - performed_via_github_app: Union[None, IntegrationTypeForResponse, None] + performed_via_github_app: Union[None, IntegrationTypeForResponse] dismissed_review: ReviewDismissedIssueEventPropDismissedReviewTypeForResponse diff --git a/githubkit/versions/v2022_11_28/types/group_0384.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0384.py similarity index 94% rename from githubkit/versions/v2022_11_28/types/group_0384.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0384.py index b64f7e5588..b4190fbe44 100644 --- a/githubkit/versions/v2022_11_28/types/group_0384.py +++ b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0384.py @@ -30,7 +30,7 @@ class LockedIssueEventType(TypedDict): commit_id: Union[str, None] commit_url: Union[str, None] created_at: str - performed_via_github_app: Union[None, IntegrationType, None] + performed_via_github_app: Union[None, IntegrationType] lock_reason: Union[str, None] @@ -48,7 +48,7 @@ class LockedIssueEventTypeForResponse(TypedDict): commit_id: Union[str, None] commit_url: Union[str, None] created_at: str - performed_via_github_app: Union[None, IntegrationTypeForResponse, None] + performed_via_github_app: Union[None, IntegrationTypeForResponse] lock_reason: Union[str, None] diff --git a/githubkit/versions/v2022_11_28/types/group_0385.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0385.py similarity index 96% rename from githubkit/versions/v2022_11_28/types/group_0385.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0385.py index 1a7ae01706..5b4b16803e 100644 --- a/githubkit/versions/v2022_11_28/types/group_0385.py +++ b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0385.py @@ -30,7 +30,7 @@ class AddedToProjectIssueEventType(TypedDict): commit_id: Union[str, None] commit_url: Union[str, None] created_at: str - performed_via_github_app: Union[None, IntegrationType, None] + performed_via_github_app: Union[None, IntegrationType] project_card: NotRequired[AddedToProjectIssueEventPropProjectCardType] @@ -48,7 +48,7 @@ class AddedToProjectIssueEventTypeForResponse(TypedDict): commit_id: Union[str, None] commit_url: Union[str, None] created_at: str - performed_via_github_app: Union[None, IntegrationTypeForResponse, None] + performed_via_github_app: Union[None, IntegrationTypeForResponse] project_card: NotRequired[AddedToProjectIssueEventPropProjectCardTypeForResponse] diff --git a/githubkit/versions/v2022_11_28/types/group_0386.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0386.py similarity index 96% rename from githubkit/versions/v2022_11_28/types/group_0386.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0386.py index 1e0cd3854f..89fc05a616 100644 --- a/githubkit/versions/v2022_11_28/types/group_0386.py +++ b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0386.py @@ -30,7 +30,7 @@ class MovedColumnInProjectIssueEventType(TypedDict): commit_id: Union[str, None] commit_url: Union[str, None] created_at: str - performed_via_github_app: Union[None, IntegrationType, None] + performed_via_github_app: Union[None, IntegrationType] project_card: NotRequired[MovedColumnInProjectIssueEventPropProjectCardType] @@ -48,7 +48,7 @@ class MovedColumnInProjectIssueEventTypeForResponse(TypedDict): commit_id: Union[str, None] commit_url: Union[str, None] created_at: str - performed_via_github_app: Union[None, IntegrationTypeForResponse, None] + performed_via_github_app: Union[None, IntegrationTypeForResponse] project_card: NotRequired[ MovedColumnInProjectIssueEventPropProjectCardTypeForResponse ] diff --git a/githubkit/versions/v2022_11_28/types/group_0387.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0387.py similarity index 96% rename from githubkit/versions/v2022_11_28/types/group_0387.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0387.py index d713e771b0..d8507cc4c6 100644 --- a/githubkit/versions/v2022_11_28/types/group_0387.py +++ b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0387.py @@ -30,7 +30,7 @@ class RemovedFromProjectIssueEventType(TypedDict): commit_id: Union[str, None] commit_url: Union[str, None] created_at: str - performed_via_github_app: Union[None, IntegrationType, None] + performed_via_github_app: Union[None, IntegrationType] project_card: NotRequired[RemovedFromProjectIssueEventPropProjectCardType] @@ -48,7 +48,7 @@ class RemovedFromProjectIssueEventTypeForResponse(TypedDict): commit_id: Union[str, None] commit_url: Union[str, None] created_at: str - performed_via_github_app: Union[None, IntegrationTypeForResponse, None] + performed_via_github_app: Union[None, IntegrationTypeForResponse] project_card: NotRequired[ RemovedFromProjectIssueEventPropProjectCardTypeForResponse ] diff --git a/githubkit/versions/v2022_11_28/types/group_0388.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0388.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0388.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0388.py diff --git a/githubkit/versions/v2022_11_28/types/group_0389.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0389.py similarity index 98% rename from githubkit/versions/v2022_11_28/types/group_0389.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0389.py index 5951492e9d..f3429d3ea2 100644 --- a/githubkit/versions/v2022_11_28/types/group_0389.py +++ b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0389.py @@ -48,7 +48,7 @@ class TimelineCommentEventType(TypedDict): "NONE", "OWNER", ] - performed_via_github_app: NotRequired[Union[None, IntegrationType, None]] + performed_via_github_app: NotRequired[Union[None, IntegrationType]] reactions: NotRequired[ReactionRollupType] pin: NotRequired[Union[None, PinnedIssueCommentType]] @@ -82,7 +82,7 @@ class TimelineCommentEventTypeForResponse(TypedDict): "NONE", "OWNER", ] - performed_via_github_app: NotRequired[Union[None, IntegrationTypeForResponse, None]] + performed_via_github_app: NotRequired[Union[None, IntegrationTypeForResponse]] reactions: NotRequired[ReactionRollupTypeForResponse] pin: NotRequired[Union[None, PinnedIssueCommentTypeForResponse]] diff --git a/githubkit/versions/v2022_11_28/types/group_0390.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0390.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0390.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0390.py diff --git a/githubkit/versions/v2022_11_28/types/group_0391.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0391.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0391.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0391.py diff --git a/githubkit/versions/v2022_11_28/types/group_0392.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0392.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0392.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0392.py diff --git a/githubkit/versions/v2022_11_28/types/group_0393.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0393.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0393.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0393.py diff --git a/githubkit/versions/v2022_11_28/types/group_0394.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0394.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0394.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0394.py diff --git a/githubkit/versions/v2022_11_28/types/group_0395.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0395.py similarity index 94% rename from githubkit/versions/v2022_11_28/types/group_0395.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0395.py index cdf3fbdf4f..effa45ad0a 100644 --- a/githubkit/versions/v2022_11_28/types/group_0395.py +++ b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0395.py @@ -30,7 +30,7 @@ class TimelineAssignedIssueEventType(TypedDict): commit_id: Union[str, None] commit_url: Union[str, None] created_at: str - performed_via_github_app: Union[None, IntegrationType, None] + performed_via_github_app: Union[None, IntegrationType] assignee: SimpleUserType @@ -48,7 +48,7 @@ class TimelineAssignedIssueEventTypeForResponse(TypedDict): commit_id: Union[str, None] commit_url: Union[str, None] created_at: str - performed_via_github_app: Union[None, IntegrationTypeForResponse, None] + performed_via_github_app: Union[None, IntegrationTypeForResponse] assignee: SimpleUserTypeForResponse diff --git a/githubkit/versions/v2022_11_28/types/group_0396.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0396.py similarity index 94% rename from githubkit/versions/v2022_11_28/types/group_0396.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0396.py index d35d38d156..c807facca3 100644 --- a/githubkit/versions/v2022_11_28/types/group_0396.py +++ b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0396.py @@ -30,7 +30,7 @@ class TimelineUnassignedIssueEventType(TypedDict): commit_id: Union[str, None] commit_url: Union[str, None] created_at: str - performed_via_github_app: Union[None, IntegrationType, None] + performed_via_github_app: Union[None, IntegrationType] assignee: SimpleUserType @@ -48,7 +48,7 @@ class TimelineUnassignedIssueEventTypeForResponse(TypedDict): commit_id: Union[str, None] commit_url: Union[str, None] created_at: str - performed_via_github_app: Union[None, IntegrationTypeForResponse, None] + performed_via_github_app: Union[None, IntegrationTypeForResponse] assignee: SimpleUserTypeForResponse diff --git a/githubkit/versions/v2022_11_28/types/group_0397.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0397.py similarity index 94% rename from githubkit/versions/v2022_11_28/types/group_0397.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0397.py index 8cd6db3e2f..6acc686d25 100644 --- a/githubkit/versions/v2022_11_28/types/group_0397.py +++ b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0397.py @@ -30,7 +30,7 @@ class StateChangeIssueEventType(TypedDict): commit_id: Union[str, None] commit_url: Union[str, None] created_at: str - performed_via_github_app: Union[None, IntegrationType, None] + performed_via_github_app: Union[None, IntegrationType] state_reason: NotRequired[Union[str, None]] @@ -48,7 +48,7 @@ class StateChangeIssueEventTypeForResponse(TypedDict): commit_id: Union[str, None] commit_url: Union[str, None] created_at: str - performed_via_github_app: Union[None, IntegrationTypeForResponse, None] + performed_via_github_app: Union[None, IntegrationTypeForResponse] state_reason: NotRequired[Union[str, None]] diff --git a/githubkit/versions/v2022_11_28/types/group_0398.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0398.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0398.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0398.py diff --git a/githubkit/versions/v2022_11_28/types/group_0399.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0399.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0399.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0399.py diff --git a/githubkit/versions/v2022_11_28/types/group_0400.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0400.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0400.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0400.py diff --git a/githubkit/versions/v2022_11_28/types/group_0401.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0401.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0401.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0401.py diff --git a/githubkit/versions/v2022_11_28/types/group_0402.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0402.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0402.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0402.py diff --git a/githubkit/versions/v2022_11_28/types/group_0403.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0403.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0403.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0403.py diff --git a/githubkit/versions/v2022_11_28/types/group_0404.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0404.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0404.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0404.py diff --git a/githubkit/versions/v2022_11_28/types/group_0405.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0405.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0405.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0405.py diff --git a/githubkit/versions/v2022_11_28/types/group_0406.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0406.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0406.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0406.py diff --git a/githubkit/versions/v2022_11_28/types/group_0407.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0407.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0407.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0407.py diff --git a/githubkit/versions/v2022_11_28/types/group_0408.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0408.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0408.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0408.py diff --git a/githubkit/versions/v2022_11_28/types/group_0409.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0409.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0409.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0409.py diff --git a/githubkit/versions/v2022_11_28/types/group_0410.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0410.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0410.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0410.py diff --git a/githubkit/versions/v2022_11_28/types/group_0411.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0411.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0411.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0411.py diff --git a/githubkit/versions/v2022_11_28/types/group_0412.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0412.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0412.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0412.py diff --git a/githubkit/versions/v2022_11_28/types/group_0413.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0413.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0413.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0413.py diff --git a/githubkit/versions/v2022_11_28/types/group_0414.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0414.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0414.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0414.py diff --git a/githubkit/versions/v2022_11_28/types/group_0415.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0415.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0415.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0415.py diff --git a/githubkit/versions/v2022_11_28/types/group_0416.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0416.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0416.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0416.py diff --git a/githubkit/versions/v2022_11_28/types/group_0417.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0417.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0417.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0417.py diff --git a/githubkit/versions/v2022_11_28/types/group_0418.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0418.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0418.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0418.py diff --git a/githubkit/versions/v2022_11_28/types/group_0419.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0419.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0419.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0419.py diff --git a/githubkit/versions/v2022_11_28/types/group_0420.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0420.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0420.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0420.py diff --git a/githubkit/versions/v2022_11_28/types/group_0421.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0421.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0421.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0421.py diff --git a/githubkit/versions/v2022_11_28/types/group_0422.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0422.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0422.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0422.py diff --git a/githubkit/versions/v2022_11_28/types/group_0423.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0423.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0423.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0423.py diff --git a/githubkit/versions/v2022_11_28/types/group_0424.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0424.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0424.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0424.py diff --git a/githubkit/versions/v2022_11_28/types/group_0425.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0425.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0425.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0425.py diff --git a/githubkit/versions/v2022_11_28/types/group_0426.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0426.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0426.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0426.py diff --git a/githubkit/versions/v2022_11_28/types/group_0427.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0427.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0427.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0427.py diff --git a/githubkit/versions/v2022_11_28/types/group_0428.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0428.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0428.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0428.py diff --git a/githubkit/versions/v2022_11_28/types/group_0429.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0429.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0429.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0429.py diff --git a/githubkit/versions/v2022_11_28/types/group_0430.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0430.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0430.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0430.py diff --git a/githubkit/versions/v2022_11_28/types/group_0431.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0431.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0431.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0431.py diff --git a/githubkit/versions/v2022_11_28/types/group_0432.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0432.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0432.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0432.py diff --git a/githubkit/versions/v2022_11_28/types/group_0433.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0433.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0433.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0433.py diff --git a/githubkit/versions/v2022_11_28/types/group_0434.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0434.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0434.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0434.py diff --git a/githubkit/versions/v2022_11_28/types/group_0435.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0435.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0435.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0435.py diff --git a/githubkit/versions/v2022_11_28/types/group_0436.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0436.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0436.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0436.py diff --git a/githubkit/versions/v2022_11_28/types/group_0437.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0437.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0437.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0437.py diff --git a/githubkit/versions/v2022_11_28/types/group_0438.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0438.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0438.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0438.py diff --git a/githubkit/versions/v2022_11_28/types/group_0439.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0439.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0439.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0439.py diff --git a/githubkit/versions/v2022_11_28/types/group_0440.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0440.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0440.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0440.py diff --git a/githubkit/versions/v2022_11_28/types/group_0441.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0441.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0441.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0441.py diff --git a/githubkit/versions/v2022_11_28/types/group_0442.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0442.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0442.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0442.py diff --git a/githubkit/versions/v2022_11_28/types/group_0443.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0443.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0443.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0443.py diff --git a/githubkit/versions/v2022_11_28/types/group_0444.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0444.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0444.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0444.py diff --git a/githubkit/versions/v2022_11_28/types/group_0445.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0445.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0445.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0445.py diff --git a/githubkit/versions/v2022_11_28/types/group_0446.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0446.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0446.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0446.py diff --git a/githubkit/versions/v2022_11_28/types/group_0447.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0447.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0447.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0447.py diff --git a/githubkit/versions/v2022_11_28/types/group_0448.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0448.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0448.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0448.py diff --git a/githubkit/versions/v2022_11_28/types/group_0449.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0449.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0449.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0449.py diff --git a/githubkit/versions/v2022_11_28/types/group_0450.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0450.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0450.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0450.py diff --git a/githubkit/versions/v2022_11_28/types/group_0451.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0451.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0451.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0451.py diff --git a/githubkit/versions/v2022_11_28/types/group_0452.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0452.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0452.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0452.py diff --git a/githubkit/versions/v2022_11_28/types/group_0453.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0453.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0453.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0453.py diff --git a/githubkit/versions/v2022_11_28/types/group_0454.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0454.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0454.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0454.py diff --git a/githubkit/versions/v2022_11_28/types/group_0455.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0455.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0455.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0455.py diff --git a/githubkit/versions/v2022_11_28/types/group_0456.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0456.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0456.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0456.py diff --git a/githubkit/versions/v2022_11_28/types/group_0457.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0457.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0457.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0457.py diff --git a/githubkit/versions/v2022_11_28/types/group_0458.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0458.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0458.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0458.py diff --git a/githubkit/versions/v2022_11_28/types/group_0459.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0459.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0459.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0459.py diff --git a/githubkit/versions/v2022_11_28/types/group_0460.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0460.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0460.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0460.py diff --git a/githubkit/versions/v2022_11_28/types/group_0461.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0461.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0461.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0461.py diff --git a/githubkit/versions/v2022_11_28/types/group_0462.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0462.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0462.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0462.py diff --git a/githubkit/versions/v2022_11_28/types/group_0463.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0463.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0463.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0463.py diff --git a/githubkit/versions/v2022_11_28/types/group_0464.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0464.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0464.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0464.py diff --git a/githubkit/versions/v2022_11_28/types/group_0465.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0465.py similarity index 99% rename from githubkit/versions/v2022_11_28/types/group_0465.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0465.py index a69e84096e..f200f1de58 100644 --- a/githubkit/versions/v2022_11_28/types/group_0465.py +++ b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0465.py @@ -85,7 +85,7 @@ class IssueSearchResultItemType(TypedDict): body_text: NotRequired[str] timeline_url: NotRequired[str] type: NotRequired[Union[IssueTypeType, None]] - performed_via_github_app: NotRequired[Union[None, IntegrationType, None]] + performed_via_github_app: NotRequired[Union[None, IntegrationType]] pinned_comment: NotRequired[Union[None, IssueCommentType]] reactions: NotRequired[ReactionRollupType] @@ -142,7 +142,7 @@ class IssueSearchResultItemTypeForResponse(TypedDict): body_text: NotRequired[str] timeline_url: NotRequired[str] type: NotRequired[Union[IssueTypeTypeForResponse, None]] - performed_via_github_app: NotRequired[Union[None, IntegrationTypeForResponse, None]] + performed_via_github_app: NotRequired[Union[None, IntegrationTypeForResponse]] pinned_comment: NotRequired[Union[None, IssueCommentTypeForResponse]] reactions: NotRequired[ReactionRollupTypeForResponse] diff --git a/githubkit/versions/v2022_11_28/types/group_0466.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0466.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0466.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0466.py diff --git a/githubkit/versions/v2022_11_28/types/group_0467.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0467.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0467.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0467.py diff --git a/githubkit/versions/v2022_11_28/types/group_0468.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0468.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0468.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0468.py diff --git a/githubkit/versions/v2022_11_28/types/group_0469.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0469.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0469.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0469.py diff --git a/githubkit/versions/v2022_11_28/types/group_0470.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0470.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0470.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0470.py diff --git a/githubkit/versions/v2022_11_28/types/group_0471.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0471.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0471.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0471.py diff --git a/githubkit/versions/v2022_11_28/types/group_0472.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0472.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0472.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0472.py diff --git a/githubkit/versions/v2022_11_28/types/group_0473.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0473.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0473.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0473.py diff --git a/githubkit/versions/v2022_11_28/types/group_0474.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0474.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0474.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0474.py diff --git a/githubkit/versions/v2022_11_28/types/group_0475.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0475.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0475.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0475.py diff --git a/githubkit/versions/v2022_11_28/types/group_0476.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0476.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0476.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0476.py diff --git a/githubkit/versions/v2022_11_28/types/group_0477.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0477.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0477.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0477.py diff --git a/githubkit/versions/v2022_11_28/types/group_0478.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0478.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0478.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0478.py diff --git a/githubkit/versions/v2022_11_28/types/group_0479.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0479.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0479.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0479.py diff --git a/githubkit/versions/v2022_11_28/types/group_0480.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0480.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0480.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0480.py diff --git a/githubkit/versions/v2022_11_28/types/group_0481.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0481.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0481.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0481.py diff --git a/githubkit/versions/v2022_11_28/types/group_0482.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0482.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0482.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0482.py diff --git a/githubkit/versions/v2022_11_28/types/group_0483.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0483.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0483.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0483.py diff --git a/githubkit/versions/v2022_11_28/types/group_0484.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0484.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0484.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0484.py diff --git a/githubkit/versions/v2022_11_28/types/group_0485.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0485.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0485.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0485.py diff --git a/githubkit/versions/v2022_11_28/types/group_0486.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0486.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0486.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0486.py diff --git a/githubkit/versions/v2022_11_28/types/group_0487.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0487.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0487.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0487.py diff --git a/githubkit/versions/v2022_11_28/types/group_0488.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0488.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0488.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0488.py diff --git a/githubkit/versions/v2022_11_28/types/group_0489.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0489.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0489.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0489.py diff --git a/githubkit/versions/v2022_11_28/types/group_0490.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0490.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0490.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0490.py diff --git a/githubkit/versions/v2022_11_28/types/group_0491.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0491.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0491.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0491.py diff --git a/githubkit/versions/v2022_11_28/types/group_0492.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0492.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0492.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0492.py diff --git a/githubkit/versions/v2022_11_28/types/group_0493.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0493.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0493.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0493.py diff --git a/githubkit/versions/v2022_11_28/types/group_0494.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0494.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0494.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0494.py diff --git a/githubkit/versions/v2022_11_28/types/group_0495.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0495.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0495.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0495.py diff --git a/githubkit/versions/v2022_11_28/types/group_0496.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0496.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0496.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0496.py diff --git a/githubkit/versions/v2022_11_28/types/group_0497.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0497.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0497.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0497.py diff --git a/githubkit/versions/v2022_11_28/types/group_0498.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0498.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0498.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0498.py diff --git a/githubkit/versions/v2022_11_28/types/group_0499.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0499.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0499.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0499.py diff --git a/githubkit/versions/v2022_11_28/types/group_0500.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0500.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0500.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0500.py diff --git a/githubkit/versions/v2022_11_28/types/group_0501.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0501.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0501.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0501.py diff --git a/githubkit/versions/v2022_11_28/types/group_0502.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0502.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0502.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0502.py diff --git a/githubkit/versions/v2022_11_28/types/group_0503.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0503.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0503.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0503.py diff --git a/githubkit/versions/v2022_11_28/types/group_0504.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0504.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0504.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0504.py diff --git a/githubkit/versions/v2022_11_28/types/group_0505.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0505.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0505.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0505.py diff --git a/githubkit/versions/v2022_11_28/types/group_0506.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0506.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0506.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0506.py diff --git a/githubkit/versions/v2022_11_28/types/group_0507.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0507.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0507.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0507.py diff --git a/githubkit/versions/v2022_11_28/types/group_0508.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0508.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0508.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0508.py diff --git a/githubkit/versions/v2022_11_28/types/group_0509.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0509.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0509.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0509.py diff --git a/githubkit/versions/v2022_11_28/types/group_0510.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0510.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0510.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0510.py diff --git a/githubkit/versions/v2022_11_28/types/group_0511.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0511.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0511.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0511.py diff --git a/githubkit/versions/v2022_11_28/types/group_0512.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0512.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0512.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0512.py diff --git a/githubkit/versions/v2022_11_28/types/group_0513.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0513.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0513.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0513.py diff --git a/githubkit/versions/v2022_11_28/types/group_0514.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0514.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0514.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0514.py diff --git a/githubkit/versions/v2022_11_28/types/group_0515.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0515.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0515.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0515.py diff --git a/githubkit/versions/v2022_11_28/types/group_0516.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0516.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0516.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0516.py diff --git a/githubkit/versions/v2022_11_28/types/group_0517.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0517.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0517.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0517.py diff --git a/githubkit/versions/v2022_11_28/types/group_0518.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0518.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0518.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0518.py diff --git a/githubkit/versions/v2022_11_28/types/group_0519.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0519.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0519.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0519.py diff --git a/githubkit/versions/v2022_11_28/types/group_0520.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0520.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0520.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0520.py diff --git a/githubkit/versions/v2022_11_28/types/group_0521.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0521.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0521.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0521.py diff --git a/githubkit/versions/v2022_11_28/types/group_0522.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0522.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0522.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0522.py diff --git a/githubkit/versions/v2022_11_28/types/group_0523.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0523.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0523.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0523.py diff --git a/githubkit/versions/v2022_11_28/types/group_0524.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0524.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0524.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0524.py diff --git a/githubkit/versions/v2022_11_28/types/group_0525.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0525.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0525.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0525.py diff --git a/githubkit/versions/v2022_11_28/types/group_0526.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0526.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0526.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0526.py diff --git a/githubkit/versions/v2022_11_28/types/group_0527.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0527.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0527.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0527.py diff --git a/githubkit/versions/v2022_11_28/types/group_0528.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0528.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0528.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0528.py diff --git a/githubkit/versions/v2022_11_28/types/group_0529.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0529.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0529.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0529.py diff --git a/githubkit/versions/v2022_11_28/types/group_0530.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0530.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0530.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0530.py diff --git a/githubkit/versions/v2022_11_28/types/group_0531.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0531.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0531.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0531.py diff --git a/githubkit/versions/v2022_11_28/types/group_0532.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0532.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0532.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0532.py diff --git a/githubkit/versions/v2022_11_28/types/group_0533.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0533.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0533.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0533.py diff --git a/githubkit/versions/v2022_11_28/types/group_0534.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0534.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0534.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0534.py diff --git a/githubkit/versions/v2022_11_28/types/group_0535.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0535.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0535.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0535.py diff --git a/githubkit/versions/v2022_11_28/types/group_0536.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0536.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0536.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0536.py diff --git a/githubkit/versions/v2022_11_28/types/group_0537.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0537.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0537.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0537.py diff --git a/githubkit/versions/v2022_11_28/types/group_0538.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0538.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0538.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0538.py diff --git a/githubkit/versions/v2022_11_28/types/group_0539.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0539.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0539.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0539.py diff --git a/githubkit/versions/v2022_11_28/types/group_0540.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0540.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0540.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0540.py diff --git a/githubkit/versions/v2022_11_28/types/group_0541.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0541.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0541.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0541.py diff --git a/githubkit/versions/v2022_11_28/types/group_0542.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0542.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0542.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0542.py diff --git a/githubkit/versions/v2022_11_28/types/group_0543.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0543.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0543.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0543.py diff --git a/githubkit/versions/v2022_11_28/types/group_0544.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0544.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0544.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0544.py diff --git a/githubkit/versions/v2022_11_28/types/group_0545.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0545.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0545.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0545.py diff --git a/githubkit/versions/v2022_11_28/types/group_0546.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0546.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0546.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0546.py diff --git a/githubkit/versions/v2022_11_28/types/group_0547.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0547.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0547.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0547.py diff --git a/githubkit/versions/v2022_11_28/types/group_0548.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0548.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0548.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0548.py diff --git a/githubkit/versions/v2022_11_28/types/group_0549.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0549.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0549.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0549.py diff --git a/githubkit/versions/v2022_11_28/types/group_0550.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0550.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0550.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0550.py diff --git a/githubkit/versions/v2022_11_28/types/group_0551.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0551.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0551.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0551.py diff --git a/githubkit/versions/v2022_11_28/types/group_0552.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0552.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0552.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0552.py diff --git a/githubkit/versions/v2022_11_28/types/group_0553.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0553.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0553.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0553.py diff --git a/githubkit/versions/v2022_11_28/types/group_0554.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0554.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0554.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0554.py diff --git a/githubkit/versions/v2022_11_28/types/group_0555.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0555.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0555.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0555.py diff --git a/githubkit/versions/v2022_11_28/types/group_0556.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0556.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0556.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0556.py diff --git a/githubkit/versions/v2022_11_28/types/group_0557.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0557.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0557.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0557.py diff --git a/githubkit/versions/v2022_11_28/types/group_0558.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0558.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0558.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0558.py diff --git a/githubkit/versions/v2022_11_28/types/group_0559.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0559.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0559.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0559.py diff --git a/githubkit/versions/v2022_11_28/types/group_0560.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0560.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0560.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0560.py diff --git a/githubkit/versions/v2022_11_28/types/group_0561.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0561.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0561.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0561.py diff --git a/githubkit/versions/v2022_11_28/types/group_0562.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0562.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0562.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0562.py diff --git a/githubkit/versions/v2022_11_28/types/group_0563.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0563.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0563.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0563.py diff --git a/githubkit/versions/v2022_11_28/types/group_0564.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0564.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0564.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0564.py diff --git a/githubkit/versions/v2022_11_28/types/group_0565.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0565.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0565.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0565.py diff --git a/githubkit/versions/v2022_11_28/types/group_0566.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0566.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0566.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0566.py diff --git a/githubkit/versions/v2022_11_28/types/group_0567.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0567.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0567.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0567.py diff --git a/githubkit/versions/v2022_11_28/types/group_0568.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0568.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0568.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0568.py diff --git a/githubkit/versions/v2022_11_28/types/group_0569.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0569.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0569.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0569.py diff --git a/githubkit/versions/v2022_11_28/types/group_0570.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0570.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0570.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0570.py diff --git a/githubkit/versions/v2022_11_28/types/group_0571.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0571.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0571.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0571.py diff --git a/githubkit/versions/v2022_11_28/types/group_0572.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0572.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0572.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0572.py diff --git a/githubkit/versions/v2022_11_28/types/group_0573.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0573.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0573.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0573.py diff --git a/githubkit/versions/v2022_11_28/types/group_0574.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0574.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0574.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0574.py diff --git a/githubkit/versions/v2022_11_28/types/group_0575.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0575.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0575.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0575.py diff --git a/githubkit/versions/v2022_11_28/types/group_0576.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0576.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0576.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0576.py diff --git a/githubkit/versions/v2022_11_28/types/group_0577.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0577.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0577.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0577.py diff --git a/githubkit/versions/v2022_11_28/types/group_0578.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0578.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0578.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0578.py diff --git a/githubkit/versions/v2022_11_28/types/group_0579.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0579.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0579.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0579.py diff --git a/githubkit/versions/v2022_11_28/types/group_0580.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0580.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0580.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0580.py diff --git a/githubkit/versions/v2022_11_28/types/group_0581.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0581.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0581.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0581.py diff --git a/githubkit/versions/v2022_11_28/types/group_0582.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0582.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0582.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0582.py diff --git a/githubkit/versions/v2022_11_28/types/group_0583.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0583.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0583.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0583.py diff --git a/githubkit/versions/v2022_11_28/types/group_0584.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0584.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0584.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0584.py diff --git a/githubkit/versions/v2022_11_28/types/group_0585.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0585.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0585.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0585.py diff --git a/githubkit/versions/v2022_11_28/types/group_0586.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0586.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0586.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0586.py diff --git a/githubkit/versions/v2022_11_28/types/group_0587.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0587.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0587.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0587.py diff --git a/githubkit/versions/v2022_11_28/types/group_0588.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0588.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0588.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0588.py diff --git a/githubkit/versions/v2022_11_28/types/group_0589.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0589.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0589.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0589.py diff --git a/githubkit/versions/v2022_11_28/types/group_0590.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0590.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0590.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0590.py diff --git a/githubkit/versions/v2022_11_28/types/group_0591.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0591.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0591.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0591.py diff --git a/githubkit/versions/v2022_11_28/types/group_0592.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0592.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0592.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0592.py diff --git a/githubkit/versions/v2022_11_28/types/group_0593.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0593.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0593.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0593.py diff --git a/githubkit/versions/v2022_11_28/types/group_0594.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0594.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0594.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0594.py diff --git a/githubkit/versions/v2022_11_28/types/group_0595.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0595.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0595.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0595.py diff --git a/githubkit/versions/v2022_11_28/types/group_0596.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0596.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0596.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0596.py diff --git a/githubkit/versions/v2022_11_28/types/group_0597.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0597.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0597.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0597.py diff --git a/githubkit/versions/v2022_11_28/types/group_0598.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0598.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0598.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0598.py diff --git a/githubkit/versions/v2022_11_28/types/group_0599.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0599.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0599.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0599.py diff --git a/githubkit/versions/v2022_11_28/types/group_0600.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0600.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0600.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0600.py diff --git a/githubkit/versions/v2022_11_28/types/group_0601.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0601.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0601.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0601.py diff --git a/githubkit/versions/v2022_11_28/types/group_0602.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0602.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0602.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0602.py diff --git a/githubkit/versions/v2022_11_28/types/group_0603.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0603.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0603.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0603.py diff --git a/githubkit/versions/v2022_11_28/types/group_0604.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0604.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0604.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0604.py diff --git a/githubkit/versions/v2022_11_28/types/group_0605.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0605.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0605.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0605.py diff --git a/githubkit/versions/v2022_11_28/types/group_0606.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0606.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0606.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0606.py diff --git a/githubkit/versions/v2022_11_28/types/group_0607.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0607.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0607.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0607.py diff --git a/githubkit/versions/v2022_11_28/types/group_0608.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0608.py similarity index 97% rename from githubkit/versions/v2022_11_28/types/group_0608.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0608.py index 560df997c5..a876d3e9c3 100644 --- a/githubkit/versions/v2022_11_28/types/group_0608.py +++ b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0608.py @@ -48,7 +48,7 @@ class WebhookForkPropForkeeType(TypedDict): default_branch: str delete_branch_on_merge: NotRequired[bool] deployments_url: str - description: Union[Union[str, None], None] + description: Union[str, None] disabled: NotRequired[bool] downloads_url: str events_url: str @@ -66,7 +66,7 @@ class WebhookForkPropForkeeType(TypedDict): has_pages: bool has_projects: bool has_wiki: bool - homepage: Union[Union[str, None], None] + homepage: Union[str, None] hooks_url: str html_url: str id: int @@ -147,7 +147,7 @@ class WebhookForkPropForkeeTypeForResponse(TypedDict): default_branch: str delete_branch_on_merge: NotRequired[bool] deployments_url: str - description: Union[Union[str, None], None] + description: Union[str, None] disabled: NotRequired[bool] downloads_url: str events_url: str @@ -165,7 +165,7 @@ class WebhookForkPropForkeeTypeForResponse(TypedDict): has_pages: bool has_projects: bool has_wiki: bool - homepage: Union[Union[str, None], None] + homepage: Union[str, None] hooks_url: str html_url: str id: int diff --git a/githubkit/versions/v2022_11_28/types/group_0609.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0609.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0609.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0609.py diff --git a/githubkit/versions/v2022_11_28/types/group_0610.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0610.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0610.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0610.py diff --git a/githubkit/versions/v2022_11_28/types/group_0611.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0611.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0611.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0611.py diff --git a/githubkit/versions/v2022_11_28/types/group_0612.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0612.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0612.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0612.py diff --git a/githubkit/versions/v2022_11_28/types/group_0613.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0613.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0613.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0613.py diff --git a/githubkit/versions/v2022_11_28/types/group_0614.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0614.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0614.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0614.py diff --git a/githubkit/versions/v2022_11_28/types/group_0615.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0615.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0615.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0615.py diff --git a/githubkit/versions/v2022_11_28/types/group_0616.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0616.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0616.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0616.py diff --git a/githubkit/versions/v2022_11_28/types/group_0617.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0617.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0617.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0617.py diff --git a/githubkit/versions/v2022_11_28/types/group_0618.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0618.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0618.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0618.py diff --git a/githubkit/versions/v2022_11_28/types/group_0619.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0619.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0619.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0619.py diff --git a/githubkit/versions/v2022_11_28/types/group_0620.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0620.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0620.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0620.py diff --git a/githubkit/versions/v2022_11_28/types/group_0621.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0621.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0621.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0621.py diff --git a/githubkit/versions/v2022_11_28/types/group_0622.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0622.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0622.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0622.py diff --git a/githubkit/versions/v2022_11_28/types/group_0623.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0623.py similarity index 98% rename from githubkit/versions/v2022_11_28/types/group_0623.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0623.py index e52e809793..60c2fe1380 100644 --- a/githubkit/versions/v2022_11_28/types/group_0623.py +++ b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0623.py @@ -40,7 +40,7 @@ class WebhookIssueCommentCreatedPropCommentType(TypedDict): id: int issue_url: str node_id: str - performed_via_github_app: Union[None, IntegrationType, None] + performed_via_github_app: Union[None, IntegrationType] reactions: WebhookIssueCommentCreatedPropCommentPropReactionsType updated_at: _dt.datetime url: str @@ -71,7 +71,7 @@ class WebhookIssueCommentCreatedPropCommentTypeForResponse(TypedDict): id: int issue_url: str node_id: str - performed_via_github_app: Union[None, IntegrationTypeForResponse, None] + performed_via_github_app: Union[None, IntegrationTypeForResponse] reactions: WebhookIssueCommentCreatedPropCommentPropReactionsTypeForResponse updated_at: str url: str diff --git a/githubkit/versions/v2022_11_28/types/group_0624.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0624.py similarity index 96% rename from githubkit/versions/v2022_11_28/types/group_0624.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0624.py index 3449867f38..8f8b60a5fd 100644 --- a/githubkit/versions/v2022_11_28/types/group_0624.py +++ b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0624.py @@ -48,9 +48,7 @@ class WebhookIssueCommentCreatedPropIssueType(TypedDict): active_lock_reason: Union[ Literal["resolved", "off-topic", "too heated", "spam"], None ] - assignee: Union[ - Union[WebhookIssueCommentCreatedPropIssueAllof0PropAssigneeType, None], None - ] + assignee: Union[WebhookIssueCommentCreatedPropIssueAllof0PropAssigneeType, None] assignees: list[WebhookIssueCommentCreatedPropIssueMergedAssigneesType] author_association: Literal[ "COLLABORATOR", @@ -62,7 +60,7 @@ class WebhookIssueCommentCreatedPropIssueType(TypedDict): "NONE", "OWNER", ] - body: Union[Union[str, None], None] + body: Union[str, None] closed_at: Union[_dt.datetime, None] comments: int comments_url: str @@ -108,10 +106,7 @@ class WebhookIssueCommentCreatedPropIssueTypeForResponse(TypedDict): Literal["resolved", "off-topic", "too heated", "spam"], None ] assignee: Union[ - Union[ - WebhookIssueCommentCreatedPropIssueAllof0PropAssigneeTypeForResponse, None - ], - None, + WebhookIssueCommentCreatedPropIssueAllof0PropAssigneeTypeForResponse, None ] assignees: list[WebhookIssueCommentCreatedPropIssueMergedAssigneesTypeForResponse] author_association: Literal[ @@ -124,7 +119,7 @@ class WebhookIssueCommentCreatedPropIssueTypeForResponse(TypedDict): "NONE", "OWNER", ] - body: Union[Union[str, None], None] + body: Union[str, None] closed_at: Union[str, None] comments: int comments_url: str diff --git a/githubkit/versions/v2022_11_28/types/group_0625.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0625.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0625.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0625.py diff --git a/githubkit/versions/v2022_11_28/types/group_0626.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0626.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0626.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0626.py diff --git a/githubkit/versions/v2022_11_28/types/group_0627.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0627.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0627.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0627.py diff --git a/githubkit/versions/v2022_11_28/types/group_0628.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0628.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0628.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0628.py diff --git a/githubkit/versions/v2022_11_28/types/group_0629.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0629.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0629.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0629.py diff --git a/githubkit/versions/v2022_11_28/types/group_0630.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0630.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0630.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0630.py diff --git a/githubkit/versions/v2022_11_28/types/group_0631.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0631.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0631.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0631.py diff --git a/githubkit/versions/v2022_11_28/types/group_0632.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0632.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0632.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0632.py diff --git a/githubkit/versions/v2022_11_28/types/group_0633.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0633.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0633.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0633.py diff --git a/githubkit/versions/v2022_11_28/types/group_0634.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0634.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0634.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0634.py diff --git a/githubkit/versions/v2022_11_28/types/group_0635.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0635.py similarity index 96% rename from githubkit/versions/v2022_11_28/types/group_0635.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0635.py index df7054d938..1c1a751508 100644 --- a/githubkit/versions/v2022_11_28/types/group_0635.py +++ b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0635.py @@ -48,9 +48,7 @@ class WebhookIssueCommentDeletedPropIssueType(TypedDict): active_lock_reason: Union[ Literal["resolved", "off-topic", "too heated", "spam"], None ] - assignee: Union[ - Union[WebhookIssueCommentDeletedPropIssueAllof0PropAssigneeType, None], None - ] + assignee: Union[WebhookIssueCommentDeletedPropIssueAllof0PropAssigneeType, None] assignees: list[WebhookIssueCommentDeletedPropIssueMergedAssigneesType] author_association: Literal[ "COLLABORATOR", @@ -62,7 +60,7 @@ class WebhookIssueCommentDeletedPropIssueType(TypedDict): "NONE", "OWNER", ] - body: Union[Union[str, None], None] + body: Union[str, None] closed_at: Union[_dt.datetime, None] comments: int comments_url: str @@ -108,10 +106,7 @@ class WebhookIssueCommentDeletedPropIssueTypeForResponse(TypedDict): Literal["resolved", "off-topic", "too heated", "spam"], None ] assignee: Union[ - Union[ - WebhookIssueCommentDeletedPropIssueAllof0PropAssigneeTypeForResponse, None - ], - None, + WebhookIssueCommentDeletedPropIssueAllof0PropAssigneeTypeForResponse, None ] assignees: list[WebhookIssueCommentDeletedPropIssueMergedAssigneesTypeForResponse] author_association: Literal[ @@ -124,7 +119,7 @@ class WebhookIssueCommentDeletedPropIssueTypeForResponse(TypedDict): "NONE", "OWNER", ] - body: Union[Union[str, None], None] + body: Union[str, None] closed_at: Union[str, None] comments: int comments_url: str diff --git a/githubkit/versions/v2022_11_28/types/group_0636.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0636.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0636.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0636.py diff --git a/githubkit/versions/v2022_11_28/types/group_0637.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0637.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0637.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0637.py diff --git a/githubkit/versions/v2022_11_28/types/group_0638.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0638.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0638.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0638.py diff --git a/githubkit/versions/v2022_11_28/types/group_0639.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0639.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0639.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0639.py diff --git a/githubkit/versions/v2022_11_28/types/group_0640.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0640.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0640.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0640.py diff --git a/githubkit/versions/v2022_11_28/types/group_0641.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0641.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0641.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0641.py diff --git a/githubkit/versions/v2022_11_28/types/group_0642.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0642.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0642.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0642.py diff --git a/githubkit/versions/v2022_11_28/types/group_0643.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0643.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0643.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0643.py diff --git a/githubkit/versions/v2022_11_28/types/group_0644.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0644.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0644.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0644.py diff --git a/githubkit/versions/v2022_11_28/types/group_0645.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0645.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0645.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0645.py diff --git a/githubkit/versions/v2022_11_28/types/group_0646.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0646.py similarity index 96% rename from githubkit/versions/v2022_11_28/types/group_0646.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0646.py index bbc06fd500..06253753c5 100644 --- a/githubkit/versions/v2022_11_28/types/group_0646.py +++ b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0646.py @@ -48,9 +48,7 @@ class WebhookIssueCommentEditedPropIssueType(TypedDict): active_lock_reason: Union[ Literal["resolved", "off-topic", "too heated", "spam"], None ] - assignee: Union[ - Union[WebhookIssueCommentEditedPropIssueAllof0PropAssigneeType, None], None - ] + assignee: Union[WebhookIssueCommentEditedPropIssueAllof0PropAssigneeType, None] assignees: list[WebhookIssueCommentEditedPropIssueMergedAssigneesType] author_association: Literal[ "COLLABORATOR", @@ -62,7 +60,7 @@ class WebhookIssueCommentEditedPropIssueType(TypedDict): "NONE", "OWNER", ] - body: Union[Union[str, None], None] + body: Union[str, None] closed_at: Union[_dt.datetime, None] comments: int comments_url: str @@ -108,10 +106,7 @@ class WebhookIssueCommentEditedPropIssueTypeForResponse(TypedDict): Literal["resolved", "off-topic", "too heated", "spam"], None ] assignee: Union[ - Union[ - WebhookIssueCommentEditedPropIssueAllof0PropAssigneeTypeForResponse, None - ], - None, + WebhookIssueCommentEditedPropIssueAllof0PropAssigneeTypeForResponse, None ] assignees: list[WebhookIssueCommentEditedPropIssueMergedAssigneesTypeForResponse] author_association: Literal[ @@ -124,7 +119,7 @@ class WebhookIssueCommentEditedPropIssueTypeForResponse(TypedDict): "NONE", "OWNER", ] - body: Union[Union[str, None], None] + body: Union[str, None] closed_at: Union[str, None] comments: int comments_url: str diff --git a/githubkit/versions/v2022_11_28/types/group_0647.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0647.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0647.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0647.py diff --git a/githubkit/versions/v2022_11_28/types/group_0648.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0648.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0648.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0648.py diff --git a/githubkit/versions/v2022_11_28/types/group_0649.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0649.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0649.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0649.py diff --git a/githubkit/versions/v2022_11_28/types/group_0650.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0650.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0650.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0650.py diff --git a/githubkit/versions/v2022_11_28/types/group_0651.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0651.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0651.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0651.py diff --git a/githubkit/versions/v2022_11_28/types/group_0652.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0652.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0652.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0652.py diff --git a/githubkit/versions/v2022_11_28/types/group_0653.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0653.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0653.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0653.py diff --git a/githubkit/versions/v2022_11_28/types/group_0654.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0654.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0654.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0654.py diff --git a/githubkit/versions/v2022_11_28/types/group_0655.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0655.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0655.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0655.py diff --git a/githubkit/versions/v2022_11_28/types/group_0656.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0656.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0656.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0656.py diff --git a/githubkit/versions/v2022_11_28/types/group_0657.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0657.py similarity index 96% rename from githubkit/versions/v2022_11_28/types/group_0657.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0657.py index ae0a08bfa9..6c0d5211f4 100644 --- a/githubkit/versions/v2022_11_28/types/group_0657.py +++ b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0657.py @@ -48,9 +48,7 @@ class WebhookIssueCommentPinnedPropIssueType(TypedDict): active_lock_reason: Union[ Literal["resolved", "off-topic", "too heated", "spam"], None ] - assignee: Union[ - Union[WebhookIssueCommentPinnedPropIssueAllof0PropAssigneeType, None], None - ] + assignee: Union[WebhookIssueCommentPinnedPropIssueAllof0PropAssigneeType, None] assignees: list[WebhookIssueCommentPinnedPropIssueMergedAssigneesType] author_association: Literal[ "COLLABORATOR", @@ -62,7 +60,7 @@ class WebhookIssueCommentPinnedPropIssueType(TypedDict): "NONE", "OWNER", ] - body: Union[Union[str, None], None] + body: Union[str, None] closed_at: Union[_dt.datetime, None] comments: int comments_url: str @@ -108,10 +106,7 @@ class WebhookIssueCommentPinnedPropIssueTypeForResponse(TypedDict): Literal["resolved", "off-topic", "too heated", "spam"], None ] assignee: Union[ - Union[ - WebhookIssueCommentPinnedPropIssueAllof0PropAssigneeTypeForResponse, None - ], - None, + WebhookIssueCommentPinnedPropIssueAllof0PropAssigneeTypeForResponse, None ] assignees: list[WebhookIssueCommentPinnedPropIssueMergedAssigneesTypeForResponse] author_association: Literal[ @@ -124,7 +119,7 @@ class WebhookIssueCommentPinnedPropIssueTypeForResponse(TypedDict): "NONE", "OWNER", ] - body: Union[Union[str, None], None] + body: Union[str, None] closed_at: Union[str, None] comments: int comments_url: str diff --git a/githubkit/versions/v2022_11_28/types/group_0658.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0658.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0658.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0658.py diff --git a/githubkit/versions/v2022_11_28/types/group_0659.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0659.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0659.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0659.py diff --git a/githubkit/versions/v2022_11_28/types/group_0660.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0660.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0660.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0660.py diff --git a/githubkit/versions/v2022_11_28/types/group_0661.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0661.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0661.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0661.py diff --git a/githubkit/versions/v2022_11_28/types/group_0662.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0662.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0662.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0662.py diff --git a/githubkit/versions/v2022_11_28/types/group_0663.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0663.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0663.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0663.py diff --git a/githubkit/versions/v2022_11_28/types/group_0664.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0664.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0664.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0664.py diff --git a/githubkit/versions/v2022_11_28/types/group_0665.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0665.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0665.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0665.py diff --git a/githubkit/versions/v2022_11_28/types/group_0666.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0666.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0666.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0666.py diff --git a/githubkit/versions/v2022_11_28/types/group_0667.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0667.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0667.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0667.py diff --git a/githubkit/versions/v2022_11_28/types/group_0668.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0668.py similarity index 96% rename from githubkit/versions/v2022_11_28/types/group_0668.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0668.py index 109b3b0652..a72a1f6a01 100644 --- a/githubkit/versions/v2022_11_28/types/group_0668.py +++ b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0668.py @@ -48,9 +48,7 @@ class WebhookIssueCommentUnpinnedPropIssueType(TypedDict): active_lock_reason: Union[ Literal["resolved", "off-topic", "too heated", "spam"], None ] - assignee: Union[ - Union[WebhookIssueCommentUnpinnedPropIssueAllof0PropAssigneeType, None], None - ] + assignee: Union[WebhookIssueCommentUnpinnedPropIssueAllof0PropAssigneeType, None] assignees: list[WebhookIssueCommentUnpinnedPropIssueMergedAssigneesType] author_association: Literal[ "COLLABORATOR", @@ -62,7 +60,7 @@ class WebhookIssueCommentUnpinnedPropIssueType(TypedDict): "NONE", "OWNER", ] - body: Union[Union[str, None], None] + body: Union[str, None] closed_at: Union[_dt.datetime, None] comments: int comments_url: str @@ -108,10 +106,7 @@ class WebhookIssueCommentUnpinnedPropIssueTypeForResponse(TypedDict): Literal["resolved", "off-topic", "too heated", "spam"], None ] assignee: Union[ - Union[ - WebhookIssueCommentUnpinnedPropIssueAllof0PropAssigneeTypeForResponse, None - ], - None, + WebhookIssueCommentUnpinnedPropIssueAllof0PropAssigneeTypeForResponse, None ] assignees: list[WebhookIssueCommentUnpinnedPropIssueMergedAssigneesTypeForResponse] author_association: Literal[ @@ -124,7 +119,7 @@ class WebhookIssueCommentUnpinnedPropIssueTypeForResponse(TypedDict): "NONE", "OWNER", ] - body: Union[Union[str, None], None] + body: Union[str, None] closed_at: Union[str, None] comments: int comments_url: str diff --git a/githubkit/versions/v2022_11_28/types/group_0669.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0669.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0669.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0669.py diff --git a/githubkit/versions/v2022_11_28/types/group_0670.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0670.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0670.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0670.py diff --git a/githubkit/versions/v2022_11_28/types/group_0671.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0671.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0671.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0671.py diff --git a/githubkit/versions/v2022_11_28/types/group_0672.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0672.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0672.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0672.py diff --git a/githubkit/versions/v2022_11_28/types/group_0673.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0673.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0673.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0673.py diff --git a/githubkit/versions/v2022_11_28/types/group_0674.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0674.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0674.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0674.py diff --git a/githubkit/versions/v2022_11_28/types/group_0675.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0675.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0675.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0675.py diff --git a/githubkit/versions/v2022_11_28/types/group_0676.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0676.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0676.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0676.py diff --git a/githubkit/versions/v2022_11_28/types/group_0677.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0677.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0677.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0677.py diff --git a/githubkit/versions/v2022_11_28/types/group_0678.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0678.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0678.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0678.py diff --git a/githubkit/versions/v2022_11_28/types/group_0679.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0679.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0679.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0679.py diff --git a/githubkit/versions/v2022_11_28/types/group_0680.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0680.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0680.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0680.py diff --git a/githubkit/versions/v2022_11_28/types/group_0681.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0681.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0681.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0681.py diff --git a/githubkit/versions/v2022_11_28/types/group_0682.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0682.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0682.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0682.py diff --git a/githubkit/versions/v2022_11_28/types/group_0683.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0683.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0683.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0683.py diff --git a/githubkit/versions/v2022_11_28/types/group_0684.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0684.py similarity index 99% rename from githubkit/versions/v2022_11_28/types/group_0684.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0684.py index 462958dab2..11e3de728d 100644 --- a/githubkit/versions/v2022_11_28/types/group_0684.py +++ b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0684.py @@ -57,7 +57,7 @@ class WebhookIssuesClosedPropIssueType(TypedDict): "NONE", "OWNER", ] - body: Union[Union[str, None], None] + body: Union[str, None] closed_at: Union[_dt.datetime, None] comments: int comments_url: str @@ -115,7 +115,7 @@ class WebhookIssuesClosedPropIssueTypeForResponse(TypedDict): "NONE", "OWNER", ] - body: Union[Union[str, None], None] + body: Union[str, None] closed_at: Union[str, None] comments: int comments_url: str diff --git a/githubkit/versions/v2022_11_28/types/group_0685.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0685.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0685.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0685.py diff --git a/githubkit/versions/v2022_11_28/types/group_0686.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0686.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0686.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0686.py diff --git a/githubkit/versions/v2022_11_28/types/group_0687.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0687.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0687.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0687.py diff --git a/githubkit/versions/v2022_11_28/types/group_0688.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0688.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0688.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0688.py diff --git a/githubkit/versions/v2022_11_28/types/group_0689.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0689.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0689.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0689.py diff --git a/githubkit/versions/v2022_11_28/types/group_0690.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0690.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0690.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0690.py diff --git a/githubkit/versions/v2022_11_28/types/group_0691.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0691.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0691.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0691.py diff --git a/githubkit/versions/v2022_11_28/types/group_0692.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0692.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0692.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0692.py diff --git a/githubkit/versions/v2022_11_28/types/group_0693.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0693.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0693.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0693.py diff --git a/githubkit/versions/v2022_11_28/types/group_0694.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0694.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0694.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0694.py diff --git a/githubkit/versions/v2022_11_28/types/group_0695.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0695.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0695.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0695.py diff --git a/githubkit/versions/v2022_11_28/types/group_0696.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0696.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0696.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0696.py diff --git a/githubkit/versions/v2022_11_28/types/group_0697.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0697.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0697.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0697.py diff --git a/githubkit/versions/v2022_11_28/types/group_0698.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0698.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0698.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0698.py diff --git a/githubkit/versions/v2022_11_28/types/group_0699.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0699.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0699.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0699.py diff --git a/githubkit/versions/v2022_11_28/types/group_0700.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0700.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0700.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0700.py diff --git a/githubkit/versions/v2022_11_28/types/group_0701.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0701.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0701.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0701.py diff --git a/githubkit/versions/v2022_11_28/types/group_0702.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0702.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0702.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0702.py diff --git a/githubkit/versions/v2022_11_28/types/group_0703.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0703.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0703.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0703.py diff --git a/githubkit/versions/v2022_11_28/types/group_0704.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0704.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0704.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0704.py diff --git a/githubkit/versions/v2022_11_28/types/group_0705.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0705.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0705.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0705.py diff --git a/githubkit/versions/v2022_11_28/types/group_0706.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0706.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0706.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0706.py diff --git a/githubkit/versions/v2022_11_28/types/group_0707.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0707.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0707.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0707.py diff --git a/githubkit/versions/v2022_11_28/types/group_0708.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0708.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0708.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0708.py diff --git a/githubkit/versions/v2022_11_28/types/group_0709.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0709.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0709.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0709.py diff --git a/githubkit/versions/v2022_11_28/types/group_0710.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0710.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0710.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0710.py diff --git a/githubkit/versions/v2022_11_28/types/group_0711.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0711.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0711.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0711.py diff --git a/githubkit/versions/v2022_11_28/types/group_0712.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0712.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0712.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0712.py diff --git a/githubkit/versions/v2022_11_28/types/group_0713.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0713.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0713.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0713.py diff --git a/githubkit/versions/v2022_11_28/types/group_0714.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0714.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0714.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0714.py diff --git a/githubkit/versions/v2022_11_28/types/group_0715.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0715.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0715.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0715.py diff --git a/githubkit/versions/v2022_11_28/types/group_0716.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0716.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0716.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0716.py diff --git a/githubkit/versions/v2022_11_28/types/group_0717.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0717.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0717.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0717.py diff --git a/githubkit/versions/v2022_11_28/types/group_0718.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0718.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0718.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0718.py diff --git a/githubkit/versions/v2022_11_28/types/group_0719.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0719.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0719.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0719.py diff --git a/githubkit/versions/v2022_11_28/types/group_0720.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0720.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0720.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0720.py diff --git a/githubkit/versions/v2022_11_28/types/group_0721.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0721.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0721.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0721.py diff --git a/githubkit/versions/v2022_11_28/types/group_0722.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0722.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0722.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0722.py diff --git a/githubkit/versions/v2022_11_28/types/group_0723.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0723.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0723.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0723.py diff --git a/githubkit/versions/v2022_11_28/types/group_0724.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0724.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0724.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0724.py diff --git a/githubkit/versions/v2022_11_28/types/group_0725.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0725.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0725.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0725.py diff --git a/githubkit/versions/v2022_11_28/types/group_0726.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0726.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0726.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0726.py diff --git a/githubkit/versions/v2022_11_28/types/group_0727.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0727.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0727.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0727.py diff --git a/githubkit/versions/v2022_11_28/types/group_0728.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0728.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0728.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0728.py diff --git a/githubkit/versions/v2022_11_28/types/group_0729.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0729.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0729.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0729.py diff --git a/githubkit/versions/v2022_11_28/types/group_0730.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0730.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0730.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0730.py diff --git a/githubkit/versions/v2022_11_28/types/group_0731.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0731.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0731.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0731.py diff --git a/githubkit/versions/v2022_11_28/types/group_0732.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0732.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0732.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0732.py diff --git a/githubkit/versions/v2022_11_28/types/group_0733.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0733.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0733.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0733.py diff --git a/githubkit/versions/v2022_11_28/types/group_0734.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0734.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0734.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0734.py diff --git a/githubkit/versions/v2022_11_28/types/group_0735.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0735.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0735.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0735.py diff --git a/githubkit/versions/v2022_11_28/types/group_0736.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0736.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0736.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0736.py diff --git a/githubkit/versions/v2022_11_28/types/group_0737.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0737.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0737.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0737.py diff --git a/githubkit/versions/v2022_11_28/types/group_0738.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0738.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0738.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0738.py diff --git a/githubkit/versions/v2022_11_28/types/group_0739.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0739.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0739.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0739.py diff --git a/githubkit/versions/v2022_11_28/types/group_0740.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0740.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0740.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0740.py diff --git a/githubkit/versions/v2022_11_28/types/group_0741.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0741.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0741.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0741.py diff --git a/githubkit/versions/v2022_11_28/types/group_0742.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0742.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0742.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0742.py diff --git a/githubkit/versions/v2022_11_28/types/group_0743.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0743.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0743.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0743.py diff --git a/githubkit/versions/v2022_11_28/types/group_0744.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0744.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0744.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0744.py diff --git a/githubkit/versions/v2022_11_28/types/group_0745.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0745.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0745.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0745.py diff --git a/githubkit/versions/v2022_11_28/types/group_0746.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0746.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0746.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0746.py diff --git a/githubkit/versions/v2022_11_28/types/group_0747.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0747.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0747.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0747.py diff --git a/githubkit/versions/v2022_11_28/types/group_0748.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0748.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0748.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0748.py diff --git a/githubkit/versions/v2022_11_28/types/group_0749.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0749.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0749.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0749.py diff --git a/githubkit/versions/v2022_11_28/types/group_0750.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0750.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0750.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0750.py diff --git a/githubkit/versions/v2022_11_28/types/group_0751.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0751.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0751.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0751.py diff --git a/githubkit/versions/v2022_11_28/types/group_0752.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0752.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0752.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0752.py diff --git a/githubkit/versions/v2022_11_28/types/group_0753.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0753.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0753.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0753.py diff --git a/githubkit/versions/v2022_11_28/types/group_0754.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0754.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0754.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0754.py diff --git a/githubkit/versions/v2022_11_28/types/group_0755.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0755.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0755.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0755.py diff --git a/githubkit/versions/v2022_11_28/types/group_0756.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0756.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0756.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0756.py diff --git a/githubkit/versions/v2022_11_28/types/group_0757.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0757.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0757.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0757.py diff --git a/githubkit/versions/v2022_11_28/types/group_0758.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0758.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0758.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0758.py diff --git a/githubkit/versions/v2022_11_28/types/group_0759.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0759.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0759.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0759.py diff --git a/githubkit/versions/v2022_11_28/types/group_0760.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0760.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0760.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0760.py diff --git a/githubkit/versions/v2022_11_28/types/group_0761.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0761.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0761.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0761.py diff --git a/githubkit/versions/v2022_11_28/types/group_0762.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0762.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0762.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0762.py diff --git a/githubkit/versions/v2022_11_28/types/group_0763.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0763.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0763.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0763.py diff --git a/githubkit/versions/v2022_11_28/types/group_0764.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0764.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0764.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0764.py diff --git a/githubkit/versions/v2022_11_28/types/group_0765.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0765.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0765.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0765.py diff --git a/githubkit/versions/v2022_11_28/types/group_0766.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0766.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0766.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0766.py diff --git a/githubkit/versions/v2022_11_28/types/group_0767.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0767.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0767.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0767.py diff --git a/githubkit/versions/v2022_11_28/types/group_0768.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0768.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0768.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0768.py diff --git a/githubkit/versions/v2022_11_28/types/group_0769.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0769.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0769.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0769.py diff --git a/githubkit/versions/v2022_11_28/types/group_0770.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0770.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0770.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0770.py diff --git a/githubkit/versions/v2022_11_28/types/group_0771.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0771.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0771.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0771.py diff --git a/githubkit/versions/v2022_11_28/types/group_0772.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0772.py similarity index 97% rename from githubkit/versions/v2022_11_28/types/group_0772.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0772.py index b20005fdee..c3e30d7530 100644 --- a/githubkit/versions/v2022_11_28/types/group_0772.py +++ b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0772.py @@ -76,7 +76,7 @@ class WebhookProjectCardMovedPropChangesPropColumnIdTypeForResponse(TypedDict): class WebhookProjectCardMovedPropProjectCardType(TypedDict): """WebhookProjectCardMovedPropProjectCard""" - after_id: Union[Union[int, None], None] + after_id: Union[int, None] archived: bool column_id: int column_url: str @@ -85,7 +85,7 @@ class WebhookProjectCardMovedPropProjectCardType(TypedDict): creator: Union[WebhookProjectCardMovedPropProjectCardMergedCreatorType, None] id: int node_id: str - note: Union[Union[str, None], None] + note: Union[str, None] project_url: str updated_at: _dt.datetime url: str @@ -94,7 +94,7 @@ class WebhookProjectCardMovedPropProjectCardType(TypedDict): class WebhookProjectCardMovedPropProjectCardTypeForResponse(TypedDict): """WebhookProjectCardMovedPropProjectCard""" - after_id: Union[Union[int, None], None] + after_id: Union[int, None] archived: bool column_id: int column_url: str @@ -105,7 +105,7 @@ class WebhookProjectCardMovedPropProjectCardTypeForResponse(TypedDict): ] id: int node_id: str - note: Union[Union[str, None], None] + note: Union[str, None] project_url: str updated_at: str url: str diff --git a/githubkit/versions/v2022_11_28/types/group_0773.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0773.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0773.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0773.py diff --git a/githubkit/versions/v2022_11_28/types/group_0774.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0774.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0774.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0774.py diff --git a/githubkit/versions/v2022_11_28/types/group_0775.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0775.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0775.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0775.py diff --git a/githubkit/versions/v2022_11_28/types/group_0776.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0776.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0776.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0776.py diff --git a/githubkit/versions/v2022_11_28/types/group_0777.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0777.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0777.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0777.py diff --git a/githubkit/versions/v2022_11_28/types/group_0778.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0778.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0778.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0778.py diff --git a/githubkit/versions/v2022_11_28/types/group_0779.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0779.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0779.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0779.py diff --git a/githubkit/versions/v2022_11_28/types/group_0780.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0780.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0780.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0780.py diff --git a/githubkit/versions/v2022_11_28/types/group_0781.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0781.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0781.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0781.py diff --git a/githubkit/versions/v2022_11_28/types/group_0782.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0782.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0782.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0782.py diff --git a/githubkit/versions/v2022_11_28/types/group_0783.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0783.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0783.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0783.py diff --git a/githubkit/versions/v2022_11_28/types/group_0784.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0784.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0784.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0784.py diff --git a/githubkit/versions/v2022_11_28/types/group_0785.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0785.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0785.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0785.py diff --git a/githubkit/versions/v2022_11_28/types/group_0786.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0786.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0786.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0786.py diff --git a/githubkit/versions/v2022_11_28/types/group_0787.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0787.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0787.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0787.py diff --git a/githubkit/versions/v2022_11_28/types/group_0788.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0788.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0788.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0788.py diff --git a/githubkit/versions/v2022_11_28/types/group_0789.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0789.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0789.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0789.py diff --git a/githubkit/versions/v2022_11_28/types/group_0790.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0790.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0790.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0790.py diff --git a/githubkit/versions/v2022_11_28/types/group_0791.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0791.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0791.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0791.py diff --git a/githubkit/versions/v2022_11_28/types/group_0792.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0792.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0792.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0792.py diff --git a/githubkit/versions/v2022_11_28/types/group_0793.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0793.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0793.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0793.py diff --git a/githubkit/versions/v2022_11_28/types/group_0794.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0794.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0794.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0794.py diff --git a/githubkit/versions/v2022_11_28/types/group_0795.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0795.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0795.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0795.py diff --git a/githubkit/versions/v2022_11_28/types/group_0796.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0796.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0796.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0796.py diff --git a/githubkit/versions/v2022_11_28/types/group_0797.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0797.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0797.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0797.py diff --git a/githubkit/versions/v2022_11_28/types/group_0798.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0798.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0798.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0798.py diff --git a/githubkit/versions/v2022_11_28/types/group_0799.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0799.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0799.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0799.py diff --git a/githubkit/versions/v2022_11_28/types/group_0800.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0800.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0800.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0800.py diff --git a/githubkit/versions/v2022_11_28/types/group_0801.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0801.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0801.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0801.py diff --git a/githubkit/versions/v2022_11_28/types/group_0802.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0802.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0802.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0802.py diff --git a/githubkit/versions/v2022_11_28/types/group_0803.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0803.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0803.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0803.py diff --git a/githubkit/versions/v2022_11_28/types/group_0804.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0804.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0804.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0804.py diff --git a/githubkit/versions/v2022_11_28/types/group_0805.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0805.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0805.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0805.py diff --git a/githubkit/versions/v2022_11_28/types/group_0806.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0806.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0806.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0806.py diff --git a/githubkit/versions/v2022_11_28/types/group_0807.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0807.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0807.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0807.py diff --git a/githubkit/versions/v2022_11_28/types/group_0808.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0808.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0808.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0808.py diff --git a/githubkit/versions/v2022_11_28/types/group_0809.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0809.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0809.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0809.py diff --git a/githubkit/versions/v2022_11_28/types/group_0810.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0810.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0810.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0810.py diff --git a/githubkit/versions/v2022_11_28/types/group_0811.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0811.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0811.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0811.py diff --git a/githubkit/versions/v2022_11_28/types/group_0812.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0812.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0812.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0812.py diff --git a/githubkit/versions/v2022_11_28/types/group_0813.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0813.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0813.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0813.py diff --git a/githubkit/versions/v2022_11_28/types/group_0814.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0814.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0814.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0814.py diff --git a/githubkit/versions/v2022_11_28/types/group_0815.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0815.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0815.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0815.py diff --git a/githubkit/versions/v2022_11_28/types/group_0816.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0816.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0816.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0816.py diff --git a/githubkit/versions/v2022_11_28/types/group_0817.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0817.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0817.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0817.py diff --git a/githubkit/versions/v2022_11_28/types/group_0818.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0818.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0818.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0818.py diff --git a/githubkit/versions/v2022_11_28/types/group_0819.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0819.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0819.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0819.py diff --git a/githubkit/versions/v2022_11_28/types/group_0820.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0820.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0820.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0820.py diff --git a/githubkit/versions/v2022_11_28/types/group_0821.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0821.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0821.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0821.py diff --git a/githubkit/versions/v2022_11_28/types/group_0822.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0822.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0822.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0822.py diff --git a/githubkit/versions/v2022_11_28/types/group_0823.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0823.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0823.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0823.py diff --git a/githubkit/versions/v2022_11_28/types/group_0824.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0824.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0824.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0824.py diff --git a/githubkit/versions/v2022_11_28/types/group_0825.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0825.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0825.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0825.py diff --git a/githubkit/versions/v2022_11_28/types/group_0826.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0826.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0826.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0826.py diff --git a/githubkit/versions/v2022_11_28/types/group_0827.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0827.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0827.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0827.py diff --git a/githubkit/versions/v2022_11_28/types/group_0828.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0828.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0828.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0828.py diff --git a/githubkit/versions/v2022_11_28/types/group_0829.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0829.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0829.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0829.py diff --git a/githubkit/versions/v2022_11_28/types/group_0830.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0830.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0830.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0830.py diff --git a/githubkit/versions/v2022_11_28/types/group_0831.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0831.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0831.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0831.py diff --git a/githubkit/versions/v2022_11_28/types/group_0832.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0832.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0832.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0832.py diff --git a/githubkit/versions/v2022_11_28/types/group_0833.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0833.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0833.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0833.py diff --git a/githubkit/versions/v2022_11_28/types/group_0834.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0834.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0834.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0834.py diff --git a/githubkit/versions/v2022_11_28/types/group_0835.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0835.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0835.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0835.py diff --git a/githubkit/versions/v2022_11_28/types/group_0836.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0836.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0836.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0836.py diff --git a/githubkit/versions/v2022_11_28/types/group_0837.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0837.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0837.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0837.py diff --git a/githubkit/versions/v2022_11_28/types/group_0838.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0838.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0838.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0838.py diff --git a/githubkit/versions/v2022_11_28/types/group_0839.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0839.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0839.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0839.py diff --git a/githubkit/versions/v2022_11_28/types/group_0840.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0840.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0840.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0840.py diff --git a/githubkit/versions/v2022_11_28/types/group_0841.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0841.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0841.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0841.py diff --git a/githubkit/versions/v2022_11_28/types/group_0842.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0842.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0842.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0842.py diff --git a/githubkit/versions/v2022_11_28/types/group_0843.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0843.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0843.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0843.py diff --git a/githubkit/versions/v2022_11_28/types/group_0844.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0844.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0844.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0844.py diff --git a/githubkit/versions/v2022_11_28/types/group_0845.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0845.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0845.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0845.py diff --git a/githubkit/versions/v2022_11_28/types/group_0846.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0846.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0846.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0846.py diff --git a/githubkit/versions/v2022_11_28/types/group_0847.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0847.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0847.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0847.py diff --git a/githubkit/versions/v2022_11_28/types/group_0848.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0848.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0848.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0848.py diff --git a/githubkit/versions/v2022_11_28/types/group_0849.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0849.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0849.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0849.py diff --git a/githubkit/versions/v2022_11_28/types/group_0850.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0850.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0850.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0850.py diff --git a/githubkit/versions/v2022_11_28/types/group_0851.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0851.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0851.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0851.py diff --git a/githubkit/versions/v2022_11_28/types/group_0852.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0852.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0852.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0852.py diff --git a/githubkit/versions/v2022_11_28/types/group_0853.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0853.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0853.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0853.py diff --git a/githubkit/versions/v2022_11_28/types/group_0854.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0854.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0854.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0854.py diff --git a/githubkit/versions/v2022_11_28/types/group_0855.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0855.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0855.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0855.py diff --git a/githubkit/versions/v2022_11_28/types/group_0856.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0856.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0856.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0856.py diff --git a/githubkit/versions/v2022_11_28/types/group_0857.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0857.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0857.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0857.py diff --git a/githubkit/versions/v2022_11_28/types/group_0858.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0858.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0858.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0858.py diff --git a/githubkit/versions/v2022_11_28/types/group_0859.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0859.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0859.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0859.py diff --git a/githubkit/versions/v2022_11_28/types/group_0860.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0860.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0860.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0860.py diff --git a/githubkit/versions/v2022_11_28/types/group_0861.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0861.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0861.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0861.py diff --git a/githubkit/versions/v2022_11_28/types/group_0862.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0862.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0862.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0862.py diff --git a/githubkit/versions/v2022_11_28/types/group_0863.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0863.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0863.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0863.py diff --git a/githubkit/versions/v2022_11_28/types/group_0864.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0864.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0864.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0864.py diff --git a/githubkit/versions/v2022_11_28/types/group_0865.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0865.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0865.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0865.py diff --git a/githubkit/versions/v2022_11_28/types/group_0866.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0866.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0866.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0866.py diff --git a/githubkit/versions/v2022_11_28/types/group_0867.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0867.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0867.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0867.py diff --git a/githubkit/versions/v2022_11_28/types/group_0868.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0868.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0868.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0868.py diff --git a/githubkit/versions/v2022_11_28/types/group_0869.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0869.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0869.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0869.py diff --git a/githubkit/versions/v2022_11_28/types/group_0870.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0870.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0870.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0870.py diff --git a/githubkit/versions/v2022_11_28/types/group_0871.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0871.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0871.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0871.py diff --git a/githubkit/versions/v2022_11_28/types/group_0872.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0872.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0872.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0872.py diff --git a/githubkit/versions/v2022_11_28/types/group_0873.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0873.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0873.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0873.py diff --git a/githubkit/versions/v2022_11_28/types/group_0874.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0874.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0874.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0874.py diff --git a/githubkit/versions/v2022_11_28/types/group_0875.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0875.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0875.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0875.py diff --git a/githubkit/versions/v2022_11_28/types/group_0876.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0876.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0876.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0876.py diff --git a/githubkit/versions/v2022_11_28/types/group_0877.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0877.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0877.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0877.py diff --git a/githubkit/versions/v2022_11_28/types/group_0878.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0878.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0878.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0878.py diff --git a/githubkit/versions/v2022_11_28/types/group_0879.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0879.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0879.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0879.py diff --git a/githubkit/versions/v2022_11_28/types/group_0880.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0880.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0880.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0880.py diff --git a/githubkit/versions/v2022_11_28/types/group_0881.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0881.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0881.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0881.py diff --git a/githubkit/versions/v2022_11_28/types/group_0882.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0882.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0882.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0882.py diff --git a/githubkit/versions/v2022_11_28/types/group_0883.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0883.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0883.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0883.py diff --git a/githubkit/versions/v2022_11_28/types/group_0884.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0884.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0884.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0884.py diff --git a/githubkit/versions/v2022_11_28/types/group_0885.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0885.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0885.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0885.py diff --git a/githubkit/versions/v2022_11_28/types/group_0886.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0886.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0886.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0886.py diff --git a/githubkit/versions/v2022_11_28/types/group_0887.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0887.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0887.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0887.py diff --git a/githubkit/versions/v2022_11_28/types/group_0888.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0888.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0888.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0888.py diff --git a/githubkit/versions/v2022_11_28/types/group_0889.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0889.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0889.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0889.py diff --git a/githubkit/versions/v2022_11_28/types/group_0890.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0890.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0890.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0890.py diff --git a/githubkit/versions/v2022_11_28/types/group_0891.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0891.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0891.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0891.py diff --git a/githubkit/versions/v2022_11_28/types/group_0892.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0892.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0892.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0892.py diff --git a/githubkit/versions/v2022_11_28/types/group_0893.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0893.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0893.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0893.py diff --git a/githubkit/versions/v2022_11_28/types/group_0894.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0894.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0894.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0894.py diff --git a/githubkit/versions/v2022_11_28/types/group_0895.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0895.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0895.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0895.py diff --git a/githubkit/versions/v2022_11_28/types/group_0896.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0896.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0896.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0896.py diff --git a/githubkit/versions/v2022_11_28/types/group_0897.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0897.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0897.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0897.py diff --git a/githubkit/versions/v2022_11_28/types/group_0898.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0898.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0898.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0898.py diff --git a/githubkit/versions/v2022_11_28/types/group_0899.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0899.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0899.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0899.py diff --git a/githubkit/versions/v2022_11_28/types/group_0900.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0900.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0900.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0900.py diff --git a/githubkit/versions/v2022_11_28/types/group_0901.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0901.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0901.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0901.py diff --git a/githubkit/versions/v2022_11_28/types/group_0902.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0902.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0902.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0902.py diff --git a/githubkit/versions/v2022_11_28/types/group_0903.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0903.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0903.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0903.py diff --git a/githubkit/versions/v2022_11_28/types/group_0904.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0904.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0904.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0904.py diff --git a/githubkit/versions/v2022_11_28/types/group_0905.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0905.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0905.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0905.py diff --git a/githubkit/versions/v2022_11_28/types/group_0906.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0906.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0906.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0906.py diff --git a/githubkit/versions/v2022_11_28/types/group_0907.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0907.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0907.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0907.py diff --git a/githubkit/versions/v2022_11_28/types/group_0908.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0908.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0908.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0908.py diff --git a/githubkit/versions/v2022_11_28/types/group_0909.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0909.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0909.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0909.py diff --git a/githubkit/versions/v2022_11_28/types/group_0910.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0910.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0910.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0910.py diff --git a/githubkit/versions/v2022_11_28/types/group_0911.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0911.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0911.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0911.py diff --git a/githubkit/versions/v2022_11_28/types/group_0912.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0912.py similarity index 88% rename from githubkit/versions/v2022_11_28/types/group_0912.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0912.py index 028a1866c7..aa5689809a 100644 --- a/githubkit/versions/v2022_11_28/types/group_0912.py +++ b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0912.py @@ -73,14 +73,14 @@ class WebhookWorkflowJobCompletedPropWorkflowJobType(TypedDict): run_attempt: int run_id: int run_url: str - runner_group_id: Union[Union[int, None], None] - runner_group_name: Union[Union[str, None], None] - runner_id: Union[Union[int, None], None] - runner_name: Union[Union[str, None], None] + runner_group_id: Union[int, None] + runner_group_name: Union[str, None] + runner_id: Union[int, None] + runner_name: Union[str, None] started_at: str status: Literal["queued", "in_progress", "completed", "waiting"] - head_branch: Union[Union[str, None], None] - workflow_name: Union[Union[str, None], None] + head_branch: Union[str, None] + workflow_name: Union[str, None] steps: list[WebhookWorkflowJobCompletedPropWorkflowJobMergedStepsType] url: str @@ -109,14 +109,14 @@ class WebhookWorkflowJobCompletedPropWorkflowJobTypeForResponse(TypedDict): run_attempt: int run_id: int run_url: str - runner_group_id: Union[Union[int, None], None] - runner_group_name: Union[Union[str, None], None] - runner_id: Union[Union[int, None], None] - runner_name: Union[Union[str, None], None] + runner_group_id: Union[int, None] + runner_group_name: Union[str, None] + runner_id: Union[int, None] + runner_name: Union[str, None] started_at: str status: Literal["queued", "in_progress", "completed", "waiting"] - head_branch: Union[Union[str, None], None] - workflow_name: Union[Union[str, None], None] + head_branch: Union[str, None] + workflow_name: Union[str, None] steps: list[WebhookWorkflowJobCompletedPropWorkflowJobMergedStepsTypeForResponse] url: str diff --git a/githubkit/versions/v2022_11_28/types/group_0913.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0913.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0913.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0913.py diff --git a/githubkit/versions/v2022_11_28/types/group_0914.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0914.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0914.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0914.py diff --git a/githubkit/versions/v2022_11_28/types/group_0915.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0915.py similarity index 82% rename from githubkit/versions/v2022_11_28/types/group_0915.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0915.py index 7caf24130d..8f86d6e86b 100644 --- a/githubkit/versions/v2022_11_28/types/group_0915.py +++ b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0915.py @@ -53,7 +53,7 @@ class WebhookWorkflowJobInProgressPropWorkflowJobType(TypedDict): """WebhookWorkflowJobInProgressPropWorkflowJob""" check_run_url: str - completed_at: Union[Union[str, None], None] + completed_at: Union[str, None] conclusion: Union[Literal["success", "failure", "cancelled", "neutral"], None] created_at: str head_sha: str @@ -65,14 +65,14 @@ class WebhookWorkflowJobInProgressPropWorkflowJobType(TypedDict): run_attempt: int run_id: int run_url: str - runner_group_id: Union[Union[int, None], None] - runner_group_name: Union[Union[str, None], None] - runner_id: Union[Union[int, None], None] - runner_name: Union[Union[str, None], None] + runner_group_id: Union[int, None] + runner_group_name: Union[str, None] + runner_id: Union[int, None] + runner_name: Union[str, None] started_at: str status: Literal["queued", "in_progress", "completed"] - head_branch: Union[Union[str, None], None] - workflow_name: Union[Union[str, None], None] + head_branch: Union[str, None] + workflow_name: Union[str, None] steps: list[WebhookWorkflowJobInProgressPropWorkflowJobMergedStepsType] url: str @@ -81,7 +81,7 @@ class WebhookWorkflowJobInProgressPropWorkflowJobTypeForResponse(TypedDict): """WebhookWorkflowJobInProgressPropWorkflowJob""" check_run_url: str - completed_at: Union[Union[str, None], None] + completed_at: Union[str, None] conclusion: Union[Literal["success", "failure", "cancelled", "neutral"], None] created_at: str head_sha: str @@ -93,14 +93,14 @@ class WebhookWorkflowJobInProgressPropWorkflowJobTypeForResponse(TypedDict): run_attempt: int run_id: int run_url: str - runner_group_id: Union[Union[int, None], None] - runner_group_name: Union[Union[str, None], None] - runner_id: Union[Union[int, None], None] - runner_name: Union[Union[str, None], None] + runner_group_id: Union[int, None] + runner_group_name: Union[str, None] + runner_id: Union[int, None] + runner_name: Union[str, None] started_at: str status: Literal["queued", "in_progress", "completed"] - head_branch: Union[Union[str, None], None] - workflow_name: Union[Union[str, None], None] + head_branch: Union[str, None] + workflow_name: Union[str, None] steps: list[WebhookWorkflowJobInProgressPropWorkflowJobMergedStepsTypeForResponse] url: str @@ -108,22 +108,22 @@ class WebhookWorkflowJobInProgressPropWorkflowJobTypeForResponse(TypedDict): class WebhookWorkflowJobInProgressPropWorkflowJobMergedStepsType(TypedDict): """WebhookWorkflowJobInProgressPropWorkflowJobMergedSteps""" - completed_at: Union[Union[str, None], None] + completed_at: Union[str, None] conclusion: Union[Literal["failure", "skipped", "success", "cancelled"], None] name: str number: int - started_at: Union[Union[str, None], None] + started_at: Union[str, None] status: Literal["in_progress", "completed", "queued", "pending"] class WebhookWorkflowJobInProgressPropWorkflowJobMergedStepsTypeForResponse(TypedDict): """WebhookWorkflowJobInProgressPropWorkflowJobMergedSteps""" - completed_at: Union[Union[str, None], None] + completed_at: Union[str, None] conclusion: Union[Literal["failure", "skipped", "success", "cancelled"], None] name: str number: int - started_at: Union[Union[str, None], None] + started_at: Union[str, None] status: Literal["in_progress", "completed", "queued", "pending"] diff --git a/githubkit/versions/v2022_11_28/types/group_0916.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0916.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0916.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0916.py diff --git a/githubkit/versions/v2022_11_28/types/group_0917.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0917.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0917.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0917.py diff --git a/githubkit/versions/v2022_11_28/types/group_0918.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0918.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0918.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0918.py diff --git a/githubkit/versions/v2022_11_28/types/group_0919.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0919.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0919.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0919.py diff --git a/githubkit/versions/v2022_11_28/types/group_0920.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0920.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0920.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0920.py diff --git a/githubkit/versions/v2022_11_28/types/group_0921.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0921.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0921.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0921.py diff --git a/githubkit/versions/v2022_11_28/types/group_0922.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0922.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0922.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0922.py diff --git a/githubkit/versions/v2022_11_28/types/group_0923.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0923.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0923.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0923.py diff --git a/githubkit/versions/v2022_11_28/types/group_0924.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0924.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0924.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0924.py diff --git a/githubkit/versions/v2022_11_28/types/group_0925.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0925.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0925.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0925.py diff --git a/githubkit/versions/v2022_11_28/types/group_0926.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0926.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0926.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0926.py diff --git a/githubkit/versions/v2022_11_28/types/group_0927.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0927.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0927.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0927.py diff --git a/githubkit/versions/v2022_11_28/types/group_0928.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0928.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0928.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0928.py diff --git a/githubkit/versions/v2022_11_28/types/group_0929.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0929.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0929.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0929.py diff --git a/githubkit/versions/v2022_11_28/types/group_0930.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0930.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0930.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0930.py diff --git a/githubkit/versions/v2022_11_28/types/group_0931.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0931.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0931.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0931.py diff --git a/githubkit/versions/v2022_11_28/types/group_0932.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0932.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0932.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0932.py diff --git a/githubkit/versions/v2022_11_28/types/group_0933.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0933.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0933.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0933.py diff --git a/githubkit/versions/v2022_11_28/types/group_0934.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0934.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0934.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0934.py diff --git a/githubkit/versions/v2022_11_28/types/group_0935.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0935.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0935.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0935.py diff --git a/githubkit/versions/v2022_11_28/types/group_0936.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0936.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0936.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0936.py diff --git a/githubkit/versions/v2022_11_28/types/group_0937.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0937.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0937.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0937.py diff --git a/githubkit/versions/v2022_11_28/types/group_0938.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0938.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0938.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0938.py diff --git a/githubkit/versions/v2022_11_28/types/group_0939.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0939.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0939.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0939.py diff --git a/githubkit/versions/v2022_11_28/types/group_0940.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0940.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0940.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0940.py diff --git a/githubkit/versions/v2022_11_28/types/group_0941.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0941.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0941.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0941.py diff --git a/githubkit/versions/v2022_11_28/types/group_0942.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0942.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0942.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0942.py diff --git a/githubkit/versions/v2022_11_28/types/group_0943.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0943.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0943.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0943.py diff --git a/githubkit/versions/v2022_11_28/types/group_0944.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0944.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0944.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0944.py diff --git a/githubkit/versions/v2022_11_28/types/group_0945.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0945.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0945.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0945.py diff --git a/githubkit/versions/v2022_11_28/types/group_0946.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0946.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0946.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0946.py diff --git a/githubkit/versions/v2022_11_28/types/group_0947.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0947.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0947.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0947.py diff --git a/githubkit/versions/v2022_11_28/types/group_0948.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0948.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0948.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0948.py diff --git a/githubkit/versions/v2022_11_28/types/group_0949.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0949.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0949.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0949.py diff --git a/githubkit/versions/v2022_11_28/types/group_0950.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0950.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0950.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0950.py diff --git a/githubkit/versions/v2022_11_28/types/group_0951.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0951.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0951.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0951.py diff --git a/githubkit/versions/v2022_11_28/types/group_0952.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0952.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0952.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0952.py diff --git a/githubkit/versions/v2022_11_28/types/group_0953.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0953.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0953.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0953.py diff --git a/githubkit/versions/v2022_11_28/types/group_0954.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0954.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0954.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0954.py diff --git a/githubkit/versions/v2022_11_28/types/group_0955.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0955.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0955.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0955.py diff --git a/githubkit/versions/v2022_11_28/types/group_0956.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0956.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0956.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0956.py diff --git a/githubkit/versions/v2022_11_28/types/group_0957.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0957.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0957.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0957.py diff --git a/githubkit/versions/v2022_11_28/types/group_0958.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0958.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0958.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0958.py diff --git a/githubkit/versions/v2022_11_28/types/group_0959.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0959.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0959.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0959.py diff --git a/githubkit/versions/v2022_11_28/types/group_0960.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0960.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0960.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0960.py diff --git a/githubkit/versions/v2022_11_28/types/group_0961.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0961.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0961.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0961.py diff --git a/githubkit/versions/v2022_11_28/types/group_0962.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0962.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0962.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0962.py diff --git a/githubkit/versions/v2022_11_28/types/group_0963.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0963.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0963.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0963.py diff --git a/githubkit/versions/v2022_11_28/types/group_0964.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0964.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0964.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0964.py diff --git a/githubkit/versions/v2022_11_28/types/group_0965.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0965.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0965.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0965.py diff --git a/githubkit/versions/v2022_11_28/types/group_0966.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0966.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0966.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0966.py diff --git a/githubkit/versions/v2022_11_28/types/group_0967.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0967.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0967.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0967.py diff --git a/githubkit/versions/v2022_11_28/types/group_0968.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0968.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0968.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0968.py diff --git a/githubkit/versions/v2022_11_28/types/group_0969.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0969.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0969.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0969.py diff --git a/githubkit/versions/v2022_11_28/types/group_0970.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0970.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0970.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0970.py diff --git a/githubkit/versions/v2022_11_28/types/group_0971.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0971.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0971.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0971.py diff --git a/githubkit/versions/v2022_11_28/types/group_0972.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0972.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0972.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0972.py diff --git a/githubkit/versions/v2022_11_28/types/group_0973.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0973.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0973.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0973.py diff --git a/githubkit/versions/v2022_11_28/types/group_0974.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0974.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0974.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0974.py diff --git a/githubkit/versions/v2022_11_28/types/group_0975.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0975.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0975.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0975.py diff --git a/githubkit/versions/v2022_11_28/types/group_0976.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0976.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0976.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0976.py diff --git a/githubkit/versions/v2022_11_28/types/group_0977.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0977.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0977.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0977.py diff --git a/githubkit/versions/v2022_11_28/types/group_0978.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0978.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0978.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0978.py diff --git a/githubkit/versions/v2022_11_28/types/group_0979.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0979.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0979.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0979.py diff --git a/githubkit/versions/v2022_11_28/types/group_0980.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0980.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0980.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0980.py diff --git a/githubkit/versions/v2022_11_28/types/group_0981.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0981.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0981.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0981.py diff --git a/githubkit/versions/v2022_11_28/types/group_0982.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0982.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0982.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0982.py diff --git a/githubkit/versions/v2022_11_28/types/group_0983.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0983.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0983.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0983.py diff --git a/githubkit/versions/v2022_11_28/types/group_0984.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0984.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0984.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0984.py diff --git a/githubkit/versions/v2022_11_28/types/group_0985.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0985.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0985.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0985.py diff --git a/githubkit/versions/v2022_11_28/types/group_0986.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0986.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0986.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0986.py diff --git a/githubkit/versions/v2022_11_28/types/group_0987.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0987.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0987.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0987.py diff --git a/githubkit/versions/v2022_11_28/types/group_0988.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0988.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0988.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0988.py diff --git a/githubkit/versions/v2022_11_28/types/group_0989.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0989.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0989.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0989.py diff --git a/githubkit/versions/v2022_11_28/types/group_0990.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0990.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0990.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0990.py diff --git a/githubkit/versions/v2022_11_28/types/group_0991.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0991.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0991.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0991.py diff --git a/githubkit/versions/v2022_11_28/types/group_0992.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0992.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0992.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0992.py diff --git a/githubkit/versions/v2022_11_28/types/group_0993.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0993.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0993.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0993.py diff --git a/githubkit/versions/v2022_11_28/types/group_0994.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0994.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0994.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0994.py diff --git a/githubkit/versions/v2022_11_28/types/group_0995.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0995.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0995.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0995.py diff --git a/githubkit/versions/v2022_11_28/types/group_0996.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0996.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0996.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0996.py diff --git a/githubkit/versions/v2022_11_28/types/group_0997.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0997.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0997.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0997.py diff --git a/githubkit/versions/v2022_11_28/types/group_0998.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0998.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0998.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0998.py diff --git a/githubkit/versions/v2022_11_28/types/group_0999.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0999.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0999.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_0999.py diff --git a/githubkit/versions/v2022_11_28/types/group_1000.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1000.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1000.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1000.py diff --git a/githubkit/versions/v2022_11_28/types/group_1001.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1001.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1001.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1001.py diff --git a/githubkit/versions/v2022_11_28/types/group_1002.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1002.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1002.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1002.py diff --git a/githubkit/versions/v2022_11_28/types/group_1003.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1003.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1003.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1003.py diff --git a/githubkit/versions/v2022_11_28/types/group_1004.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1004.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1004.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1004.py diff --git a/githubkit/versions/v2022_11_28/types/group_1005.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1005.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1005.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1005.py diff --git a/githubkit/versions/v2022_11_28/types/group_1006.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1006.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1006.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1006.py diff --git a/githubkit/versions/v2022_11_28/types/group_1007.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1007.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1007.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1007.py diff --git a/githubkit/versions/v2022_11_28/types/group_1008.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1008.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1008.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1008.py diff --git a/githubkit/versions/v2022_11_28/types/group_1009.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1009.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1009.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1009.py diff --git a/githubkit/versions/v2022_11_28/types/group_1010.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1010.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1010.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1010.py diff --git a/githubkit/versions/v2022_11_28/types/group_1011.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1011.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1011.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1011.py diff --git a/githubkit/versions/v2022_11_28/types/group_1012.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1012.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1012.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1012.py diff --git a/githubkit/versions/v2022_11_28/types/group_1013.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1013.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1013.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1013.py diff --git a/githubkit/versions/v2022_11_28/types/group_1014.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1014.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1014.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1014.py diff --git a/githubkit/versions/v2022_11_28/types/group_1015.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1015.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1015.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1015.py diff --git a/githubkit/versions/v2022_11_28/types/group_1016.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1016.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1016.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1016.py diff --git a/githubkit/versions/v2022_11_28/types/group_1017.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1017.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1017.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1017.py diff --git a/githubkit/versions/v2022_11_28/types/group_1018.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1018.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1018.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1018.py diff --git a/githubkit/versions/v2022_11_28/types/group_1019.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1019.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1019.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1019.py diff --git a/githubkit/versions/v2022_11_28/types/group_1020.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1020.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1020.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1020.py diff --git a/githubkit/versions/v2022_11_28/types/group_1021.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1021.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1021.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1021.py diff --git a/githubkit/versions/v2022_11_28/types/group_1022.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1022.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1022.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1022.py diff --git a/githubkit/versions/v2022_11_28/types/group_1023.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1023.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1023.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1023.py diff --git a/githubkit/versions/v2022_11_28/types/group_1024.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1024.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1024.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1024.py diff --git a/githubkit/versions/v2022_11_28/types/group_1025.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1025.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1025.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1025.py diff --git a/githubkit/versions/v2022_11_28/types/group_1026.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1026.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1026.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1026.py diff --git a/githubkit/versions/v2022_11_28/types/group_1027.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1027.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1027.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1027.py diff --git a/githubkit/versions/v2022_11_28/types/group_1028.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1028.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1028.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1028.py diff --git a/githubkit/versions/v2022_11_28/types/group_1029.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1029.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1029.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1029.py diff --git a/githubkit/versions/v2022_11_28/types/group_1030.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1030.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1030.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1030.py diff --git a/githubkit/versions/v2022_11_28/types/group_1031.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1031.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1031.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1031.py diff --git a/githubkit/versions/v2022_11_28/types/group_1032.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1032.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1032.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1032.py diff --git a/githubkit/versions/v2022_11_28/types/group_1033.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1033.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1033.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1033.py diff --git a/githubkit/versions/v2022_11_28/types/group_1034.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1034.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1034.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1034.py diff --git a/githubkit/versions/v2022_11_28/types/group_1035.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1035.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1035.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1035.py diff --git a/githubkit/versions/v2022_11_28/types/group_1036.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1036.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1036.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1036.py diff --git a/githubkit/versions/v2022_11_28/types/group_1037.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1037.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1037.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1037.py diff --git a/githubkit/versions/v2022_11_28/types/group_1038.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1038.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1038.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1038.py diff --git a/githubkit/versions/v2022_11_28/types/group_1039.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1039.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1039.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1039.py diff --git a/githubkit/versions/v2022_11_28/types/group_1040.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1040.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1040.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1040.py diff --git a/githubkit/versions/v2022_11_28/types/group_1041.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1041.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1041.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1041.py diff --git a/githubkit/versions/v2022_11_28/types/group_1042.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1042.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1042.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1042.py diff --git a/githubkit/versions/v2022_11_28/types/group_1043.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1043.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1043.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1043.py diff --git a/githubkit/versions/v2022_11_28/types/group_1044.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1044.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1044.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1044.py diff --git a/githubkit/versions/v2022_11_28/types/group_1045.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1045.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1045.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1045.py diff --git a/githubkit/versions/v2022_11_28/types/group_1046.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1046.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1046.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1046.py diff --git a/githubkit/versions/v2022_11_28/types/group_1047.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1047.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1047.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1047.py diff --git a/githubkit/versions/v2022_11_28/types/group_1048.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1048.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1048.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1048.py diff --git a/githubkit/versions/v2022_11_28/types/group_1049.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1049.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1049.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1049.py diff --git a/githubkit/versions/v2022_11_28/types/group_1050.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1050.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1050.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1050.py diff --git a/githubkit/versions/v2022_11_28/types/group_1051.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1051.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1051.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1051.py diff --git a/githubkit/versions/v2022_11_28/types/group_1052.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1052.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1052.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1052.py diff --git a/githubkit/versions/v2022_11_28/types/group_1053.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1053.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1053.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1053.py diff --git a/githubkit/versions/v2022_11_28/types/group_1054.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1054.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1054.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1054.py diff --git a/githubkit/versions/v2022_11_28/types/group_1055.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1055.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1055.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1055.py diff --git a/githubkit/versions/v2022_11_28/types/group_1056.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1056.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1056.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1056.py diff --git a/githubkit/versions/v2022_11_28/types/group_1057.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1057.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1057.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1057.py diff --git a/githubkit/versions/v2022_11_28/types/group_1058.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1058.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1058.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1058.py diff --git a/githubkit/versions/v2022_11_28/types/group_1059.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1059.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1059.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1059.py diff --git a/githubkit/versions/v2022_11_28/types/group_1060.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1060.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1060.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1060.py diff --git a/githubkit/versions/v2022_11_28/types/group_1061.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1061.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1061.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1061.py diff --git a/githubkit/versions/v2022_11_28/types/group_1062.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1062.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1062.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1062.py diff --git a/githubkit/versions/v2022_11_28/types/group_1063.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1063.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1063.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1063.py diff --git a/githubkit/versions/v2022_11_28/types/group_1064.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1064.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1064.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1064.py diff --git a/githubkit/versions/v2022_11_28/types/group_1065.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1065.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1065.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1065.py diff --git a/githubkit/versions/v2022_11_28/types/group_1066.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1066.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1066.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1066.py diff --git a/githubkit/versions/v2022_11_28/types/group_1067.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1067.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1067.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1067.py diff --git a/githubkit/versions/v2022_11_28/types/group_1068.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1068.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1068.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1068.py diff --git a/githubkit/versions/v2022_11_28/types/group_1069.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1069.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1069.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1069.py diff --git a/githubkit/versions/v2022_11_28/types/group_1070.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1070.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1070.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1070.py diff --git a/githubkit/versions/v2022_11_28/types/group_1071.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1071.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1071.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1071.py diff --git a/githubkit/versions/v2022_11_28/types/group_1072.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1072.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1072.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1072.py diff --git a/githubkit/versions/v2022_11_28/types/group_1073.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1073.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1073.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1073.py diff --git a/githubkit/versions/v2022_11_28/types/group_1074.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1074.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1074.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1074.py diff --git a/githubkit/versions/v2022_11_28/types/group_1075.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1075.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1075.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1075.py diff --git a/githubkit/versions/v2022_11_28/types/group_1076.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1076.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1076.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1076.py diff --git a/githubkit/versions/v2022_11_28/types/group_1077.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1077.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1077.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1077.py diff --git a/githubkit/versions/v2022_11_28/types/group_1078.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1078.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1078.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1078.py diff --git a/githubkit/versions/v2022_11_28/types/group_1079.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1079.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1079.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1079.py diff --git a/githubkit/versions/v2022_11_28/types/group_1080.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1080.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1080.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1080.py diff --git a/githubkit/versions/v2022_11_28/types/group_1081.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1081.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1081.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1081.py diff --git a/githubkit/versions/v2022_11_28/types/group_1082.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1082.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1082.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1082.py diff --git a/githubkit/versions/v2022_11_28/types/group_1083.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1083.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1083.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1083.py diff --git a/githubkit/versions/v2022_11_28/types/group_1084.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1084.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1084.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1084.py diff --git a/githubkit/versions/v2022_11_28/types/group_1085.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1085.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1085.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1085.py diff --git a/githubkit/versions/v2022_11_28/types/group_1086.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1086.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1086.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1086.py diff --git a/githubkit/versions/v2022_11_28/types/group_1087.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1087.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1087.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1087.py diff --git a/githubkit/versions/v2022_11_28/types/group_1088.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1088.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1088.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1088.py diff --git a/githubkit/versions/v2022_11_28/types/group_1089.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1089.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1089.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1089.py diff --git a/githubkit/versions/v2022_11_28/types/group_1090.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1090.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1090.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1090.py diff --git a/githubkit/versions/v2022_11_28/types/group_1091.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1091.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1091.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1091.py diff --git a/githubkit/versions/v2022_11_28/types/group_1092.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1092.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1092.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1092.py diff --git a/githubkit/versions/v2022_11_28/types/group_1093.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1093.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1093.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1093.py diff --git a/githubkit/versions/v2022_11_28/types/group_1094.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1094.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1094.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1094.py diff --git a/githubkit/versions/v2022_11_28/types/group_1095.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1095.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1095.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1095.py diff --git a/githubkit/versions/v2022_11_28/types/group_1096.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1096.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1096.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1096.py diff --git a/githubkit/versions/v2022_11_28/types/group_1097.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1097.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1097.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1097.py diff --git a/githubkit/versions/v2022_11_28/types/group_1098.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1098.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1098.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1098.py diff --git a/githubkit/versions/v2022_11_28/types/group_1099.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1099.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1099.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1099.py diff --git a/githubkit/versions/v2022_11_28/types/group_1100.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1100.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1100.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1100.py diff --git a/githubkit/versions/v2022_11_28/types/group_1101.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1101.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1101.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1101.py diff --git a/githubkit/versions/v2022_11_28/types/group_1102.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1102.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1102.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1102.py diff --git a/githubkit/versions/v2022_11_28/types/group_1103.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1103.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1103.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1103.py diff --git a/githubkit/versions/v2022_11_28/types/group_1104.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1104.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1104.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1104.py diff --git a/githubkit/versions/v2022_11_28/types/group_1105.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1105.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1105.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1105.py diff --git a/githubkit/versions/v2022_11_28/types/group_1106.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1106.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1106.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1106.py diff --git a/githubkit/versions/v2022_11_28/types/group_1107.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1107.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1107.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1107.py diff --git a/githubkit/versions/v2022_11_28/types/group_1108.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1108.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1108.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1108.py diff --git a/githubkit/versions/v2022_11_28/types/group_1109.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1109.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1109.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1109.py diff --git a/githubkit/versions/v2022_11_28/types/group_1110.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1110.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1110.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1110.py diff --git a/githubkit/versions/v2022_11_28/types/group_1111.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1111.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1111.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1111.py diff --git a/githubkit/versions/v2022_11_28/types/group_1112.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1112.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1112.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1112.py diff --git a/githubkit/versions/v2022_11_28/types/group_1113.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1113.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1113.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1113.py diff --git a/githubkit/versions/v2022_11_28/types/group_1114.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1114.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1114.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1114.py diff --git a/githubkit/versions/v2022_11_28/types/group_1115.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1115.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1115.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1115.py diff --git a/githubkit/versions/v2022_11_28/types/group_1116.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1116.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1116.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1116.py diff --git a/githubkit/versions/v2022_11_28/types/group_1117.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1117.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1117.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1117.py diff --git a/githubkit/versions/v2022_11_28/types/group_1118.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1118.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1118.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1118.py diff --git a/githubkit/versions/v2022_11_28/types/group_1119.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1119.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1119.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1119.py diff --git a/githubkit/versions/v2022_11_28/types/group_1120.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1120.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1120.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1120.py diff --git a/githubkit/versions/v2022_11_28/types/group_1121.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1121.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1121.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1121.py diff --git a/githubkit/versions/v2022_11_28/types/group_1122.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1122.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1122.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1122.py diff --git a/githubkit/versions/v2022_11_28/types/group_1123.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1123.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1123.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1123.py diff --git a/githubkit/versions/v2022_11_28/types/group_1124.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1124.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1124.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1124.py diff --git a/githubkit/versions/v2022_11_28/types/group_1125.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1125.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1125.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1125.py diff --git a/githubkit/versions/v2022_11_28/types/group_1126.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1126.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1126.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1126.py diff --git a/githubkit/versions/v2022_11_28/types/group_1127.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1127.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1127.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1127.py diff --git a/githubkit/versions/v2022_11_28/types/group_1128.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1128.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1128.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1128.py diff --git a/githubkit/versions/v2022_11_28/types/group_1129.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1129.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1129.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1129.py diff --git a/githubkit/versions/v2022_11_28/types/group_1130.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1130.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1130.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1130.py diff --git a/githubkit/versions/v2022_11_28/types/group_1131.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1131.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1131.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1131.py diff --git a/githubkit/versions/v2022_11_28/types/group_1132.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1132.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1132.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1132.py diff --git a/githubkit/versions/v2022_11_28/types/group_1133.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1133.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1133.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1133.py diff --git a/githubkit/versions/v2022_11_28/types/group_1134.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1134.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1134.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1134.py diff --git a/githubkit/versions/v2022_11_28/types/group_1135.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1135.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1135.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1135.py diff --git a/githubkit/versions/v2022_11_28/types/group_1136.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1136.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1136.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1136.py diff --git a/githubkit/versions/v2022_11_28/types/group_1137.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1137.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1137.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1137.py diff --git a/githubkit/versions/v2022_11_28/types/group_1138.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1138.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1138.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1138.py diff --git a/githubkit/versions/v2022_11_28/types/group_1139.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1139.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1139.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1139.py diff --git a/githubkit/versions/v2022_11_28/types/group_1140.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1140.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1140.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1140.py diff --git a/githubkit/versions/v2022_11_28/types/group_1141.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1141.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1141.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1141.py diff --git a/githubkit/versions/v2022_11_28/types/group_1142.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1142.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1142.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1142.py diff --git a/githubkit/versions/v2022_11_28/types/group_1143.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1143.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1143.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1143.py diff --git a/githubkit/versions/v2022_11_28/types/group_1144.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1144.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1144.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1144.py diff --git a/githubkit/versions/v2022_11_28/types/group_1145.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1145.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1145.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1145.py diff --git a/githubkit/versions/v2022_11_28/types/group_1146.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1146.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1146.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1146.py diff --git a/githubkit/versions/v2022_11_28/types/group_1147.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1147.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1147.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1147.py diff --git a/githubkit/versions/v2022_11_28/types/group_1148.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1148.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1148.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1148.py diff --git a/githubkit/versions/v2022_11_28/types/group_1149.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1149.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1149.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1149.py diff --git a/githubkit/versions/v2022_11_28/types/group_1150.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1150.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1150.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1150.py diff --git a/githubkit/versions/v2022_11_28/types/group_1151.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1151.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1151.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1151.py diff --git a/githubkit/versions/v2022_11_28/types/group_1152.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1152.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1152.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1152.py diff --git a/githubkit/versions/v2022_11_28/types/group_1153.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1153.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1153.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1153.py diff --git a/githubkit/versions/v2022_11_28/types/group_1154.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1154.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1154.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1154.py diff --git a/githubkit/versions/v2022_11_28/types/group_1155.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1155.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1155.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1155.py diff --git a/githubkit/versions/v2022_11_28/types/group_1156.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1156.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1156.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1156.py diff --git a/githubkit/versions/v2022_11_28/types/group_1157.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1157.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1157.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1157.py diff --git a/githubkit/versions/v2022_11_28/types/group_1158.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1158.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1158.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1158.py diff --git a/githubkit/versions/v2022_11_28/types/group_1159.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1159.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1159.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1159.py diff --git a/githubkit/versions/v2022_11_28/types/group_1160.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1160.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1160.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1160.py diff --git a/githubkit/versions/v2022_11_28/types/group_1161.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1161.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1161.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1161.py diff --git a/githubkit/versions/v2022_11_28/types/group_1162.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1162.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1162.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1162.py diff --git a/githubkit/versions/v2022_11_28/types/group_1163.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1163.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1163.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1163.py diff --git a/githubkit/versions/v2022_11_28/types/group_1164.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1164.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1164.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1164.py diff --git a/githubkit/versions/v2022_11_28/types/group_1165.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1165.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1165.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1165.py diff --git a/githubkit/versions/v2022_11_28/types/group_1166.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1166.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1166.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1166.py diff --git a/githubkit/versions/v2022_11_28/types/group_1167.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1167.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1167.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1167.py diff --git a/githubkit/versions/v2022_11_28/types/group_1168.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1168.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1168.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1168.py diff --git a/githubkit/versions/v2022_11_28/types/group_1169.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1169.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1169.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1169.py diff --git a/githubkit/versions/v2022_11_28/types/group_1170.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1170.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1170.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1170.py diff --git a/githubkit/versions/v2022_11_28/types/group_1171.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1171.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1171.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1171.py diff --git a/githubkit/versions/v2022_11_28/types/group_1172.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1172.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1172.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1172.py diff --git a/githubkit/versions/v2022_11_28/types/group_1173.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1173.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1173.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1173.py diff --git a/githubkit/versions/v2022_11_28/types/group_1174.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1174.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1174.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1174.py diff --git a/githubkit/versions/v2022_11_28/types/group_1175.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1175.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1175.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1175.py diff --git a/githubkit/versions/v2022_11_28/types/group_1176.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1176.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1176.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1176.py diff --git a/githubkit/versions/v2022_11_28/types/group_1177.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1177.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1177.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1177.py diff --git a/githubkit/versions/v2022_11_28/types/group_1178.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1178.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1178.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1178.py diff --git a/githubkit/versions/v2022_11_28/types/group_1179.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1179.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1179.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1179.py diff --git a/githubkit/versions/v2022_11_28/types/group_1180.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1180.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1180.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1180.py diff --git a/githubkit/versions/v2022_11_28/types/group_1181.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1181.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1181.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1181.py diff --git a/githubkit/versions/v2022_11_28/types/group_1182.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1182.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1182.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1182.py diff --git a/githubkit/versions/v2022_11_28/types/group_1183.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1183.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1183.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1183.py diff --git a/githubkit/versions/v2022_11_28/types/group_1184.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1184.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1184.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1184.py diff --git a/githubkit/versions/v2022_11_28/types/group_1185.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1185.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1185.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1185.py diff --git a/githubkit/versions/v2022_11_28/types/group_1186.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1186.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1186.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1186.py diff --git a/githubkit/versions/v2022_11_28/types/group_1187.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1187.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1187.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1187.py diff --git a/githubkit/versions/v2022_11_28/types/group_1188.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1188.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1188.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1188.py diff --git a/githubkit/versions/v2022_11_28/types/group_1189.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1189.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1189.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1189.py diff --git a/githubkit/versions/v2022_11_28/types/group_1190.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1190.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1190.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1190.py diff --git a/githubkit/versions/v2022_11_28/types/group_1191.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1191.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1191.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1191.py diff --git a/githubkit/versions/v2022_11_28/types/group_1192.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1192.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1192.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1192.py diff --git a/githubkit/versions/v2022_11_28/types/group_1193.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1193.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1193.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1193.py diff --git a/githubkit/versions/v2022_11_28/types/group_1194.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1194.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1194.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1194.py diff --git a/githubkit/versions/v2022_11_28/types/group_1195.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1195.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1195.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1195.py diff --git a/githubkit/versions/v2022_11_28/types/group_1196.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1196.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1196.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1196.py diff --git a/githubkit/versions/v2022_11_28/types/group_1197.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1197.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1197.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1197.py diff --git a/githubkit/versions/v2022_11_28/types/group_1198.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1198.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1198.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1198.py diff --git a/githubkit/versions/v2022_11_28/types/group_1199.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1199.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1199.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1199.py diff --git a/githubkit/versions/v2022_11_28/types/group_1200.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1200.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1200.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1200.py diff --git a/githubkit/versions/v2022_11_28/types/group_1201.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1201.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1201.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1201.py diff --git a/githubkit/versions/v2022_11_28/types/group_1202.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1202.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1202.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1202.py diff --git a/githubkit/versions/v2022_11_28/types/group_1203.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1203.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1203.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1203.py diff --git a/githubkit/versions/v2022_11_28/types/group_1204.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1204.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1204.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1204.py diff --git a/githubkit/versions/v2022_11_28/types/group_1205.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1205.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1205.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1205.py diff --git a/githubkit/versions/v2022_11_28/types/group_1206.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1206.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1206.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1206.py diff --git a/githubkit/versions/v2022_11_28/types/group_1207.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1207.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1207.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1207.py diff --git a/githubkit/versions/v2022_11_28/types/group_1208.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1208.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1208.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1208.py diff --git a/githubkit/versions/v2022_11_28/types/group_1209.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1209.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1209.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1209.py diff --git a/githubkit/versions/v2022_11_28/types/group_1210.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1210.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1210.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1210.py diff --git a/githubkit/versions/v2022_11_28/types/group_1211.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1211.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1211.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1211.py diff --git a/githubkit/versions/v2022_11_28/types/group_1212.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1212.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1212.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1212.py diff --git a/githubkit/versions/v2022_11_28/types/group_1213.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1213.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1213.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1213.py diff --git a/githubkit/versions/v2022_11_28/types/group_1214.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1214.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1214.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1214.py diff --git a/githubkit/versions/v2022_11_28/types/group_1215.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1215.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1215.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1215.py diff --git a/githubkit/versions/v2022_11_28/types/group_1216.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1216.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1216.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1216.py diff --git a/githubkit/versions/v2022_11_28/types/group_1217.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1217.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1217.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1217.py diff --git a/githubkit/versions/v2022_11_28/types/group_1218.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1218.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1218.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1218.py diff --git a/githubkit/versions/v2022_11_28/types/group_1219.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1219.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1219.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1219.py diff --git a/githubkit/versions/v2022_11_28/types/group_1220.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1220.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1220.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1220.py diff --git a/githubkit/versions/v2022_11_28/types/group_1221.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1221.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1221.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1221.py diff --git a/githubkit/versions/v2022_11_28/types/group_1222.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1222.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1222.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1222.py diff --git a/githubkit/versions/v2022_11_28/types/group_1223.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1223.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1223.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1223.py diff --git a/githubkit/versions/v2022_11_28/types/group_1224.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1224.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1224.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1224.py diff --git a/githubkit/versions/v2022_11_28/types/group_1225.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1225.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1225.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1225.py diff --git a/githubkit/versions/v2022_11_28/types/group_1226.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1226.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1226.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1226.py diff --git a/githubkit/versions/v2022_11_28/types/group_1227.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1227.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1227.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1227.py diff --git a/githubkit/versions/v2022_11_28/types/group_1228.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1228.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1228.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1228.py diff --git a/githubkit/versions/v2022_11_28/types/group_1229.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1229.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1229.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1229.py diff --git a/githubkit/versions/v2022_11_28/types/group_1230.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1230.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1230.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1230.py diff --git a/githubkit/versions/v2022_11_28/types/group_1231.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1231.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1231.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1231.py diff --git a/githubkit/versions/v2022_11_28/types/group_1232.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1232.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1232.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1232.py diff --git a/githubkit/versions/v2022_11_28/types/group_1233.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1233.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1233.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1233.py diff --git a/githubkit/versions/v2022_11_28/types/group_1234.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1234.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1234.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1234.py diff --git a/githubkit/versions/v2022_11_28/types/group_1235.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1235.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1235.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1235.py diff --git a/githubkit/versions/v2022_11_28/types/group_1236.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1236.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1236.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1236.py diff --git a/githubkit/versions/v2022_11_28/types/group_1237.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1237.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1237.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1237.py diff --git a/githubkit/versions/v2022_11_28/types/group_1238.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1238.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1238.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1238.py diff --git a/githubkit/versions/v2022_11_28/types/group_1239.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1239.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1239.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1239.py diff --git a/githubkit/versions/v2022_11_28/types/group_1240.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1240.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1240.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1240.py diff --git a/githubkit/versions/v2022_11_28/types/group_1241.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1241.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1241.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1241.py diff --git a/githubkit/versions/v2022_11_28/types/group_1242.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1242.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1242.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1242.py diff --git a/githubkit/versions/v2022_11_28/types/group_1243.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1243.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1243.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1243.py diff --git a/githubkit/versions/v2022_11_28/types/group_1244.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1244.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1244.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1244.py diff --git a/githubkit/versions/v2022_11_28/types/group_1245.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1245.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1245.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1245.py diff --git a/githubkit/versions/v2022_11_28/types/group_1246.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1246.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1246.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1246.py diff --git a/githubkit/versions/v2022_11_28/types/group_1247.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1247.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1247.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1247.py diff --git a/githubkit/versions/v2022_11_28/types/group_1248.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1248.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1248.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1248.py diff --git a/githubkit/versions/v2022_11_28/types/group_1249.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1249.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1249.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1249.py diff --git a/githubkit/versions/v2022_11_28/types/group_1250.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1250.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1250.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1250.py diff --git a/githubkit/versions/v2022_11_28/types/group_1251.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1251.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1251.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1251.py diff --git a/githubkit/versions/v2022_11_28/types/group_1252.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1252.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1252.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1252.py diff --git a/githubkit/versions/v2022_11_28/types/group_1253.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1253.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1253.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1253.py diff --git a/githubkit/versions/v2022_11_28/types/group_1254.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1254.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1254.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1254.py diff --git a/githubkit/versions/v2022_11_28/types/group_1255.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1255.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1255.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1255.py diff --git a/githubkit/versions/v2022_11_28/types/group_1256.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1256.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1256.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1256.py diff --git a/githubkit/versions/v2022_11_28/types/group_1257.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1257.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1257.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1257.py diff --git a/githubkit/versions/v2022_11_28/types/group_1258.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1258.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1258.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1258.py diff --git a/githubkit/versions/v2022_11_28/types/group_1259.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1259.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1259.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1259.py diff --git a/githubkit/versions/v2022_11_28/types/group_1260.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1260.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1260.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1260.py diff --git a/githubkit/versions/v2022_11_28/types/group_1261.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1261.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1261.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1261.py diff --git a/githubkit/versions/v2022_11_28/types/group_1262.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1262.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1262.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1262.py diff --git a/githubkit/versions/v2022_11_28/types/group_1263.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1263.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1263.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1263.py diff --git a/githubkit/versions/v2022_11_28/types/group_1264.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1264.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1264.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1264.py diff --git a/githubkit/versions/v2022_11_28/types/group_1265.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1265.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1265.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1265.py diff --git a/githubkit/versions/v2022_11_28/types/group_1266.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1266.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1266.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1266.py diff --git a/githubkit/versions/v2022_11_28/types/group_1267.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1267.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1267.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1267.py diff --git a/githubkit/versions/v2022_11_28/types/group_1268.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1268.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1268.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1268.py diff --git a/githubkit/versions/v2022_11_28/types/group_1269.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1269.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1269.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1269.py diff --git a/githubkit/versions/v2022_11_28/types/group_1270.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1270.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1270.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1270.py diff --git a/githubkit/versions/v2022_11_28/types/group_1271.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1271.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1271.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1271.py diff --git a/githubkit/versions/v2022_11_28/types/group_1272.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1272.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1272.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1272.py diff --git a/githubkit/versions/v2022_11_28/types/group_1273.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1273.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1273.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1273.py diff --git a/githubkit/versions/v2022_11_28/types/group_1274.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1274.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1274.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1274.py diff --git a/githubkit/versions/v2022_11_28/types/group_1275.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1275.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1275.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1275.py diff --git a/githubkit/versions/v2022_11_28/types/group_1276.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1276.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1276.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1276.py diff --git a/githubkit/versions/v2022_11_28/types/group_1277.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1277.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1277.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1277.py diff --git a/githubkit/versions/v2022_11_28/types/group_1278.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1278.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1278.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1278.py diff --git a/githubkit/versions/v2022_11_28/types/group_1279.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1279.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1279.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1279.py diff --git a/githubkit/versions/v2022_11_28/types/group_1280.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1280.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1280.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1280.py diff --git a/githubkit/versions/v2022_11_28/types/group_1281.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1281.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1281.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1281.py diff --git a/githubkit/versions/v2022_11_28/types/group_1282.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1282.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1282.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1282.py diff --git a/githubkit/versions/v2022_11_28/types/group_1283.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1283.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1283.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1283.py diff --git a/githubkit/versions/v2022_11_28/types/group_1284.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1284.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1284.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1284.py diff --git a/githubkit/versions/v2022_11_28/types/group_1285.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1285.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1285.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1285.py diff --git a/githubkit/versions/v2022_11_28/types/group_1286.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1286.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1286.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1286.py diff --git a/githubkit/versions/v2022_11_28/types/group_1287.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1287.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1287.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1287.py diff --git a/githubkit/versions/v2022_11_28/types/group_1288.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1288.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1288.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1288.py diff --git a/githubkit/versions/v2022_11_28/types/group_1289.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1289.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1289.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1289.py diff --git a/githubkit/versions/v2022_11_28/types/group_1290.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1290.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1290.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1290.py diff --git a/githubkit/versions/v2022_11_28/types/group_1291.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1291.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1291.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1291.py diff --git a/githubkit/versions/v2022_11_28/types/group_1292.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1292.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1292.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1292.py diff --git a/githubkit/versions/v2022_11_28/types/group_1293.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1293.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1293.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1293.py diff --git a/githubkit/versions/v2022_11_28/types/group_1294.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1294.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1294.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1294.py diff --git a/githubkit/versions/v2022_11_28/types/group_1295.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1295.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1295.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1295.py diff --git a/githubkit/versions/v2022_11_28/types/group_1296.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1296.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1296.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1296.py diff --git a/githubkit/versions/v2022_11_28/types/group_1297.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1297.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1297.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1297.py diff --git a/githubkit/versions/v2022_11_28/types/group_1298.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1298.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1298.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1298.py diff --git a/githubkit/versions/v2022_11_28/types/group_1299.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1299.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1299.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1299.py diff --git a/githubkit/versions/v2022_11_28/types/group_1300.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1300.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1300.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1300.py diff --git a/githubkit/versions/v2022_11_28/types/group_1301.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1301.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1301.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1301.py diff --git a/githubkit/versions/v2022_11_28/types/group_1302.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1302.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1302.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1302.py diff --git a/githubkit/versions/v2022_11_28/types/group_1303.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1303.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1303.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1303.py diff --git a/githubkit/versions/v2022_11_28/types/group_1304.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1304.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1304.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1304.py diff --git a/githubkit/versions/v2022_11_28/types/group_1305.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1305.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1305.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1305.py diff --git a/githubkit/versions/v2022_11_28/types/group_1306.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1306.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1306.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1306.py diff --git a/githubkit/versions/v2022_11_28/types/group_1307.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1307.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1307.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1307.py diff --git a/githubkit/versions/v2022_11_28/types/group_1308.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1308.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1308.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1308.py diff --git a/githubkit/versions/v2022_11_28/types/group_1309.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1309.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1309.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1309.py diff --git a/githubkit/versions/v2022_11_28/types/group_1310.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1310.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1310.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1310.py diff --git a/githubkit/versions/v2022_11_28/types/group_1311.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1311.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1311.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1311.py diff --git a/githubkit/versions/v2022_11_28/types/group_1312.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1312.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1312.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1312.py diff --git a/githubkit/versions/v2022_11_28/types/group_1313.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1313.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1313.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1313.py diff --git a/githubkit/versions/v2022_11_28/types/group_1314.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1314.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1314.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1314.py diff --git a/githubkit/versions/v2022_11_28/types/group_1315.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1315.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1315.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1315.py diff --git a/githubkit/versions/v2022_11_28/types/group_1316.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1316.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1316.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1316.py diff --git a/githubkit/versions/v2022_11_28/types/group_1317.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1317.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1317.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1317.py diff --git a/githubkit/versions/v2022_11_28/types/group_1318.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1318.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1318.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1318.py diff --git a/githubkit/versions/v2022_11_28/types/group_1319.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1319.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1319.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1319.py diff --git a/githubkit/versions/v2022_11_28/types/group_1320.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1320.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1320.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1320.py diff --git a/githubkit/versions/v2022_11_28/types/group_1321.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1321.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1321.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1321.py diff --git a/githubkit/versions/v2022_11_28/types/group_1322.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1322.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1322.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1322.py diff --git a/githubkit/versions/v2022_11_28/types/group_1323.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1323.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1323.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1323.py diff --git a/githubkit/versions/v2022_11_28/types/group_1324.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1324.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1324.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1324.py diff --git a/githubkit/versions/v2022_11_28/types/group_1325.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1325.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1325.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1325.py diff --git a/githubkit/versions/v2022_11_28/types/group_1326.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1326.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1326.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1326.py diff --git a/githubkit/versions/v2022_11_28/types/group_1327.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1327.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1327.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1327.py diff --git a/githubkit/versions/v2022_11_28/types/group_1328.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1328.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1328.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1328.py diff --git a/githubkit/versions/v2022_11_28/types/group_1329.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1329.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1329.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1329.py diff --git a/githubkit/versions/v2022_11_28/types/group_1330.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1330.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1330.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1330.py diff --git a/githubkit/versions/v2022_11_28/types/group_1331.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1331.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1331.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1331.py diff --git a/githubkit/versions/v2022_11_28/types/group_1332.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1332.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1332.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1332.py diff --git a/githubkit/versions/v2022_11_28/types/group_1333.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1333.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1333.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1333.py diff --git a/githubkit/versions/v2022_11_28/types/group_1334.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1334.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1334.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1334.py diff --git a/githubkit/versions/v2022_11_28/types/group_1335.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1335.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1335.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1335.py diff --git a/githubkit/versions/v2022_11_28/types/group_1336.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1336.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1336.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1336.py diff --git a/githubkit/versions/v2022_11_28/types/group_1337.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1337.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1337.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1337.py diff --git a/githubkit/versions/v2022_11_28/types/group_1338.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1338.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1338.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1338.py diff --git a/githubkit/versions/v2022_11_28/types/group_1339.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1339.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1339.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1339.py diff --git a/githubkit/versions/v2022_11_28/types/group_1340.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1340.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1340.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1340.py diff --git a/githubkit/versions/v2022_11_28/types/group_1341.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1341.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1341.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1341.py diff --git a/githubkit/versions/v2022_11_28/types/group_1342.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1342.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1342.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1342.py diff --git a/githubkit/versions/v2022_11_28/types/group_1343.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1343.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1343.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1343.py diff --git a/githubkit/versions/v2022_11_28/types/group_1344.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1344.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1344.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1344.py diff --git a/githubkit/versions/v2022_11_28/types/group_1345.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1345.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1345.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1345.py diff --git a/githubkit/versions/v2022_11_28/types/group_1346.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1346.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1346.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1346.py diff --git a/githubkit/versions/v2022_11_28/types/group_1347.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1347.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1347.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1347.py diff --git a/githubkit/versions/v2022_11_28/types/group_1348.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1348.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1348.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1348.py diff --git a/githubkit/versions/v2022_11_28/types/group_1349.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1349.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1349.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1349.py diff --git a/githubkit/versions/v2022_11_28/types/group_1350.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1350.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1350.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1350.py diff --git a/githubkit/versions/v2022_11_28/types/group_1351.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1351.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_1351.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/types/group_1351.py diff --git a/githubkit/versions/v2022_11_28/webhooks/__init__.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/webhooks/__init__.py similarity index 99% rename from githubkit/versions/v2022_11_28/webhooks/__init__.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/webhooks/__init__.py index 71a7c78dd1..9118dbb5db 100644 --- a/githubkit/versions/v2022_11_28/webhooks/__init__.py +++ b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/webhooks/__init__.py @@ -9,7 +9,7 @@ from typing import TYPE_CHECKING -from githubkit.lazy_module import is_lazy_disabled +from githubkit.module_hooks.lazy_module import is_lazy_disabled if TYPE_CHECKING or is_lazy_disabled(): from ._namespace import VALID_EVENT_NAMES as VALID_EVENT_NAMES diff --git a/githubkit/versions/v2022_11_28/webhooks/_namespace.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/webhooks/_namespace.py similarity index 100% rename from githubkit/versions/v2022_11_28/webhooks/_namespace.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/webhooks/_namespace.py diff --git a/githubkit/versions/v2022_11_28/webhooks/_types.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/webhooks/_types.py similarity index 100% rename from githubkit/versions/v2022_11_28/webhooks/_types.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/webhooks/_types.py diff --git a/githubkit/versions/ghec_v2022_11_28/webhooks/branch_protection_configuration.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/webhooks/branch_protection_configuration.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/webhooks/branch_protection_configuration.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/webhooks/branch_protection_configuration.py diff --git a/githubkit/versions/ghec_v2022_11_28/webhooks/branch_protection_rule.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/webhooks/branch_protection_rule.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/webhooks/branch_protection_rule.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/webhooks/branch_protection_rule.py diff --git a/githubkit/versions/ghec_v2022_11_28/webhooks/check_run.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/webhooks/check_run.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/webhooks/check_run.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/webhooks/check_run.py diff --git a/githubkit/versions/ghec_v2022_11_28/webhooks/check_suite.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/webhooks/check_suite.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/webhooks/check_suite.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/webhooks/check_suite.py diff --git a/githubkit/versions/ghec_v2022_11_28/webhooks/code_scanning_alert.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/webhooks/code_scanning_alert.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/webhooks/code_scanning_alert.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/webhooks/code_scanning_alert.py diff --git a/githubkit/versions/ghec_v2022_11_28/webhooks/commit_comment.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/webhooks/commit_comment.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/webhooks/commit_comment.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/webhooks/commit_comment.py diff --git a/githubkit/versions/ghec_v2022_11_28/webhooks/create.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/webhooks/create.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/webhooks/create.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/webhooks/create.py diff --git a/githubkit/versions/ghec_v2022_11_28/webhooks/custom_property.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/webhooks/custom_property.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/webhooks/custom_property.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/webhooks/custom_property.py diff --git a/githubkit/versions/ghec_v2022_11_28/webhooks/custom_property_values.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/webhooks/custom_property_values.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/webhooks/custom_property_values.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/webhooks/custom_property_values.py diff --git a/githubkit/versions/ghec_v2022_11_28/webhooks/delete.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/webhooks/delete.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/webhooks/delete.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/webhooks/delete.py diff --git a/githubkit/versions/ghec_v2022_11_28/webhooks/dependabot_alert.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/webhooks/dependabot_alert.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/webhooks/dependabot_alert.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/webhooks/dependabot_alert.py diff --git a/githubkit/versions/ghec_v2022_11_28/webhooks/deploy_key.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/webhooks/deploy_key.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/webhooks/deploy_key.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/webhooks/deploy_key.py diff --git a/githubkit/versions/ghec_v2022_11_28/webhooks/deployment.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/webhooks/deployment.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/webhooks/deployment.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/webhooks/deployment.py diff --git a/githubkit/versions/ghec_v2022_11_28/webhooks/deployment_protection_rule.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/webhooks/deployment_protection_rule.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/webhooks/deployment_protection_rule.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/webhooks/deployment_protection_rule.py diff --git a/githubkit/versions/ghec_v2022_11_28/webhooks/deployment_review.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/webhooks/deployment_review.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/webhooks/deployment_review.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/webhooks/deployment_review.py diff --git a/githubkit/versions/ghec_v2022_11_28/webhooks/deployment_status.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/webhooks/deployment_status.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/webhooks/deployment_status.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/webhooks/deployment_status.py diff --git a/githubkit/versions/ghec_v2022_11_28/webhooks/discussion.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/webhooks/discussion.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/webhooks/discussion.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/webhooks/discussion.py diff --git a/githubkit/versions/ghec_v2022_11_28/webhooks/discussion_comment.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/webhooks/discussion_comment.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/webhooks/discussion_comment.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/webhooks/discussion_comment.py diff --git a/githubkit/versions/ghec_v2022_11_28/webhooks/fork.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/webhooks/fork.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/webhooks/fork.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/webhooks/fork.py diff --git a/githubkit/versions/ghec_v2022_11_28/webhooks/github_app_authorization.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/webhooks/github_app_authorization.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/webhooks/github_app_authorization.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/webhooks/github_app_authorization.py diff --git a/githubkit/versions/ghec_v2022_11_28/webhooks/gollum.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/webhooks/gollum.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/webhooks/gollum.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/webhooks/gollum.py diff --git a/githubkit/versions/ghec_v2022_11_28/webhooks/installation.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/webhooks/installation.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/webhooks/installation.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/webhooks/installation.py diff --git a/githubkit/versions/ghec_v2022_11_28/webhooks/installation_repositories.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/webhooks/installation_repositories.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/webhooks/installation_repositories.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/webhooks/installation_repositories.py diff --git a/githubkit/versions/ghec_v2022_11_28/webhooks/installation_target.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/webhooks/installation_target.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/webhooks/installation_target.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/webhooks/installation_target.py diff --git a/githubkit/versions/ghec_v2022_11_28/webhooks/issue_comment.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/webhooks/issue_comment.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/webhooks/issue_comment.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/webhooks/issue_comment.py diff --git a/githubkit/versions/ghec_v2022_11_28/webhooks/issue_dependencies.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/webhooks/issue_dependencies.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/webhooks/issue_dependencies.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/webhooks/issue_dependencies.py diff --git a/githubkit/versions/ghec_v2022_11_28/webhooks/issues.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/webhooks/issues.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/webhooks/issues.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/webhooks/issues.py diff --git a/githubkit/versions/ghec_v2022_11_28/webhooks/label.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/webhooks/label.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/webhooks/label.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/webhooks/label.py diff --git a/githubkit/versions/ghec_v2022_11_28/webhooks/marketplace_purchase.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/webhooks/marketplace_purchase.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/webhooks/marketplace_purchase.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/webhooks/marketplace_purchase.py diff --git a/githubkit/versions/ghec_v2022_11_28/webhooks/member.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/webhooks/member.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/webhooks/member.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/webhooks/member.py diff --git a/githubkit/versions/ghec_v2022_11_28/webhooks/membership.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/webhooks/membership.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/webhooks/membership.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/webhooks/membership.py diff --git a/githubkit/versions/ghec_v2022_11_28/webhooks/merge_group.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/webhooks/merge_group.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/webhooks/merge_group.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/webhooks/merge_group.py diff --git a/githubkit/versions/ghec_v2022_11_28/webhooks/meta.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/webhooks/meta.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/webhooks/meta.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/webhooks/meta.py diff --git a/githubkit/versions/ghec_v2022_11_28/webhooks/milestone.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/webhooks/milestone.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/webhooks/milestone.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/webhooks/milestone.py diff --git a/githubkit/versions/ghec_v2022_11_28/webhooks/org_block.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/webhooks/org_block.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/webhooks/org_block.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/webhooks/org_block.py diff --git a/githubkit/versions/ghec_v2022_11_28/webhooks/organization.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/webhooks/organization.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/webhooks/organization.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/webhooks/organization.py diff --git a/githubkit/versions/ghec_v2022_11_28/webhooks/package.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/webhooks/package.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/webhooks/package.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/webhooks/package.py diff --git a/githubkit/versions/ghec_v2022_11_28/webhooks/page_build.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/webhooks/page_build.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/webhooks/page_build.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/webhooks/page_build.py diff --git a/githubkit/versions/ghec_v2022_11_28/webhooks/personal_access_token_request.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/webhooks/personal_access_token_request.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/webhooks/personal_access_token_request.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/webhooks/personal_access_token_request.py diff --git a/githubkit/versions/ghec_v2022_11_28/webhooks/ping.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/webhooks/ping.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/webhooks/ping.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/webhooks/ping.py diff --git a/githubkit/versions/ghec_v2022_11_28/webhooks/project.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/webhooks/project.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/webhooks/project.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/webhooks/project.py diff --git a/githubkit/versions/ghec_v2022_11_28/webhooks/project_card.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/webhooks/project_card.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/webhooks/project_card.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/webhooks/project_card.py diff --git a/githubkit/versions/ghec_v2022_11_28/webhooks/project_column.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/webhooks/project_column.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/webhooks/project_column.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/webhooks/project_column.py diff --git a/githubkit/versions/ghec_v2022_11_28/webhooks/projects_v2.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/webhooks/projects_v2.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/webhooks/projects_v2.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/webhooks/projects_v2.py diff --git a/githubkit/versions/ghec_v2022_11_28/webhooks/projects_v2_item.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/webhooks/projects_v2_item.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/webhooks/projects_v2_item.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/webhooks/projects_v2_item.py diff --git a/githubkit/versions/ghec_v2022_11_28/webhooks/projects_v2_status_update.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/webhooks/projects_v2_status_update.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/webhooks/projects_v2_status_update.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/webhooks/projects_v2_status_update.py diff --git a/githubkit/versions/ghec_v2022_11_28/webhooks/public.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/webhooks/public.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/webhooks/public.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/webhooks/public.py diff --git a/githubkit/versions/ghec_v2022_11_28/webhooks/pull_request.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/webhooks/pull_request.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/webhooks/pull_request.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/webhooks/pull_request.py diff --git a/githubkit/versions/ghec_v2022_11_28/webhooks/pull_request_review.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/webhooks/pull_request_review.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/webhooks/pull_request_review.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/webhooks/pull_request_review.py diff --git a/githubkit/versions/ghec_v2022_11_28/webhooks/pull_request_review_comment.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/webhooks/pull_request_review_comment.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/webhooks/pull_request_review_comment.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/webhooks/pull_request_review_comment.py diff --git a/githubkit/versions/ghec_v2022_11_28/webhooks/pull_request_review_thread.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/webhooks/pull_request_review_thread.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/webhooks/pull_request_review_thread.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/webhooks/pull_request_review_thread.py diff --git a/githubkit/versions/ghec_v2022_11_28/webhooks/push.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/webhooks/push.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/webhooks/push.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/webhooks/push.py diff --git a/githubkit/versions/ghec_v2022_11_28/webhooks/registry_package.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/webhooks/registry_package.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/webhooks/registry_package.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/webhooks/registry_package.py diff --git a/githubkit/versions/ghec_v2022_11_28/webhooks/release.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/webhooks/release.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/webhooks/release.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/webhooks/release.py diff --git a/githubkit/versions/ghec_v2022_11_28/webhooks/repository.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/webhooks/repository.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/webhooks/repository.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/webhooks/repository.py diff --git a/githubkit/versions/ghec_v2022_11_28/webhooks/repository_advisory.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/webhooks/repository_advisory.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/webhooks/repository_advisory.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/webhooks/repository_advisory.py diff --git a/githubkit/versions/ghec_v2022_11_28/webhooks/repository_dispatch.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/webhooks/repository_dispatch.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/webhooks/repository_dispatch.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/webhooks/repository_dispatch.py diff --git a/githubkit/versions/ghec_v2022_11_28/webhooks/repository_import.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/webhooks/repository_import.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/webhooks/repository_import.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/webhooks/repository_import.py diff --git a/githubkit/versions/ghec_v2022_11_28/webhooks/repository_ruleset.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/webhooks/repository_ruleset.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/webhooks/repository_ruleset.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/webhooks/repository_ruleset.py diff --git a/githubkit/versions/ghec_v2022_11_28/webhooks/repository_vulnerability_alert.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/webhooks/repository_vulnerability_alert.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/webhooks/repository_vulnerability_alert.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/webhooks/repository_vulnerability_alert.py diff --git a/githubkit/versions/ghec_v2022_11_28/webhooks/secret_scanning_alert.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/webhooks/secret_scanning_alert.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/webhooks/secret_scanning_alert.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/webhooks/secret_scanning_alert.py diff --git a/githubkit/versions/ghec_v2022_11_28/webhooks/secret_scanning_alert_location.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/webhooks/secret_scanning_alert_location.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/webhooks/secret_scanning_alert_location.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/webhooks/secret_scanning_alert_location.py diff --git a/githubkit/versions/ghec_v2022_11_28/webhooks/secret_scanning_scan.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/webhooks/secret_scanning_scan.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/webhooks/secret_scanning_scan.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/webhooks/secret_scanning_scan.py diff --git a/githubkit/versions/ghec_v2022_11_28/webhooks/security_advisory.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/webhooks/security_advisory.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/webhooks/security_advisory.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/webhooks/security_advisory.py diff --git a/githubkit/versions/ghec_v2022_11_28/webhooks/security_and_analysis.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/webhooks/security_and_analysis.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/webhooks/security_and_analysis.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/webhooks/security_and_analysis.py diff --git a/githubkit/versions/ghec_v2022_11_28/webhooks/sponsorship.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/webhooks/sponsorship.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/webhooks/sponsorship.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/webhooks/sponsorship.py diff --git a/githubkit/versions/ghec_v2022_11_28/webhooks/star.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/webhooks/star.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/webhooks/star.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/webhooks/star.py diff --git a/githubkit/versions/ghec_v2022_11_28/webhooks/status.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/webhooks/status.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/webhooks/status.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/webhooks/status.py diff --git a/githubkit/versions/ghec_v2022_11_28/webhooks/sub_issues.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/webhooks/sub_issues.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/webhooks/sub_issues.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/webhooks/sub_issues.py diff --git a/githubkit/versions/ghec_v2022_11_28/webhooks/team.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/webhooks/team.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/webhooks/team.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/webhooks/team.py diff --git a/githubkit/versions/ghec_v2022_11_28/webhooks/team_add.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/webhooks/team_add.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/webhooks/team_add.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/webhooks/team_add.py diff --git a/githubkit/versions/ghec_v2022_11_28/webhooks/watch.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/webhooks/watch.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/webhooks/watch.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/webhooks/watch.py diff --git a/githubkit/versions/ghec_v2022_11_28/webhooks/workflow_dispatch.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/webhooks/workflow_dispatch.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/webhooks/workflow_dispatch.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/webhooks/workflow_dispatch.py diff --git a/githubkit/versions/ghec_v2022_11_28/webhooks/workflow_job.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/webhooks/workflow_job.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/webhooks/workflow_job.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/webhooks/workflow_job.py diff --git a/githubkit/versions/ghec_v2022_11_28/webhooks/workflow_run.py b/packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/webhooks/workflow_run.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/webhooks/workflow_run.py rename to packages/githubkit-schemas-2022-11-28/githubkit_schemas/v2022_11_28/webhooks/workflow_run.py diff --git a/packages/githubkit-schemas-2022-11-28/pyproject.toml b/packages/githubkit-schemas-2022-11-28/pyproject.toml new file mode 100644 index 0000000000..7f6a40abe4 --- /dev/null +++ b/packages/githubkit-schemas-2022-11-28/pyproject.toml @@ -0,0 +1,32 @@ +[project] +name = "GitHubKit-schemas-2022-11-28" +version = "26.5.7" +description = "GitHub Schemas for GitHubKit" +authors = [{ name = "yanyongyu", email = "yyy@yyydl.top" }] +license = "MIT" +readme = "README.md" +keywords = ["github", "octokit"] +requires-python = ">=3.9, <4.0" +dependencies = ["githubkit-schemas ==26.5.7"] + +[project.optional-dependencies] + +[project.urls] +Homepage = "https://github.com/yanyongyu/githubkit" +Repository = "https://github.com/yanyongyu/githubkit" +Documentation = "https://github.com/yanyongyu/githubkit" +"Bug Tracker" = "https://github.com/yanyongyu/githubkit/issues" + +[tool.uv] +required-version = ">=0.8.0" + +[tool.uv.sources] +githubkit-schemas = { workspace = true } + +[tool.uv.build-backend] +module-root = "" +module-name = "githubkit_schemas.v2022_11_28" + +[build-system] +requires = ["uv_build >=0.8.3, <0.10.0"] +build-backend = "uv_build" diff --git a/packages/githubkit-schemas-2026-03-10/README.md b/packages/githubkit-schemas-2026-03-10/README.md new file mode 100644 index 0000000000..240b20da76 --- /dev/null +++ b/packages/githubkit-schemas-2026-03-10/README.md @@ -0,0 +1,57 @@ + +
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Documentation | + Report Bug | + GitHub Docs +
+ +This package provides the models and GitHub schemas for GitHubKit. + +When GitHub schemas are updated, this package will be updated accordingly. You can also lock the version of this package using a dependency manager like `uv` to ensure that your project is using a specific version of the schemas. + +## Getting Started + +For more, see the [documentation](https://yanyongyu.github.io/githubkit). diff --git a/githubkit/versions/ghec_v2026_03_10/__init__.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/__init__.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/__init__.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/__init__.py diff --git a/githubkit/versions/v2026_03_10/models/__init__.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/__init__.py similarity index 99% rename from githubkit/versions/v2026_03_10/models/__init__.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/__init__.py index f103aa367d..aa5b09184b 100644 --- a/githubkit/versions/v2026_03_10/models/__init__.py +++ b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/__init__.py @@ -9,7 +9,7 @@ from typing import TYPE_CHECKING -from githubkit.lazy_module import is_lazy_disabled +from githubkit.module_hooks.lazy_module import is_lazy_disabled if TYPE_CHECKING or is_lazy_disabled(): from .group_0000 import Root as Root diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0000.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0000.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0000.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0000.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0001.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0001.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0001.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0001.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0002.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0002.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0002.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0002.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0003.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0003.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0003.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0003.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0004.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0004.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0004.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0004.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0005.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0005.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0005.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0005.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0006.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0006.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0006.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0006.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0007.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0007.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0007.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0007.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0008.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0008.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0008.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0008.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0009.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0009.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0009.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0009.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0010.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0010.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0010.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0010.py diff --git a/githubkit/versions/v2026_03_10/models/group_0011.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0011.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0011.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0011.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0012.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0012.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0012.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0012.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0013.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0013.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0013.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0013.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0014.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0014.py similarity index 92% rename from githubkit/versions/ghec_v2022_11_28/models/group_0014.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0014.py index d347d5d9ad..120f59894b 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0014.py +++ b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0014.py @@ -37,7 +37,7 @@ class ValidationErrorPropErrorsItems(GitHubModel): message: Missing[str] = Field(default=UNSET) code: str = Field() index: Missing[int] = Field(default=UNSET) - value: Missing[Union[str, None, int, None, list[str], None]] = Field(default=UNSET) + value: Missing[Union[str, None, int, list[str]]] = Field(default=UNSET) model_rebuild(ValidationError) diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0015.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0015.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0015.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0015.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0016.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0016.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0016.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0016.py diff --git a/githubkit/versions/v2026_03_10/models/group_0017.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0017.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0017.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0017.py diff --git a/githubkit/versions/v2026_03_10/models/group_0018.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0018.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0018.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0018.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0019.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0019.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0019.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0019.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0020.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0020.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0020.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0020.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0021.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0021.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0021.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0021.py diff --git a/githubkit/versions/v2026_03_10/models/group_0022.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0022.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0022.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0022.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0023.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0023.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0023.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0023.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0024.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0024.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0024.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0024.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0025.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0025.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0025.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0025.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0026.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0026.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0026.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0026.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0027.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0027.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0027.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0027.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0028.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0028.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0028.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0028.py diff --git a/githubkit/versions/v2026_03_10/models/group_0029.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0029.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0029.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0029.py diff --git a/githubkit/versions/v2026_03_10/models/group_0030.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0030.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0030.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0030.py diff --git a/githubkit/versions/v2026_03_10/models/group_0031.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0031.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0031.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0031.py diff --git a/githubkit/versions/v2026_03_10/models/group_0032.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0032.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0032.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0032.py diff --git a/githubkit/versions/v2026_03_10/models/group_0033.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0033.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0033.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0033.py diff --git a/githubkit/versions/v2026_03_10/models/group_0034.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0034.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0034.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0034.py diff --git a/githubkit/versions/v2026_03_10/models/group_0035.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0035.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0035.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0035.py diff --git a/githubkit/versions/v2026_03_10/models/group_0036.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0036.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0036.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0036.py diff --git a/githubkit/versions/v2026_03_10/models/group_0037.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0037.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0037.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0037.py diff --git a/githubkit/versions/v2026_03_10/models/group_0038.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0038.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0038.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0038.py diff --git a/githubkit/versions/v2026_03_10/models/group_0039.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0039.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0039.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0039.py diff --git a/githubkit/versions/v2026_03_10/models/group_0040.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0040.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0040.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0040.py diff --git a/githubkit/versions/v2026_03_10/models/group_0041.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0041.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0041.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0041.py diff --git a/githubkit/versions/v2026_03_10/models/group_0042.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0042.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0042.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0042.py diff --git a/githubkit/versions/v2026_03_10/models/group_0043.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0043.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0043.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0043.py diff --git a/githubkit/versions/v2026_03_10/models/group_0044.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0044.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0044.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0044.py diff --git a/githubkit/versions/v2026_03_10/models/group_0045.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0045.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0045.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0045.py diff --git a/githubkit/versions/v2026_03_10/models/group_0046.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0046.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0046.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0046.py diff --git a/githubkit/versions/v2026_03_10/models/group_0047.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0047.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0047.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0047.py diff --git a/githubkit/versions/v2026_03_10/models/group_0048.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0048.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0048.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0048.py diff --git a/githubkit/versions/v2026_03_10/models/group_0049.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0049.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0049.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0049.py diff --git a/githubkit/versions/v2026_03_10/models/group_0050.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0050.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0050.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0050.py diff --git a/githubkit/versions/v2026_03_10/models/group_0051.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0051.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0051.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0051.py diff --git a/githubkit/versions/v2026_03_10/models/group_0052.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0052.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0052.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0052.py diff --git a/githubkit/versions/v2026_03_10/models/group_0053.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0053.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0053.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0053.py diff --git a/githubkit/versions/v2026_03_10/models/group_0054.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0054.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0054.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0054.py diff --git a/githubkit/versions/v2026_03_10/models/group_0055.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0055.py similarity index 94% rename from githubkit/versions/v2026_03_10/models/group_0055.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0055.py index 3024b76ad4..0fcfd776c5 100644 --- a/githubkit/versions/v2026_03_10/models/group_0055.py +++ b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0055.py @@ -59,9 +59,7 @@ class IssueComment(GitHubModel): title="author_association", description="How the author is associated with the repository.", ) - performed_via_github_app: Missing[Union[None, Integration, None]] = Field( - default=UNSET - ) + performed_via_github_app: Missing[Union[None, Integration]] = Field(default=UNSET) reactions: Missing[ReactionRollup] = Field(default=UNSET, title="Reaction Rollup") pin: Missing[Union[None, PinnedIssueComment]] = Field(default=UNSET) diff --git a/githubkit/versions/v2026_03_10/models/group_0056.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0056.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0056.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0056.py diff --git a/githubkit/versions/v2026_03_10/models/group_0057.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0057.py similarity index 97% rename from githubkit/versions/v2026_03_10/models/group_0057.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0057.py index e1abd6fb23..fe1ecdcdad 100644 --- a/githubkit/versions/v2026_03_10/models/group_0057.py +++ b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0057.py @@ -79,9 +79,7 @@ class Issue(GitHubModel): repository: Missing[Repository] = Field( default=UNSET, title="Repository", description="A repository on GitHub." ) - performed_via_github_app: Missing[Union[None, Integration, None]] = Field( - default=UNSET - ) + performed_via_github_app: Missing[Union[None, Integration]] = Field(default=UNSET) author_association: Missing[ Literal[ "COLLABORATOR", diff --git a/githubkit/versions/v2026_03_10/models/group_0058.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0058.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0058.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0058.py diff --git a/githubkit/versions/v2026_03_10/models/group_0059.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0059.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0059.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0059.py diff --git a/githubkit/versions/v2026_03_10/models/group_0060.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0060.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0060.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0060.py diff --git a/githubkit/versions/v2026_03_10/models/group_0061.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0061.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0061.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0061.py diff --git a/githubkit/versions/v2026_03_10/models/group_0062.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0062.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0062.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0062.py diff --git a/githubkit/versions/v2026_03_10/models/group_0063.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0063.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0063.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0063.py diff --git a/githubkit/versions/v2026_03_10/models/group_0064.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0064.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0064.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0064.py diff --git a/githubkit/versions/v2026_03_10/models/group_0065.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0065.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0065.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0065.py diff --git a/githubkit/versions/v2026_03_10/models/group_0066.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0066.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0066.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0066.py diff --git a/githubkit/versions/v2026_03_10/models/group_0067.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0067.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0067.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0067.py diff --git a/githubkit/versions/v2026_03_10/models/group_0068.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0068.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0068.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0068.py diff --git a/githubkit/versions/v2026_03_10/models/group_0069.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0069.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0069.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0069.py diff --git a/githubkit/versions/v2026_03_10/models/group_0070.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0070.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0070.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0070.py diff --git a/githubkit/versions/v2026_03_10/models/group_0071.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0071.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0071.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0071.py diff --git a/githubkit/versions/v2026_03_10/models/group_0072.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0072.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0072.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0072.py diff --git a/githubkit/versions/v2026_03_10/models/group_0073.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0073.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0073.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0073.py diff --git a/githubkit/versions/v2026_03_10/models/group_0074.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0074.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0074.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0074.py diff --git a/githubkit/versions/v2026_03_10/models/group_0075.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0075.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0075.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0075.py diff --git a/githubkit/versions/v2026_03_10/models/group_0076.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0076.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0076.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0076.py diff --git a/githubkit/versions/v2026_03_10/models/group_0077.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0077.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0077.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0077.py diff --git a/githubkit/versions/v2026_03_10/models/group_0078.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0078.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0078.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0078.py diff --git a/githubkit/versions/v2026_03_10/models/group_0079.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0079.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0079.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0079.py diff --git a/githubkit/versions/v2026_03_10/models/group_0080.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0080.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0080.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0080.py diff --git a/githubkit/versions/v2026_03_10/models/group_0081.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0081.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0081.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0081.py diff --git a/githubkit/versions/v2026_03_10/models/group_0082.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0082.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0082.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0082.py diff --git a/githubkit/versions/v2026_03_10/models/group_0083.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0083.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0083.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0083.py diff --git a/githubkit/versions/v2026_03_10/models/group_0084.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0084.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0084.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0084.py diff --git a/githubkit/versions/v2026_03_10/models/group_0085.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0085.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0085.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0085.py diff --git a/githubkit/versions/v2026_03_10/models/group_0086.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0086.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0086.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0086.py diff --git a/githubkit/versions/v2026_03_10/models/group_0087.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0087.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0087.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0087.py diff --git a/githubkit/versions/v2026_03_10/models/group_0088.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0088.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0088.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0088.py diff --git a/githubkit/versions/v2026_03_10/models/group_0089.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0089.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0089.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0089.py diff --git a/githubkit/versions/v2026_03_10/models/group_0090.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0090.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0090.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0090.py diff --git a/githubkit/versions/v2026_03_10/models/group_0091.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0091.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0091.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0091.py diff --git a/githubkit/versions/v2026_03_10/models/group_0092.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0092.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0092.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0092.py diff --git a/githubkit/versions/v2026_03_10/models/group_0093.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0093.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0093.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0093.py diff --git a/githubkit/versions/v2026_03_10/models/group_0094.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0094.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0094.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0094.py diff --git a/githubkit/versions/v2026_03_10/models/group_0095.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0095.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0095.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0095.py diff --git a/githubkit/versions/v2026_03_10/models/group_0096.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0096.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0096.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0096.py diff --git a/githubkit/versions/v2026_03_10/models/group_0097.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0097.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0097.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0097.py diff --git a/githubkit/versions/v2026_03_10/models/group_0098.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0098.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0098.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0098.py diff --git a/githubkit/versions/v2026_03_10/models/group_0099.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0099.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0099.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0099.py diff --git a/githubkit/versions/v2026_03_10/models/group_0100.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0100.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0100.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0100.py diff --git a/githubkit/versions/v2026_03_10/models/group_0101.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0101.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0101.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0101.py diff --git a/githubkit/versions/v2026_03_10/models/group_0102.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0102.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0102.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0102.py diff --git a/githubkit/versions/v2026_03_10/models/group_0103.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0103.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0103.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0103.py diff --git a/githubkit/versions/v2026_03_10/models/group_0104.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0104.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0104.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0104.py diff --git a/githubkit/versions/v2026_03_10/models/group_0105.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0105.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0105.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0105.py diff --git a/githubkit/versions/v2026_03_10/models/group_0106.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0106.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0106.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0106.py diff --git a/githubkit/versions/v2026_03_10/models/group_0107.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0107.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0107.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0107.py diff --git a/githubkit/versions/v2026_03_10/models/group_0108.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0108.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0108.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0108.py diff --git a/githubkit/versions/v2026_03_10/models/group_0109.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0109.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0109.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0109.py diff --git a/githubkit/versions/v2026_03_10/models/group_0110.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0110.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0110.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0110.py diff --git a/githubkit/versions/v2026_03_10/models/group_0111.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0111.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0111.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0111.py diff --git a/githubkit/versions/v2026_03_10/models/group_0112.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0112.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0112.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0112.py diff --git a/githubkit/versions/v2026_03_10/models/group_0113.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0113.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0113.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0113.py diff --git a/githubkit/versions/v2026_03_10/models/group_0114.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0114.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0114.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0114.py diff --git a/githubkit/versions/v2026_03_10/models/group_0115.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0115.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0115.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0115.py diff --git a/githubkit/versions/v2026_03_10/models/group_0116.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0116.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0116.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0116.py diff --git a/githubkit/versions/v2026_03_10/models/group_0117.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0117.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0117.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0117.py diff --git a/githubkit/versions/v2026_03_10/models/group_0118.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0118.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0118.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0118.py diff --git a/githubkit/versions/v2026_03_10/models/group_0119.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0119.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0119.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0119.py diff --git a/githubkit/versions/v2026_03_10/models/group_0120.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0120.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0120.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0120.py diff --git a/githubkit/versions/v2026_03_10/models/group_0121.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0121.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0121.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0121.py diff --git a/githubkit/versions/v2026_03_10/models/group_0122.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0122.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0122.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0122.py diff --git a/githubkit/versions/v2026_03_10/models/group_0123.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0123.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0123.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0123.py diff --git a/githubkit/versions/v2026_03_10/models/group_0124.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0124.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0124.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0124.py diff --git a/githubkit/versions/v2026_03_10/models/group_0125.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0125.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0125.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0125.py diff --git a/githubkit/versions/v2026_03_10/models/group_0126.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0126.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0126.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0126.py diff --git a/githubkit/versions/v2026_03_10/models/group_0127.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0127.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0127.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0127.py diff --git a/githubkit/versions/v2026_03_10/models/group_0128.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0128.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0128.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0128.py diff --git a/githubkit/versions/v2026_03_10/models/group_0129.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0129.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0129.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0129.py diff --git a/githubkit/versions/v2026_03_10/models/group_0130.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0130.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0130.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0130.py diff --git a/githubkit/versions/v2026_03_10/models/group_0131.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0131.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0131.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0131.py diff --git a/githubkit/versions/v2026_03_10/models/group_0132.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0132.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0132.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0132.py diff --git a/githubkit/versions/v2026_03_10/models/group_0133.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0133.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0133.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0133.py diff --git a/githubkit/versions/v2026_03_10/models/group_0134.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0134.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0134.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0134.py diff --git a/githubkit/versions/v2026_03_10/models/group_0135.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0135.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0135.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0135.py diff --git a/githubkit/versions/v2026_03_10/models/group_0136.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0136.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0136.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0136.py diff --git a/githubkit/versions/v2026_03_10/models/group_0137.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0137.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0137.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0137.py diff --git a/githubkit/versions/v2026_03_10/models/group_0138.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0138.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0138.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0138.py diff --git a/githubkit/versions/v2026_03_10/models/group_0139.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0139.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0139.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0139.py diff --git a/githubkit/versions/v2026_03_10/models/group_0140.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0140.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0140.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0140.py diff --git a/githubkit/versions/v2026_03_10/models/group_0141.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0141.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0141.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0141.py diff --git a/githubkit/versions/v2026_03_10/models/group_0142.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0142.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0142.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0142.py diff --git a/githubkit/versions/v2026_03_10/models/group_0143.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0143.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0143.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0143.py diff --git a/githubkit/versions/v2026_03_10/models/group_0144.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0144.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0144.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0144.py diff --git a/githubkit/versions/v2026_03_10/models/group_0145.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0145.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0145.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0145.py diff --git a/githubkit/versions/v2026_03_10/models/group_0146.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0146.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0146.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0146.py diff --git a/githubkit/versions/v2026_03_10/models/group_0147.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0147.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0147.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0147.py diff --git a/githubkit/versions/v2026_03_10/models/group_0148.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0148.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0148.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0148.py diff --git a/githubkit/versions/v2026_03_10/models/group_0149.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0149.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0149.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0149.py diff --git a/githubkit/versions/v2026_03_10/models/group_0150.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0150.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0150.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0150.py diff --git a/githubkit/versions/v2026_03_10/models/group_0151.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0151.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0151.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0151.py diff --git a/githubkit/versions/v2026_03_10/models/group_0152.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0152.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0152.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0152.py diff --git a/githubkit/versions/v2026_03_10/models/group_0153.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0153.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0153.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0153.py diff --git a/githubkit/versions/v2026_03_10/models/group_0154.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0154.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0154.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0154.py diff --git a/githubkit/versions/v2026_03_10/models/group_0155.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0155.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0155.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0155.py diff --git a/githubkit/versions/v2026_03_10/models/group_0156.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0156.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0156.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0156.py diff --git a/githubkit/versions/v2026_03_10/models/group_0157.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0157.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0157.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0157.py diff --git a/githubkit/versions/v2026_03_10/models/group_0158.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0158.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0158.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0158.py diff --git a/githubkit/versions/v2026_03_10/models/group_0159.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0159.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0159.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0159.py diff --git a/githubkit/versions/v2026_03_10/models/group_0160.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0160.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0160.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0160.py diff --git a/githubkit/versions/v2026_03_10/models/group_0161.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0161.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0161.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0161.py diff --git a/githubkit/versions/v2026_03_10/models/group_0162.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0162.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0162.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0162.py diff --git a/githubkit/versions/v2026_03_10/models/group_0163.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0163.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0163.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0163.py diff --git a/githubkit/versions/v2026_03_10/models/group_0164.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0164.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0164.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0164.py diff --git a/githubkit/versions/v2026_03_10/models/group_0165.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0165.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0165.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0165.py diff --git a/githubkit/versions/v2026_03_10/models/group_0166.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0166.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0166.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0166.py diff --git a/githubkit/versions/v2026_03_10/models/group_0167.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0167.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0167.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0167.py diff --git a/githubkit/versions/v2026_03_10/models/group_0168.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0168.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0168.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0168.py diff --git a/githubkit/versions/v2026_03_10/models/group_0169.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0169.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0169.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0169.py diff --git a/githubkit/versions/v2026_03_10/models/group_0170.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0170.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0170.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0170.py diff --git a/githubkit/versions/v2026_03_10/models/group_0171.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0171.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0171.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0171.py diff --git a/githubkit/versions/v2026_03_10/models/group_0172.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0172.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0172.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0172.py diff --git a/githubkit/versions/v2026_03_10/models/group_0173.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0173.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0173.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0173.py diff --git a/githubkit/versions/v2026_03_10/models/group_0174.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0174.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0174.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0174.py diff --git a/githubkit/versions/v2026_03_10/models/group_0175.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0175.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0175.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0175.py diff --git a/githubkit/versions/v2026_03_10/models/group_0176.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0176.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0176.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0176.py diff --git a/githubkit/versions/v2026_03_10/models/group_0177.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0177.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0177.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0177.py diff --git a/githubkit/versions/v2026_03_10/models/group_0178.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0178.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0178.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0178.py diff --git a/githubkit/versions/v2026_03_10/models/group_0179.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0179.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0179.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0179.py diff --git a/githubkit/versions/v2026_03_10/models/group_0180.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0180.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0180.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0180.py diff --git a/githubkit/versions/v2026_03_10/models/group_0181.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0181.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0181.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0181.py diff --git a/githubkit/versions/v2026_03_10/models/group_0182.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0182.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0182.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0182.py diff --git a/githubkit/versions/v2026_03_10/models/group_0183.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0183.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0183.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0183.py diff --git a/githubkit/versions/v2026_03_10/models/group_0184.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0184.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0184.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0184.py diff --git a/githubkit/versions/v2026_03_10/models/group_0185.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0185.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0185.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0185.py diff --git a/githubkit/versions/v2026_03_10/models/group_0186.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0186.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0186.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0186.py diff --git a/githubkit/versions/v2026_03_10/models/group_0187.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0187.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0187.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0187.py diff --git a/githubkit/versions/v2026_03_10/models/group_0188.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0188.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0188.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0188.py diff --git a/githubkit/versions/v2026_03_10/models/group_0189.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0189.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0189.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0189.py diff --git a/githubkit/versions/v2026_03_10/models/group_0190.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0190.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0190.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0190.py diff --git a/githubkit/versions/v2026_03_10/models/group_0191.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0191.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0191.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0191.py diff --git a/githubkit/versions/v2026_03_10/models/group_0192.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0192.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0192.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0192.py diff --git a/githubkit/versions/v2026_03_10/models/group_0193.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0193.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0193.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0193.py diff --git a/githubkit/versions/v2026_03_10/models/group_0194.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0194.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0194.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0194.py diff --git a/githubkit/versions/v2026_03_10/models/group_0195.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0195.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0195.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0195.py diff --git a/githubkit/versions/v2026_03_10/models/group_0196.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0196.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0196.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0196.py diff --git a/githubkit/versions/v2026_03_10/models/group_0197.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0197.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0197.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0197.py diff --git a/githubkit/versions/v2026_03_10/models/group_0198.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0198.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0198.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0198.py diff --git a/githubkit/versions/v2026_03_10/models/group_0199.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0199.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0199.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0199.py diff --git a/githubkit/versions/v2026_03_10/models/group_0200.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0200.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0200.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0200.py diff --git a/githubkit/versions/v2026_03_10/models/group_0201.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0201.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0201.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0201.py diff --git a/githubkit/versions/v2026_03_10/models/group_0202.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0202.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0202.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0202.py diff --git a/githubkit/versions/v2026_03_10/models/group_0203.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0203.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0203.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0203.py diff --git a/githubkit/versions/v2026_03_10/models/group_0204.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0204.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0204.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0204.py diff --git a/githubkit/versions/v2026_03_10/models/group_0205.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0205.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0205.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0205.py diff --git a/githubkit/versions/v2026_03_10/models/group_0206.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0206.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0206.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0206.py diff --git a/githubkit/versions/v2026_03_10/models/group_0207.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0207.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0207.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0207.py diff --git a/githubkit/versions/v2026_03_10/models/group_0208.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0208.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0208.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0208.py diff --git a/githubkit/versions/v2026_03_10/models/group_0209.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0209.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0209.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0209.py diff --git a/githubkit/versions/v2026_03_10/models/group_0210.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0210.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0210.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0210.py diff --git a/githubkit/versions/v2026_03_10/models/group_0211.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0211.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0211.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0211.py diff --git a/githubkit/versions/v2026_03_10/models/group_0212.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0212.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0212.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0212.py diff --git a/githubkit/versions/v2026_03_10/models/group_0213.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0213.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0213.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0213.py diff --git a/githubkit/versions/v2026_03_10/models/group_0214.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0214.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0214.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0214.py diff --git a/githubkit/versions/v2026_03_10/models/group_0215.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0215.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0215.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0215.py diff --git a/githubkit/versions/v2026_03_10/models/group_0216.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0216.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0216.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0216.py diff --git a/githubkit/versions/v2026_03_10/models/group_0217.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0217.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0217.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0217.py diff --git a/githubkit/versions/v2026_03_10/models/group_0218.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0218.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0218.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0218.py diff --git a/githubkit/versions/v2026_03_10/models/group_0219.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0219.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0219.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0219.py diff --git a/githubkit/versions/v2026_03_10/models/group_0220.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0220.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0220.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0220.py diff --git a/githubkit/versions/v2026_03_10/models/group_0221.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0221.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0221.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0221.py diff --git a/githubkit/versions/v2026_03_10/models/group_0222.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0222.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0222.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0222.py diff --git a/githubkit/versions/v2026_03_10/models/group_0223.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0223.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0223.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0223.py diff --git a/githubkit/versions/v2026_03_10/models/group_0224.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0224.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0224.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0224.py diff --git a/githubkit/versions/v2026_03_10/models/group_0225.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0225.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0225.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0225.py diff --git a/githubkit/versions/v2026_03_10/models/group_0226.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0226.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0226.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0226.py diff --git a/githubkit/versions/v2026_03_10/models/group_0227.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0227.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0227.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0227.py diff --git a/githubkit/versions/v2026_03_10/models/group_0228.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0228.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0228.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0228.py diff --git a/githubkit/versions/v2026_03_10/models/group_0229.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0229.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0229.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0229.py diff --git a/githubkit/versions/v2026_03_10/models/group_0230.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0230.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0230.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0230.py diff --git a/githubkit/versions/v2026_03_10/models/group_0231.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0231.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0231.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0231.py diff --git a/githubkit/versions/v2026_03_10/models/group_0232.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0232.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0232.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0232.py diff --git a/githubkit/versions/v2026_03_10/models/group_0233.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0233.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0233.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0233.py diff --git a/githubkit/versions/v2026_03_10/models/group_0234.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0234.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0234.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0234.py diff --git a/githubkit/versions/v2026_03_10/models/group_0235.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0235.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0235.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0235.py diff --git a/githubkit/versions/v2026_03_10/models/group_0236.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0236.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0236.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0236.py diff --git a/githubkit/versions/v2026_03_10/models/group_0237.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0237.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0237.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0237.py diff --git a/githubkit/versions/v2026_03_10/models/group_0238.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0238.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0238.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0238.py diff --git a/githubkit/versions/v2026_03_10/models/group_0239.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0239.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0239.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0239.py diff --git a/githubkit/versions/v2026_03_10/models/group_0240.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0240.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0240.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0240.py diff --git a/githubkit/versions/v2026_03_10/models/group_0241.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0241.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0241.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0241.py diff --git a/githubkit/versions/v2026_03_10/models/group_0242.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0242.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0242.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0242.py diff --git a/githubkit/versions/v2026_03_10/models/group_0243.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0243.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0243.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0243.py diff --git a/githubkit/versions/v2026_03_10/models/group_0244.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0244.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0244.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0244.py diff --git a/githubkit/versions/v2026_03_10/models/group_0245.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0245.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0245.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0245.py diff --git a/githubkit/versions/v2026_03_10/models/group_0246.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0246.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0246.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0246.py diff --git a/githubkit/versions/v2026_03_10/models/group_0247.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0247.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0247.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0247.py diff --git a/githubkit/versions/v2026_03_10/models/group_0248.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0248.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0248.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0248.py diff --git a/githubkit/versions/v2026_03_10/models/group_0249.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0249.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0249.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0249.py diff --git a/githubkit/versions/v2026_03_10/models/group_0250.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0250.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0250.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0250.py diff --git a/githubkit/versions/v2026_03_10/models/group_0251.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0251.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0251.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0251.py diff --git a/githubkit/versions/v2026_03_10/models/group_0252.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0252.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0252.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0252.py diff --git a/githubkit/versions/v2026_03_10/models/group_0253.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0253.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0253.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0253.py diff --git a/githubkit/versions/v2026_03_10/models/group_0254.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0254.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0254.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0254.py diff --git a/githubkit/versions/v2026_03_10/models/group_0255.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0255.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0255.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0255.py diff --git a/githubkit/versions/v2026_03_10/models/group_0256.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0256.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0256.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0256.py diff --git a/githubkit/versions/v2026_03_10/models/group_0257.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0257.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0257.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0257.py diff --git a/githubkit/versions/v2026_03_10/models/group_0258.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0258.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0258.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0258.py diff --git a/githubkit/versions/v2026_03_10/models/group_0259.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0259.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0259.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0259.py diff --git a/githubkit/versions/v2026_03_10/models/group_0260.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0260.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0260.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0260.py diff --git a/githubkit/versions/v2026_03_10/models/group_0261.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0261.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0261.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0261.py diff --git a/githubkit/versions/v2026_03_10/models/group_0262.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0262.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0262.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0262.py diff --git a/githubkit/versions/v2026_03_10/models/group_0263.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0263.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0263.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0263.py diff --git a/githubkit/versions/v2026_03_10/models/group_0264.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0264.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0264.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0264.py diff --git a/githubkit/versions/v2026_03_10/models/group_0265.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0265.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0265.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0265.py diff --git a/githubkit/versions/v2026_03_10/models/group_0266.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0266.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0266.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0266.py diff --git a/githubkit/versions/v2026_03_10/models/group_0267.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0267.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0267.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0267.py diff --git a/githubkit/versions/v2026_03_10/models/group_0268.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0268.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0268.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0268.py diff --git a/githubkit/versions/v2026_03_10/models/group_0269.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0269.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0269.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0269.py diff --git a/githubkit/versions/v2026_03_10/models/group_0270.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0270.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0270.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0270.py diff --git a/githubkit/versions/v2026_03_10/models/group_0271.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0271.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0271.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0271.py diff --git a/githubkit/versions/v2026_03_10/models/group_0272.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0272.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0272.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0272.py diff --git a/githubkit/versions/v2026_03_10/models/group_0273.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0273.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0273.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0273.py diff --git a/githubkit/versions/v2026_03_10/models/group_0274.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0274.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0274.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0274.py diff --git a/githubkit/versions/v2026_03_10/models/group_0275.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0275.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0275.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0275.py diff --git a/githubkit/versions/v2026_03_10/models/group_0276.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0276.py similarity index 95% rename from githubkit/versions/v2026_03_10/models/group_0276.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0276.py index 95359f3748..986961f173 100644 --- a/githubkit/versions/v2026_03_10/models/group_0276.py +++ b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0276.py @@ -53,9 +53,7 @@ class Deployment(GitHubModel): default=UNSET, description="Specifies if the given environment is one that end-users directly interact with. Default: false.", ) - performed_via_github_app: Missing[Union[None, Integration, None]] = Field( - default=UNSET - ) + performed_via_github_app: Missing[Union[None, Integration]] = Field(default=UNSET) class DeploymentPropPayloadOneof0(ExtraGitHubModel): diff --git a/githubkit/versions/v2026_03_10/models/group_0277.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0277.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0277.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0277.py diff --git a/githubkit/versions/v2026_03_10/models/group_0278.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0278.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0278.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0278.py diff --git a/githubkit/versions/v2026_03_10/models/group_0279.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0279.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0279.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0279.py diff --git a/githubkit/versions/v2026_03_10/models/group_0280.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0280.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0280.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0280.py diff --git a/githubkit/versions/v2026_03_10/models/group_0281.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0281.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0281.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0281.py diff --git a/githubkit/versions/v2026_03_10/models/group_0282.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0282.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0282.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0282.py diff --git a/githubkit/versions/v2026_03_10/models/group_0283.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0283.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0283.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0283.py diff --git a/githubkit/versions/v2026_03_10/models/group_0284.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0284.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0284.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0284.py diff --git a/githubkit/versions/v2026_03_10/models/group_0285.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0285.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0285.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0285.py diff --git a/githubkit/versions/v2026_03_10/models/group_0286.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0286.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0286.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0286.py diff --git a/githubkit/versions/v2026_03_10/models/group_0287.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0287.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0287.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0287.py diff --git a/githubkit/versions/v2026_03_10/models/group_0288.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0288.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0288.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0288.py diff --git a/githubkit/versions/v2026_03_10/models/group_0289.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0289.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0289.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0289.py diff --git a/githubkit/versions/v2026_03_10/models/group_0290.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0290.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0290.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0290.py diff --git a/githubkit/versions/v2026_03_10/models/group_0291.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0291.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0291.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0291.py diff --git a/githubkit/versions/v2026_03_10/models/group_0292.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0292.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0292.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0292.py diff --git a/githubkit/versions/v2026_03_10/models/group_0293.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0293.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0293.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0293.py diff --git a/githubkit/versions/v2026_03_10/models/group_0294.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0294.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0294.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0294.py diff --git a/githubkit/versions/v2026_03_10/models/group_0295.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0295.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0295.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0295.py diff --git a/githubkit/versions/v2026_03_10/models/group_0296.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0296.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0296.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0296.py diff --git a/githubkit/versions/v2026_03_10/models/group_0297.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0297.py similarity index 94% rename from githubkit/versions/v2026_03_10/models/group_0297.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0297.py index 19eaea59f7..f16ebab022 100644 --- a/githubkit/versions/v2026_03_10/models/group_0297.py +++ b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0297.py @@ -47,9 +47,7 @@ class DeploymentSimple(GitHubModel): default=UNSET, description="Specifies if the given environment is one that end-users directly interact with. Default: false.", ) - performed_via_github_app: Missing[Union[None, Integration, None]] = Field( - default=UNSET - ) + performed_via_github_app: Missing[Union[None, Integration]] = Field(default=UNSET) model_rebuild(DeploymentSimple) diff --git a/githubkit/versions/v2026_03_10/models/group_0298.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0298.py similarity index 98% rename from githubkit/versions/v2026_03_10/models/group_0298.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0298.py index 3d4735b1c3..bd9e8e043a 100644 --- a/githubkit/versions/v2026_03_10/models/group_0298.py +++ b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0298.py @@ -58,7 +58,7 @@ class CheckRun(GitHubModel): output: CheckRunPropOutput = Field() name: str = Field(description="The name of the check.") check_suite: Union[CheckRunPropCheckSuite, None] = Field() - app: Union[None, Integration, None] = Field() + app: Union[None, Integration] = Field() pull_requests: list[PullRequestMinimal] = Field( description="Pull requests that are open with a `head_sha` or `head_branch` that matches the check. The returned pull requests do not necessarily indicate pull requests that triggered the check." ) diff --git a/githubkit/versions/v2026_03_10/models/group_0299.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0299.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0299.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0299.py diff --git a/githubkit/versions/v2026_03_10/models/group_0300.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0300.py similarity index 98% rename from githubkit/versions/v2026_03_10/models/group_0300.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0300.py index 6fd78875cc..a2daff598a 100644 --- a/githubkit/versions/v2026_03_10/models/group_0300.py +++ b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0300.py @@ -62,7 +62,7 @@ class CheckSuite(GitHubModel): before: Union[str, None] = Field() after: Union[str, None] = Field() pull_requests: Union[list[PullRequestMinimal], None] = Field() - app: Union[None, Integration, None] = Field() + app: Union[None, Integration] = Field() repository: MinimalRepository = Field( title="Minimal Repository", description="Minimal Repository" ) diff --git a/githubkit/versions/v2026_03_10/models/group_0301.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0301.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0301.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0301.py diff --git a/githubkit/versions/v2026_03_10/models/group_0302.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0302.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0302.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0302.py diff --git a/githubkit/versions/v2026_03_10/models/group_0303.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0303.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0303.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0303.py diff --git a/githubkit/versions/v2026_03_10/models/group_0304.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0304.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0304.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0304.py diff --git a/githubkit/versions/v2026_03_10/models/group_0305.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0305.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0305.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0305.py diff --git a/githubkit/versions/v2026_03_10/models/group_0306.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0306.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0306.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0306.py diff --git a/githubkit/versions/v2026_03_10/models/group_0307.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0307.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0307.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0307.py diff --git a/githubkit/versions/v2026_03_10/models/group_0308.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0308.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0308.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0308.py diff --git a/githubkit/versions/v2026_03_10/models/group_0309.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0309.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0309.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0309.py diff --git a/githubkit/versions/v2026_03_10/models/group_0310.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0310.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0310.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0310.py diff --git a/githubkit/versions/v2026_03_10/models/group_0311.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0311.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0311.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0311.py diff --git a/githubkit/versions/v2026_03_10/models/group_0312.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0312.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0312.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0312.py diff --git a/githubkit/versions/v2026_03_10/models/group_0313.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0313.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0313.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0313.py diff --git a/githubkit/versions/v2026_03_10/models/group_0314.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0314.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0314.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0314.py diff --git a/githubkit/versions/v2026_03_10/models/group_0315.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0315.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0315.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0315.py diff --git a/githubkit/versions/v2026_03_10/models/group_0316.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0316.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0316.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0316.py diff --git a/githubkit/versions/v2026_03_10/models/group_0317.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0317.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0317.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0317.py diff --git a/githubkit/versions/v2026_03_10/models/group_0318.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0318.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0318.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0318.py diff --git a/githubkit/versions/v2026_03_10/models/group_0319.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0319.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0319.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0319.py diff --git a/githubkit/versions/v2026_03_10/models/group_0320.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0320.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0320.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0320.py diff --git a/githubkit/versions/v2026_03_10/models/group_0321.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0321.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0321.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0321.py diff --git a/githubkit/versions/v2026_03_10/models/group_0322.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0322.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0322.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0322.py diff --git a/githubkit/versions/v2026_03_10/models/group_0323.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0323.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0323.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0323.py diff --git a/githubkit/versions/v2026_03_10/models/group_0324.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0324.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0324.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0324.py diff --git a/githubkit/versions/v2026_03_10/models/group_0325.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0325.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0325.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0325.py diff --git a/githubkit/versions/v2026_03_10/models/group_0326.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0326.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0326.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0326.py diff --git a/githubkit/versions/v2026_03_10/models/group_0327.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0327.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0327.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0327.py diff --git a/githubkit/versions/v2026_03_10/models/group_0328.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0328.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0328.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0328.py diff --git a/githubkit/versions/v2026_03_10/models/group_0329.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0329.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0329.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0329.py diff --git a/githubkit/versions/v2026_03_10/models/group_0330.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0330.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0330.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0330.py diff --git a/githubkit/versions/v2026_03_10/models/group_0331.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0331.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0331.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0331.py diff --git a/githubkit/versions/v2026_03_10/models/group_0332.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0332.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0332.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0332.py diff --git a/githubkit/versions/v2026_03_10/models/group_0333.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0333.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0333.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0333.py diff --git a/githubkit/versions/v2026_03_10/models/group_0334.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0334.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0334.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0334.py diff --git a/githubkit/versions/v2026_03_10/models/group_0335.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0335.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0335.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0335.py diff --git a/githubkit/versions/v2026_03_10/models/group_0336.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0336.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0336.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0336.py diff --git a/githubkit/versions/v2026_03_10/models/group_0337.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0337.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0337.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0337.py diff --git a/githubkit/versions/v2026_03_10/models/group_0338.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0338.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0338.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0338.py diff --git a/githubkit/versions/v2026_03_10/models/group_0339.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0339.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0339.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0339.py diff --git a/githubkit/versions/v2026_03_10/models/group_0340.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0340.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0340.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0340.py diff --git a/githubkit/versions/v2026_03_10/models/group_0341.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0341.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0341.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0341.py diff --git a/githubkit/versions/v2026_03_10/models/group_0342.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0342.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0342.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0342.py diff --git a/githubkit/versions/v2026_03_10/models/group_0343.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0343.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0343.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0343.py diff --git a/githubkit/versions/v2026_03_10/models/group_0344.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0344.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0344.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0344.py diff --git a/githubkit/versions/v2026_03_10/models/group_0345.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0345.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0345.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0345.py diff --git a/githubkit/versions/v2026_03_10/models/group_0346.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0346.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0346.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0346.py diff --git a/githubkit/versions/v2026_03_10/models/group_0347.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0347.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0347.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0347.py diff --git a/githubkit/versions/v2026_03_10/models/group_0348.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0348.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0348.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0348.py diff --git a/githubkit/versions/v2026_03_10/models/group_0349.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0349.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0349.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0349.py diff --git a/githubkit/versions/v2026_03_10/models/group_0350.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0350.py similarity index 94% rename from githubkit/versions/v2026_03_10/models/group_0350.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0350.py index 4329e238bc..d886fb6755 100644 --- a/githubkit/versions/v2026_03_10/models/group_0350.py +++ b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0350.py @@ -56,9 +56,7 @@ class DeploymentStatus(GitHubModel): log_url: Missing[str] = Field( default=UNSET, description="The URL to associate with this status." ) - performed_via_github_app: Missing[Union[None, Integration, None]] = Field( - default=UNSET - ) + performed_via_github_app: Missing[Union[None, Integration]] = Field(default=UNSET) model_rebuild(DeploymentStatus) diff --git a/githubkit/versions/v2026_03_10/models/group_0351.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0351.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0351.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0351.py diff --git a/githubkit/versions/v2026_03_10/models/group_0352.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0352.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0352.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0352.py diff --git a/githubkit/versions/v2026_03_10/models/group_0353.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0353.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0353.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0353.py diff --git a/githubkit/versions/v2026_03_10/models/group_0354.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0354.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0354.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0354.py diff --git a/githubkit/versions/v2026_03_10/models/group_0355.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0355.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0355.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0355.py diff --git a/githubkit/versions/v2026_03_10/models/group_0356.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0356.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0356.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0356.py diff --git a/githubkit/versions/v2026_03_10/models/group_0357.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0357.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0357.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0357.py diff --git a/githubkit/versions/v2026_03_10/models/group_0358.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0358.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0358.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0358.py diff --git a/githubkit/versions/v2026_03_10/models/group_0359.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0359.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0359.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0359.py diff --git a/githubkit/versions/v2026_03_10/models/group_0360.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0360.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0360.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0360.py diff --git a/githubkit/versions/v2026_03_10/models/group_0361.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0361.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0361.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0361.py diff --git a/githubkit/versions/v2026_03_10/models/group_0362.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0362.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0362.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0362.py diff --git a/githubkit/versions/v2026_03_10/models/group_0363.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0363.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0363.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0363.py diff --git a/githubkit/versions/v2026_03_10/models/group_0364.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0364.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0364.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0364.py diff --git a/githubkit/versions/v2026_03_10/models/group_0365.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0365.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0365.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0365.py diff --git a/githubkit/versions/v2026_03_10/models/group_0366.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0366.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0366.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0366.py diff --git a/githubkit/versions/v2026_03_10/models/group_0367.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0367.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0367.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0367.py diff --git a/githubkit/versions/v2026_03_10/models/group_0368.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0368.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0368.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0368.py diff --git a/githubkit/versions/v2026_03_10/models/group_0369.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0369.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0369.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0369.py diff --git a/githubkit/versions/v2026_03_10/models/group_0370.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0370.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0370.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0370.py diff --git a/githubkit/versions/v2026_03_10/models/group_0371.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0371.py similarity index 97% rename from githubkit/versions/v2026_03_10/models/group_0371.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0371.py index 6f17cb560c..c5f2ede6db 100644 --- a/githubkit/versions/v2026_03_10/models/group_0371.py +++ b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0371.py @@ -84,9 +84,7 @@ class IssueEvent(GitHubModel): description="How the author is associated with the repository.", ) lock_reason: Missing[Union[str, None]] = Field(default=UNSET) - performed_via_github_app: Missing[Union[None, Integration, None]] = Field( - default=UNSET - ) + performed_via_github_app: Missing[Union[None, Integration]] = Field(default=UNSET) class IssueEventLabel(GitHubModel): diff --git a/githubkit/versions/v2026_03_10/models/group_0372.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0372.py similarity index 94% rename from githubkit/versions/v2026_03_10/models/group_0372.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0372.py index 3ec22fb630..f62792ffa1 100644 --- a/githubkit/versions/v2026_03_10/models/group_0372.py +++ b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0372.py @@ -33,7 +33,7 @@ class LabeledIssueEvent(GitHubModel): commit_id: Union[str, None] = Field() commit_url: Union[str, None] = Field() created_at: str = Field() - performed_via_github_app: Union[None, Integration, None] = Field() + performed_via_github_app: Union[None, Integration] = Field() label: LabeledIssueEventPropLabel = Field() diff --git a/githubkit/versions/v2026_03_10/models/group_0373.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0373.py similarity index 94% rename from githubkit/versions/v2026_03_10/models/group_0373.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0373.py index 695ea4a4eb..f949ecf726 100644 --- a/githubkit/versions/v2026_03_10/models/group_0373.py +++ b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0373.py @@ -33,7 +33,7 @@ class UnlabeledIssueEvent(GitHubModel): commit_id: Union[str, None] = Field() commit_url: Union[str, None] = Field() created_at: str = Field() - performed_via_github_app: Union[None, Integration, None] = Field() + performed_via_github_app: Union[None, Integration] = Field() label: UnlabeledIssueEventPropLabel = Field() diff --git a/githubkit/versions/v2026_03_10/models/group_0374.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0374.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0374.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0374.py diff --git a/githubkit/versions/v2026_03_10/models/group_0375.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0375.py similarity index 93% rename from githubkit/versions/v2026_03_10/models/group_0375.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0375.py index d36e83286a..9fcb9db594 100644 --- a/githubkit/versions/v2026_03_10/models/group_0375.py +++ b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0375.py @@ -33,7 +33,7 @@ class UnassignedIssueEvent(GitHubModel): commit_id: Union[str, None] = Field() commit_url: Union[str, None] = Field() created_at: str = Field() - performed_via_github_app: Union[None, Integration, None] = Field() + performed_via_github_app: Union[None, Integration] = Field() assignee: SimpleUser = Field(title="Simple User", description="A GitHub user.") assigner: SimpleUser = Field(title="Simple User", description="A GitHub user.") diff --git a/githubkit/versions/v2026_03_10/models/group_0376.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0376.py similarity index 94% rename from githubkit/versions/v2026_03_10/models/group_0376.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0376.py index 734796d8a5..6f795ed55c 100644 --- a/githubkit/versions/v2026_03_10/models/group_0376.py +++ b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0376.py @@ -33,7 +33,7 @@ class MilestonedIssueEvent(GitHubModel): commit_id: Union[str, None] = Field() commit_url: Union[str, None] = Field() created_at: str = Field() - performed_via_github_app: Union[None, Integration, None] = Field() + performed_via_github_app: Union[None, Integration] = Field() milestone: MilestonedIssueEventPropMilestone = Field() diff --git a/githubkit/versions/v2026_03_10/models/group_0377.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0377.py similarity index 94% rename from githubkit/versions/v2026_03_10/models/group_0377.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0377.py index 1b03cd99a5..c9224cbb54 100644 --- a/githubkit/versions/v2026_03_10/models/group_0377.py +++ b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0377.py @@ -33,7 +33,7 @@ class DemilestonedIssueEvent(GitHubModel): commit_id: Union[str, None] = Field() commit_url: Union[str, None] = Field() created_at: str = Field() - performed_via_github_app: Union[None, Integration, None] = Field() + performed_via_github_app: Union[None, Integration] = Field() milestone: DemilestonedIssueEventPropMilestone = Field() diff --git a/githubkit/versions/v2026_03_10/models/group_0378.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0378.py similarity index 94% rename from githubkit/versions/v2026_03_10/models/group_0378.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0378.py index 234895caf4..c09adc19c9 100644 --- a/githubkit/versions/v2026_03_10/models/group_0378.py +++ b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0378.py @@ -33,7 +33,7 @@ class RenamedIssueEvent(GitHubModel): commit_id: Union[str, None] = Field() commit_url: Union[str, None] = Field() created_at: str = Field() - performed_via_github_app: Union[None, Integration, None] = Field() + performed_via_github_app: Union[None, Integration] = Field() rename: RenamedIssueEventPropRename = Field() diff --git a/githubkit/versions/v2026_03_10/models/group_0379.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0379.py similarity index 95% rename from githubkit/versions/v2026_03_10/models/group_0379.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0379.py index e863e47398..40e3322f10 100644 --- a/githubkit/versions/v2026_03_10/models/group_0379.py +++ b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0379.py @@ -36,7 +36,7 @@ class ReviewRequestedIssueEvent(GitHubModel): commit_id: Union[str, None] = Field() commit_url: Union[str, None] = Field() created_at: str = Field() - performed_via_github_app: Union[None, Integration, None] = Field() + performed_via_github_app: Union[None, Integration] = Field() review_requester: SimpleUser = Field( title="Simple User", description="A GitHub user." ) diff --git a/githubkit/versions/v2026_03_10/models/group_0380.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0380.py similarity index 95% rename from githubkit/versions/v2026_03_10/models/group_0380.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0380.py index 95f9cba011..384ea9ae06 100644 --- a/githubkit/versions/v2026_03_10/models/group_0380.py +++ b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0380.py @@ -36,7 +36,7 @@ class ReviewRequestRemovedIssueEvent(GitHubModel): commit_id: Union[str, None] = Field() commit_url: Union[str, None] = Field() created_at: str = Field() - performed_via_github_app: Union[None, Integration, None] = Field() + performed_via_github_app: Union[None, Integration] = Field() review_requester: SimpleUser = Field( title="Simple User", description="A GitHub user." ) diff --git a/githubkit/versions/v2026_03_10/models/group_0381.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0381.py similarity index 95% rename from githubkit/versions/v2026_03_10/models/group_0381.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0381.py index bc686e09d6..cc4a94a56f 100644 --- a/githubkit/versions/v2026_03_10/models/group_0381.py +++ b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0381.py @@ -35,7 +35,7 @@ class ReviewDismissedIssueEvent(GitHubModel): commit_id: Union[str, None] = Field() commit_url: Union[str, None] = Field() created_at: str = Field() - performed_via_github_app: Union[None, Integration, None] = Field() + performed_via_github_app: Union[None, Integration] = Field() dismissed_review: ReviewDismissedIssueEventPropDismissedReview = Field() diff --git a/githubkit/versions/v2026_03_10/models/group_0382.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0382.py similarity index 93% rename from githubkit/versions/v2026_03_10/models/group_0382.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0382.py index e0130f1522..c47c1c3352 100644 --- a/githubkit/versions/v2026_03_10/models/group_0382.py +++ b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0382.py @@ -33,7 +33,7 @@ class LockedIssueEvent(GitHubModel): commit_id: Union[str, None] = Field() commit_url: Union[str, None] = Field() created_at: str = Field() - performed_via_github_app: Union[None, Integration, None] = Field() + performed_via_github_app: Union[None, Integration] = Field() lock_reason: Union[str, None] = Field() diff --git a/githubkit/versions/v2026_03_10/models/group_0383.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0383.py similarity index 95% rename from githubkit/versions/v2026_03_10/models/group_0383.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0383.py index cf2b6b5f8f..e3c6fb1be8 100644 --- a/githubkit/versions/v2026_03_10/models/group_0383.py +++ b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0383.py @@ -35,7 +35,7 @@ class AddedToProjectIssueEvent(GitHubModel): commit_id: Union[str, None] = Field() commit_url: Union[str, None] = Field() created_at: str = Field() - performed_via_github_app: Union[None, Integration, None] = Field() + performed_via_github_app: Union[None, Integration] = Field() project_card: Missing[AddedToProjectIssueEventPropProjectCard] = Field( default=UNSET ) diff --git a/githubkit/versions/v2026_03_10/models/group_0384.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0384.py similarity index 95% rename from githubkit/versions/v2026_03_10/models/group_0384.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0384.py index 5d2b15f176..04b216df30 100644 --- a/githubkit/versions/v2026_03_10/models/group_0384.py +++ b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0384.py @@ -35,7 +35,7 @@ class MovedColumnInProjectIssueEvent(GitHubModel): commit_id: Union[str, None] = Field() commit_url: Union[str, None] = Field() created_at: str = Field() - performed_via_github_app: Union[None, Integration, None] = Field() + performed_via_github_app: Union[None, Integration] = Field() project_card: Missing[MovedColumnInProjectIssueEventPropProjectCard] = Field( default=UNSET ) diff --git a/githubkit/versions/v2026_03_10/models/group_0385.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0385.py similarity index 95% rename from githubkit/versions/v2026_03_10/models/group_0385.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0385.py index 3bd6fbf406..d935784e81 100644 --- a/githubkit/versions/v2026_03_10/models/group_0385.py +++ b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0385.py @@ -35,7 +35,7 @@ class RemovedFromProjectIssueEvent(GitHubModel): commit_id: Union[str, None] = Field() commit_url: Union[str, None] = Field() created_at: str = Field() - performed_via_github_app: Union[None, Integration, None] = Field() + performed_via_github_app: Union[None, Integration] = Field() project_card: Missing[RemovedFromProjectIssueEventPropProjectCard] = Field( default=UNSET ) diff --git a/githubkit/versions/v2026_03_10/models/group_0386.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0386.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0386.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0386.py diff --git a/githubkit/versions/v2026_03_10/models/group_0387.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0387.py similarity index 94% rename from githubkit/versions/v2026_03_10/models/group_0387.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0387.py index e7c93372c0..c0932d771f 100644 --- a/githubkit/versions/v2026_03_10/models/group_0387.py +++ b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0387.py @@ -58,9 +58,7 @@ class TimelineCommentEvent(GitHubModel): title="author_association", description="How the author is associated with the repository.", ) - performed_via_github_app: Missing[Union[None, Integration, None]] = Field( - default=UNSET - ) + performed_via_github_app: Missing[Union[None, Integration]] = Field(default=UNSET) reactions: Missing[ReactionRollup] = Field(default=UNSET, title="Reaction Rollup") pin: Missing[Union[None, PinnedIssueComment]] = Field(default=UNSET) diff --git a/githubkit/versions/v2026_03_10/models/group_0388.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0388.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0388.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0388.py diff --git a/githubkit/versions/v2026_03_10/models/group_0389.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0389.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0389.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0389.py diff --git a/githubkit/versions/v2026_03_10/models/group_0390.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0390.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0390.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0390.py diff --git a/githubkit/versions/v2026_03_10/models/group_0391.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0391.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0391.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0391.py diff --git a/githubkit/versions/v2026_03_10/models/group_0392.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0392.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0392.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0392.py diff --git a/githubkit/versions/v2026_03_10/models/group_0393.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0393.py similarity index 93% rename from githubkit/versions/v2026_03_10/models/group_0393.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0393.py index c45a39f8c0..4c346d16a7 100644 --- a/githubkit/versions/v2026_03_10/models/group_0393.py +++ b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0393.py @@ -33,7 +33,7 @@ class TimelineAssignedIssueEvent(GitHubModel): commit_id: Union[str, None] = Field() commit_url: Union[str, None] = Field() created_at: str = Field() - performed_via_github_app: Union[None, Integration, None] = Field() + performed_via_github_app: Union[None, Integration] = Field() assignee: SimpleUser = Field(title="Simple User", description="A GitHub user.") diff --git a/githubkit/versions/v2026_03_10/models/group_0394.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0394.py similarity index 93% rename from githubkit/versions/v2026_03_10/models/group_0394.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0394.py index 420f91c260..1345ff8005 100644 --- a/githubkit/versions/v2026_03_10/models/group_0394.py +++ b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0394.py @@ -33,7 +33,7 @@ class TimelineUnassignedIssueEvent(GitHubModel): commit_id: Union[str, None] = Field() commit_url: Union[str, None] = Field() created_at: str = Field() - performed_via_github_app: Union[None, Integration, None] = Field() + performed_via_github_app: Union[None, Integration] = Field() assignee: SimpleUser = Field(title="Simple User", description="A GitHub user.") diff --git a/githubkit/versions/v2026_03_10/models/group_0395.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0395.py similarity index 93% rename from githubkit/versions/v2026_03_10/models/group_0395.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0395.py index 799278e566..2f31082e88 100644 --- a/githubkit/versions/v2026_03_10/models/group_0395.py +++ b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0395.py @@ -35,7 +35,7 @@ class StateChangeIssueEvent(GitHubModel): commit_id: Union[str, None] = Field() commit_url: Union[str, None] = Field() created_at: str = Field() - performed_via_github_app: Union[None, Integration, None] = Field() + performed_via_github_app: Union[None, Integration] = Field() state_reason: Missing[Union[str, None]] = Field(default=UNSET) diff --git a/githubkit/versions/v2026_03_10/models/group_0396.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0396.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0396.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0396.py diff --git a/githubkit/versions/v2026_03_10/models/group_0397.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0397.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0397.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0397.py diff --git a/githubkit/versions/v2026_03_10/models/group_0398.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0398.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0398.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0398.py diff --git a/githubkit/versions/v2026_03_10/models/group_0399.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0399.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0399.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0399.py diff --git a/githubkit/versions/v2026_03_10/models/group_0400.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0400.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0400.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0400.py diff --git a/githubkit/versions/v2026_03_10/models/group_0401.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0401.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0401.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0401.py diff --git a/githubkit/versions/v2026_03_10/models/group_0402.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0402.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0402.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0402.py diff --git a/githubkit/versions/v2026_03_10/models/group_0403.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0403.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0403.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0403.py diff --git a/githubkit/versions/v2026_03_10/models/group_0404.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0404.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0404.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0404.py diff --git a/githubkit/versions/v2026_03_10/models/group_0405.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0405.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0405.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0405.py diff --git a/githubkit/versions/v2026_03_10/models/group_0406.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0406.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0406.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0406.py diff --git a/githubkit/versions/v2026_03_10/models/group_0407.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0407.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0407.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0407.py diff --git a/githubkit/versions/v2026_03_10/models/group_0408.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0408.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0408.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0408.py diff --git a/githubkit/versions/v2026_03_10/models/group_0409.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0409.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0409.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0409.py diff --git a/githubkit/versions/v2026_03_10/models/group_0410.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0410.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0410.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0410.py diff --git a/githubkit/versions/v2026_03_10/models/group_0411.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0411.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0411.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0411.py diff --git a/githubkit/versions/v2026_03_10/models/group_0412.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0412.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0412.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0412.py diff --git a/githubkit/versions/v2026_03_10/models/group_0413.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0413.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0413.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0413.py diff --git a/githubkit/versions/v2026_03_10/models/group_0414.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0414.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0414.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0414.py diff --git a/githubkit/versions/v2026_03_10/models/group_0415.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0415.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0415.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0415.py diff --git a/githubkit/versions/v2026_03_10/models/group_0416.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0416.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0416.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0416.py diff --git a/githubkit/versions/v2026_03_10/models/group_0417.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0417.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0417.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0417.py diff --git a/githubkit/versions/v2026_03_10/models/group_0418.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0418.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0418.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0418.py diff --git a/githubkit/versions/v2026_03_10/models/group_0419.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0419.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0419.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0419.py diff --git a/githubkit/versions/v2026_03_10/models/group_0420.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0420.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0420.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0420.py diff --git a/githubkit/versions/v2026_03_10/models/group_0421.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0421.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0421.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0421.py diff --git a/githubkit/versions/v2026_03_10/models/group_0422.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0422.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0422.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0422.py diff --git a/githubkit/versions/v2026_03_10/models/group_0423.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0423.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0423.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0423.py diff --git a/githubkit/versions/v2026_03_10/models/group_0424.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0424.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0424.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0424.py diff --git a/githubkit/versions/v2026_03_10/models/group_0425.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0425.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0425.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0425.py diff --git a/githubkit/versions/v2026_03_10/models/group_0426.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0426.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0426.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0426.py diff --git a/githubkit/versions/v2026_03_10/models/group_0427.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0427.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0427.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0427.py diff --git a/githubkit/versions/v2026_03_10/models/group_0428.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0428.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0428.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0428.py diff --git a/githubkit/versions/v2026_03_10/models/group_0429.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0429.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0429.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0429.py diff --git a/githubkit/versions/v2026_03_10/models/group_0430.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0430.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0430.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0430.py diff --git a/githubkit/versions/v2026_03_10/models/group_0431.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0431.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0431.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0431.py diff --git a/githubkit/versions/v2026_03_10/models/group_0432.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0432.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0432.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0432.py diff --git a/githubkit/versions/v2026_03_10/models/group_0433.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0433.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0433.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0433.py diff --git a/githubkit/versions/v2026_03_10/models/group_0434.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0434.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0434.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0434.py diff --git a/githubkit/versions/v2026_03_10/models/group_0435.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0435.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0435.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0435.py diff --git a/githubkit/versions/v2026_03_10/models/group_0436.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0436.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0436.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0436.py diff --git a/githubkit/versions/v2026_03_10/models/group_0437.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0437.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0437.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0437.py diff --git a/githubkit/versions/v2026_03_10/models/group_0438.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0438.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0438.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0438.py diff --git a/githubkit/versions/v2026_03_10/models/group_0439.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0439.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0439.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0439.py diff --git a/githubkit/versions/v2026_03_10/models/group_0440.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0440.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0440.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0440.py diff --git a/githubkit/versions/v2026_03_10/models/group_0441.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0441.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0441.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0441.py diff --git a/githubkit/versions/v2026_03_10/models/group_0442.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0442.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0442.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0442.py diff --git a/githubkit/versions/v2026_03_10/models/group_0443.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0443.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0443.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0443.py diff --git a/githubkit/versions/v2026_03_10/models/group_0444.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0444.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0444.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0444.py diff --git a/githubkit/versions/v2026_03_10/models/group_0445.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0445.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0445.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0445.py diff --git a/githubkit/versions/v2026_03_10/models/group_0446.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0446.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0446.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0446.py diff --git a/githubkit/versions/v2026_03_10/models/group_0447.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0447.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0447.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0447.py diff --git a/githubkit/versions/v2026_03_10/models/group_0448.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0448.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0448.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0448.py diff --git a/githubkit/versions/v2026_03_10/models/group_0449.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0449.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0449.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0449.py diff --git a/githubkit/versions/v2026_03_10/models/group_0450.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0450.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0450.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0450.py diff --git a/githubkit/versions/v2026_03_10/models/group_0451.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0451.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0451.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0451.py diff --git a/githubkit/versions/v2026_03_10/models/group_0452.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0452.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0452.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0452.py diff --git a/githubkit/versions/v2026_03_10/models/group_0453.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0453.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0453.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0453.py diff --git a/githubkit/versions/v2026_03_10/models/group_0454.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0454.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0454.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0454.py diff --git a/githubkit/versions/v2026_03_10/models/group_0455.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0455.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0455.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0455.py diff --git a/githubkit/versions/v2026_03_10/models/group_0456.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0456.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0456.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0456.py diff --git a/githubkit/versions/v2026_03_10/models/group_0457.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0457.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0457.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0457.py diff --git a/githubkit/versions/v2026_03_10/models/group_0458.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0458.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0458.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0458.py diff --git a/githubkit/versions/v2026_03_10/models/group_0459.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0459.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0459.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0459.py diff --git a/githubkit/versions/v2026_03_10/models/group_0460.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0460.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0460.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0460.py diff --git a/githubkit/versions/v2026_03_10/models/group_0461.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0461.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0461.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0461.py diff --git a/githubkit/versions/v2026_03_10/models/group_0462.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0462.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0462.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0462.py diff --git a/githubkit/versions/v2026_03_10/models/group_0463.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0463.py similarity index 98% rename from githubkit/versions/v2026_03_10/models/group_0463.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0463.py index 871ca33c5e..46a737c80c 100644 --- a/githubkit/versions/v2026_03_10/models/group_0463.py +++ b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0463.py @@ -94,9 +94,7 @@ class IssueSearchResultItem(GitHubModel): type: Missing[Union[IssueType, None]] = Field( default=UNSET, title="Issue Type", description="The type of issue." ) - performed_via_github_app: Missing[Union[None, Integration, None]] = Field( - default=UNSET - ) + performed_via_github_app: Missing[Union[None, Integration]] = Field(default=UNSET) pinned_comment: Missing[Union[None, IssueComment]] = Field(default=UNSET) reactions: Missing[ReactionRollup] = Field(default=UNSET, title="Reaction Rollup") diff --git a/githubkit/versions/v2026_03_10/models/group_0464.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0464.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0464.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0464.py diff --git a/githubkit/versions/v2026_03_10/models/group_0465.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0465.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0465.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0465.py diff --git a/githubkit/versions/v2026_03_10/models/group_0466.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0466.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0466.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0466.py diff --git a/githubkit/versions/v2026_03_10/models/group_0467.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0467.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0467.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0467.py diff --git a/githubkit/versions/v2026_03_10/models/group_0468.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0468.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0468.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0468.py diff --git a/githubkit/versions/v2026_03_10/models/group_0469.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0469.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0469.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0469.py diff --git a/githubkit/versions/v2026_03_10/models/group_0470.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0470.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0470.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0470.py diff --git a/githubkit/versions/v2026_03_10/models/group_0471.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0471.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0471.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0471.py diff --git a/githubkit/versions/v2026_03_10/models/group_0472.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0472.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0472.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0472.py diff --git a/githubkit/versions/v2026_03_10/models/group_0473.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0473.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0473.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0473.py diff --git a/githubkit/versions/v2026_03_10/models/group_0474.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0474.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0474.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0474.py diff --git a/githubkit/versions/v2026_03_10/models/group_0475.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0475.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0475.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0475.py diff --git a/githubkit/versions/v2026_03_10/models/group_0476.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0476.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0476.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0476.py diff --git a/githubkit/versions/v2026_03_10/models/group_0477.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0477.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0477.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0477.py diff --git a/githubkit/versions/v2026_03_10/models/group_0478.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0478.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0478.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0478.py diff --git a/githubkit/versions/v2026_03_10/models/group_0479.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0479.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0479.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0479.py diff --git a/githubkit/versions/v2026_03_10/models/group_0480.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0480.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0480.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0480.py diff --git a/githubkit/versions/v2026_03_10/models/group_0481.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0481.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0481.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0481.py diff --git a/githubkit/versions/v2026_03_10/models/group_0482.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0482.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0482.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0482.py diff --git a/githubkit/versions/v2026_03_10/models/group_0483.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0483.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0483.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0483.py diff --git a/githubkit/versions/v2026_03_10/models/group_0484.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0484.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0484.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0484.py diff --git a/githubkit/versions/v2026_03_10/models/group_0485.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0485.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0485.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0485.py diff --git a/githubkit/versions/v2026_03_10/models/group_0486.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0486.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0486.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0486.py diff --git a/githubkit/versions/v2026_03_10/models/group_0487.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0487.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0487.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0487.py diff --git a/githubkit/versions/v2026_03_10/models/group_0488.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0488.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0488.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0488.py diff --git a/githubkit/versions/v2026_03_10/models/group_0489.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0489.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0489.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0489.py diff --git a/githubkit/versions/v2026_03_10/models/group_0490.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0490.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0490.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0490.py diff --git a/githubkit/versions/v2026_03_10/models/group_0491.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0491.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0491.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0491.py diff --git a/githubkit/versions/v2026_03_10/models/group_0492.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0492.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0492.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0492.py diff --git a/githubkit/versions/v2026_03_10/models/group_0493.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0493.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0493.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0493.py diff --git a/githubkit/versions/v2026_03_10/models/group_0494.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0494.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0494.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0494.py diff --git a/githubkit/versions/v2026_03_10/models/group_0495.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0495.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0495.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0495.py diff --git a/githubkit/versions/v2026_03_10/models/group_0496.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0496.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0496.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0496.py diff --git a/githubkit/versions/v2026_03_10/models/group_0497.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0497.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0497.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0497.py diff --git a/githubkit/versions/v2026_03_10/models/group_0498.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0498.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0498.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0498.py diff --git a/githubkit/versions/v2026_03_10/models/group_0499.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0499.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0499.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0499.py diff --git a/githubkit/versions/v2026_03_10/models/group_0500.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0500.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0500.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0500.py diff --git a/githubkit/versions/v2026_03_10/models/group_0501.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0501.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0501.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0501.py diff --git a/githubkit/versions/v2026_03_10/models/group_0502.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0502.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0502.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0502.py diff --git a/githubkit/versions/v2026_03_10/models/group_0503.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0503.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0503.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0503.py diff --git a/githubkit/versions/v2026_03_10/models/group_0504.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0504.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0504.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0504.py diff --git a/githubkit/versions/v2026_03_10/models/group_0505.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0505.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0505.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0505.py diff --git a/githubkit/versions/v2026_03_10/models/group_0506.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0506.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0506.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0506.py diff --git a/githubkit/versions/v2026_03_10/models/group_0507.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0507.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0507.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0507.py diff --git a/githubkit/versions/v2026_03_10/models/group_0508.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0508.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0508.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0508.py diff --git a/githubkit/versions/v2026_03_10/models/group_0509.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0509.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0509.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0509.py diff --git a/githubkit/versions/v2026_03_10/models/group_0510.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0510.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0510.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0510.py diff --git a/githubkit/versions/v2026_03_10/models/group_0511.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0511.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0511.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0511.py diff --git a/githubkit/versions/v2026_03_10/models/group_0512.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0512.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0512.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0512.py diff --git a/githubkit/versions/v2026_03_10/models/group_0513.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0513.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0513.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0513.py diff --git a/githubkit/versions/v2026_03_10/models/group_0514.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0514.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0514.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0514.py diff --git a/githubkit/versions/v2026_03_10/models/group_0515.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0515.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0515.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0515.py diff --git a/githubkit/versions/v2026_03_10/models/group_0516.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0516.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0516.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0516.py diff --git a/githubkit/versions/v2026_03_10/models/group_0517.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0517.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0517.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0517.py diff --git a/githubkit/versions/v2026_03_10/models/group_0518.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0518.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0518.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0518.py diff --git a/githubkit/versions/v2026_03_10/models/group_0519.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0519.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0519.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0519.py diff --git a/githubkit/versions/v2026_03_10/models/group_0520.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0520.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0520.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0520.py diff --git a/githubkit/versions/v2026_03_10/models/group_0521.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0521.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0521.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0521.py diff --git a/githubkit/versions/v2026_03_10/models/group_0522.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0522.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0522.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0522.py diff --git a/githubkit/versions/v2026_03_10/models/group_0523.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0523.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0523.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0523.py diff --git a/githubkit/versions/v2026_03_10/models/group_0524.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0524.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0524.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0524.py diff --git a/githubkit/versions/v2026_03_10/models/group_0525.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0525.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0525.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0525.py diff --git a/githubkit/versions/v2026_03_10/models/group_0526.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0526.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0526.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0526.py diff --git a/githubkit/versions/v2026_03_10/models/group_0527.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0527.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0527.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0527.py diff --git a/githubkit/versions/v2026_03_10/models/group_0528.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0528.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0528.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0528.py diff --git a/githubkit/versions/v2026_03_10/models/group_0529.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0529.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0529.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0529.py diff --git a/githubkit/versions/v2026_03_10/models/group_0530.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0530.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0530.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0530.py diff --git a/githubkit/versions/v2026_03_10/models/group_0531.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0531.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0531.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0531.py diff --git a/githubkit/versions/v2026_03_10/models/group_0532.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0532.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0532.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0532.py diff --git a/githubkit/versions/v2026_03_10/models/group_0533.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0533.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0533.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0533.py diff --git a/githubkit/versions/v2026_03_10/models/group_0534.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0534.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0534.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0534.py diff --git a/githubkit/versions/v2026_03_10/models/group_0535.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0535.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0535.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0535.py diff --git a/githubkit/versions/v2026_03_10/models/group_0536.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0536.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0536.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0536.py diff --git a/githubkit/versions/v2026_03_10/models/group_0537.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0537.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0537.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0537.py diff --git a/githubkit/versions/v2026_03_10/models/group_0538.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0538.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0538.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0538.py diff --git a/githubkit/versions/v2026_03_10/models/group_0539.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0539.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0539.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0539.py diff --git a/githubkit/versions/v2026_03_10/models/group_0540.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0540.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0540.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0540.py diff --git a/githubkit/versions/v2026_03_10/models/group_0541.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0541.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0541.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0541.py diff --git a/githubkit/versions/v2026_03_10/models/group_0542.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0542.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0542.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0542.py diff --git a/githubkit/versions/v2026_03_10/models/group_0543.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0543.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0543.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0543.py diff --git a/githubkit/versions/v2026_03_10/models/group_0544.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0544.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0544.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0544.py diff --git a/githubkit/versions/v2026_03_10/models/group_0545.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0545.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0545.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0545.py diff --git a/githubkit/versions/v2026_03_10/models/group_0546.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0546.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0546.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0546.py diff --git a/githubkit/versions/v2026_03_10/models/group_0547.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0547.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0547.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0547.py diff --git a/githubkit/versions/v2026_03_10/models/group_0548.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0548.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0548.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0548.py diff --git a/githubkit/versions/v2026_03_10/models/group_0549.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0549.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0549.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0549.py diff --git a/githubkit/versions/v2026_03_10/models/group_0550.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0550.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0550.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0550.py diff --git a/githubkit/versions/v2026_03_10/models/group_0551.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0551.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0551.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0551.py diff --git a/githubkit/versions/v2026_03_10/models/group_0552.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0552.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0552.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0552.py diff --git a/githubkit/versions/v2026_03_10/models/group_0553.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0553.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0553.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0553.py diff --git a/githubkit/versions/v2026_03_10/models/group_0554.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0554.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0554.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0554.py diff --git a/githubkit/versions/v2026_03_10/models/group_0555.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0555.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0555.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0555.py diff --git a/githubkit/versions/v2026_03_10/models/group_0556.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0556.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0556.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0556.py diff --git a/githubkit/versions/v2026_03_10/models/group_0557.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0557.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0557.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0557.py diff --git a/githubkit/versions/v2026_03_10/models/group_0558.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0558.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0558.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0558.py diff --git a/githubkit/versions/v2026_03_10/models/group_0559.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0559.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0559.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0559.py diff --git a/githubkit/versions/v2026_03_10/models/group_0560.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0560.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0560.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0560.py diff --git a/githubkit/versions/v2026_03_10/models/group_0561.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0561.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0561.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0561.py diff --git a/githubkit/versions/v2026_03_10/models/group_0562.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0562.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0562.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0562.py diff --git a/githubkit/versions/v2026_03_10/models/group_0563.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0563.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0563.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0563.py diff --git a/githubkit/versions/v2026_03_10/models/group_0564.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0564.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0564.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0564.py diff --git a/githubkit/versions/v2026_03_10/models/group_0565.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0565.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0565.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0565.py diff --git a/githubkit/versions/v2026_03_10/models/group_0566.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0566.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0566.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0566.py diff --git a/githubkit/versions/v2026_03_10/models/group_0567.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0567.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0567.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0567.py diff --git a/githubkit/versions/v2026_03_10/models/group_0568.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0568.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0568.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0568.py diff --git a/githubkit/versions/v2026_03_10/models/group_0569.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0569.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0569.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0569.py diff --git a/githubkit/versions/v2026_03_10/models/group_0570.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0570.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0570.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0570.py diff --git a/githubkit/versions/v2026_03_10/models/group_0571.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0571.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0571.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0571.py diff --git a/githubkit/versions/v2026_03_10/models/group_0572.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0572.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0572.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0572.py diff --git a/githubkit/versions/v2026_03_10/models/group_0573.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0573.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0573.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0573.py diff --git a/githubkit/versions/v2026_03_10/models/group_0574.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0574.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0574.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0574.py diff --git a/githubkit/versions/v2026_03_10/models/group_0575.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0575.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0575.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0575.py diff --git a/githubkit/versions/v2026_03_10/models/group_0576.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0576.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0576.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0576.py diff --git a/githubkit/versions/v2026_03_10/models/group_0577.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0577.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0577.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0577.py diff --git a/githubkit/versions/v2026_03_10/models/group_0578.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0578.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0578.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0578.py diff --git a/githubkit/versions/v2026_03_10/models/group_0579.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0579.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0579.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0579.py diff --git a/githubkit/versions/v2026_03_10/models/group_0580.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0580.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0580.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0580.py diff --git a/githubkit/versions/v2026_03_10/models/group_0581.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0581.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0581.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0581.py diff --git a/githubkit/versions/v2026_03_10/models/group_0582.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0582.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0582.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0582.py diff --git a/githubkit/versions/v2026_03_10/models/group_0583.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0583.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0583.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0583.py diff --git a/githubkit/versions/v2026_03_10/models/group_0584.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0584.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0584.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0584.py diff --git a/githubkit/versions/v2026_03_10/models/group_0585.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0585.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0585.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0585.py diff --git a/githubkit/versions/v2026_03_10/models/group_0586.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0586.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0586.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0586.py diff --git a/githubkit/versions/v2026_03_10/models/group_0587.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0587.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0587.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0587.py diff --git a/githubkit/versions/v2026_03_10/models/group_0588.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0588.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0588.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0588.py diff --git a/githubkit/versions/v2026_03_10/models/group_0589.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0589.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0589.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0589.py diff --git a/githubkit/versions/v2026_03_10/models/group_0590.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0590.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0590.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0590.py diff --git a/githubkit/versions/v2026_03_10/models/group_0591.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0591.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0591.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0591.py diff --git a/githubkit/versions/v2026_03_10/models/group_0592.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0592.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0592.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0592.py diff --git a/githubkit/versions/v2026_03_10/models/group_0593.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0593.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0593.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0593.py diff --git a/githubkit/versions/v2026_03_10/models/group_0594.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0594.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0594.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0594.py diff --git a/githubkit/versions/v2026_03_10/models/group_0595.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0595.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0595.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0595.py diff --git a/githubkit/versions/v2026_03_10/models/group_0596.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0596.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0596.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0596.py diff --git a/githubkit/versions/v2026_03_10/models/group_0597.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0597.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0597.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0597.py diff --git a/githubkit/versions/v2026_03_10/models/group_0598.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0598.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0598.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0598.py diff --git a/githubkit/versions/v2026_03_10/models/group_0599.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0599.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0599.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0599.py diff --git a/githubkit/versions/v2026_03_10/models/group_0600.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0600.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0600.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0600.py diff --git a/githubkit/versions/v2026_03_10/models/group_0601.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0601.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0601.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0601.py diff --git a/githubkit/versions/v2026_03_10/models/group_0602.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0602.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0602.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0602.py diff --git a/githubkit/versions/v2026_03_10/models/group_0603.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0603.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0603.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0603.py diff --git a/githubkit/versions/v2026_03_10/models/group_0604.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0604.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0604.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0604.py diff --git a/githubkit/versions/v2026_03_10/models/group_0605.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0605.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0605.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0605.py diff --git a/githubkit/versions/v2026_03_10/models/group_0606.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0606.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0606.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0606.py diff --git a/githubkit/versions/v2026_03_10/models/group_0607.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0607.py similarity index 98% rename from githubkit/versions/v2026_03_10/models/group_0607.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0607.py index d1ac1b6129..a1bc6ad742 100644 --- a/githubkit/versions/v2026_03_10/models/group_0607.py +++ b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0607.py @@ -65,7 +65,7 @@ class WebhookForkPropForkee(GitHubModel): description="Whether to delete head branches when pull requests are merged", ) deployments_url: str = Field() - description: Union[Union[str, None], None] = Field() + description: Union[str, None] = Field() disabled: Missing[bool] = Field( default=UNSET, description="Returns whether or not this repository is disabled." ) @@ -89,7 +89,7 @@ class WebhookForkPropForkee(GitHubModel): default=True, description="Whether projects are enabled." ) has_wiki: bool = Field(default=True, description="Whether the wiki is enabled.") - homepage: Union[Union[str, None], None] = Field() + homepage: Union[str, None] = Field() hooks_url: str = Field() html_url: str = Field() id: int = Field(description="Unique identifier of the repository") diff --git a/githubkit/versions/v2026_03_10/models/group_0608.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0608.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0608.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0608.py diff --git a/githubkit/versions/v2026_03_10/models/group_0609.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0609.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0609.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0609.py diff --git a/githubkit/versions/v2026_03_10/models/group_0610.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0610.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0610.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0610.py diff --git a/githubkit/versions/v2026_03_10/models/group_0611.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0611.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0611.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0611.py diff --git a/githubkit/versions/v2026_03_10/models/group_0612.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0612.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0612.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0612.py diff --git a/githubkit/versions/v2026_03_10/models/group_0613.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0613.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0613.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0613.py diff --git a/githubkit/versions/v2026_03_10/models/group_0614.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0614.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0614.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0614.py diff --git a/githubkit/versions/v2026_03_10/models/group_0615.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0615.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0615.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0615.py diff --git a/githubkit/versions/v2026_03_10/models/group_0616.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0616.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0616.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0616.py diff --git a/githubkit/versions/v2026_03_10/models/group_0617.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0617.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0617.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0617.py diff --git a/githubkit/versions/v2026_03_10/models/group_0618.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0618.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0618.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0618.py diff --git a/githubkit/versions/v2026_03_10/models/group_0619.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0619.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0619.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0619.py diff --git a/githubkit/versions/v2026_03_10/models/group_0620.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0620.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0620.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0620.py diff --git a/githubkit/versions/v2026_03_10/models/group_0621.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0621.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0621.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0621.py diff --git a/githubkit/versions/v2026_03_10/models/group_0622.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0622.py similarity index 98% rename from githubkit/versions/v2026_03_10/models/group_0622.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0622.py index bbcaf82c4f..c65da36bcf 100644 --- a/githubkit/versions/v2026_03_10/models/group_0622.py +++ b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0622.py @@ -48,7 +48,7 @@ class WebhookIssueCommentCreatedPropComment(GitHubModel): id: int = Field(description="Unique identifier of the issue comment") issue_url: str = Field() node_id: str = Field() - performed_via_github_app: Union[None, Integration, None] = Field() + performed_via_github_app: Union[None, Integration] = Field() reactions: WebhookIssueCommentCreatedPropCommentPropReactions = Field( title="Reactions" ) diff --git a/githubkit/versions/v2026_03_10/models/group_0623.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0623.py similarity index 97% rename from githubkit/versions/v2026_03_10/models/group_0623.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0623.py index 544c38c309..67f633e092 100644 --- a/githubkit/versions/v2026_03_10/models/group_0623.py +++ b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0623.py @@ -39,9 +39,9 @@ class WebhookIssueCommentCreatedPropIssue(GitHubModel): active_lock_reason: Union[ Literal["resolved", "off-topic", "too heated", "spam"], None ] = Field() - assignee: Union[ - Union[WebhookIssueCommentCreatedPropIssueAllof0PropAssignee, None], None - ] = Field(title="User") + assignee: Union[WebhookIssueCommentCreatedPropIssueAllof0PropAssignee, None] = ( + Field(title="User") + ) assignees: list[WebhookIssueCommentCreatedPropIssueMergedAssignees] = Field() author_association: Literal[ "COLLABORATOR", @@ -56,7 +56,7 @@ class WebhookIssueCommentCreatedPropIssue(GitHubModel): title="AuthorAssociation", description="How the author is associated with the repository.", ) - body: Union[Union[str, None], None] = Field(description="Contents of the issue") + body: Union[str, None] = Field(description="Contents of the issue") closed_at: Union[_dt.datetime, None] = Field() comments: int = Field() comments_url: str = Field() diff --git a/githubkit/versions/v2026_03_10/models/group_0624.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0624.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0624.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0624.py diff --git a/githubkit/versions/v2026_03_10/models/group_0625.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0625.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0625.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0625.py diff --git a/githubkit/versions/v2026_03_10/models/group_0626.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0626.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0626.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0626.py diff --git a/githubkit/versions/v2026_03_10/models/group_0627.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0627.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0627.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0627.py diff --git a/githubkit/versions/v2026_03_10/models/group_0628.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0628.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0628.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0628.py diff --git a/githubkit/versions/v2026_03_10/models/group_0629.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0629.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0629.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0629.py diff --git a/githubkit/versions/v2026_03_10/models/group_0630.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0630.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0630.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0630.py diff --git a/githubkit/versions/v2026_03_10/models/group_0631.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0631.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0631.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0631.py diff --git a/githubkit/versions/v2026_03_10/models/group_0632.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0632.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0632.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0632.py diff --git a/githubkit/versions/v2026_03_10/models/group_0633.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0633.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0633.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0633.py diff --git a/githubkit/versions/v2026_03_10/models/group_0634.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0634.py similarity index 97% rename from githubkit/versions/v2026_03_10/models/group_0634.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0634.py index 2cc2c2a8b8..4e63dbafdc 100644 --- a/githubkit/versions/v2026_03_10/models/group_0634.py +++ b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0634.py @@ -39,9 +39,9 @@ class WebhookIssueCommentDeletedPropIssue(GitHubModel): active_lock_reason: Union[ Literal["resolved", "off-topic", "too heated", "spam"], None ] = Field() - assignee: Union[ - Union[WebhookIssueCommentDeletedPropIssueAllof0PropAssignee, None], None - ] = Field(title="User") + assignee: Union[WebhookIssueCommentDeletedPropIssueAllof0PropAssignee, None] = ( + Field(title="User") + ) assignees: list[WebhookIssueCommentDeletedPropIssueMergedAssignees] = Field() author_association: Literal[ "COLLABORATOR", @@ -56,7 +56,7 @@ class WebhookIssueCommentDeletedPropIssue(GitHubModel): title="AuthorAssociation", description="How the author is associated with the repository.", ) - body: Union[Union[str, None], None] = Field(description="Contents of the issue") + body: Union[str, None] = Field(description="Contents of the issue") closed_at: Union[_dt.datetime, None] = Field() comments: int = Field() comments_url: str = Field() diff --git a/githubkit/versions/v2026_03_10/models/group_0635.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0635.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0635.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0635.py diff --git a/githubkit/versions/v2026_03_10/models/group_0636.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0636.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0636.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0636.py diff --git a/githubkit/versions/v2026_03_10/models/group_0637.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0637.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0637.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0637.py diff --git a/githubkit/versions/v2026_03_10/models/group_0638.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0638.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0638.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0638.py diff --git a/githubkit/versions/v2026_03_10/models/group_0639.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0639.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0639.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0639.py diff --git a/githubkit/versions/v2026_03_10/models/group_0640.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0640.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0640.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0640.py diff --git a/githubkit/versions/v2026_03_10/models/group_0641.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0641.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0641.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0641.py diff --git a/githubkit/versions/v2026_03_10/models/group_0642.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0642.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0642.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0642.py diff --git a/githubkit/versions/v2026_03_10/models/group_0643.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0643.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0643.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0643.py diff --git a/githubkit/versions/v2026_03_10/models/group_0644.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0644.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0644.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0644.py diff --git a/githubkit/versions/v2026_03_10/models/group_0645.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0645.py similarity index 97% rename from githubkit/versions/v2026_03_10/models/group_0645.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0645.py index 47a445a454..59275e467e 100644 --- a/githubkit/versions/v2026_03_10/models/group_0645.py +++ b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0645.py @@ -39,9 +39,9 @@ class WebhookIssueCommentEditedPropIssue(GitHubModel): active_lock_reason: Union[ Literal["resolved", "off-topic", "too heated", "spam"], None ] = Field() - assignee: Union[ - Union[WebhookIssueCommentEditedPropIssueAllof0PropAssignee, None], None - ] = Field(title="User") + assignee: Union[WebhookIssueCommentEditedPropIssueAllof0PropAssignee, None] = Field( + title="User" + ) assignees: list[WebhookIssueCommentEditedPropIssueMergedAssignees] = Field() author_association: Literal[ "COLLABORATOR", @@ -56,7 +56,7 @@ class WebhookIssueCommentEditedPropIssue(GitHubModel): title="AuthorAssociation", description="How the author is associated with the repository.", ) - body: Union[Union[str, None], None] = Field(description="Contents of the issue") + body: Union[str, None] = Field(description="Contents of the issue") closed_at: Union[_dt.datetime, None] = Field() comments: int = Field() comments_url: str = Field() diff --git a/githubkit/versions/v2026_03_10/models/group_0646.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0646.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0646.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0646.py diff --git a/githubkit/versions/v2026_03_10/models/group_0647.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0647.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0647.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0647.py diff --git a/githubkit/versions/v2026_03_10/models/group_0648.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0648.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0648.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0648.py diff --git a/githubkit/versions/v2026_03_10/models/group_0649.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0649.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0649.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0649.py diff --git a/githubkit/versions/v2026_03_10/models/group_0650.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0650.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0650.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0650.py diff --git a/githubkit/versions/v2026_03_10/models/group_0651.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0651.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0651.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0651.py diff --git a/githubkit/versions/v2026_03_10/models/group_0652.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0652.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0652.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0652.py diff --git a/githubkit/versions/v2026_03_10/models/group_0653.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0653.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0653.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0653.py diff --git a/githubkit/versions/v2026_03_10/models/group_0654.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0654.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0654.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0654.py diff --git a/githubkit/versions/v2026_03_10/models/group_0655.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0655.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0655.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0655.py diff --git a/githubkit/versions/v2026_03_10/models/group_0656.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0656.py similarity index 97% rename from githubkit/versions/v2026_03_10/models/group_0656.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0656.py index 9001d50033..a78ebc8568 100644 --- a/githubkit/versions/v2026_03_10/models/group_0656.py +++ b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0656.py @@ -39,9 +39,9 @@ class WebhookIssueCommentPinnedPropIssue(GitHubModel): active_lock_reason: Union[ Literal["resolved", "off-topic", "too heated", "spam"], None ] = Field() - assignee: Union[ - Union[WebhookIssueCommentPinnedPropIssueAllof0PropAssignee, None], None - ] = Field(title="User") + assignee: Union[WebhookIssueCommentPinnedPropIssueAllof0PropAssignee, None] = Field( + title="User" + ) assignees: list[WebhookIssueCommentPinnedPropIssueMergedAssignees] = Field() author_association: Literal[ "COLLABORATOR", @@ -56,7 +56,7 @@ class WebhookIssueCommentPinnedPropIssue(GitHubModel): title="AuthorAssociation", description="How the author is associated with the repository.", ) - body: Union[Union[str, None], None] = Field(description="Contents of the issue") + body: Union[str, None] = Field(description="Contents of the issue") closed_at: Union[_dt.datetime, None] = Field() comments: int = Field() comments_url: str = Field() diff --git a/githubkit/versions/v2026_03_10/models/group_0657.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0657.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0657.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0657.py diff --git a/githubkit/versions/v2026_03_10/models/group_0658.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0658.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0658.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0658.py diff --git a/githubkit/versions/v2026_03_10/models/group_0659.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0659.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0659.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0659.py diff --git a/githubkit/versions/v2026_03_10/models/group_0660.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0660.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0660.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0660.py diff --git a/githubkit/versions/v2026_03_10/models/group_0661.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0661.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0661.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0661.py diff --git a/githubkit/versions/v2026_03_10/models/group_0662.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0662.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0662.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0662.py diff --git a/githubkit/versions/v2026_03_10/models/group_0663.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0663.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0663.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0663.py diff --git a/githubkit/versions/v2026_03_10/models/group_0664.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0664.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0664.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0664.py diff --git a/githubkit/versions/v2026_03_10/models/group_0665.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0665.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0665.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0665.py diff --git a/githubkit/versions/v2026_03_10/models/group_0666.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0666.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0666.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0666.py diff --git a/githubkit/versions/v2026_03_10/models/group_0667.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0667.py similarity index 97% rename from githubkit/versions/v2026_03_10/models/group_0667.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0667.py index a5213858eb..7917a1dffd 100644 --- a/githubkit/versions/v2026_03_10/models/group_0667.py +++ b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0667.py @@ -39,9 +39,9 @@ class WebhookIssueCommentUnpinnedPropIssue(GitHubModel): active_lock_reason: Union[ Literal["resolved", "off-topic", "too heated", "spam"], None ] = Field() - assignee: Union[ - Union[WebhookIssueCommentUnpinnedPropIssueAllof0PropAssignee, None], None - ] = Field(title="User") + assignee: Union[WebhookIssueCommentUnpinnedPropIssueAllof0PropAssignee, None] = ( + Field(title="User") + ) assignees: list[WebhookIssueCommentUnpinnedPropIssueMergedAssignees] = Field() author_association: Literal[ "COLLABORATOR", @@ -56,7 +56,7 @@ class WebhookIssueCommentUnpinnedPropIssue(GitHubModel): title="AuthorAssociation", description="How the author is associated with the repository.", ) - body: Union[Union[str, None], None] = Field(description="Contents of the issue") + body: Union[str, None] = Field(description="Contents of the issue") closed_at: Union[_dt.datetime, None] = Field() comments: int = Field() comments_url: str = Field() diff --git a/githubkit/versions/v2026_03_10/models/group_0668.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0668.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0668.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0668.py diff --git a/githubkit/versions/v2026_03_10/models/group_0669.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0669.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0669.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0669.py diff --git a/githubkit/versions/v2026_03_10/models/group_0670.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0670.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0670.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0670.py diff --git a/githubkit/versions/v2026_03_10/models/group_0671.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0671.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0671.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0671.py diff --git a/githubkit/versions/v2026_03_10/models/group_0672.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0672.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0672.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0672.py diff --git a/githubkit/versions/v2026_03_10/models/group_0673.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0673.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0673.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0673.py diff --git a/githubkit/versions/v2026_03_10/models/group_0674.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0674.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0674.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0674.py diff --git a/githubkit/versions/v2026_03_10/models/group_0675.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0675.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0675.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0675.py diff --git a/githubkit/versions/v2026_03_10/models/group_0676.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0676.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0676.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0676.py diff --git a/githubkit/versions/v2026_03_10/models/group_0677.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0677.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0677.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0677.py diff --git a/githubkit/versions/v2026_03_10/models/group_0678.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0678.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0678.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0678.py diff --git a/githubkit/versions/v2026_03_10/models/group_0679.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0679.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0679.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0679.py diff --git a/githubkit/versions/v2026_03_10/models/group_0680.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0680.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0680.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0680.py diff --git a/githubkit/versions/v2026_03_10/models/group_0681.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0681.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0681.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0681.py diff --git a/githubkit/versions/v2026_03_10/models/group_0682.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0682.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0682.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0682.py diff --git a/githubkit/versions/v2026_03_10/models/group_0683.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0683.py similarity index 99% rename from githubkit/versions/v2026_03_10/models/group_0683.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0683.py index 29ef437b15..22a62683ac 100644 --- a/githubkit/versions/v2026_03_10/models/group_0683.py +++ b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0683.py @@ -53,7 +53,7 @@ class WebhookIssuesClosedPropIssue(GitHubModel): title="AuthorAssociation", description="How the author is associated with the repository.", ) - body: Union[Union[str, None], None] = Field(description="Contents of the issue") + body: Union[str, None] = Field(description="Contents of the issue") closed_at: Union[_dt.datetime, None] = Field() comments: int = Field() comments_url: str = Field() diff --git a/githubkit/versions/v2026_03_10/models/group_0684.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0684.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0684.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0684.py diff --git a/githubkit/versions/v2026_03_10/models/group_0685.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0685.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0685.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0685.py diff --git a/githubkit/versions/v2026_03_10/models/group_0686.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0686.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0686.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0686.py diff --git a/githubkit/versions/v2026_03_10/models/group_0687.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0687.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0687.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0687.py diff --git a/githubkit/versions/v2026_03_10/models/group_0688.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0688.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0688.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0688.py diff --git a/githubkit/versions/v2026_03_10/models/group_0689.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0689.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0689.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0689.py diff --git a/githubkit/versions/v2026_03_10/models/group_0690.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0690.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0690.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0690.py diff --git a/githubkit/versions/v2026_03_10/models/group_0691.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0691.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0691.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0691.py diff --git a/githubkit/versions/v2026_03_10/models/group_0692.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0692.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0692.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0692.py diff --git a/githubkit/versions/v2026_03_10/models/group_0693.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0693.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0693.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0693.py diff --git a/githubkit/versions/v2026_03_10/models/group_0694.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0694.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0694.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0694.py diff --git a/githubkit/versions/v2026_03_10/models/group_0695.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0695.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0695.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0695.py diff --git a/githubkit/versions/v2026_03_10/models/group_0696.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0696.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0696.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0696.py diff --git a/githubkit/versions/v2026_03_10/models/group_0697.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0697.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0697.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0697.py diff --git a/githubkit/versions/v2026_03_10/models/group_0698.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0698.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0698.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0698.py diff --git a/githubkit/versions/v2026_03_10/models/group_0699.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0699.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0699.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0699.py diff --git a/githubkit/versions/v2026_03_10/models/group_0700.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0700.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0700.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0700.py diff --git a/githubkit/versions/v2026_03_10/models/group_0701.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0701.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0701.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0701.py diff --git a/githubkit/versions/v2026_03_10/models/group_0702.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0702.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0702.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0702.py diff --git a/githubkit/versions/v2026_03_10/models/group_0703.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0703.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0703.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0703.py diff --git a/githubkit/versions/v2026_03_10/models/group_0704.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0704.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0704.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0704.py diff --git a/githubkit/versions/v2026_03_10/models/group_0705.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0705.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0705.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0705.py diff --git a/githubkit/versions/v2026_03_10/models/group_0706.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0706.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0706.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0706.py diff --git a/githubkit/versions/v2026_03_10/models/group_0707.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0707.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0707.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0707.py diff --git a/githubkit/versions/v2026_03_10/models/group_0708.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0708.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0708.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0708.py diff --git a/githubkit/versions/v2026_03_10/models/group_0709.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0709.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0709.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0709.py diff --git a/githubkit/versions/v2026_03_10/models/group_0710.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0710.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0710.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0710.py diff --git a/githubkit/versions/v2026_03_10/models/group_0711.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0711.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0711.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0711.py diff --git a/githubkit/versions/v2026_03_10/models/group_0712.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0712.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0712.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0712.py diff --git a/githubkit/versions/v2026_03_10/models/group_0713.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0713.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0713.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0713.py diff --git a/githubkit/versions/v2026_03_10/models/group_0714.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0714.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0714.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0714.py diff --git a/githubkit/versions/v2026_03_10/models/group_0715.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0715.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0715.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0715.py diff --git a/githubkit/versions/v2026_03_10/models/group_0716.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0716.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0716.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0716.py diff --git a/githubkit/versions/v2026_03_10/models/group_0717.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0717.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0717.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0717.py diff --git a/githubkit/versions/v2026_03_10/models/group_0718.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0718.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0718.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0718.py diff --git a/githubkit/versions/v2026_03_10/models/group_0719.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0719.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0719.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0719.py diff --git a/githubkit/versions/v2026_03_10/models/group_0720.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0720.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0720.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0720.py diff --git a/githubkit/versions/v2026_03_10/models/group_0721.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0721.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0721.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0721.py diff --git a/githubkit/versions/v2026_03_10/models/group_0722.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0722.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0722.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0722.py diff --git a/githubkit/versions/v2026_03_10/models/group_0723.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0723.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0723.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0723.py diff --git a/githubkit/versions/v2026_03_10/models/group_0724.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0724.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0724.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0724.py diff --git a/githubkit/versions/v2026_03_10/models/group_0725.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0725.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0725.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0725.py diff --git a/githubkit/versions/v2026_03_10/models/group_0726.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0726.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0726.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0726.py diff --git a/githubkit/versions/v2026_03_10/models/group_0727.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0727.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0727.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0727.py diff --git a/githubkit/versions/v2026_03_10/models/group_0728.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0728.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0728.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0728.py diff --git a/githubkit/versions/v2026_03_10/models/group_0729.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0729.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0729.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0729.py diff --git a/githubkit/versions/v2026_03_10/models/group_0730.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0730.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0730.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0730.py diff --git a/githubkit/versions/v2026_03_10/models/group_0731.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0731.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0731.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0731.py diff --git a/githubkit/versions/v2026_03_10/models/group_0732.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0732.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0732.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0732.py diff --git a/githubkit/versions/v2026_03_10/models/group_0733.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0733.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0733.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0733.py diff --git a/githubkit/versions/v2026_03_10/models/group_0734.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0734.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0734.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0734.py diff --git a/githubkit/versions/v2026_03_10/models/group_0735.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0735.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0735.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0735.py diff --git a/githubkit/versions/v2026_03_10/models/group_0736.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0736.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0736.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0736.py diff --git a/githubkit/versions/v2026_03_10/models/group_0737.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0737.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0737.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0737.py diff --git a/githubkit/versions/v2026_03_10/models/group_0738.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0738.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0738.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0738.py diff --git a/githubkit/versions/v2026_03_10/models/group_0739.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0739.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0739.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0739.py diff --git a/githubkit/versions/v2026_03_10/models/group_0740.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0740.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0740.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0740.py diff --git a/githubkit/versions/v2026_03_10/models/group_0741.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0741.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0741.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0741.py diff --git a/githubkit/versions/v2026_03_10/models/group_0742.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0742.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0742.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0742.py diff --git a/githubkit/versions/v2026_03_10/models/group_0743.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0743.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0743.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0743.py diff --git a/githubkit/versions/v2026_03_10/models/group_0744.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0744.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0744.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0744.py diff --git a/githubkit/versions/v2026_03_10/models/group_0745.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0745.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0745.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0745.py diff --git a/githubkit/versions/v2026_03_10/models/group_0746.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0746.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0746.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0746.py diff --git a/githubkit/versions/v2026_03_10/models/group_0747.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0747.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0747.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0747.py diff --git a/githubkit/versions/v2026_03_10/models/group_0748.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0748.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0748.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0748.py diff --git a/githubkit/versions/v2026_03_10/models/group_0749.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0749.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0749.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0749.py diff --git a/githubkit/versions/v2026_03_10/models/group_0750.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0750.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0750.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0750.py diff --git a/githubkit/versions/v2026_03_10/models/group_0751.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0751.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0751.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0751.py diff --git a/githubkit/versions/v2026_03_10/models/group_0752.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0752.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0752.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0752.py diff --git a/githubkit/versions/v2026_03_10/models/group_0753.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0753.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0753.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0753.py diff --git a/githubkit/versions/v2026_03_10/models/group_0754.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0754.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0754.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0754.py diff --git a/githubkit/versions/v2026_03_10/models/group_0755.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0755.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0755.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0755.py diff --git a/githubkit/versions/v2026_03_10/models/group_0756.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0756.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0756.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0756.py diff --git a/githubkit/versions/v2026_03_10/models/group_0757.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0757.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0757.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0757.py diff --git a/githubkit/versions/v2026_03_10/models/group_0758.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0758.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0758.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0758.py diff --git a/githubkit/versions/v2026_03_10/models/group_0759.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0759.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0759.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0759.py diff --git a/githubkit/versions/v2026_03_10/models/group_0760.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0760.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0760.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0760.py diff --git a/githubkit/versions/v2026_03_10/models/group_0761.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0761.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0761.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0761.py diff --git a/githubkit/versions/v2026_03_10/models/group_0762.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0762.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0762.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0762.py diff --git a/githubkit/versions/v2026_03_10/models/group_0763.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0763.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0763.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0763.py diff --git a/githubkit/versions/v2026_03_10/models/group_0764.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0764.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0764.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0764.py diff --git a/githubkit/versions/v2026_03_10/models/group_0765.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0765.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0765.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0765.py diff --git a/githubkit/versions/v2026_03_10/models/group_0766.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0766.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0766.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0766.py diff --git a/githubkit/versions/v2026_03_10/models/group_0767.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0767.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0767.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0767.py diff --git a/githubkit/versions/v2026_03_10/models/group_0768.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0768.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0768.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0768.py diff --git a/githubkit/versions/v2026_03_10/models/group_0769.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0769.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0769.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0769.py diff --git a/githubkit/versions/v2026_03_10/models/group_0770.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0770.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0770.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0770.py diff --git a/githubkit/versions/v2026_03_10/models/group_0771.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0771.py similarity index 98% rename from githubkit/versions/v2026_03_10/models/group_0771.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0771.py index 118ebb13dc..0ed89ebfe7 100644 --- a/githubkit/versions/v2026_03_10/models/group_0771.py +++ b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0771.py @@ -69,7 +69,7 @@ class WebhookProjectCardMovedPropChangesPropColumnId(GitHubModel): class WebhookProjectCardMovedPropProjectCard(GitHubModel): """WebhookProjectCardMovedPropProjectCard""" - after_id: Union[Union[int, None], None] = Field() + after_id: Union[int, None] = Field() archived: bool = Field(description="Whether or not the card is archived") column_id: int = Field() column_url: str = Field() @@ -78,7 +78,7 @@ class WebhookProjectCardMovedPropProjectCard(GitHubModel): creator: Union[WebhookProjectCardMovedPropProjectCardMergedCreator, None] = Field() id: int = Field(description="The project card's ID") node_id: str = Field() - note: Union[Union[str, None], None] = Field() + note: Union[str, None] = Field() project_url: str = Field() updated_at: _dt.datetime = Field() url: str = Field() diff --git a/githubkit/versions/v2026_03_10/models/group_0772.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0772.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0772.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0772.py diff --git a/githubkit/versions/v2026_03_10/models/group_0773.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0773.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0773.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0773.py diff --git a/githubkit/versions/v2026_03_10/models/group_0774.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0774.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0774.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0774.py diff --git a/githubkit/versions/v2026_03_10/models/group_0775.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0775.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0775.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0775.py diff --git a/githubkit/versions/v2026_03_10/models/group_0776.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0776.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0776.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0776.py diff --git a/githubkit/versions/v2026_03_10/models/group_0777.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0777.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0777.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0777.py diff --git a/githubkit/versions/v2026_03_10/models/group_0778.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0778.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0778.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0778.py diff --git a/githubkit/versions/v2026_03_10/models/group_0779.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0779.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0779.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0779.py diff --git a/githubkit/versions/v2026_03_10/models/group_0780.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0780.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0780.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0780.py diff --git a/githubkit/versions/v2026_03_10/models/group_0781.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0781.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0781.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0781.py diff --git a/githubkit/versions/v2026_03_10/models/group_0782.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0782.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0782.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0782.py diff --git a/githubkit/versions/v2026_03_10/models/group_0783.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0783.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0783.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0783.py diff --git a/githubkit/versions/v2026_03_10/models/group_0784.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0784.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0784.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0784.py diff --git a/githubkit/versions/v2026_03_10/models/group_0785.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0785.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0785.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0785.py diff --git a/githubkit/versions/v2026_03_10/models/group_0786.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0786.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0786.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0786.py diff --git a/githubkit/versions/v2026_03_10/models/group_0787.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0787.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0787.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0787.py diff --git a/githubkit/versions/v2026_03_10/models/group_0788.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0788.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0788.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0788.py diff --git a/githubkit/versions/v2026_03_10/models/group_0789.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0789.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0789.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0789.py diff --git a/githubkit/versions/v2026_03_10/models/group_0790.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0790.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0790.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0790.py diff --git a/githubkit/versions/v2026_03_10/models/group_0791.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0791.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0791.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0791.py diff --git a/githubkit/versions/v2026_03_10/models/group_0792.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0792.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0792.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0792.py diff --git a/githubkit/versions/v2026_03_10/models/group_0793.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0793.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0793.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0793.py diff --git a/githubkit/versions/v2026_03_10/models/group_0794.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0794.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0794.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0794.py diff --git a/githubkit/versions/v2026_03_10/models/group_0795.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0795.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0795.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0795.py diff --git a/githubkit/versions/v2026_03_10/models/group_0796.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0796.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0796.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0796.py diff --git a/githubkit/versions/v2026_03_10/models/group_0797.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0797.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0797.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0797.py diff --git a/githubkit/versions/v2026_03_10/models/group_0798.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0798.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0798.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0798.py diff --git a/githubkit/versions/v2026_03_10/models/group_0799.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0799.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0799.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0799.py diff --git a/githubkit/versions/v2026_03_10/models/group_0800.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0800.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0800.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0800.py diff --git a/githubkit/versions/v2026_03_10/models/group_0801.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0801.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0801.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0801.py diff --git a/githubkit/versions/v2026_03_10/models/group_0802.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0802.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0802.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0802.py diff --git a/githubkit/versions/v2026_03_10/models/group_0803.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0803.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0803.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0803.py diff --git a/githubkit/versions/v2026_03_10/models/group_0804.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0804.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0804.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0804.py diff --git a/githubkit/versions/v2026_03_10/models/group_0805.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0805.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0805.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0805.py diff --git a/githubkit/versions/v2026_03_10/models/group_0806.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0806.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0806.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0806.py diff --git a/githubkit/versions/v2026_03_10/models/group_0807.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0807.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0807.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0807.py diff --git a/githubkit/versions/v2026_03_10/models/group_0808.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0808.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0808.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0808.py diff --git a/githubkit/versions/v2026_03_10/models/group_0809.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0809.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0809.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0809.py diff --git a/githubkit/versions/v2026_03_10/models/group_0810.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0810.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0810.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0810.py diff --git a/githubkit/versions/v2026_03_10/models/group_0811.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0811.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0811.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0811.py diff --git a/githubkit/versions/v2026_03_10/models/group_0812.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0812.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0812.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0812.py diff --git a/githubkit/versions/v2026_03_10/models/group_0813.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0813.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0813.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0813.py diff --git a/githubkit/versions/v2026_03_10/models/group_0814.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0814.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0814.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0814.py diff --git a/githubkit/versions/v2026_03_10/models/group_0815.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0815.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0815.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0815.py diff --git a/githubkit/versions/v2026_03_10/models/group_0816.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0816.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0816.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0816.py diff --git a/githubkit/versions/v2026_03_10/models/group_0817.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0817.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0817.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0817.py diff --git a/githubkit/versions/v2026_03_10/models/group_0818.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0818.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0818.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0818.py diff --git a/githubkit/versions/v2026_03_10/models/group_0819.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0819.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0819.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0819.py diff --git a/githubkit/versions/v2026_03_10/models/group_0820.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0820.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0820.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0820.py diff --git a/githubkit/versions/v2026_03_10/models/group_0821.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0821.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0821.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0821.py diff --git a/githubkit/versions/v2026_03_10/models/group_0822.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0822.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0822.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0822.py diff --git a/githubkit/versions/v2026_03_10/models/group_0823.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0823.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0823.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0823.py diff --git a/githubkit/versions/v2026_03_10/models/group_0824.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0824.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0824.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0824.py diff --git a/githubkit/versions/v2026_03_10/models/group_0825.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0825.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0825.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0825.py diff --git a/githubkit/versions/v2026_03_10/models/group_0826.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0826.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0826.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0826.py diff --git a/githubkit/versions/v2026_03_10/models/group_0827.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0827.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0827.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0827.py diff --git a/githubkit/versions/v2026_03_10/models/group_0828.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0828.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0828.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0828.py diff --git a/githubkit/versions/v2026_03_10/models/group_0829.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0829.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0829.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0829.py diff --git a/githubkit/versions/v2026_03_10/models/group_0830.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0830.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0830.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0830.py diff --git a/githubkit/versions/v2026_03_10/models/group_0831.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0831.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0831.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0831.py diff --git a/githubkit/versions/v2026_03_10/models/group_0832.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0832.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0832.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0832.py diff --git a/githubkit/versions/v2026_03_10/models/group_0833.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0833.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0833.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0833.py diff --git a/githubkit/versions/v2026_03_10/models/group_0834.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0834.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0834.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0834.py diff --git a/githubkit/versions/v2026_03_10/models/group_0835.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0835.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0835.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0835.py diff --git a/githubkit/versions/v2026_03_10/models/group_0836.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0836.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0836.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0836.py diff --git a/githubkit/versions/v2026_03_10/models/group_0837.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0837.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0837.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0837.py diff --git a/githubkit/versions/v2026_03_10/models/group_0838.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0838.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0838.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0838.py diff --git a/githubkit/versions/v2026_03_10/models/group_0839.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0839.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0839.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0839.py diff --git a/githubkit/versions/v2026_03_10/models/group_0840.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0840.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0840.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0840.py diff --git a/githubkit/versions/v2026_03_10/models/group_0841.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0841.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0841.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0841.py diff --git a/githubkit/versions/v2026_03_10/models/group_0842.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0842.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0842.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0842.py diff --git a/githubkit/versions/v2026_03_10/models/group_0843.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0843.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0843.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0843.py diff --git a/githubkit/versions/v2026_03_10/models/group_0844.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0844.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0844.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0844.py diff --git a/githubkit/versions/v2026_03_10/models/group_0845.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0845.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0845.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0845.py diff --git a/githubkit/versions/v2026_03_10/models/group_0846.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0846.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0846.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0846.py diff --git a/githubkit/versions/v2026_03_10/models/group_0847.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0847.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0847.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0847.py diff --git a/githubkit/versions/v2026_03_10/models/group_0848.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0848.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0848.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0848.py diff --git a/githubkit/versions/v2026_03_10/models/group_0849.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0849.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0849.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0849.py diff --git a/githubkit/versions/v2026_03_10/models/group_0850.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0850.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0850.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0850.py diff --git a/githubkit/versions/v2026_03_10/models/group_0851.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0851.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0851.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0851.py diff --git a/githubkit/versions/v2026_03_10/models/group_0852.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0852.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0852.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0852.py diff --git a/githubkit/versions/v2026_03_10/models/group_0853.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0853.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0853.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0853.py diff --git a/githubkit/versions/v2026_03_10/models/group_0854.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0854.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0854.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0854.py diff --git a/githubkit/versions/v2026_03_10/models/group_0855.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0855.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0855.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0855.py diff --git a/githubkit/versions/v2026_03_10/models/group_0856.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0856.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0856.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0856.py diff --git a/githubkit/versions/v2026_03_10/models/group_0857.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0857.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0857.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0857.py diff --git a/githubkit/versions/v2026_03_10/models/group_0858.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0858.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0858.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0858.py diff --git a/githubkit/versions/v2026_03_10/models/group_0859.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0859.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0859.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0859.py diff --git a/githubkit/versions/v2026_03_10/models/group_0860.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0860.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0860.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0860.py diff --git a/githubkit/versions/v2026_03_10/models/group_0861.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0861.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0861.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0861.py diff --git a/githubkit/versions/v2026_03_10/models/group_0862.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0862.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0862.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0862.py diff --git a/githubkit/versions/v2026_03_10/models/group_0863.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0863.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0863.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0863.py diff --git a/githubkit/versions/v2026_03_10/models/group_0864.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0864.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0864.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0864.py diff --git a/githubkit/versions/v2026_03_10/models/group_0865.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0865.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0865.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0865.py diff --git a/githubkit/versions/v2026_03_10/models/group_0866.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0866.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0866.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0866.py diff --git a/githubkit/versions/v2026_03_10/models/group_0867.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0867.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0867.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0867.py diff --git a/githubkit/versions/v2026_03_10/models/group_0868.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0868.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0868.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0868.py diff --git a/githubkit/versions/v2026_03_10/models/group_0869.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0869.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0869.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0869.py diff --git a/githubkit/versions/v2026_03_10/models/group_0870.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0870.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0870.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0870.py diff --git a/githubkit/versions/v2026_03_10/models/group_0871.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0871.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0871.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0871.py diff --git a/githubkit/versions/v2026_03_10/models/group_0872.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0872.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0872.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0872.py diff --git a/githubkit/versions/v2026_03_10/models/group_0873.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0873.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0873.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0873.py diff --git a/githubkit/versions/v2026_03_10/models/group_0874.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0874.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0874.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0874.py diff --git a/githubkit/versions/v2026_03_10/models/group_0875.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0875.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0875.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0875.py diff --git a/githubkit/versions/v2026_03_10/models/group_0876.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0876.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0876.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0876.py diff --git a/githubkit/versions/v2026_03_10/models/group_0877.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0877.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0877.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0877.py diff --git a/githubkit/versions/v2026_03_10/models/group_0878.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0878.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0878.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0878.py diff --git a/githubkit/versions/v2026_03_10/models/group_0879.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0879.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0879.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0879.py diff --git a/githubkit/versions/v2026_03_10/models/group_0880.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0880.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0880.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0880.py diff --git a/githubkit/versions/v2026_03_10/models/group_0881.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0881.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0881.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0881.py diff --git a/githubkit/versions/v2026_03_10/models/group_0882.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0882.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0882.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0882.py diff --git a/githubkit/versions/v2026_03_10/models/group_0883.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0883.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0883.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0883.py diff --git a/githubkit/versions/v2026_03_10/models/group_0884.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0884.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0884.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0884.py diff --git a/githubkit/versions/v2026_03_10/models/group_0885.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0885.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0885.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0885.py diff --git a/githubkit/versions/v2026_03_10/models/group_0886.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0886.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0886.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0886.py diff --git a/githubkit/versions/v2026_03_10/models/group_0887.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0887.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0887.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0887.py diff --git a/githubkit/versions/v2026_03_10/models/group_0888.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0888.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0888.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0888.py diff --git a/githubkit/versions/v2026_03_10/models/group_0889.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0889.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0889.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0889.py diff --git a/githubkit/versions/v2026_03_10/models/group_0890.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0890.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0890.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0890.py diff --git a/githubkit/versions/v2026_03_10/models/group_0891.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0891.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0891.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0891.py diff --git a/githubkit/versions/v2026_03_10/models/group_0892.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0892.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0892.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0892.py diff --git a/githubkit/versions/v2026_03_10/models/group_0893.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0893.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0893.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0893.py diff --git a/githubkit/versions/v2026_03_10/models/group_0894.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0894.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0894.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0894.py diff --git a/githubkit/versions/v2026_03_10/models/group_0895.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0895.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0895.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0895.py diff --git a/githubkit/versions/v2026_03_10/models/group_0896.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0896.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0896.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0896.py diff --git a/githubkit/versions/v2026_03_10/models/group_0897.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0897.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0897.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0897.py diff --git a/githubkit/versions/v2026_03_10/models/group_0898.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0898.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0898.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0898.py diff --git a/githubkit/versions/v2026_03_10/models/group_0899.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0899.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0899.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0899.py diff --git a/githubkit/versions/v2026_03_10/models/group_0900.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0900.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0900.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0900.py diff --git a/githubkit/versions/v2026_03_10/models/group_0901.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0901.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0901.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0901.py diff --git a/githubkit/versions/v2026_03_10/models/group_0902.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0902.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0902.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0902.py diff --git a/githubkit/versions/v2026_03_10/models/group_0903.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0903.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0903.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0903.py diff --git a/githubkit/versions/v2026_03_10/models/group_0904.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0904.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0904.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0904.py diff --git a/githubkit/versions/v2026_03_10/models/group_0905.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0905.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0905.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0905.py diff --git a/githubkit/versions/v2026_03_10/models/group_0906.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0906.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0906.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0906.py diff --git a/githubkit/versions/v2026_03_10/models/group_0907.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0907.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0907.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0907.py diff --git a/githubkit/versions/v2026_03_10/models/group_0908.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0908.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0908.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0908.py diff --git a/githubkit/versions/v2026_03_10/models/group_0909.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0909.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0909.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0909.py diff --git a/githubkit/versions/v2026_03_10/models/group_0910.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0910.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0910.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0910.py diff --git a/githubkit/versions/v2026_03_10/models/group_0911.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0911.py similarity index 92% rename from githubkit/versions/v2026_03_10/models/group_0911.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0911.py index 5df556f887..02170528f4 100644 --- a/githubkit/versions/v2026_03_10/models/group_0911.py +++ b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0911.py @@ -83,28 +83,24 @@ class WebhookWorkflowJobCompletedPropWorkflowJob(GitHubModel): run_attempt: int = Field() run_id: int = Field() run_url: str = Field() - runner_group_id: Union[Union[int, None], None] = Field( + runner_group_id: Union[int, None] = Field( description="The ID of the runner group that is running this job. This will be `null` as long as `workflow_job[status]` is `queued`." ) - runner_group_name: Union[Union[str, None], None] = Field( + runner_group_name: Union[str, None] = Field( description="The name of the runner group that is running this job. This will be `null` as long as `workflow_job[status]` is `queued`." ) - runner_id: Union[Union[int, None], None] = Field( + runner_id: Union[int, None] = Field( description="The ID of the runner that is running this job. This will be `null` as long as `workflow_job[status]` is `queued`." ) - runner_name: Union[Union[str, None], None] = Field( + runner_name: Union[str, None] = Field( description="The name of the runner that is running this job. This will be `null` as long as `workflow_job[status]` is `queued`." ) started_at: str = Field() status: Literal["queued", "in_progress", "completed", "waiting"] = Field( description="The current status of the job. Can be `queued`, `in_progress`, `waiting`, or `completed`." ) - head_branch: Union[Union[str, None], None] = Field( - description="The name of the current branch." - ) - workflow_name: Union[Union[str, None], None] = Field( - description="The name of the workflow." - ) + head_branch: Union[str, None] = Field(description="The name of the current branch.") + workflow_name: Union[str, None] = Field(description="The name of the workflow.") steps: list[WebhookWorkflowJobCompletedPropWorkflowJobMergedSteps] = Field() url: str = Field() diff --git a/githubkit/versions/v2026_03_10/models/group_0912.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0912.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0912.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0912.py diff --git a/githubkit/versions/v2026_03_10/models/group_0913.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0913.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0913.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0913.py diff --git a/githubkit/versions/v2026_03_10/models/group_0914.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0914.py similarity index 88% rename from githubkit/versions/v2026_03_10/models/group_0914.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0914.py index 1a45e89f6c..26f7996ef6 100644 --- a/githubkit/versions/v2026_03_10/models/group_0914.py +++ b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0914.py @@ -61,7 +61,7 @@ class WebhookWorkflowJobInProgressPropWorkflowJob(GitHubModel): """WebhookWorkflowJobInProgressPropWorkflowJob""" check_run_url: str = Field() - completed_at: Union[Union[str, None], None] = Field() + completed_at: Union[str, None] = Field() conclusion: Union[Literal["success", "failure", "cancelled", "neutral"], None] = ( Field() ) @@ -77,28 +77,24 @@ class WebhookWorkflowJobInProgressPropWorkflowJob(GitHubModel): run_attempt: int = Field() run_id: int = Field() run_url: str = Field() - runner_group_id: Union[Union[int, None], None] = Field( + runner_group_id: Union[int, None] = Field( description="The ID of the runner group that is running this job. This will be `null` as long as `workflow_job[status]` is `queued`." ) - runner_group_name: Union[Union[str, None], None] = Field( + runner_group_name: Union[str, None] = Field( description="The name of the runner group that is running this job. This will be `null` as long as `workflow_job[status]` is `queued`." ) - runner_id: Union[Union[int, None], None] = Field( + runner_id: Union[int, None] = Field( description="The ID of the runner that is running this job. This will be `null` as long as `workflow_job[status]` is `queued`." ) - runner_name: Union[Union[str, None], None] = Field( + runner_name: Union[str, None] = Field( description="The name of the runner that is running this job. This will be `null` as long as `workflow_job[status]` is `queued`." ) started_at: str = Field() status: Literal["queued", "in_progress", "completed"] = Field( description="The current status of the job. Can be `queued`, `in_progress`, or `completed`." ) - head_branch: Union[Union[str, None], None] = Field( - description="The name of the current branch." - ) - workflow_name: Union[Union[str, None], None] = Field( - description="The name of the workflow." - ) + head_branch: Union[str, None] = Field(description="The name of the current branch.") + workflow_name: Union[str, None] = Field(description="The name of the workflow.") steps: list[WebhookWorkflowJobInProgressPropWorkflowJobMergedSteps] = Field() url: str = Field() @@ -106,13 +102,13 @@ class WebhookWorkflowJobInProgressPropWorkflowJob(GitHubModel): class WebhookWorkflowJobInProgressPropWorkflowJobMergedSteps(GitHubModel): """WebhookWorkflowJobInProgressPropWorkflowJobMergedSteps""" - completed_at: Union[Union[str, None], None] = Field() + completed_at: Union[str, None] = Field() conclusion: Union[Literal["failure", "skipped", "success", "cancelled"], None] = ( Field() ) name: str = Field() number: int = Field() - started_at: Union[Union[str, None], None] = Field() + started_at: Union[str, None] = Field() status: Literal["in_progress", "completed", "queued", "pending"] = Field() diff --git a/githubkit/versions/v2026_03_10/models/group_0915.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0915.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0915.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0915.py diff --git a/githubkit/versions/v2026_03_10/models/group_0916.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0916.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0916.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0916.py diff --git a/githubkit/versions/v2026_03_10/models/group_0917.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0917.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0917.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0917.py diff --git a/githubkit/versions/v2026_03_10/models/group_0918.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0918.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0918.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0918.py diff --git a/githubkit/versions/v2026_03_10/models/group_0919.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0919.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0919.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0919.py diff --git a/githubkit/versions/v2026_03_10/models/group_0920.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0920.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0920.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0920.py diff --git a/githubkit/versions/v2026_03_10/models/group_0921.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0921.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0921.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0921.py diff --git a/githubkit/versions/v2026_03_10/models/group_0922.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0922.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0922.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0922.py diff --git a/githubkit/versions/v2026_03_10/models/group_0923.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0923.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0923.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0923.py diff --git a/githubkit/versions/v2026_03_10/models/group_0924.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0924.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0924.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0924.py diff --git a/githubkit/versions/v2026_03_10/models/group_0925.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0925.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0925.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0925.py diff --git a/githubkit/versions/v2026_03_10/models/group_0926.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0926.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0926.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0926.py diff --git a/githubkit/versions/v2026_03_10/models/group_0927.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0927.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0927.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0927.py diff --git a/githubkit/versions/v2026_03_10/models/group_0928.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0928.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0928.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0928.py diff --git a/githubkit/versions/v2026_03_10/models/group_0929.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0929.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0929.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0929.py diff --git a/githubkit/versions/v2026_03_10/models/group_0930.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0930.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0930.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0930.py diff --git a/githubkit/versions/v2026_03_10/models/group_0931.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0931.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0931.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0931.py diff --git a/githubkit/versions/v2026_03_10/models/group_0932.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0932.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0932.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0932.py diff --git a/githubkit/versions/v2026_03_10/models/group_0933.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0933.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0933.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0933.py diff --git a/githubkit/versions/v2026_03_10/models/group_0934.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0934.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0934.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0934.py diff --git a/githubkit/versions/v2026_03_10/models/group_0935.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0935.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0935.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0935.py diff --git a/githubkit/versions/v2026_03_10/models/group_0936.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0936.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0936.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0936.py diff --git a/githubkit/versions/v2026_03_10/models/group_0937.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0937.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0937.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0937.py diff --git a/githubkit/versions/v2026_03_10/models/group_0938.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0938.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0938.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0938.py diff --git a/githubkit/versions/v2026_03_10/models/group_0939.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0939.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0939.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0939.py diff --git a/githubkit/versions/v2026_03_10/models/group_0940.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0940.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0940.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0940.py diff --git a/githubkit/versions/v2026_03_10/models/group_0941.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0941.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0941.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0941.py diff --git a/githubkit/versions/v2026_03_10/models/group_0942.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0942.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0942.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0942.py diff --git a/githubkit/versions/v2026_03_10/models/group_0943.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0943.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0943.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0943.py diff --git a/githubkit/versions/v2026_03_10/models/group_0944.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0944.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0944.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0944.py diff --git a/githubkit/versions/v2026_03_10/models/group_0945.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0945.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0945.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0945.py diff --git a/githubkit/versions/v2026_03_10/models/group_0946.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0946.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0946.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0946.py diff --git a/githubkit/versions/v2026_03_10/models/group_0947.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0947.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0947.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0947.py diff --git a/githubkit/versions/v2026_03_10/models/group_0948.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0948.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0948.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0948.py diff --git a/githubkit/versions/v2026_03_10/models/group_0949.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0949.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0949.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0949.py diff --git a/githubkit/versions/v2026_03_10/models/group_0950.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0950.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0950.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0950.py diff --git a/githubkit/versions/v2026_03_10/models/group_0951.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0951.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0951.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0951.py diff --git a/githubkit/versions/v2026_03_10/models/group_0952.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0952.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0952.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0952.py diff --git a/githubkit/versions/v2026_03_10/models/group_0953.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0953.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0953.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0953.py diff --git a/githubkit/versions/v2026_03_10/models/group_0954.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0954.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0954.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0954.py diff --git a/githubkit/versions/v2026_03_10/models/group_0955.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0955.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0955.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0955.py diff --git a/githubkit/versions/v2026_03_10/models/group_0956.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0956.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0956.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0956.py diff --git a/githubkit/versions/v2026_03_10/models/group_0957.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0957.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0957.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0957.py diff --git a/githubkit/versions/v2026_03_10/models/group_0958.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0958.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0958.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0958.py diff --git a/githubkit/versions/v2026_03_10/models/group_0959.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0959.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0959.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0959.py diff --git a/githubkit/versions/v2026_03_10/models/group_0960.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0960.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0960.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0960.py diff --git a/githubkit/versions/v2026_03_10/models/group_0961.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0961.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0961.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0961.py diff --git a/githubkit/versions/v2026_03_10/models/group_0962.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0962.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0962.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0962.py diff --git a/githubkit/versions/v2026_03_10/models/group_0963.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0963.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0963.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0963.py diff --git a/githubkit/versions/v2026_03_10/models/group_0964.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0964.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0964.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0964.py diff --git a/githubkit/versions/v2026_03_10/models/group_0965.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0965.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0965.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0965.py diff --git a/githubkit/versions/v2026_03_10/models/group_0966.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0966.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0966.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0966.py diff --git a/githubkit/versions/v2026_03_10/models/group_0967.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0967.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0967.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0967.py diff --git a/githubkit/versions/v2026_03_10/models/group_0968.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0968.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0968.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0968.py diff --git a/githubkit/versions/v2026_03_10/models/group_0969.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0969.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0969.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0969.py diff --git a/githubkit/versions/v2026_03_10/models/group_0970.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0970.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0970.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0970.py diff --git a/githubkit/versions/v2026_03_10/models/group_0971.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0971.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0971.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0971.py diff --git a/githubkit/versions/v2026_03_10/models/group_0972.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0972.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0972.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0972.py diff --git a/githubkit/versions/v2026_03_10/models/group_0973.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0973.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0973.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0973.py diff --git a/githubkit/versions/v2026_03_10/models/group_0974.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0974.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0974.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0974.py diff --git a/githubkit/versions/v2026_03_10/models/group_0975.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0975.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0975.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0975.py diff --git a/githubkit/versions/v2026_03_10/models/group_0976.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0976.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0976.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0976.py diff --git a/githubkit/versions/v2026_03_10/models/group_0977.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0977.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0977.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0977.py diff --git a/githubkit/versions/v2026_03_10/models/group_0978.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0978.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0978.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0978.py diff --git a/githubkit/versions/v2026_03_10/models/group_0979.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0979.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0979.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0979.py diff --git a/githubkit/versions/v2026_03_10/models/group_0980.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0980.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0980.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0980.py diff --git a/githubkit/versions/v2026_03_10/models/group_0981.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0981.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0981.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0981.py diff --git a/githubkit/versions/v2026_03_10/models/group_0982.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0982.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0982.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0982.py diff --git a/githubkit/versions/v2026_03_10/models/group_0983.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0983.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0983.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0983.py diff --git a/githubkit/versions/v2026_03_10/models/group_0984.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0984.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0984.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0984.py diff --git a/githubkit/versions/v2026_03_10/models/group_0985.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0985.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0985.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0985.py diff --git a/githubkit/versions/v2026_03_10/models/group_0986.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0986.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0986.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0986.py diff --git a/githubkit/versions/v2026_03_10/models/group_0987.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0987.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0987.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0987.py diff --git a/githubkit/versions/v2026_03_10/models/group_0988.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0988.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0988.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0988.py diff --git a/githubkit/versions/v2026_03_10/models/group_0989.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0989.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0989.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0989.py diff --git a/githubkit/versions/v2026_03_10/models/group_0990.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0990.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0990.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0990.py diff --git a/githubkit/versions/v2026_03_10/models/group_0991.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0991.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0991.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0991.py diff --git a/githubkit/versions/v2026_03_10/models/group_0992.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0992.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0992.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0992.py diff --git a/githubkit/versions/v2026_03_10/models/group_0993.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0993.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0993.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0993.py diff --git a/githubkit/versions/v2026_03_10/models/group_0994.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0994.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0994.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0994.py diff --git a/githubkit/versions/v2026_03_10/models/group_0995.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0995.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0995.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0995.py diff --git a/githubkit/versions/v2026_03_10/models/group_0996.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0996.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0996.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0996.py diff --git a/githubkit/versions/v2026_03_10/models/group_0997.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0997.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0997.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0997.py diff --git a/githubkit/versions/v2026_03_10/models/group_0998.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0998.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0998.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0998.py diff --git a/githubkit/versions/v2026_03_10/models/group_0999.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0999.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0999.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_0999.py diff --git a/githubkit/versions/v2026_03_10/models/group_1000.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1000.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1000.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1000.py diff --git a/githubkit/versions/v2026_03_10/models/group_1001.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1001.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1001.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1001.py diff --git a/githubkit/versions/v2026_03_10/models/group_1002.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1002.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1002.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1002.py diff --git a/githubkit/versions/v2026_03_10/models/group_1003.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1003.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1003.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1003.py diff --git a/githubkit/versions/v2026_03_10/models/group_1004.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1004.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1004.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1004.py diff --git a/githubkit/versions/v2026_03_10/models/group_1005.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1005.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1005.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1005.py diff --git a/githubkit/versions/v2026_03_10/models/group_1006.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1006.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1006.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1006.py diff --git a/githubkit/versions/v2026_03_10/models/group_1007.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1007.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1007.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1007.py diff --git a/githubkit/versions/v2026_03_10/models/group_1008.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1008.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1008.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1008.py diff --git a/githubkit/versions/v2026_03_10/models/group_1009.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1009.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1009.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1009.py diff --git a/githubkit/versions/v2026_03_10/models/group_1010.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1010.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1010.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1010.py diff --git a/githubkit/versions/v2026_03_10/models/group_1011.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1011.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1011.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1011.py diff --git a/githubkit/versions/v2026_03_10/models/group_1012.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1012.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1012.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1012.py diff --git a/githubkit/versions/v2026_03_10/models/group_1013.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1013.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1013.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1013.py diff --git a/githubkit/versions/v2026_03_10/models/group_1014.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1014.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1014.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1014.py diff --git a/githubkit/versions/v2026_03_10/models/group_1015.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1015.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1015.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1015.py diff --git a/githubkit/versions/v2026_03_10/models/group_1016.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1016.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1016.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1016.py diff --git a/githubkit/versions/v2026_03_10/models/group_1017.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1017.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1017.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1017.py diff --git a/githubkit/versions/v2026_03_10/models/group_1018.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1018.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1018.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1018.py diff --git a/githubkit/versions/v2026_03_10/models/group_1019.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1019.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1019.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1019.py diff --git a/githubkit/versions/v2026_03_10/models/group_1020.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1020.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1020.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1020.py diff --git a/githubkit/versions/v2026_03_10/models/group_1021.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1021.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1021.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1021.py diff --git a/githubkit/versions/v2026_03_10/models/group_1022.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1022.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1022.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1022.py diff --git a/githubkit/versions/v2026_03_10/models/group_1023.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1023.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1023.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1023.py diff --git a/githubkit/versions/v2026_03_10/models/group_1024.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1024.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1024.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1024.py diff --git a/githubkit/versions/v2026_03_10/models/group_1025.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1025.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1025.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1025.py diff --git a/githubkit/versions/v2026_03_10/models/group_1026.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1026.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1026.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1026.py diff --git a/githubkit/versions/v2026_03_10/models/group_1027.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1027.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1027.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1027.py diff --git a/githubkit/versions/v2026_03_10/models/group_1028.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1028.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1028.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1028.py diff --git a/githubkit/versions/v2026_03_10/models/group_1029.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1029.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1029.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1029.py diff --git a/githubkit/versions/v2026_03_10/models/group_1030.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1030.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1030.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1030.py diff --git a/githubkit/versions/v2026_03_10/models/group_1031.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1031.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1031.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1031.py diff --git a/githubkit/versions/v2026_03_10/models/group_1032.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1032.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1032.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1032.py diff --git a/githubkit/versions/v2026_03_10/models/group_1033.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1033.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1033.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1033.py diff --git a/githubkit/versions/v2026_03_10/models/group_1034.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1034.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1034.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1034.py diff --git a/githubkit/versions/v2026_03_10/models/group_1035.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1035.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1035.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1035.py diff --git a/githubkit/versions/v2026_03_10/models/group_1036.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1036.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1036.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1036.py diff --git a/githubkit/versions/v2026_03_10/models/group_1037.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1037.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1037.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1037.py diff --git a/githubkit/versions/v2026_03_10/models/group_1038.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1038.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1038.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1038.py diff --git a/githubkit/versions/v2026_03_10/models/group_1039.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1039.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1039.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1039.py diff --git a/githubkit/versions/v2026_03_10/models/group_1040.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1040.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1040.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1040.py diff --git a/githubkit/versions/v2026_03_10/models/group_1041.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1041.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1041.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1041.py diff --git a/githubkit/versions/v2026_03_10/models/group_1042.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1042.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1042.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1042.py diff --git a/githubkit/versions/v2026_03_10/models/group_1043.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1043.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1043.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1043.py diff --git a/githubkit/versions/v2026_03_10/models/group_1044.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1044.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1044.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1044.py diff --git a/githubkit/versions/v2026_03_10/models/group_1045.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1045.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1045.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1045.py diff --git a/githubkit/versions/v2026_03_10/models/group_1046.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1046.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1046.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1046.py diff --git a/githubkit/versions/v2026_03_10/models/group_1047.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1047.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1047.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1047.py diff --git a/githubkit/versions/v2026_03_10/models/group_1048.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1048.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1048.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1048.py diff --git a/githubkit/versions/v2026_03_10/models/group_1049.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1049.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1049.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1049.py diff --git a/githubkit/versions/v2026_03_10/models/group_1050.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1050.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1050.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1050.py diff --git a/githubkit/versions/v2026_03_10/models/group_1051.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1051.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1051.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1051.py diff --git a/githubkit/versions/v2026_03_10/models/group_1052.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1052.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1052.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1052.py diff --git a/githubkit/versions/v2026_03_10/models/group_1053.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1053.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1053.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1053.py diff --git a/githubkit/versions/v2026_03_10/models/group_1054.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1054.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1054.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1054.py diff --git a/githubkit/versions/v2026_03_10/models/group_1055.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1055.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1055.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1055.py diff --git a/githubkit/versions/v2026_03_10/models/group_1056.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1056.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1056.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1056.py diff --git a/githubkit/versions/v2026_03_10/models/group_1057.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1057.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1057.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1057.py diff --git a/githubkit/versions/v2026_03_10/models/group_1058.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1058.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1058.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1058.py diff --git a/githubkit/versions/v2026_03_10/models/group_1059.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1059.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1059.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1059.py diff --git a/githubkit/versions/v2026_03_10/models/group_1060.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1060.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1060.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1060.py diff --git a/githubkit/versions/v2026_03_10/models/group_1061.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1061.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1061.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1061.py diff --git a/githubkit/versions/v2026_03_10/models/group_1062.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1062.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1062.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1062.py diff --git a/githubkit/versions/v2026_03_10/models/group_1063.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1063.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1063.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1063.py diff --git a/githubkit/versions/v2026_03_10/models/group_1064.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1064.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1064.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1064.py diff --git a/githubkit/versions/v2026_03_10/models/group_1065.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1065.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1065.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1065.py diff --git a/githubkit/versions/v2026_03_10/models/group_1066.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1066.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1066.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1066.py diff --git a/githubkit/versions/v2026_03_10/models/group_1067.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1067.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1067.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1067.py diff --git a/githubkit/versions/v2026_03_10/models/group_1068.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1068.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1068.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1068.py diff --git a/githubkit/versions/v2026_03_10/models/group_1069.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1069.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1069.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1069.py diff --git a/githubkit/versions/v2026_03_10/models/group_1070.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1070.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1070.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1070.py diff --git a/githubkit/versions/v2026_03_10/models/group_1071.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1071.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1071.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1071.py diff --git a/githubkit/versions/v2026_03_10/models/group_1072.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1072.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1072.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1072.py diff --git a/githubkit/versions/v2026_03_10/models/group_1073.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1073.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1073.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1073.py diff --git a/githubkit/versions/v2026_03_10/models/group_1074.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1074.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1074.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1074.py diff --git a/githubkit/versions/v2026_03_10/models/group_1075.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1075.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1075.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1075.py diff --git a/githubkit/versions/v2026_03_10/models/group_1076.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1076.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1076.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1076.py diff --git a/githubkit/versions/v2026_03_10/models/group_1077.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1077.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1077.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1077.py diff --git a/githubkit/versions/v2026_03_10/models/group_1078.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1078.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1078.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1078.py diff --git a/githubkit/versions/v2026_03_10/models/group_1079.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1079.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1079.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1079.py diff --git a/githubkit/versions/v2026_03_10/models/group_1080.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1080.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1080.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1080.py diff --git a/githubkit/versions/v2026_03_10/models/group_1081.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1081.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1081.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1081.py diff --git a/githubkit/versions/v2026_03_10/models/group_1082.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1082.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1082.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1082.py diff --git a/githubkit/versions/v2026_03_10/models/group_1083.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1083.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1083.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1083.py diff --git a/githubkit/versions/v2026_03_10/models/group_1084.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1084.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1084.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1084.py diff --git a/githubkit/versions/v2026_03_10/models/group_1085.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1085.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1085.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1085.py diff --git a/githubkit/versions/v2026_03_10/models/group_1086.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1086.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1086.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1086.py diff --git a/githubkit/versions/v2026_03_10/models/group_1087.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1087.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1087.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1087.py diff --git a/githubkit/versions/v2026_03_10/models/group_1088.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1088.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1088.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1088.py diff --git a/githubkit/versions/v2026_03_10/models/group_1089.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1089.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1089.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1089.py diff --git a/githubkit/versions/v2026_03_10/models/group_1090.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1090.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1090.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1090.py diff --git a/githubkit/versions/v2026_03_10/models/group_1091.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1091.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1091.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1091.py diff --git a/githubkit/versions/v2026_03_10/models/group_1092.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1092.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1092.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1092.py diff --git a/githubkit/versions/v2026_03_10/models/group_1093.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1093.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1093.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1093.py diff --git a/githubkit/versions/v2026_03_10/models/group_1094.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1094.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1094.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1094.py diff --git a/githubkit/versions/v2026_03_10/models/group_1095.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1095.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1095.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1095.py diff --git a/githubkit/versions/v2026_03_10/models/group_1096.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1096.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1096.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1096.py diff --git a/githubkit/versions/v2026_03_10/models/group_1097.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1097.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1097.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1097.py diff --git a/githubkit/versions/v2026_03_10/models/group_1098.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1098.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1098.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1098.py diff --git a/githubkit/versions/v2026_03_10/models/group_1099.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1099.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1099.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1099.py diff --git a/githubkit/versions/v2026_03_10/models/group_1100.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1100.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1100.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1100.py diff --git a/githubkit/versions/v2026_03_10/models/group_1101.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1101.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1101.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1101.py diff --git a/githubkit/versions/v2026_03_10/models/group_1102.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1102.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1102.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1102.py diff --git a/githubkit/versions/v2026_03_10/models/group_1103.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1103.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1103.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1103.py diff --git a/githubkit/versions/v2026_03_10/models/group_1104.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1104.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1104.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1104.py diff --git a/githubkit/versions/v2026_03_10/models/group_1105.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1105.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1105.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1105.py diff --git a/githubkit/versions/v2026_03_10/models/group_1106.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1106.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1106.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1106.py diff --git a/githubkit/versions/v2026_03_10/models/group_1107.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1107.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1107.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1107.py diff --git a/githubkit/versions/v2026_03_10/models/group_1108.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1108.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1108.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1108.py diff --git a/githubkit/versions/v2026_03_10/models/group_1109.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1109.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1109.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1109.py diff --git a/githubkit/versions/v2026_03_10/models/group_1110.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1110.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1110.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1110.py diff --git a/githubkit/versions/v2026_03_10/models/group_1111.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1111.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1111.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1111.py diff --git a/githubkit/versions/v2026_03_10/models/group_1112.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1112.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1112.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1112.py diff --git a/githubkit/versions/v2026_03_10/models/group_1113.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1113.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1113.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1113.py diff --git a/githubkit/versions/v2026_03_10/models/group_1114.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1114.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1114.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1114.py diff --git a/githubkit/versions/v2026_03_10/models/group_1115.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1115.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1115.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1115.py diff --git a/githubkit/versions/v2026_03_10/models/group_1116.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1116.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1116.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1116.py diff --git a/githubkit/versions/v2026_03_10/models/group_1117.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1117.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1117.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1117.py diff --git a/githubkit/versions/v2026_03_10/models/group_1118.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1118.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1118.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1118.py diff --git a/githubkit/versions/v2026_03_10/models/group_1119.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1119.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1119.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1119.py diff --git a/githubkit/versions/v2026_03_10/models/group_1120.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1120.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1120.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1120.py diff --git a/githubkit/versions/v2026_03_10/models/group_1121.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1121.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1121.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1121.py diff --git a/githubkit/versions/v2026_03_10/models/group_1122.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1122.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1122.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1122.py diff --git a/githubkit/versions/v2026_03_10/models/group_1123.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1123.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1123.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1123.py diff --git a/githubkit/versions/v2026_03_10/models/group_1124.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1124.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1124.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1124.py diff --git a/githubkit/versions/v2026_03_10/models/group_1125.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1125.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1125.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1125.py diff --git a/githubkit/versions/v2026_03_10/models/group_1126.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1126.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1126.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1126.py diff --git a/githubkit/versions/v2026_03_10/models/group_1127.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1127.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1127.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1127.py diff --git a/githubkit/versions/v2026_03_10/models/group_1128.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1128.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1128.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1128.py diff --git a/githubkit/versions/v2026_03_10/models/group_1129.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1129.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1129.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1129.py diff --git a/githubkit/versions/v2026_03_10/models/group_1130.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1130.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1130.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1130.py diff --git a/githubkit/versions/v2026_03_10/models/group_1131.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1131.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1131.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1131.py diff --git a/githubkit/versions/v2026_03_10/models/group_1132.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1132.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1132.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1132.py diff --git a/githubkit/versions/v2026_03_10/models/group_1133.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1133.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1133.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1133.py diff --git a/githubkit/versions/v2026_03_10/models/group_1134.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1134.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1134.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1134.py diff --git a/githubkit/versions/v2026_03_10/models/group_1135.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1135.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1135.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1135.py diff --git a/githubkit/versions/v2026_03_10/models/group_1136.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1136.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1136.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1136.py diff --git a/githubkit/versions/v2026_03_10/models/group_1137.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1137.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1137.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1137.py diff --git a/githubkit/versions/v2026_03_10/models/group_1138.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1138.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1138.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1138.py diff --git a/githubkit/versions/v2026_03_10/models/group_1139.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1139.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1139.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1139.py diff --git a/githubkit/versions/v2026_03_10/models/group_1140.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1140.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1140.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1140.py diff --git a/githubkit/versions/v2026_03_10/models/group_1141.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1141.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1141.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1141.py diff --git a/githubkit/versions/v2026_03_10/models/group_1142.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1142.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1142.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1142.py diff --git a/githubkit/versions/v2026_03_10/models/group_1143.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1143.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1143.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1143.py diff --git a/githubkit/versions/v2026_03_10/models/group_1144.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1144.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1144.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1144.py diff --git a/githubkit/versions/v2026_03_10/models/group_1145.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1145.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1145.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1145.py diff --git a/githubkit/versions/v2026_03_10/models/group_1146.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1146.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1146.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1146.py diff --git a/githubkit/versions/v2026_03_10/models/group_1147.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1147.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1147.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1147.py diff --git a/githubkit/versions/v2026_03_10/models/group_1148.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1148.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1148.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1148.py diff --git a/githubkit/versions/v2026_03_10/models/group_1149.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1149.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1149.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1149.py diff --git a/githubkit/versions/v2026_03_10/models/group_1150.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1150.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1150.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1150.py diff --git a/githubkit/versions/v2026_03_10/models/group_1151.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1151.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1151.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1151.py diff --git a/githubkit/versions/v2026_03_10/models/group_1152.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1152.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1152.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1152.py diff --git a/githubkit/versions/v2026_03_10/models/group_1153.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1153.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1153.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1153.py diff --git a/githubkit/versions/v2026_03_10/models/group_1154.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1154.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1154.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1154.py diff --git a/githubkit/versions/v2026_03_10/models/group_1155.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1155.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1155.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1155.py diff --git a/githubkit/versions/v2026_03_10/models/group_1156.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1156.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1156.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1156.py diff --git a/githubkit/versions/v2026_03_10/models/group_1157.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1157.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1157.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1157.py diff --git a/githubkit/versions/v2026_03_10/models/group_1158.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1158.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1158.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1158.py diff --git a/githubkit/versions/v2026_03_10/models/group_1159.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1159.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1159.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1159.py diff --git a/githubkit/versions/v2026_03_10/models/group_1160.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1160.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1160.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1160.py diff --git a/githubkit/versions/v2026_03_10/models/group_1161.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1161.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1161.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1161.py diff --git a/githubkit/versions/v2026_03_10/models/group_1162.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1162.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1162.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1162.py diff --git a/githubkit/versions/v2026_03_10/models/group_1163.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1163.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1163.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1163.py diff --git a/githubkit/versions/v2026_03_10/models/group_1164.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1164.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1164.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1164.py diff --git a/githubkit/versions/v2026_03_10/models/group_1165.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1165.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1165.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1165.py diff --git a/githubkit/versions/v2026_03_10/models/group_1166.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1166.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1166.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1166.py diff --git a/githubkit/versions/v2026_03_10/models/group_1167.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1167.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1167.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1167.py diff --git a/githubkit/versions/v2026_03_10/models/group_1168.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1168.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1168.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1168.py diff --git a/githubkit/versions/v2026_03_10/models/group_1169.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1169.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1169.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1169.py diff --git a/githubkit/versions/v2026_03_10/models/group_1170.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1170.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1170.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1170.py diff --git a/githubkit/versions/v2026_03_10/models/group_1171.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1171.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1171.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1171.py diff --git a/githubkit/versions/v2026_03_10/models/group_1172.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1172.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1172.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1172.py diff --git a/githubkit/versions/v2026_03_10/models/group_1173.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1173.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1173.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1173.py diff --git a/githubkit/versions/v2026_03_10/models/group_1174.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1174.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1174.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1174.py diff --git a/githubkit/versions/v2026_03_10/models/group_1175.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1175.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1175.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1175.py diff --git a/githubkit/versions/v2026_03_10/models/group_1176.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1176.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1176.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1176.py diff --git a/githubkit/versions/v2026_03_10/models/group_1177.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1177.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1177.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1177.py diff --git a/githubkit/versions/v2026_03_10/models/group_1178.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1178.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1178.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1178.py diff --git a/githubkit/versions/v2026_03_10/models/group_1179.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1179.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1179.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1179.py diff --git a/githubkit/versions/v2026_03_10/models/group_1180.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1180.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1180.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1180.py diff --git a/githubkit/versions/v2026_03_10/models/group_1181.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1181.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1181.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1181.py diff --git a/githubkit/versions/v2026_03_10/models/group_1182.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1182.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1182.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1182.py diff --git a/githubkit/versions/v2026_03_10/models/group_1183.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1183.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1183.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1183.py diff --git a/githubkit/versions/v2026_03_10/models/group_1184.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1184.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1184.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1184.py diff --git a/githubkit/versions/v2026_03_10/models/group_1185.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1185.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1185.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1185.py diff --git a/githubkit/versions/v2026_03_10/models/group_1186.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1186.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1186.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1186.py diff --git a/githubkit/versions/v2026_03_10/models/group_1187.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1187.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1187.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1187.py diff --git a/githubkit/versions/v2026_03_10/models/group_1188.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1188.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1188.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1188.py diff --git a/githubkit/versions/v2026_03_10/models/group_1189.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1189.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1189.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1189.py diff --git a/githubkit/versions/v2026_03_10/models/group_1190.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1190.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1190.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1190.py diff --git a/githubkit/versions/v2026_03_10/models/group_1191.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1191.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1191.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1191.py diff --git a/githubkit/versions/v2026_03_10/models/group_1192.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1192.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1192.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1192.py diff --git a/githubkit/versions/v2026_03_10/models/group_1193.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1193.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1193.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1193.py diff --git a/githubkit/versions/v2026_03_10/models/group_1194.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1194.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1194.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1194.py diff --git a/githubkit/versions/v2026_03_10/models/group_1195.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1195.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1195.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1195.py diff --git a/githubkit/versions/v2026_03_10/models/group_1196.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1196.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1196.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1196.py diff --git a/githubkit/versions/v2026_03_10/models/group_1197.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1197.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1197.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1197.py diff --git a/githubkit/versions/v2026_03_10/models/group_1198.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1198.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1198.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1198.py diff --git a/githubkit/versions/v2026_03_10/models/group_1199.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1199.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1199.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1199.py diff --git a/githubkit/versions/v2026_03_10/models/group_1200.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1200.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1200.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1200.py diff --git a/githubkit/versions/v2026_03_10/models/group_1201.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1201.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1201.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1201.py diff --git a/githubkit/versions/v2026_03_10/models/group_1202.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1202.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1202.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1202.py diff --git a/githubkit/versions/v2026_03_10/models/group_1203.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1203.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1203.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1203.py diff --git a/githubkit/versions/v2026_03_10/models/group_1204.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1204.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1204.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1204.py diff --git a/githubkit/versions/v2026_03_10/models/group_1205.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1205.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1205.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1205.py diff --git a/githubkit/versions/v2026_03_10/models/group_1206.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1206.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1206.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1206.py diff --git a/githubkit/versions/v2026_03_10/models/group_1207.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1207.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1207.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1207.py diff --git a/githubkit/versions/v2026_03_10/models/group_1208.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1208.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1208.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1208.py diff --git a/githubkit/versions/v2026_03_10/models/group_1209.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1209.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1209.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1209.py diff --git a/githubkit/versions/v2026_03_10/models/group_1210.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1210.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1210.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1210.py diff --git a/githubkit/versions/v2026_03_10/models/group_1211.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1211.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1211.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1211.py diff --git a/githubkit/versions/v2026_03_10/models/group_1212.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1212.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1212.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1212.py diff --git a/githubkit/versions/v2026_03_10/models/group_1213.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1213.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1213.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1213.py diff --git a/githubkit/versions/v2026_03_10/models/group_1214.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1214.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1214.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1214.py diff --git a/githubkit/versions/v2026_03_10/models/group_1215.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1215.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1215.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1215.py diff --git a/githubkit/versions/v2026_03_10/models/group_1216.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1216.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1216.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1216.py diff --git a/githubkit/versions/v2026_03_10/models/group_1217.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1217.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1217.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1217.py diff --git a/githubkit/versions/v2026_03_10/models/group_1218.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1218.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1218.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1218.py diff --git a/githubkit/versions/v2026_03_10/models/group_1219.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1219.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1219.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1219.py diff --git a/githubkit/versions/v2026_03_10/models/group_1220.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1220.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1220.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1220.py diff --git a/githubkit/versions/v2026_03_10/models/group_1221.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1221.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1221.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1221.py diff --git a/githubkit/versions/v2026_03_10/models/group_1222.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1222.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1222.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1222.py diff --git a/githubkit/versions/v2026_03_10/models/group_1223.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1223.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1223.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1223.py diff --git a/githubkit/versions/v2026_03_10/models/group_1224.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1224.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1224.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1224.py diff --git a/githubkit/versions/v2026_03_10/models/group_1225.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1225.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1225.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1225.py diff --git a/githubkit/versions/v2026_03_10/models/group_1226.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1226.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1226.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1226.py diff --git a/githubkit/versions/v2026_03_10/models/group_1227.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1227.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1227.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1227.py diff --git a/githubkit/versions/v2026_03_10/models/group_1228.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1228.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1228.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1228.py diff --git a/githubkit/versions/v2026_03_10/models/group_1229.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1229.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1229.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1229.py diff --git a/githubkit/versions/v2026_03_10/models/group_1230.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1230.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1230.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1230.py diff --git a/githubkit/versions/v2026_03_10/models/group_1231.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1231.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1231.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1231.py diff --git a/githubkit/versions/v2026_03_10/models/group_1232.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1232.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1232.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1232.py diff --git a/githubkit/versions/v2026_03_10/models/group_1233.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1233.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1233.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1233.py diff --git a/githubkit/versions/v2026_03_10/models/group_1234.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1234.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1234.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1234.py diff --git a/githubkit/versions/v2026_03_10/models/group_1235.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1235.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1235.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1235.py diff --git a/githubkit/versions/v2026_03_10/models/group_1236.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1236.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1236.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1236.py diff --git a/githubkit/versions/v2026_03_10/models/group_1237.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1237.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1237.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1237.py diff --git a/githubkit/versions/v2026_03_10/models/group_1238.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1238.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1238.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1238.py diff --git a/githubkit/versions/v2026_03_10/models/group_1239.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1239.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1239.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1239.py diff --git a/githubkit/versions/v2026_03_10/models/group_1240.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1240.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1240.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1240.py diff --git a/githubkit/versions/v2026_03_10/models/group_1241.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1241.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1241.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1241.py diff --git a/githubkit/versions/v2026_03_10/models/group_1242.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1242.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1242.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1242.py diff --git a/githubkit/versions/v2026_03_10/models/group_1243.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1243.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1243.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1243.py diff --git a/githubkit/versions/v2026_03_10/models/group_1244.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1244.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1244.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1244.py diff --git a/githubkit/versions/v2026_03_10/models/group_1245.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1245.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1245.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1245.py diff --git a/githubkit/versions/v2026_03_10/models/group_1246.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1246.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1246.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1246.py diff --git a/githubkit/versions/v2026_03_10/models/group_1247.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1247.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1247.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1247.py diff --git a/githubkit/versions/v2026_03_10/models/group_1248.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1248.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1248.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1248.py diff --git a/githubkit/versions/v2026_03_10/models/group_1249.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1249.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1249.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1249.py diff --git a/githubkit/versions/v2026_03_10/models/group_1250.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1250.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1250.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1250.py diff --git a/githubkit/versions/v2026_03_10/models/group_1251.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1251.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1251.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1251.py diff --git a/githubkit/versions/v2026_03_10/models/group_1252.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1252.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1252.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1252.py diff --git a/githubkit/versions/v2026_03_10/models/group_1253.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1253.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1253.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1253.py diff --git a/githubkit/versions/v2026_03_10/models/group_1254.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1254.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1254.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1254.py diff --git a/githubkit/versions/v2026_03_10/models/group_1255.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1255.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1255.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1255.py diff --git a/githubkit/versions/v2026_03_10/models/group_1256.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1256.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1256.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1256.py diff --git a/githubkit/versions/v2026_03_10/models/group_1257.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1257.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1257.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1257.py diff --git a/githubkit/versions/v2026_03_10/models/group_1258.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1258.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1258.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1258.py diff --git a/githubkit/versions/v2026_03_10/models/group_1259.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1259.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1259.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1259.py diff --git a/githubkit/versions/v2026_03_10/models/group_1260.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1260.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1260.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1260.py diff --git a/githubkit/versions/v2026_03_10/models/group_1261.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1261.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1261.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1261.py diff --git a/githubkit/versions/v2026_03_10/models/group_1262.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1262.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1262.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1262.py diff --git a/githubkit/versions/v2026_03_10/models/group_1263.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1263.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1263.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1263.py diff --git a/githubkit/versions/v2026_03_10/models/group_1264.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1264.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1264.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1264.py diff --git a/githubkit/versions/v2026_03_10/models/group_1265.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1265.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1265.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1265.py diff --git a/githubkit/versions/v2026_03_10/models/group_1266.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1266.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1266.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1266.py diff --git a/githubkit/versions/v2026_03_10/models/group_1267.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1267.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1267.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1267.py diff --git a/githubkit/versions/v2026_03_10/models/group_1268.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1268.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1268.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1268.py diff --git a/githubkit/versions/v2026_03_10/models/group_1269.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1269.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1269.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1269.py diff --git a/githubkit/versions/v2026_03_10/models/group_1270.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1270.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1270.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1270.py diff --git a/githubkit/versions/v2026_03_10/models/group_1271.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1271.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1271.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1271.py diff --git a/githubkit/versions/v2026_03_10/models/group_1272.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1272.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1272.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1272.py diff --git a/githubkit/versions/v2026_03_10/models/group_1273.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1273.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1273.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1273.py diff --git a/githubkit/versions/v2026_03_10/models/group_1274.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1274.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1274.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1274.py diff --git a/githubkit/versions/v2026_03_10/models/group_1275.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1275.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1275.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1275.py diff --git a/githubkit/versions/v2026_03_10/models/group_1276.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1276.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1276.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1276.py diff --git a/githubkit/versions/v2026_03_10/models/group_1277.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1277.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1277.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1277.py diff --git a/githubkit/versions/v2026_03_10/models/group_1278.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1278.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1278.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1278.py diff --git a/githubkit/versions/v2026_03_10/models/group_1279.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1279.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1279.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1279.py diff --git a/githubkit/versions/v2026_03_10/models/group_1280.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1280.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1280.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1280.py diff --git a/githubkit/versions/v2026_03_10/models/group_1281.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1281.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1281.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1281.py diff --git a/githubkit/versions/v2026_03_10/models/group_1282.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1282.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1282.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1282.py diff --git a/githubkit/versions/v2026_03_10/models/group_1283.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1283.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1283.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1283.py diff --git a/githubkit/versions/v2026_03_10/models/group_1284.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1284.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1284.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1284.py diff --git a/githubkit/versions/v2026_03_10/models/group_1285.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1285.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1285.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1285.py diff --git a/githubkit/versions/v2026_03_10/models/group_1286.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1286.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1286.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1286.py diff --git a/githubkit/versions/v2026_03_10/models/group_1287.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1287.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1287.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1287.py diff --git a/githubkit/versions/v2026_03_10/models/group_1288.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1288.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1288.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1288.py diff --git a/githubkit/versions/v2026_03_10/models/group_1289.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1289.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1289.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1289.py diff --git a/githubkit/versions/v2026_03_10/models/group_1290.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1290.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1290.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1290.py diff --git a/githubkit/versions/v2026_03_10/models/group_1291.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1291.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1291.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1291.py diff --git a/githubkit/versions/v2026_03_10/models/group_1292.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1292.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1292.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1292.py diff --git a/githubkit/versions/v2026_03_10/models/group_1293.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1293.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1293.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1293.py diff --git a/githubkit/versions/v2026_03_10/models/group_1294.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1294.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1294.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1294.py diff --git a/githubkit/versions/v2026_03_10/models/group_1295.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1295.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1295.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1295.py diff --git a/githubkit/versions/v2026_03_10/models/group_1296.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1296.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1296.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1296.py diff --git a/githubkit/versions/v2026_03_10/models/group_1297.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1297.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1297.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1297.py diff --git a/githubkit/versions/v2026_03_10/models/group_1298.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1298.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1298.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1298.py diff --git a/githubkit/versions/v2026_03_10/models/group_1299.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1299.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1299.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1299.py diff --git a/githubkit/versions/v2026_03_10/models/group_1300.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1300.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1300.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1300.py diff --git a/githubkit/versions/v2026_03_10/models/group_1301.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1301.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1301.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1301.py diff --git a/githubkit/versions/v2026_03_10/models/group_1302.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1302.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1302.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1302.py diff --git a/githubkit/versions/v2026_03_10/models/group_1303.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1303.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1303.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1303.py diff --git a/githubkit/versions/v2026_03_10/models/group_1304.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1304.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1304.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1304.py diff --git a/githubkit/versions/v2026_03_10/models/group_1305.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1305.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1305.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1305.py diff --git a/githubkit/versions/v2026_03_10/models/group_1306.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1306.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1306.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1306.py diff --git a/githubkit/versions/v2026_03_10/models/group_1307.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1307.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1307.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1307.py diff --git a/githubkit/versions/v2026_03_10/models/group_1308.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1308.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1308.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1308.py diff --git a/githubkit/versions/v2026_03_10/models/group_1309.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1309.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1309.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1309.py diff --git a/githubkit/versions/v2026_03_10/models/group_1310.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1310.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1310.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1310.py diff --git a/githubkit/versions/v2026_03_10/models/group_1311.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1311.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1311.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1311.py diff --git a/githubkit/versions/v2026_03_10/models/group_1312.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1312.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1312.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1312.py diff --git a/githubkit/versions/v2026_03_10/models/group_1313.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1313.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1313.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1313.py diff --git a/githubkit/versions/v2026_03_10/models/group_1314.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1314.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1314.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1314.py diff --git a/githubkit/versions/v2026_03_10/models/group_1315.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1315.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1315.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1315.py diff --git a/githubkit/versions/v2026_03_10/models/group_1316.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1316.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1316.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1316.py diff --git a/githubkit/versions/v2026_03_10/models/group_1317.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1317.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1317.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1317.py diff --git a/githubkit/versions/v2026_03_10/models/group_1318.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1318.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1318.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1318.py diff --git a/githubkit/versions/v2026_03_10/models/group_1319.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1319.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1319.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1319.py diff --git a/githubkit/versions/v2026_03_10/models/group_1320.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1320.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1320.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1320.py diff --git a/githubkit/versions/v2026_03_10/models/group_1321.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1321.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1321.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1321.py diff --git a/githubkit/versions/v2026_03_10/models/group_1322.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1322.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1322.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1322.py diff --git a/githubkit/versions/v2026_03_10/models/group_1323.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1323.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1323.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1323.py diff --git a/githubkit/versions/v2026_03_10/models/group_1324.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1324.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1324.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1324.py diff --git a/githubkit/versions/v2026_03_10/models/group_1325.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1325.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1325.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1325.py diff --git a/githubkit/versions/v2026_03_10/models/group_1326.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1326.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1326.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1326.py diff --git a/githubkit/versions/v2026_03_10/models/group_1327.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1327.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1327.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1327.py diff --git a/githubkit/versions/v2026_03_10/models/group_1328.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1328.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1328.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1328.py diff --git a/githubkit/versions/v2026_03_10/models/group_1329.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1329.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1329.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1329.py diff --git a/githubkit/versions/v2026_03_10/models/group_1330.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1330.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1330.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1330.py diff --git a/githubkit/versions/v2026_03_10/models/group_1331.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1331.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1331.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1331.py diff --git a/githubkit/versions/v2026_03_10/models/group_1332.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1332.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1332.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1332.py diff --git a/githubkit/versions/v2026_03_10/models/group_1333.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1333.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1333.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1333.py diff --git a/githubkit/versions/v2026_03_10/models/group_1334.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1334.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1334.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1334.py diff --git a/githubkit/versions/v2026_03_10/models/group_1335.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1335.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1335.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1335.py diff --git a/githubkit/versions/v2026_03_10/models/group_1336.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1336.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1336.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1336.py diff --git a/githubkit/versions/v2026_03_10/models/group_1337.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1337.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1337.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1337.py diff --git a/githubkit/versions/v2026_03_10/models/group_1338.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1338.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1338.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1338.py diff --git a/githubkit/versions/v2026_03_10/models/group_1339.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1339.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1339.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1339.py diff --git a/githubkit/versions/v2026_03_10/models/group_1340.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1340.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1340.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1340.py diff --git a/githubkit/versions/v2026_03_10/models/group_1341.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1341.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1341.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1341.py diff --git a/githubkit/versions/v2026_03_10/models/group_1342.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1342.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1342.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1342.py diff --git a/githubkit/versions/v2026_03_10/models/group_1343.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1343.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1343.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1343.py diff --git a/githubkit/versions/v2026_03_10/models/group_1344.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1344.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1344.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1344.py diff --git a/githubkit/versions/v2026_03_10/models/group_1345.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1345.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1345.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1345.py diff --git a/githubkit/versions/v2026_03_10/models/group_1346.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1346.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1346.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1346.py diff --git a/githubkit/versions/v2026_03_10/models/group_1347.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1347.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1347.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1347.py diff --git a/githubkit/versions/v2026_03_10/models/group_1348.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1348.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1348.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1348.py diff --git a/githubkit/versions/v2026_03_10/models/group_1349.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1349.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1349.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1349.py diff --git a/githubkit/versions/v2026_03_10/models/group_1350.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1350.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_1350.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/models/group_1350.py diff --git a/githubkit/versions/v2026_03_10/rest/__init__.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/rest/__init__.py similarity index 100% rename from githubkit/versions/v2026_03_10/rest/__init__.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/rest/__init__.py diff --git a/githubkit/versions/v2026_03_10/rest/actions.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/rest/actions.py similarity index 100% rename from githubkit/versions/v2026_03_10/rest/actions.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/rest/actions.py diff --git a/githubkit/versions/v2026_03_10/rest/activity.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/rest/activity.py similarity index 100% rename from githubkit/versions/v2026_03_10/rest/activity.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/rest/activity.py diff --git a/githubkit/versions/v2026_03_10/rest/apps.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/rest/apps.py similarity index 100% rename from githubkit/versions/v2026_03_10/rest/apps.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/rest/apps.py diff --git a/githubkit/versions/v2026_03_10/rest/billing.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/rest/billing.py similarity index 100% rename from githubkit/versions/v2026_03_10/rest/billing.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/rest/billing.py diff --git a/githubkit/versions/v2026_03_10/rest/campaigns.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/rest/campaigns.py similarity index 100% rename from githubkit/versions/v2026_03_10/rest/campaigns.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/rest/campaigns.py diff --git a/githubkit/versions/v2026_03_10/rest/checks.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/rest/checks.py similarity index 100% rename from githubkit/versions/v2026_03_10/rest/checks.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/rest/checks.py diff --git a/githubkit/versions/v2026_03_10/rest/classroom.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/rest/classroom.py similarity index 100% rename from githubkit/versions/v2026_03_10/rest/classroom.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/rest/classroom.py diff --git a/githubkit/versions/v2026_03_10/rest/code_scanning.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/rest/code_scanning.py similarity index 100% rename from githubkit/versions/v2026_03_10/rest/code_scanning.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/rest/code_scanning.py diff --git a/githubkit/versions/v2026_03_10/rest/code_security.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/rest/code_security.py similarity index 100% rename from githubkit/versions/v2026_03_10/rest/code_security.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/rest/code_security.py diff --git a/githubkit/versions/v2026_03_10/rest/codes_of_conduct.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/rest/codes_of_conduct.py similarity index 100% rename from githubkit/versions/v2026_03_10/rest/codes_of_conduct.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/rest/codes_of_conduct.py diff --git a/githubkit/versions/v2026_03_10/rest/codespaces.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/rest/codespaces.py similarity index 100% rename from githubkit/versions/v2026_03_10/rest/codespaces.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/rest/codespaces.py diff --git a/githubkit/versions/v2026_03_10/rest/copilot.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/rest/copilot.py similarity index 100% rename from githubkit/versions/v2026_03_10/rest/copilot.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/rest/copilot.py diff --git a/githubkit/versions/v2026_03_10/rest/copilot_spaces.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/rest/copilot_spaces.py similarity index 100% rename from githubkit/versions/v2026_03_10/rest/copilot_spaces.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/rest/copilot_spaces.py diff --git a/githubkit/versions/v2026_03_10/rest/credentials.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/rest/credentials.py similarity index 100% rename from githubkit/versions/v2026_03_10/rest/credentials.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/rest/credentials.py diff --git a/githubkit/versions/v2026_03_10/rest/dependabot.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/rest/dependabot.py similarity index 100% rename from githubkit/versions/v2026_03_10/rest/dependabot.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/rest/dependabot.py diff --git a/githubkit/versions/v2026_03_10/rest/dependency_graph.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/rest/dependency_graph.py similarity index 100% rename from githubkit/versions/v2026_03_10/rest/dependency_graph.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/rest/dependency_graph.py diff --git a/githubkit/versions/v2026_03_10/rest/emojis.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/rest/emojis.py similarity index 100% rename from githubkit/versions/v2026_03_10/rest/emojis.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/rest/emojis.py diff --git a/githubkit/versions/v2026_03_10/rest/enterprise_team_memberships.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/rest/enterprise_team_memberships.py similarity index 100% rename from githubkit/versions/v2026_03_10/rest/enterprise_team_memberships.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/rest/enterprise_team_memberships.py diff --git a/githubkit/versions/v2026_03_10/rest/enterprise_team_organizations.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/rest/enterprise_team_organizations.py similarity index 100% rename from githubkit/versions/v2026_03_10/rest/enterprise_team_organizations.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/rest/enterprise_team_organizations.py diff --git a/githubkit/versions/v2026_03_10/rest/enterprise_teams.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/rest/enterprise_teams.py similarity index 100% rename from githubkit/versions/v2026_03_10/rest/enterprise_teams.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/rest/enterprise_teams.py diff --git a/githubkit/versions/v2026_03_10/rest/gists.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/rest/gists.py similarity index 100% rename from githubkit/versions/v2026_03_10/rest/gists.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/rest/gists.py diff --git a/githubkit/versions/v2026_03_10/rest/git.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/rest/git.py similarity index 100% rename from githubkit/versions/v2026_03_10/rest/git.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/rest/git.py diff --git a/githubkit/versions/v2026_03_10/rest/gitignore.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/rest/gitignore.py similarity index 100% rename from githubkit/versions/v2026_03_10/rest/gitignore.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/rest/gitignore.py diff --git a/githubkit/versions/v2026_03_10/rest/hosted_compute.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/rest/hosted_compute.py similarity index 100% rename from githubkit/versions/v2026_03_10/rest/hosted_compute.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/rest/hosted_compute.py diff --git a/githubkit/versions/v2026_03_10/rest/interactions.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/rest/interactions.py similarity index 100% rename from githubkit/versions/v2026_03_10/rest/interactions.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/rest/interactions.py diff --git a/githubkit/versions/v2026_03_10/rest/issues.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/rest/issues.py similarity index 100% rename from githubkit/versions/v2026_03_10/rest/issues.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/rest/issues.py diff --git a/githubkit/versions/v2026_03_10/rest/licenses.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/rest/licenses.py similarity index 100% rename from githubkit/versions/v2026_03_10/rest/licenses.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/rest/licenses.py diff --git a/githubkit/versions/v2026_03_10/rest/markdown.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/rest/markdown.py similarity index 100% rename from githubkit/versions/v2026_03_10/rest/markdown.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/rest/markdown.py diff --git a/githubkit/versions/v2026_03_10/rest/meta.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/rest/meta.py similarity index 100% rename from githubkit/versions/v2026_03_10/rest/meta.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/rest/meta.py diff --git a/githubkit/versions/v2026_03_10/rest/migrations.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/rest/migrations.py similarity index 100% rename from githubkit/versions/v2026_03_10/rest/migrations.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/rest/migrations.py diff --git a/githubkit/versions/v2026_03_10/rest/oidc.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/rest/oidc.py similarity index 100% rename from githubkit/versions/v2026_03_10/rest/oidc.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/rest/oidc.py diff --git a/githubkit/versions/v2026_03_10/rest/orgs.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/rest/orgs.py similarity index 100% rename from githubkit/versions/v2026_03_10/rest/orgs.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/rest/orgs.py diff --git a/githubkit/versions/v2026_03_10/rest/packages.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/rest/packages.py similarity index 100% rename from githubkit/versions/v2026_03_10/rest/packages.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/rest/packages.py diff --git a/githubkit/versions/v2026_03_10/rest/private_registries.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/rest/private_registries.py similarity index 100% rename from githubkit/versions/v2026_03_10/rest/private_registries.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/rest/private_registries.py diff --git a/githubkit/versions/v2026_03_10/rest/projects.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/rest/projects.py similarity index 100% rename from githubkit/versions/v2026_03_10/rest/projects.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/rest/projects.py diff --git a/githubkit/versions/v2026_03_10/rest/pulls.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/rest/pulls.py similarity index 100% rename from githubkit/versions/v2026_03_10/rest/pulls.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/rest/pulls.py diff --git a/githubkit/versions/v2026_03_10/rest/rate_limit.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/rest/rate_limit.py similarity index 100% rename from githubkit/versions/v2026_03_10/rest/rate_limit.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/rest/rate_limit.py diff --git a/githubkit/versions/v2026_03_10/rest/reactions.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/rest/reactions.py similarity index 100% rename from githubkit/versions/v2026_03_10/rest/reactions.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/rest/reactions.py diff --git a/githubkit/versions/v2026_03_10/rest/repos.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/rest/repos.py similarity index 99% rename from githubkit/versions/v2026_03_10/rest/repos.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/rest/repos.py index a18882fa44..5a08e0e7dd 100644 --- a/githubkit/versions/v2026_03_10/rest/repos.py +++ b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/rest/repos.py @@ -15822,7 +15822,6 @@ def create_pages_site( ReposOwnerRepoPagesPostBodyAnyof0Type, None, ReposOwnerRepoPagesPostBodyAnyof1Type, - None, ], ) -> Response[Page, PageTypeForResponse]: ... @@ -15864,7 +15863,6 @@ def create_pages_site( ReposOwnerRepoPagesPostBodyAnyof0Type, None, ReposOwnerRepoPagesPostBodyAnyof1Type, - None, ] ] = UNSET, **kwargs, @@ -15907,7 +15905,6 @@ def create_pages_site( ReposOwnerRepoPagesPostBodyAnyof0, None, ReposOwnerRepoPagesPostBodyAnyof1, - None, ], json, ) @@ -15938,7 +15935,6 @@ async def async_create_pages_site( ReposOwnerRepoPagesPostBodyAnyof0Type, None, ReposOwnerRepoPagesPostBodyAnyof1Type, - None, ], ) -> Response[Page, PageTypeForResponse]: ... @@ -15980,7 +15976,6 @@ async def async_create_pages_site( ReposOwnerRepoPagesPostBodyAnyof0Type, None, ReposOwnerRepoPagesPostBodyAnyof1Type, - None, ] ] = UNSET, **kwargs, @@ -16023,7 +16018,6 @@ async def async_create_pages_site( ReposOwnerRepoPagesPostBodyAnyof0, None, ReposOwnerRepoPagesPostBodyAnyof1, - None, ], json, ) diff --git a/githubkit/versions/v2026_03_10/rest/search.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/rest/search.py similarity index 100% rename from githubkit/versions/v2026_03_10/rest/search.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/rest/search.py diff --git a/githubkit/versions/v2026_03_10/rest/secret_scanning.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/rest/secret_scanning.py similarity index 100% rename from githubkit/versions/v2026_03_10/rest/secret_scanning.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/rest/secret_scanning.py diff --git a/githubkit/versions/v2026_03_10/rest/security_advisories.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/rest/security_advisories.py similarity index 100% rename from githubkit/versions/v2026_03_10/rest/security_advisories.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/rest/security_advisories.py diff --git a/githubkit/versions/v2026_03_10/rest/teams.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/rest/teams.py similarity index 100% rename from githubkit/versions/v2026_03_10/rest/teams.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/rest/teams.py diff --git a/githubkit/versions/v2026_03_10/rest/users.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/rest/users.py similarity index 100% rename from githubkit/versions/v2026_03_10/rest/users.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/rest/users.py diff --git a/githubkit/versions/v2026_03_10/types/__init__.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/__init__.py similarity index 99% rename from githubkit/versions/v2026_03_10/types/__init__.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/__init__.py index 447ca98491..e26bedf4cf 100644 --- a/githubkit/versions/v2026_03_10/types/__init__.py +++ b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/__init__.py @@ -9,7 +9,7 @@ from typing import TYPE_CHECKING -from githubkit.lazy_module import is_lazy_disabled +from githubkit.module_hooks.lazy_module import is_lazy_disabled if TYPE_CHECKING or is_lazy_disabled(): from .group_0000 import RootType as RootType diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0000.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0000.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0000.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0000.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0001.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0001.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0001.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0001.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0002.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0002.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0002.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0002.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0003.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0003.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0003.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0003.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0004.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0004.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0004.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0004.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0005.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0005.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0005.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0005.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0006.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0006.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0006.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0006.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0007.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0007.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0007.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0007.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0008.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0008.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0008.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0008.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0009.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0009.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0009.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0009.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0010.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0010.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0010.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0010.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0011.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0011.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0011.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0011.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0012.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0012.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0012.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0012.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0013.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0013.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0013.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0013.py diff --git a/githubkit/versions/v2026_03_10/types/group_0014.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0014.py similarity index 91% rename from githubkit/versions/v2026_03_10/types/group_0014.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0014.py index 5dca7785ad..34841d0229 100644 --- a/githubkit/versions/v2026_03_10/types/group_0014.py +++ b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0014.py @@ -43,7 +43,7 @@ class ValidationErrorPropErrorsItemsType(TypedDict): message: NotRequired[str] code: str index: NotRequired[int] - value: NotRequired[Union[str, None, int, None, list[str], None]] + value: NotRequired[Union[str, None, int, list[str]]] class ValidationErrorPropErrorsItemsTypeForResponse(TypedDict): @@ -54,7 +54,7 @@ class ValidationErrorPropErrorsItemsTypeForResponse(TypedDict): message: NotRequired[str] code: str index: NotRequired[int] - value: NotRequired[Union[str, None, int, None, list[str], None]] + value: NotRequired[Union[str, None, int, list[str]]] __all__ = ( diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0015.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0015.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0015.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0015.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0016.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0016.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0016.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0016.py diff --git a/githubkit/versions/v2026_03_10/types/group_0017.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0017.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0017.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0017.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0018.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0018.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0018.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0018.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0019.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0019.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0019.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0019.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0020.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0020.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0020.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0020.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0021.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0021.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0021.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0021.py diff --git a/githubkit/versions/v2026_03_10/types/group_0022.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0022.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0022.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0022.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0023.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0023.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0023.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0023.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0024.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0024.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0024.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0024.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0025.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0025.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0025.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0025.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0026.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0026.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0026.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0026.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0027.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0027.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0027.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0027.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0028.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0028.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0028.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0028.py diff --git a/githubkit/versions/v2026_03_10/types/group_0029.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0029.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0029.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0029.py diff --git a/githubkit/versions/v2026_03_10/types/group_0030.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0030.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0030.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0030.py diff --git a/githubkit/versions/v2026_03_10/types/group_0031.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0031.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0031.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0031.py diff --git a/githubkit/versions/v2026_03_10/types/group_0032.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0032.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0032.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0032.py diff --git a/githubkit/versions/v2026_03_10/types/group_0033.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0033.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0033.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0033.py diff --git a/githubkit/versions/v2026_03_10/types/group_0034.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0034.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0034.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0034.py diff --git a/githubkit/versions/v2026_03_10/types/group_0035.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0035.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0035.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0035.py diff --git a/githubkit/versions/v2026_03_10/types/group_0036.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0036.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0036.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0036.py diff --git a/githubkit/versions/v2026_03_10/types/group_0037.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0037.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0037.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0037.py diff --git a/githubkit/versions/v2026_03_10/types/group_0038.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0038.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0038.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0038.py diff --git a/githubkit/versions/v2026_03_10/types/group_0039.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0039.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0039.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0039.py diff --git a/githubkit/versions/v2026_03_10/types/group_0040.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0040.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0040.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0040.py diff --git a/githubkit/versions/v2026_03_10/types/group_0041.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0041.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0041.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0041.py diff --git a/githubkit/versions/v2026_03_10/types/group_0042.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0042.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0042.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0042.py diff --git a/githubkit/versions/v2026_03_10/types/group_0043.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0043.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0043.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0043.py diff --git a/githubkit/versions/v2026_03_10/types/group_0044.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0044.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0044.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0044.py diff --git a/githubkit/versions/v2026_03_10/types/group_0045.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0045.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0045.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0045.py diff --git a/githubkit/versions/v2026_03_10/types/group_0046.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0046.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0046.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0046.py diff --git a/githubkit/versions/v2026_03_10/types/group_0047.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0047.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0047.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0047.py diff --git a/githubkit/versions/v2026_03_10/types/group_0048.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0048.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0048.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0048.py diff --git a/githubkit/versions/v2026_03_10/types/group_0049.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0049.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0049.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0049.py diff --git a/githubkit/versions/v2026_03_10/types/group_0050.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0050.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0050.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0050.py diff --git a/githubkit/versions/v2026_03_10/types/group_0051.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0051.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0051.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0051.py diff --git a/githubkit/versions/v2026_03_10/types/group_0052.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0052.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0052.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0052.py diff --git a/githubkit/versions/v2026_03_10/types/group_0053.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0053.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0053.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0053.py diff --git a/githubkit/versions/v2026_03_10/types/group_0054.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0054.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0054.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0054.py diff --git a/githubkit/versions/v2026_03_10/types/group_0055.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0055.py similarity index 98% rename from githubkit/versions/v2026_03_10/types/group_0055.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0055.py index 27468a3788..c760edb337 100644 --- a/githubkit/versions/v2026_03_10/types/group_0055.py +++ b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0055.py @@ -48,7 +48,7 @@ class IssueCommentType(TypedDict): "OWNER", ] ] - performed_via_github_app: NotRequired[Union[None, IntegrationType, None]] + performed_via_github_app: NotRequired[Union[None, IntegrationType]] reactions: NotRequired[ReactionRollupType] pin: NotRequired[Union[None, PinnedIssueCommentType]] @@ -82,7 +82,7 @@ class IssueCommentTypeForResponse(TypedDict): "OWNER", ] ] - performed_via_github_app: NotRequired[Union[None, IntegrationTypeForResponse, None]] + performed_via_github_app: NotRequired[Union[None, IntegrationTypeForResponse]] reactions: NotRequired[ReactionRollupTypeForResponse] pin: NotRequired[Union[None, PinnedIssueCommentTypeForResponse]] diff --git a/githubkit/versions/v2026_03_10/types/group_0056.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0056.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0056.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0056.py diff --git a/githubkit/versions/v2026_03_10/types/group_0057.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0057.py similarity index 99% rename from githubkit/versions/v2026_03_10/types/group_0057.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0057.py index 3126fb5dc9..08ec40e612 100644 --- a/githubkit/versions/v2026_03_10/types/group_0057.py +++ b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0057.py @@ -69,7 +69,7 @@ class IssueType(TypedDict): timeline_url: NotRequired[str] type: NotRequired[Union[IssueTypeType, None]] repository: NotRequired[RepositoryType] - performed_via_github_app: NotRequired[Union[None, IntegrationType, None]] + performed_via_github_app: NotRequired[Union[None, IntegrationType]] author_association: NotRequired[ Literal[ "COLLABORATOR", @@ -130,7 +130,7 @@ class IssueTypeForResponse(TypedDict): timeline_url: NotRequired[str] type: NotRequired[Union[IssueTypeTypeForResponse, None]] repository: NotRequired[RepositoryTypeForResponse] - performed_via_github_app: NotRequired[Union[None, IntegrationTypeForResponse, None]] + performed_via_github_app: NotRequired[Union[None, IntegrationTypeForResponse]] author_association: NotRequired[ Literal[ "COLLABORATOR", diff --git a/githubkit/versions/v2026_03_10/types/group_0058.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0058.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0058.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0058.py diff --git a/githubkit/versions/v2026_03_10/types/group_0059.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0059.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0059.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0059.py diff --git a/githubkit/versions/v2026_03_10/types/group_0060.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0060.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0060.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0060.py diff --git a/githubkit/versions/v2026_03_10/types/group_0061.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0061.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0061.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0061.py diff --git a/githubkit/versions/v2026_03_10/types/group_0062.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0062.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0062.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0062.py diff --git a/githubkit/versions/v2026_03_10/types/group_0063.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0063.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0063.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0063.py diff --git a/githubkit/versions/v2026_03_10/types/group_0064.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0064.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0064.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0064.py diff --git a/githubkit/versions/v2026_03_10/types/group_0065.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0065.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0065.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0065.py diff --git a/githubkit/versions/v2026_03_10/types/group_0066.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0066.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0066.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0066.py diff --git a/githubkit/versions/v2026_03_10/types/group_0067.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0067.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0067.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0067.py diff --git a/githubkit/versions/v2026_03_10/types/group_0068.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0068.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0068.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0068.py diff --git a/githubkit/versions/v2026_03_10/types/group_0069.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0069.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0069.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0069.py diff --git a/githubkit/versions/v2026_03_10/types/group_0070.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0070.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0070.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0070.py diff --git a/githubkit/versions/v2026_03_10/types/group_0071.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0071.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0071.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0071.py diff --git a/githubkit/versions/v2026_03_10/types/group_0072.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0072.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0072.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0072.py diff --git a/githubkit/versions/v2026_03_10/types/group_0073.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0073.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0073.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0073.py diff --git a/githubkit/versions/v2026_03_10/types/group_0074.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0074.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0074.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0074.py diff --git a/githubkit/versions/v2026_03_10/types/group_0075.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0075.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0075.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0075.py diff --git a/githubkit/versions/v2026_03_10/types/group_0076.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0076.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0076.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0076.py diff --git a/githubkit/versions/v2026_03_10/types/group_0077.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0077.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0077.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0077.py diff --git a/githubkit/versions/v2026_03_10/types/group_0078.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0078.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0078.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0078.py diff --git a/githubkit/versions/v2026_03_10/types/group_0079.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0079.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0079.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0079.py diff --git a/githubkit/versions/v2026_03_10/types/group_0080.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0080.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0080.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0080.py diff --git a/githubkit/versions/v2026_03_10/types/group_0081.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0081.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0081.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0081.py diff --git a/githubkit/versions/v2026_03_10/types/group_0082.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0082.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0082.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0082.py diff --git a/githubkit/versions/v2026_03_10/types/group_0083.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0083.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0083.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0083.py diff --git a/githubkit/versions/v2026_03_10/types/group_0084.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0084.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0084.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0084.py diff --git a/githubkit/versions/v2026_03_10/types/group_0085.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0085.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0085.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0085.py diff --git a/githubkit/versions/v2026_03_10/types/group_0086.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0086.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0086.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0086.py diff --git a/githubkit/versions/v2026_03_10/types/group_0087.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0087.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0087.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0087.py diff --git a/githubkit/versions/v2026_03_10/types/group_0088.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0088.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0088.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0088.py diff --git a/githubkit/versions/v2026_03_10/types/group_0089.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0089.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0089.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0089.py diff --git a/githubkit/versions/v2026_03_10/types/group_0090.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0090.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0090.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0090.py diff --git a/githubkit/versions/v2026_03_10/types/group_0091.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0091.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0091.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0091.py diff --git a/githubkit/versions/v2026_03_10/types/group_0092.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0092.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0092.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0092.py diff --git a/githubkit/versions/v2026_03_10/types/group_0093.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0093.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0093.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0093.py diff --git a/githubkit/versions/v2026_03_10/types/group_0094.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0094.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0094.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0094.py diff --git a/githubkit/versions/v2026_03_10/types/group_0095.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0095.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0095.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0095.py diff --git a/githubkit/versions/v2026_03_10/types/group_0096.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0096.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0096.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0096.py diff --git a/githubkit/versions/v2026_03_10/types/group_0097.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0097.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0097.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0097.py diff --git a/githubkit/versions/v2026_03_10/types/group_0098.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0098.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0098.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0098.py diff --git a/githubkit/versions/v2026_03_10/types/group_0099.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0099.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0099.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0099.py diff --git a/githubkit/versions/v2026_03_10/types/group_0100.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0100.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0100.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0100.py diff --git a/githubkit/versions/v2026_03_10/types/group_0101.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0101.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0101.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0101.py diff --git a/githubkit/versions/v2026_03_10/types/group_0102.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0102.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0102.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0102.py diff --git a/githubkit/versions/v2026_03_10/types/group_0103.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0103.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0103.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0103.py diff --git a/githubkit/versions/v2026_03_10/types/group_0104.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0104.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0104.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0104.py diff --git a/githubkit/versions/v2026_03_10/types/group_0105.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0105.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0105.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0105.py diff --git a/githubkit/versions/v2026_03_10/types/group_0106.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0106.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0106.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0106.py diff --git a/githubkit/versions/v2026_03_10/types/group_0107.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0107.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0107.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0107.py diff --git a/githubkit/versions/v2026_03_10/types/group_0108.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0108.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0108.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0108.py diff --git a/githubkit/versions/v2026_03_10/types/group_0109.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0109.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0109.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0109.py diff --git a/githubkit/versions/v2026_03_10/types/group_0110.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0110.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0110.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0110.py diff --git a/githubkit/versions/v2026_03_10/types/group_0111.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0111.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0111.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0111.py diff --git a/githubkit/versions/v2026_03_10/types/group_0112.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0112.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0112.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0112.py diff --git a/githubkit/versions/v2026_03_10/types/group_0113.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0113.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0113.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0113.py diff --git a/githubkit/versions/v2026_03_10/types/group_0114.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0114.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0114.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0114.py diff --git a/githubkit/versions/v2026_03_10/types/group_0115.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0115.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0115.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0115.py diff --git a/githubkit/versions/v2026_03_10/types/group_0116.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0116.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0116.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0116.py diff --git a/githubkit/versions/v2026_03_10/types/group_0117.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0117.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0117.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0117.py diff --git a/githubkit/versions/v2026_03_10/types/group_0118.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0118.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0118.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0118.py diff --git a/githubkit/versions/v2026_03_10/types/group_0119.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0119.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0119.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0119.py diff --git a/githubkit/versions/v2026_03_10/types/group_0120.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0120.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0120.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0120.py diff --git a/githubkit/versions/v2026_03_10/types/group_0121.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0121.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0121.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0121.py diff --git a/githubkit/versions/v2026_03_10/types/group_0122.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0122.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0122.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0122.py diff --git a/githubkit/versions/v2026_03_10/types/group_0123.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0123.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0123.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0123.py diff --git a/githubkit/versions/v2026_03_10/types/group_0124.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0124.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0124.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0124.py diff --git a/githubkit/versions/v2026_03_10/types/group_0125.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0125.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0125.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0125.py diff --git a/githubkit/versions/v2026_03_10/types/group_0126.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0126.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0126.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0126.py diff --git a/githubkit/versions/v2026_03_10/types/group_0127.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0127.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0127.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0127.py diff --git a/githubkit/versions/v2026_03_10/types/group_0128.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0128.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0128.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0128.py diff --git a/githubkit/versions/v2026_03_10/types/group_0129.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0129.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0129.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0129.py diff --git a/githubkit/versions/v2026_03_10/types/group_0130.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0130.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0130.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0130.py diff --git a/githubkit/versions/v2026_03_10/types/group_0131.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0131.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0131.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0131.py diff --git a/githubkit/versions/v2026_03_10/types/group_0132.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0132.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0132.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0132.py diff --git a/githubkit/versions/v2026_03_10/types/group_0133.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0133.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0133.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0133.py diff --git a/githubkit/versions/v2026_03_10/types/group_0134.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0134.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0134.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0134.py diff --git a/githubkit/versions/v2026_03_10/types/group_0135.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0135.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0135.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0135.py diff --git a/githubkit/versions/v2026_03_10/types/group_0136.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0136.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0136.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0136.py diff --git a/githubkit/versions/v2026_03_10/types/group_0137.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0137.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0137.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0137.py diff --git a/githubkit/versions/v2026_03_10/types/group_0138.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0138.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0138.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0138.py diff --git a/githubkit/versions/v2026_03_10/types/group_0139.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0139.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0139.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0139.py diff --git a/githubkit/versions/v2026_03_10/types/group_0140.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0140.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0140.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0140.py diff --git a/githubkit/versions/v2026_03_10/types/group_0141.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0141.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0141.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0141.py diff --git a/githubkit/versions/v2026_03_10/types/group_0142.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0142.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0142.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0142.py diff --git a/githubkit/versions/v2026_03_10/types/group_0143.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0143.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0143.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0143.py diff --git a/githubkit/versions/v2026_03_10/types/group_0144.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0144.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0144.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0144.py diff --git a/githubkit/versions/v2026_03_10/types/group_0145.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0145.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0145.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0145.py diff --git a/githubkit/versions/v2026_03_10/types/group_0146.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0146.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0146.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0146.py diff --git a/githubkit/versions/v2026_03_10/types/group_0147.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0147.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0147.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0147.py diff --git a/githubkit/versions/v2026_03_10/types/group_0148.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0148.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0148.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0148.py diff --git a/githubkit/versions/v2026_03_10/types/group_0149.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0149.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0149.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0149.py diff --git a/githubkit/versions/v2026_03_10/types/group_0150.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0150.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0150.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0150.py diff --git a/githubkit/versions/v2026_03_10/types/group_0151.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0151.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0151.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0151.py diff --git a/githubkit/versions/v2026_03_10/types/group_0152.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0152.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0152.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0152.py diff --git a/githubkit/versions/v2026_03_10/types/group_0153.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0153.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0153.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0153.py diff --git a/githubkit/versions/v2026_03_10/types/group_0154.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0154.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0154.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0154.py diff --git a/githubkit/versions/v2026_03_10/types/group_0155.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0155.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0155.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0155.py diff --git a/githubkit/versions/v2026_03_10/types/group_0156.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0156.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0156.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0156.py diff --git a/githubkit/versions/v2026_03_10/types/group_0157.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0157.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0157.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0157.py diff --git a/githubkit/versions/v2026_03_10/types/group_0158.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0158.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0158.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0158.py diff --git a/githubkit/versions/v2026_03_10/types/group_0159.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0159.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0159.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0159.py diff --git a/githubkit/versions/v2026_03_10/types/group_0160.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0160.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0160.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0160.py diff --git a/githubkit/versions/v2026_03_10/types/group_0161.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0161.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0161.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0161.py diff --git a/githubkit/versions/v2026_03_10/types/group_0162.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0162.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0162.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0162.py diff --git a/githubkit/versions/v2026_03_10/types/group_0163.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0163.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0163.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0163.py diff --git a/githubkit/versions/v2026_03_10/types/group_0164.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0164.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0164.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0164.py diff --git a/githubkit/versions/v2026_03_10/types/group_0165.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0165.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0165.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0165.py diff --git a/githubkit/versions/v2026_03_10/types/group_0166.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0166.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0166.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0166.py diff --git a/githubkit/versions/v2026_03_10/types/group_0167.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0167.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0167.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0167.py diff --git a/githubkit/versions/v2026_03_10/types/group_0168.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0168.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0168.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0168.py diff --git a/githubkit/versions/v2026_03_10/types/group_0169.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0169.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0169.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0169.py diff --git a/githubkit/versions/v2026_03_10/types/group_0170.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0170.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0170.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0170.py diff --git a/githubkit/versions/v2026_03_10/types/group_0171.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0171.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0171.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0171.py diff --git a/githubkit/versions/v2026_03_10/types/group_0172.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0172.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0172.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0172.py diff --git a/githubkit/versions/v2026_03_10/types/group_0173.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0173.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0173.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0173.py diff --git a/githubkit/versions/v2026_03_10/types/group_0174.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0174.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0174.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0174.py diff --git a/githubkit/versions/v2026_03_10/types/group_0175.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0175.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0175.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0175.py diff --git a/githubkit/versions/v2026_03_10/types/group_0176.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0176.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0176.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0176.py diff --git a/githubkit/versions/v2026_03_10/types/group_0177.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0177.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0177.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0177.py diff --git a/githubkit/versions/v2026_03_10/types/group_0178.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0178.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0178.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0178.py diff --git a/githubkit/versions/v2026_03_10/types/group_0179.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0179.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0179.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0179.py diff --git a/githubkit/versions/v2026_03_10/types/group_0180.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0180.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0180.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0180.py diff --git a/githubkit/versions/v2026_03_10/types/group_0181.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0181.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0181.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0181.py diff --git a/githubkit/versions/v2026_03_10/types/group_0182.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0182.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0182.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0182.py diff --git a/githubkit/versions/v2026_03_10/types/group_0183.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0183.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0183.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0183.py diff --git a/githubkit/versions/v2026_03_10/types/group_0184.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0184.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0184.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0184.py diff --git a/githubkit/versions/v2026_03_10/types/group_0185.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0185.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0185.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0185.py diff --git a/githubkit/versions/v2026_03_10/types/group_0186.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0186.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0186.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0186.py diff --git a/githubkit/versions/v2026_03_10/types/group_0187.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0187.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0187.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0187.py diff --git a/githubkit/versions/v2026_03_10/types/group_0188.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0188.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0188.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0188.py diff --git a/githubkit/versions/v2026_03_10/types/group_0189.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0189.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0189.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0189.py diff --git a/githubkit/versions/v2026_03_10/types/group_0190.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0190.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0190.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0190.py diff --git a/githubkit/versions/v2026_03_10/types/group_0191.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0191.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0191.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0191.py diff --git a/githubkit/versions/v2026_03_10/types/group_0192.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0192.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0192.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0192.py diff --git a/githubkit/versions/v2026_03_10/types/group_0193.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0193.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0193.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0193.py diff --git a/githubkit/versions/v2026_03_10/types/group_0194.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0194.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0194.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0194.py diff --git a/githubkit/versions/v2026_03_10/types/group_0195.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0195.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0195.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0195.py diff --git a/githubkit/versions/v2026_03_10/types/group_0196.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0196.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0196.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0196.py diff --git a/githubkit/versions/v2026_03_10/types/group_0197.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0197.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0197.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0197.py diff --git a/githubkit/versions/v2026_03_10/types/group_0198.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0198.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0198.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0198.py diff --git a/githubkit/versions/v2026_03_10/types/group_0199.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0199.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0199.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0199.py diff --git a/githubkit/versions/v2026_03_10/types/group_0200.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0200.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0200.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0200.py diff --git a/githubkit/versions/v2026_03_10/types/group_0201.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0201.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0201.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0201.py diff --git a/githubkit/versions/v2026_03_10/types/group_0202.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0202.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0202.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0202.py diff --git a/githubkit/versions/v2026_03_10/types/group_0203.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0203.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0203.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0203.py diff --git a/githubkit/versions/v2026_03_10/types/group_0204.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0204.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0204.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0204.py diff --git a/githubkit/versions/v2026_03_10/types/group_0205.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0205.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0205.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0205.py diff --git a/githubkit/versions/v2026_03_10/types/group_0206.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0206.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0206.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0206.py diff --git a/githubkit/versions/v2026_03_10/types/group_0207.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0207.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0207.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0207.py diff --git a/githubkit/versions/v2026_03_10/types/group_0208.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0208.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0208.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0208.py diff --git a/githubkit/versions/v2026_03_10/types/group_0209.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0209.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0209.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0209.py diff --git a/githubkit/versions/v2026_03_10/types/group_0210.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0210.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0210.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0210.py diff --git a/githubkit/versions/v2026_03_10/types/group_0211.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0211.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0211.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0211.py diff --git a/githubkit/versions/v2026_03_10/types/group_0212.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0212.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0212.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0212.py diff --git a/githubkit/versions/v2026_03_10/types/group_0213.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0213.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0213.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0213.py diff --git a/githubkit/versions/v2026_03_10/types/group_0214.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0214.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0214.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0214.py diff --git a/githubkit/versions/v2026_03_10/types/group_0215.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0215.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0215.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0215.py diff --git a/githubkit/versions/v2026_03_10/types/group_0216.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0216.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0216.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0216.py diff --git a/githubkit/versions/v2026_03_10/types/group_0217.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0217.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0217.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0217.py diff --git a/githubkit/versions/v2026_03_10/types/group_0218.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0218.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0218.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0218.py diff --git a/githubkit/versions/v2026_03_10/types/group_0219.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0219.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0219.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0219.py diff --git a/githubkit/versions/v2026_03_10/types/group_0220.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0220.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0220.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0220.py diff --git a/githubkit/versions/v2026_03_10/types/group_0221.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0221.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0221.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0221.py diff --git a/githubkit/versions/v2026_03_10/types/group_0222.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0222.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0222.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0222.py diff --git a/githubkit/versions/v2026_03_10/types/group_0223.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0223.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0223.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0223.py diff --git a/githubkit/versions/v2026_03_10/types/group_0224.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0224.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0224.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0224.py diff --git a/githubkit/versions/v2026_03_10/types/group_0225.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0225.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0225.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0225.py diff --git a/githubkit/versions/v2026_03_10/types/group_0226.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0226.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0226.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0226.py diff --git a/githubkit/versions/v2026_03_10/types/group_0227.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0227.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0227.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0227.py diff --git a/githubkit/versions/v2026_03_10/types/group_0228.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0228.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0228.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0228.py diff --git a/githubkit/versions/v2026_03_10/types/group_0229.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0229.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0229.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0229.py diff --git a/githubkit/versions/v2026_03_10/types/group_0230.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0230.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0230.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0230.py diff --git a/githubkit/versions/v2026_03_10/types/group_0231.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0231.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0231.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0231.py diff --git a/githubkit/versions/v2026_03_10/types/group_0232.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0232.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0232.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0232.py diff --git a/githubkit/versions/v2026_03_10/types/group_0233.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0233.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0233.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0233.py diff --git a/githubkit/versions/v2026_03_10/types/group_0234.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0234.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0234.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0234.py diff --git a/githubkit/versions/v2026_03_10/types/group_0235.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0235.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0235.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0235.py diff --git a/githubkit/versions/v2026_03_10/types/group_0236.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0236.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0236.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0236.py diff --git a/githubkit/versions/v2026_03_10/types/group_0237.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0237.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0237.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0237.py diff --git a/githubkit/versions/v2026_03_10/types/group_0238.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0238.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0238.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0238.py diff --git a/githubkit/versions/v2026_03_10/types/group_0239.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0239.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0239.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0239.py diff --git a/githubkit/versions/v2026_03_10/types/group_0240.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0240.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0240.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0240.py diff --git a/githubkit/versions/v2026_03_10/types/group_0241.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0241.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0241.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0241.py diff --git a/githubkit/versions/v2026_03_10/types/group_0242.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0242.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0242.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0242.py diff --git a/githubkit/versions/v2026_03_10/types/group_0243.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0243.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0243.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0243.py diff --git a/githubkit/versions/v2026_03_10/types/group_0244.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0244.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0244.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0244.py diff --git a/githubkit/versions/v2026_03_10/types/group_0245.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0245.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0245.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0245.py diff --git a/githubkit/versions/v2026_03_10/types/group_0246.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0246.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0246.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0246.py diff --git a/githubkit/versions/v2026_03_10/types/group_0247.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0247.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0247.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0247.py diff --git a/githubkit/versions/v2026_03_10/types/group_0248.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0248.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0248.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0248.py diff --git a/githubkit/versions/v2026_03_10/types/group_0249.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0249.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0249.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0249.py diff --git a/githubkit/versions/v2026_03_10/types/group_0250.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0250.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0250.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0250.py diff --git a/githubkit/versions/v2026_03_10/types/group_0251.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0251.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0251.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0251.py diff --git a/githubkit/versions/v2026_03_10/types/group_0252.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0252.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0252.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0252.py diff --git a/githubkit/versions/v2026_03_10/types/group_0253.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0253.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0253.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0253.py diff --git a/githubkit/versions/v2026_03_10/types/group_0254.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0254.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0254.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0254.py diff --git a/githubkit/versions/v2026_03_10/types/group_0255.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0255.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0255.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0255.py diff --git a/githubkit/versions/v2026_03_10/types/group_0256.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0256.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0256.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0256.py diff --git a/githubkit/versions/v2026_03_10/types/group_0257.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0257.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0257.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0257.py diff --git a/githubkit/versions/v2026_03_10/types/group_0258.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0258.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0258.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0258.py diff --git a/githubkit/versions/v2026_03_10/types/group_0259.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0259.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0259.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0259.py diff --git a/githubkit/versions/v2026_03_10/types/group_0260.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0260.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0260.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0260.py diff --git a/githubkit/versions/v2026_03_10/types/group_0261.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0261.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0261.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0261.py diff --git a/githubkit/versions/v2026_03_10/types/group_0262.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0262.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0262.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0262.py diff --git a/githubkit/versions/v2026_03_10/types/group_0263.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0263.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0263.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0263.py diff --git a/githubkit/versions/v2026_03_10/types/group_0264.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0264.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0264.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0264.py diff --git a/githubkit/versions/v2026_03_10/types/group_0265.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0265.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0265.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0265.py diff --git a/githubkit/versions/v2026_03_10/types/group_0266.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0266.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0266.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0266.py diff --git a/githubkit/versions/v2026_03_10/types/group_0267.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0267.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0267.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0267.py diff --git a/githubkit/versions/v2026_03_10/types/group_0268.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0268.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0268.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0268.py diff --git a/githubkit/versions/v2026_03_10/types/group_0269.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0269.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0269.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0269.py diff --git a/githubkit/versions/v2026_03_10/types/group_0270.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0270.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0270.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0270.py diff --git a/githubkit/versions/v2026_03_10/types/group_0271.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0271.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0271.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0271.py diff --git a/githubkit/versions/v2026_03_10/types/group_0272.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0272.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0272.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0272.py diff --git a/githubkit/versions/v2026_03_10/types/group_0273.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0273.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0273.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0273.py diff --git a/githubkit/versions/v2026_03_10/types/group_0274.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0274.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0274.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0274.py diff --git a/githubkit/versions/v2026_03_10/types/group_0275.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0275.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0275.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0275.py diff --git a/githubkit/versions/v2026_03_10/types/group_0276.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0276.py similarity index 98% rename from githubkit/versions/v2026_03_10/types/group_0276.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0276.py index ec9b47bfff..58cb672999 100644 --- a/githubkit/versions/v2026_03_10/types/group_0276.py +++ b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0276.py @@ -40,7 +40,7 @@ class DeploymentType(TypedDict): repository_url: str transient_environment: NotRequired[bool] production_environment: NotRequired[bool] - performed_via_github_app: NotRequired[Union[None, IntegrationType, None]] + performed_via_github_app: NotRequired[Union[None, IntegrationType]] class DeploymentTypeForResponse(TypedDict): @@ -66,7 +66,7 @@ class DeploymentTypeForResponse(TypedDict): repository_url: str transient_environment: NotRequired[bool] production_environment: NotRequired[bool] - performed_via_github_app: NotRequired[Union[None, IntegrationTypeForResponse, None]] + performed_via_github_app: NotRequired[Union[None, IntegrationTypeForResponse]] DeploymentPropPayloadOneof0Type: TypeAlias = dict[str, Any] diff --git a/githubkit/versions/v2026_03_10/types/group_0277.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0277.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0277.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0277.py diff --git a/githubkit/versions/v2026_03_10/types/group_0278.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0278.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0278.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0278.py diff --git a/githubkit/versions/v2026_03_10/types/group_0279.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0279.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0279.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0279.py diff --git a/githubkit/versions/v2026_03_10/types/group_0280.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0280.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0280.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0280.py diff --git a/githubkit/versions/v2026_03_10/types/group_0281.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0281.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0281.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0281.py diff --git a/githubkit/versions/v2026_03_10/types/group_0282.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0282.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0282.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0282.py diff --git a/githubkit/versions/v2026_03_10/types/group_0283.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0283.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0283.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0283.py diff --git a/githubkit/versions/v2026_03_10/types/group_0284.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0284.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0284.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0284.py diff --git a/githubkit/versions/v2026_03_10/types/group_0285.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0285.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0285.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0285.py diff --git a/githubkit/versions/v2026_03_10/types/group_0286.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0286.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0286.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0286.py diff --git a/githubkit/versions/v2026_03_10/types/group_0287.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0287.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0287.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0287.py diff --git a/githubkit/versions/v2026_03_10/types/group_0288.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0288.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0288.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0288.py diff --git a/githubkit/versions/v2026_03_10/types/group_0289.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0289.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0289.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0289.py diff --git a/githubkit/versions/v2026_03_10/types/group_0290.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0290.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0290.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0290.py diff --git a/githubkit/versions/v2026_03_10/types/group_0291.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0291.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0291.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0291.py diff --git a/githubkit/versions/v2026_03_10/types/group_0292.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0292.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0292.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0292.py diff --git a/githubkit/versions/v2026_03_10/types/group_0293.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0293.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0293.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0293.py diff --git a/githubkit/versions/v2026_03_10/types/group_0294.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0294.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0294.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0294.py diff --git a/githubkit/versions/v2026_03_10/types/group_0295.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0295.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0295.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0295.py diff --git a/githubkit/versions/v2026_03_10/types/group_0296.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0296.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0296.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0296.py diff --git a/githubkit/versions/v2026_03_10/types/group_0297.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0297.py similarity index 97% rename from githubkit/versions/v2026_03_10/types/group_0297.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0297.py index 5aa09ed91d..67b2d3310c 100644 --- a/githubkit/versions/v2026_03_10/types/group_0297.py +++ b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0297.py @@ -36,7 +36,7 @@ class DeploymentSimpleType(TypedDict): repository_url: str transient_environment: NotRequired[bool] production_environment: NotRequired[bool] - performed_via_github_app: NotRequired[Union[None, IntegrationType, None]] + performed_via_github_app: NotRequired[Union[None, IntegrationType]] class DeploymentSimpleTypeForResponse(TypedDict): @@ -59,7 +59,7 @@ class DeploymentSimpleTypeForResponse(TypedDict): repository_url: str transient_environment: NotRequired[bool] production_environment: NotRequired[bool] - performed_via_github_app: NotRequired[Union[None, IntegrationTypeForResponse, None]] + performed_via_github_app: NotRequired[Union[None, IntegrationTypeForResponse]] __all__ = ( diff --git a/githubkit/versions/v2026_03_10/types/group_0298.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0298.py similarity index 97% rename from githubkit/versions/v2026_03_10/types/group_0298.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0298.py index 5749e11e5b..385a1cac40 100644 --- a/githubkit/versions/v2026_03_10/types/group_0298.py +++ b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0298.py @@ -51,7 +51,7 @@ class CheckRunType(TypedDict): output: CheckRunPropOutputType name: str check_suite: Union[CheckRunPropCheckSuiteType, None] - app: Union[None, IntegrationType, None] + app: Union[None, IntegrationType] pull_requests: list[PullRequestMinimalType] deployment: NotRequired[DeploymentSimpleType] @@ -89,7 +89,7 @@ class CheckRunTypeForResponse(TypedDict): output: CheckRunPropOutputTypeForResponse name: str check_suite: Union[CheckRunPropCheckSuiteTypeForResponse, None] - app: Union[None, IntegrationTypeForResponse, None] + app: Union[None, IntegrationTypeForResponse] pull_requests: list[PullRequestMinimalTypeForResponse] deployment: NotRequired[DeploymentSimpleTypeForResponse] diff --git a/githubkit/versions/v2026_03_10/types/group_0299.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0299.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0299.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0299.py diff --git a/githubkit/versions/v2026_03_10/types/group_0300.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0300.py similarity index 97% rename from githubkit/versions/v2026_03_10/types/group_0300.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0300.py index 7dba0cc94f..019be7217b 100644 --- a/githubkit/versions/v2026_03_10/types/group_0300.py +++ b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0300.py @@ -53,7 +53,7 @@ class CheckSuiteType(TypedDict): before: Union[str, None] after: Union[str, None] pull_requests: Union[list[PullRequestMinimalType], None] - app: Union[None, IntegrationType, None] + app: Union[None, IntegrationType] repository: MinimalRepositoryType created_at: Union[_dt.datetime, None] updated_at: Union[_dt.datetime, None] @@ -98,7 +98,7 @@ class CheckSuiteTypeForResponse(TypedDict): before: Union[str, None] after: Union[str, None] pull_requests: Union[list[PullRequestMinimalTypeForResponse], None] - app: Union[None, IntegrationTypeForResponse, None] + app: Union[None, IntegrationTypeForResponse] repository: MinimalRepositoryTypeForResponse created_at: Union[str, None] updated_at: Union[str, None] diff --git a/githubkit/versions/v2026_03_10/types/group_0301.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0301.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0301.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0301.py diff --git a/githubkit/versions/v2026_03_10/types/group_0302.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0302.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0302.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0302.py diff --git a/githubkit/versions/v2026_03_10/types/group_0303.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0303.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0303.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0303.py diff --git a/githubkit/versions/v2026_03_10/types/group_0304.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0304.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0304.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0304.py diff --git a/githubkit/versions/v2026_03_10/types/group_0305.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0305.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0305.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0305.py diff --git a/githubkit/versions/v2026_03_10/types/group_0306.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0306.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0306.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0306.py diff --git a/githubkit/versions/v2026_03_10/types/group_0307.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0307.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0307.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0307.py diff --git a/githubkit/versions/v2026_03_10/types/group_0308.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0308.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0308.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0308.py diff --git a/githubkit/versions/v2026_03_10/types/group_0309.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0309.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0309.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0309.py diff --git a/githubkit/versions/v2026_03_10/types/group_0310.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0310.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0310.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0310.py diff --git a/githubkit/versions/v2026_03_10/types/group_0311.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0311.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0311.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0311.py diff --git a/githubkit/versions/v2026_03_10/types/group_0312.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0312.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0312.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0312.py diff --git a/githubkit/versions/v2026_03_10/types/group_0313.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0313.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0313.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0313.py diff --git a/githubkit/versions/v2026_03_10/types/group_0314.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0314.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0314.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0314.py diff --git a/githubkit/versions/v2026_03_10/types/group_0315.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0315.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0315.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0315.py diff --git a/githubkit/versions/v2026_03_10/types/group_0316.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0316.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0316.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0316.py diff --git a/githubkit/versions/v2026_03_10/types/group_0317.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0317.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0317.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0317.py diff --git a/githubkit/versions/v2026_03_10/types/group_0318.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0318.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0318.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0318.py diff --git a/githubkit/versions/v2026_03_10/types/group_0319.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0319.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0319.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0319.py diff --git a/githubkit/versions/v2026_03_10/types/group_0320.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0320.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0320.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0320.py diff --git a/githubkit/versions/v2026_03_10/types/group_0321.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0321.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0321.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0321.py diff --git a/githubkit/versions/v2026_03_10/types/group_0322.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0322.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0322.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0322.py diff --git a/githubkit/versions/v2026_03_10/types/group_0323.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0323.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0323.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0323.py diff --git a/githubkit/versions/v2026_03_10/types/group_0324.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0324.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0324.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0324.py diff --git a/githubkit/versions/v2026_03_10/types/group_0325.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0325.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0325.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0325.py diff --git a/githubkit/versions/v2026_03_10/types/group_0326.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0326.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0326.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0326.py diff --git a/githubkit/versions/v2026_03_10/types/group_0327.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0327.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0327.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0327.py diff --git a/githubkit/versions/v2026_03_10/types/group_0328.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0328.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0328.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0328.py diff --git a/githubkit/versions/v2026_03_10/types/group_0329.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0329.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0329.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0329.py diff --git a/githubkit/versions/v2026_03_10/types/group_0330.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0330.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0330.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0330.py diff --git a/githubkit/versions/v2026_03_10/types/group_0331.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0331.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0331.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0331.py diff --git a/githubkit/versions/v2026_03_10/types/group_0332.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0332.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0332.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0332.py diff --git a/githubkit/versions/v2026_03_10/types/group_0333.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0333.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0333.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0333.py diff --git a/githubkit/versions/v2026_03_10/types/group_0334.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0334.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0334.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0334.py diff --git a/githubkit/versions/v2026_03_10/types/group_0335.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0335.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0335.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0335.py diff --git a/githubkit/versions/v2026_03_10/types/group_0336.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0336.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0336.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0336.py diff --git a/githubkit/versions/v2026_03_10/types/group_0337.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0337.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0337.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0337.py diff --git a/githubkit/versions/v2026_03_10/types/group_0338.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0338.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0338.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0338.py diff --git a/githubkit/versions/v2026_03_10/types/group_0339.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0339.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0339.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0339.py diff --git a/githubkit/versions/v2026_03_10/types/group_0340.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0340.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0340.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0340.py diff --git a/githubkit/versions/v2026_03_10/types/group_0341.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0341.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0341.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0341.py diff --git a/githubkit/versions/v2026_03_10/types/group_0342.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0342.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0342.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0342.py diff --git a/githubkit/versions/v2026_03_10/types/group_0343.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0343.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0343.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0343.py diff --git a/githubkit/versions/v2026_03_10/types/group_0344.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0344.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0344.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0344.py diff --git a/githubkit/versions/v2026_03_10/types/group_0345.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0345.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0345.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0345.py diff --git a/githubkit/versions/v2026_03_10/types/group_0346.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0346.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0346.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0346.py diff --git a/githubkit/versions/v2026_03_10/types/group_0347.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0347.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0347.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0347.py diff --git a/githubkit/versions/v2026_03_10/types/group_0348.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0348.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0348.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0348.py diff --git a/githubkit/versions/v2026_03_10/types/group_0349.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0349.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0349.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0349.py diff --git a/githubkit/versions/v2026_03_10/types/group_0350.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0350.py similarity index 97% rename from githubkit/versions/v2026_03_10/types/group_0350.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0350.py index 61d78a0498..b659d7ac2a 100644 --- a/githubkit/versions/v2026_03_10/types/group_0350.py +++ b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0350.py @@ -39,7 +39,7 @@ class DeploymentStatusType(TypedDict): repository_url: str environment_url: NotRequired[str] log_url: NotRequired[str] - performed_via_github_app: NotRequired[Union[None, IntegrationType, None]] + performed_via_github_app: NotRequired[Union[None, IntegrationType]] class DeploymentStatusTypeForResponse(TypedDict): @@ -64,7 +64,7 @@ class DeploymentStatusTypeForResponse(TypedDict): repository_url: str environment_url: NotRequired[str] log_url: NotRequired[str] - performed_via_github_app: NotRequired[Union[None, IntegrationTypeForResponse, None]] + performed_via_github_app: NotRequired[Union[None, IntegrationTypeForResponse]] __all__ = ( diff --git a/githubkit/versions/v2026_03_10/types/group_0351.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0351.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0351.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0351.py diff --git a/githubkit/versions/v2026_03_10/types/group_0352.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0352.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0352.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0352.py diff --git a/githubkit/versions/v2026_03_10/types/group_0353.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0353.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0353.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0353.py diff --git a/githubkit/versions/v2026_03_10/types/group_0354.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0354.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0354.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0354.py diff --git a/githubkit/versions/v2026_03_10/types/group_0355.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0355.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0355.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0355.py diff --git a/githubkit/versions/v2026_03_10/types/group_0356.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0356.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0356.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0356.py diff --git a/githubkit/versions/v2026_03_10/types/group_0357.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0357.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0357.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0357.py diff --git a/githubkit/versions/v2026_03_10/types/group_0358.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0358.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0358.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0358.py diff --git a/githubkit/versions/v2026_03_10/types/group_0359.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0359.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0359.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0359.py diff --git a/githubkit/versions/v2026_03_10/types/group_0360.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0360.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0360.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0360.py diff --git a/githubkit/versions/v2026_03_10/types/group_0361.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0361.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0361.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0361.py diff --git a/githubkit/versions/v2026_03_10/types/group_0362.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0362.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0362.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0362.py diff --git a/githubkit/versions/v2026_03_10/types/group_0363.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0363.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0363.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0363.py diff --git a/githubkit/versions/v2026_03_10/types/group_0364.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0364.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0364.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0364.py diff --git a/githubkit/versions/v2026_03_10/types/group_0365.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0365.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0365.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0365.py diff --git a/githubkit/versions/v2026_03_10/types/group_0366.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0366.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0366.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0366.py diff --git a/githubkit/versions/v2026_03_10/types/group_0367.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0367.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0367.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0367.py diff --git a/githubkit/versions/v2026_03_10/types/group_0368.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0368.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0368.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0368.py diff --git a/githubkit/versions/v2026_03_10/types/group_0369.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0369.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0369.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0369.py diff --git a/githubkit/versions/v2026_03_10/types/group_0370.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0370.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0370.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0370.py diff --git a/githubkit/versions/v2026_03_10/types/group_0371.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0371.py similarity index 99% rename from githubkit/versions/v2026_03_10/types/group_0371.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0371.py index ec3db06125..daf9f06fcd 100644 --- a/githubkit/versions/v2026_03_10/types/group_0371.py +++ b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0371.py @@ -57,7 +57,7 @@ class IssueEventType(TypedDict): ] ] lock_reason: NotRequired[Union[str, None]] - performed_via_github_app: NotRequired[Union[None, IntegrationType, None]] + performed_via_github_app: NotRequired[Union[None, IntegrationType]] class IssueEventTypeForResponse(TypedDict): @@ -98,7 +98,7 @@ class IssueEventTypeForResponse(TypedDict): ] ] lock_reason: NotRequired[Union[str, None]] - performed_via_github_app: NotRequired[Union[None, IntegrationTypeForResponse, None]] + performed_via_github_app: NotRequired[Union[None, IntegrationTypeForResponse]] class IssueEventLabelType(TypedDict): diff --git a/githubkit/versions/v2026_03_10/types/group_0372.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0372.py similarity index 95% rename from githubkit/versions/v2026_03_10/types/group_0372.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0372.py index 5b9522f972..890c6fd308 100644 --- a/githubkit/versions/v2026_03_10/types/group_0372.py +++ b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0372.py @@ -30,7 +30,7 @@ class LabeledIssueEventType(TypedDict): commit_id: Union[str, None] commit_url: Union[str, None] created_at: str - performed_via_github_app: Union[None, IntegrationType, None] + performed_via_github_app: Union[None, IntegrationType] label: LabeledIssueEventPropLabelType @@ -48,7 +48,7 @@ class LabeledIssueEventTypeForResponse(TypedDict): commit_id: Union[str, None] commit_url: Union[str, None] created_at: str - performed_via_github_app: Union[None, IntegrationTypeForResponse, None] + performed_via_github_app: Union[None, IntegrationTypeForResponse] label: LabeledIssueEventPropLabelTypeForResponse diff --git a/githubkit/versions/v2026_03_10/types/group_0373.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0373.py similarity index 95% rename from githubkit/versions/v2026_03_10/types/group_0373.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0373.py index 607ed755a0..f5b8170bef 100644 --- a/githubkit/versions/v2026_03_10/types/group_0373.py +++ b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0373.py @@ -30,7 +30,7 @@ class UnlabeledIssueEventType(TypedDict): commit_id: Union[str, None] commit_url: Union[str, None] created_at: str - performed_via_github_app: Union[None, IntegrationType, None] + performed_via_github_app: Union[None, IntegrationType] label: UnlabeledIssueEventPropLabelType @@ -48,7 +48,7 @@ class UnlabeledIssueEventTypeForResponse(TypedDict): commit_id: Union[str, None] commit_url: Union[str, None] created_at: str - performed_via_github_app: Union[None, IntegrationTypeForResponse, None] + performed_via_github_app: Union[None, IntegrationTypeForResponse] label: UnlabeledIssueEventPropLabelTypeForResponse diff --git a/githubkit/versions/v2026_03_10/types/group_0374.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0374.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0374.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0374.py diff --git a/githubkit/versions/v2026_03_10/types/group_0375.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0375.py similarity index 94% rename from githubkit/versions/v2026_03_10/types/group_0375.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0375.py index 9f3572b6aa..4a42df9599 100644 --- a/githubkit/versions/v2026_03_10/types/group_0375.py +++ b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0375.py @@ -30,7 +30,7 @@ class UnassignedIssueEventType(TypedDict): commit_id: Union[str, None] commit_url: Union[str, None] created_at: str - performed_via_github_app: Union[None, IntegrationType, None] + performed_via_github_app: Union[None, IntegrationType] assignee: SimpleUserType assigner: SimpleUserType @@ -49,7 +49,7 @@ class UnassignedIssueEventTypeForResponse(TypedDict): commit_id: Union[str, None] commit_url: Union[str, None] created_at: str - performed_via_github_app: Union[None, IntegrationTypeForResponse, None] + performed_via_github_app: Union[None, IntegrationTypeForResponse] assignee: SimpleUserTypeForResponse assigner: SimpleUserTypeForResponse diff --git a/githubkit/versions/v2026_03_10/types/group_0376.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0376.py similarity index 95% rename from githubkit/versions/v2026_03_10/types/group_0376.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0376.py index 1a28663c59..1724338327 100644 --- a/githubkit/versions/v2026_03_10/types/group_0376.py +++ b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0376.py @@ -30,7 +30,7 @@ class MilestonedIssueEventType(TypedDict): commit_id: Union[str, None] commit_url: Union[str, None] created_at: str - performed_via_github_app: Union[None, IntegrationType, None] + performed_via_github_app: Union[None, IntegrationType] milestone: MilestonedIssueEventPropMilestoneType @@ -48,7 +48,7 @@ class MilestonedIssueEventTypeForResponse(TypedDict): commit_id: Union[str, None] commit_url: Union[str, None] created_at: str - performed_via_github_app: Union[None, IntegrationTypeForResponse, None] + performed_via_github_app: Union[None, IntegrationTypeForResponse] milestone: MilestonedIssueEventPropMilestoneTypeForResponse diff --git a/githubkit/versions/v2026_03_10/types/group_0377.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0377.py similarity index 95% rename from githubkit/versions/v2026_03_10/types/group_0377.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0377.py index 60ccecc3f7..b44670af28 100644 --- a/githubkit/versions/v2026_03_10/types/group_0377.py +++ b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0377.py @@ -30,7 +30,7 @@ class DemilestonedIssueEventType(TypedDict): commit_id: Union[str, None] commit_url: Union[str, None] created_at: str - performed_via_github_app: Union[None, IntegrationType, None] + performed_via_github_app: Union[None, IntegrationType] milestone: DemilestonedIssueEventPropMilestoneType @@ -48,7 +48,7 @@ class DemilestonedIssueEventTypeForResponse(TypedDict): commit_id: Union[str, None] commit_url: Union[str, None] created_at: str - performed_via_github_app: Union[None, IntegrationTypeForResponse, None] + performed_via_github_app: Union[None, IntegrationTypeForResponse] milestone: DemilestonedIssueEventPropMilestoneTypeForResponse diff --git a/githubkit/versions/v2026_03_10/types/group_0378.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0378.py similarity index 95% rename from githubkit/versions/v2026_03_10/types/group_0378.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0378.py index 94b63e682f..c39a91c014 100644 --- a/githubkit/versions/v2026_03_10/types/group_0378.py +++ b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0378.py @@ -30,7 +30,7 @@ class RenamedIssueEventType(TypedDict): commit_id: Union[str, None] commit_url: Union[str, None] created_at: str - performed_via_github_app: Union[None, IntegrationType, None] + performed_via_github_app: Union[None, IntegrationType] rename: RenamedIssueEventPropRenameType @@ -48,7 +48,7 @@ class RenamedIssueEventTypeForResponse(TypedDict): commit_id: Union[str, None] commit_url: Union[str, None] created_at: str - performed_via_github_app: Union[None, IntegrationTypeForResponse, None] + performed_via_github_app: Union[None, IntegrationTypeForResponse] rename: RenamedIssueEventPropRenameTypeForResponse diff --git a/githubkit/versions/v2026_03_10/types/group_0379.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0379.py similarity index 95% rename from githubkit/versions/v2026_03_10/types/group_0379.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0379.py index 082f042234..7bdd02752c 100644 --- a/githubkit/versions/v2026_03_10/types/group_0379.py +++ b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0379.py @@ -31,7 +31,7 @@ class ReviewRequestedIssueEventType(TypedDict): commit_id: Union[str, None] commit_url: Union[str, None] created_at: str - performed_via_github_app: Union[None, IntegrationType, None] + performed_via_github_app: Union[None, IntegrationType] review_requester: SimpleUserType requested_team: NotRequired[TeamType] requested_reviewer: NotRequired[SimpleUserType] @@ -51,7 +51,7 @@ class ReviewRequestedIssueEventTypeForResponse(TypedDict): commit_id: Union[str, None] commit_url: Union[str, None] created_at: str - performed_via_github_app: Union[None, IntegrationTypeForResponse, None] + performed_via_github_app: Union[None, IntegrationTypeForResponse] review_requester: SimpleUserTypeForResponse requested_team: NotRequired[TeamTypeForResponse] requested_reviewer: NotRequired[SimpleUserTypeForResponse] diff --git a/githubkit/versions/v2026_03_10/types/group_0380.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0380.py similarity index 95% rename from githubkit/versions/v2026_03_10/types/group_0380.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0380.py index 4e3dc4c0ec..bdcfe6b7ae 100644 --- a/githubkit/versions/v2026_03_10/types/group_0380.py +++ b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0380.py @@ -31,7 +31,7 @@ class ReviewRequestRemovedIssueEventType(TypedDict): commit_id: Union[str, None] commit_url: Union[str, None] created_at: str - performed_via_github_app: Union[None, IntegrationType, None] + performed_via_github_app: Union[None, IntegrationType] review_requester: SimpleUserType requested_team: NotRequired[TeamType] requested_reviewer: NotRequired[SimpleUserType] @@ -51,7 +51,7 @@ class ReviewRequestRemovedIssueEventTypeForResponse(TypedDict): commit_id: Union[str, None] commit_url: Union[str, None] created_at: str - performed_via_github_app: Union[None, IntegrationTypeForResponse, None] + performed_via_github_app: Union[None, IntegrationTypeForResponse] review_requester: SimpleUserTypeForResponse requested_team: NotRequired[TeamTypeForResponse] requested_reviewer: NotRequired[SimpleUserTypeForResponse] diff --git a/githubkit/versions/v2026_03_10/types/group_0381.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0381.py similarity index 96% rename from githubkit/versions/v2026_03_10/types/group_0381.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0381.py index 60e83087f6..ca32726c75 100644 --- a/githubkit/versions/v2026_03_10/types/group_0381.py +++ b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0381.py @@ -30,7 +30,7 @@ class ReviewDismissedIssueEventType(TypedDict): commit_id: Union[str, None] commit_url: Union[str, None] created_at: str - performed_via_github_app: Union[None, IntegrationType, None] + performed_via_github_app: Union[None, IntegrationType] dismissed_review: ReviewDismissedIssueEventPropDismissedReviewType @@ -48,7 +48,7 @@ class ReviewDismissedIssueEventTypeForResponse(TypedDict): commit_id: Union[str, None] commit_url: Union[str, None] created_at: str - performed_via_github_app: Union[None, IntegrationTypeForResponse, None] + performed_via_github_app: Union[None, IntegrationTypeForResponse] dismissed_review: ReviewDismissedIssueEventPropDismissedReviewTypeForResponse diff --git a/githubkit/versions/v2026_03_10/types/group_0382.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0382.py similarity index 94% rename from githubkit/versions/v2026_03_10/types/group_0382.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0382.py index b64f7e5588..b4190fbe44 100644 --- a/githubkit/versions/v2026_03_10/types/group_0382.py +++ b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0382.py @@ -30,7 +30,7 @@ class LockedIssueEventType(TypedDict): commit_id: Union[str, None] commit_url: Union[str, None] created_at: str - performed_via_github_app: Union[None, IntegrationType, None] + performed_via_github_app: Union[None, IntegrationType] lock_reason: Union[str, None] @@ -48,7 +48,7 @@ class LockedIssueEventTypeForResponse(TypedDict): commit_id: Union[str, None] commit_url: Union[str, None] created_at: str - performed_via_github_app: Union[None, IntegrationTypeForResponse, None] + performed_via_github_app: Union[None, IntegrationTypeForResponse] lock_reason: Union[str, None] diff --git a/githubkit/versions/v2026_03_10/types/group_0383.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0383.py similarity index 96% rename from githubkit/versions/v2026_03_10/types/group_0383.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0383.py index 1a7ae01706..5b4b16803e 100644 --- a/githubkit/versions/v2026_03_10/types/group_0383.py +++ b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0383.py @@ -30,7 +30,7 @@ class AddedToProjectIssueEventType(TypedDict): commit_id: Union[str, None] commit_url: Union[str, None] created_at: str - performed_via_github_app: Union[None, IntegrationType, None] + performed_via_github_app: Union[None, IntegrationType] project_card: NotRequired[AddedToProjectIssueEventPropProjectCardType] @@ -48,7 +48,7 @@ class AddedToProjectIssueEventTypeForResponse(TypedDict): commit_id: Union[str, None] commit_url: Union[str, None] created_at: str - performed_via_github_app: Union[None, IntegrationTypeForResponse, None] + performed_via_github_app: Union[None, IntegrationTypeForResponse] project_card: NotRequired[AddedToProjectIssueEventPropProjectCardTypeForResponse] diff --git a/githubkit/versions/v2026_03_10/types/group_0384.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0384.py similarity index 96% rename from githubkit/versions/v2026_03_10/types/group_0384.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0384.py index 1e0cd3854f..89fc05a616 100644 --- a/githubkit/versions/v2026_03_10/types/group_0384.py +++ b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0384.py @@ -30,7 +30,7 @@ class MovedColumnInProjectIssueEventType(TypedDict): commit_id: Union[str, None] commit_url: Union[str, None] created_at: str - performed_via_github_app: Union[None, IntegrationType, None] + performed_via_github_app: Union[None, IntegrationType] project_card: NotRequired[MovedColumnInProjectIssueEventPropProjectCardType] @@ -48,7 +48,7 @@ class MovedColumnInProjectIssueEventTypeForResponse(TypedDict): commit_id: Union[str, None] commit_url: Union[str, None] created_at: str - performed_via_github_app: Union[None, IntegrationTypeForResponse, None] + performed_via_github_app: Union[None, IntegrationTypeForResponse] project_card: NotRequired[ MovedColumnInProjectIssueEventPropProjectCardTypeForResponse ] diff --git a/githubkit/versions/v2026_03_10/types/group_0385.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0385.py similarity index 96% rename from githubkit/versions/v2026_03_10/types/group_0385.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0385.py index d713e771b0..d8507cc4c6 100644 --- a/githubkit/versions/v2026_03_10/types/group_0385.py +++ b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0385.py @@ -30,7 +30,7 @@ class RemovedFromProjectIssueEventType(TypedDict): commit_id: Union[str, None] commit_url: Union[str, None] created_at: str - performed_via_github_app: Union[None, IntegrationType, None] + performed_via_github_app: Union[None, IntegrationType] project_card: NotRequired[RemovedFromProjectIssueEventPropProjectCardType] @@ -48,7 +48,7 @@ class RemovedFromProjectIssueEventTypeForResponse(TypedDict): commit_id: Union[str, None] commit_url: Union[str, None] created_at: str - performed_via_github_app: Union[None, IntegrationTypeForResponse, None] + performed_via_github_app: Union[None, IntegrationTypeForResponse] project_card: NotRequired[ RemovedFromProjectIssueEventPropProjectCardTypeForResponse ] diff --git a/githubkit/versions/v2026_03_10/types/group_0386.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0386.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0386.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0386.py diff --git a/githubkit/versions/v2026_03_10/types/group_0387.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0387.py similarity index 98% rename from githubkit/versions/v2026_03_10/types/group_0387.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0387.py index 5951492e9d..f3429d3ea2 100644 --- a/githubkit/versions/v2026_03_10/types/group_0387.py +++ b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0387.py @@ -48,7 +48,7 @@ class TimelineCommentEventType(TypedDict): "NONE", "OWNER", ] - performed_via_github_app: NotRequired[Union[None, IntegrationType, None]] + performed_via_github_app: NotRequired[Union[None, IntegrationType]] reactions: NotRequired[ReactionRollupType] pin: NotRequired[Union[None, PinnedIssueCommentType]] @@ -82,7 +82,7 @@ class TimelineCommentEventTypeForResponse(TypedDict): "NONE", "OWNER", ] - performed_via_github_app: NotRequired[Union[None, IntegrationTypeForResponse, None]] + performed_via_github_app: NotRequired[Union[None, IntegrationTypeForResponse]] reactions: NotRequired[ReactionRollupTypeForResponse] pin: NotRequired[Union[None, PinnedIssueCommentTypeForResponse]] diff --git a/githubkit/versions/v2026_03_10/types/group_0388.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0388.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0388.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0388.py diff --git a/githubkit/versions/v2026_03_10/types/group_0389.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0389.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0389.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0389.py diff --git a/githubkit/versions/v2026_03_10/types/group_0390.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0390.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0390.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0390.py diff --git a/githubkit/versions/v2026_03_10/types/group_0391.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0391.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0391.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0391.py diff --git a/githubkit/versions/v2026_03_10/types/group_0392.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0392.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0392.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0392.py diff --git a/githubkit/versions/v2026_03_10/types/group_0393.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0393.py similarity index 94% rename from githubkit/versions/v2026_03_10/types/group_0393.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0393.py index cdf3fbdf4f..effa45ad0a 100644 --- a/githubkit/versions/v2026_03_10/types/group_0393.py +++ b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0393.py @@ -30,7 +30,7 @@ class TimelineAssignedIssueEventType(TypedDict): commit_id: Union[str, None] commit_url: Union[str, None] created_at: str - performed_via_github_app: Union[None, IntegrationType, None] + performed_via_github_app: Union[None, IntegrationType] assignee: SimpleUserType @@ -48,7 +48,7 @@ class TimelineAssignedIssueEventTypeForResponse(TypedDict): commit_id: Union[str, None] commit_url: Union[str, None] created_at: str - performed_via_github_app: Union[None, IntegrationTypeForResponse, None] + performed_via_github_app: Union[None, IntegrationTypeForResponse] assignee: SimpleUserTypeForResponse diff --git a/githubkit/versions/v2026_03_10/types/group_0394.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0394.py similarity index 94% rename from githubkit/versions/v2026_03_10/types/group_0394.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0394.py index d35d38d156..c807facca3 100644 --- a/githubkit/versions/v2026_03_10/types/group_0394.py +++ b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0394.py @@ -30,7 +30,7 @@ class TimelineUnassignedIssueEventType(TypedDict): commit_id: Union[str, None] commit_url: Union[str, None] created_at: str - performed_via_github_app: Union[None, IntegrationType, None] + performed_via_github_app: Union[None, IntegrationType] assignee: SimpleUserType @@ -48,7 +48,7 @@ class TimelineUnassignedIssueEventTypeForResponse(TypedDict): commit_id: Union[str, None] commit_url: Union[str, None] created_at: str - performed_via_github_app: Union[None, IntegrationTypeForResponse, None] + performed_via_github_app: Union[None, IntegrationTypeForResponse] assignee: SimpleUserTypeForResponse diff --git a/githubkit/versions/v2026_03_10/types/group_0395.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0395.py similarity index 94% rename from githubkit/versions/v2026_03_10/types/group_0395.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0395.py index 8cd6db3e2f..6acc686d25 100644 --- a/githubkit/versions/v2026_03_10/types/group_0395.py +++ b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0395.py @@ -30,7 +30,7 @@ class StateChangeIssueEventType(TypedDict): commit_id: Union[str, None] commit_url: Union[str, None] created_at: str - performed_via_github_app: Union[None, IntegrationType, None] + performed_via_github_app: Union[None, IntegrationType] state_reason: NotRequired[Union[str, None]] @@ -48,7 +48,7 @@ class StateChangeIssueEventTypeForResponse(TypedDict): commit_id: Union[str, None] commit_url: Union[str, None] created_at: str - performed_via_github_app: Union[None, IntegrationTypeForResponse, None] + performed_via_github_app: Union[None, IntegrationTypeForResponse] state_reason: NotRequired[Union[str, None]] diff --git a/githubkit/versions/v2026_03_10/types/group_0396.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0396.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0396.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0396.py diff --git a/githubkit/versions/v2026_03_10/types/group_0397.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0397.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0397.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0397.py diff --git a/githubkit/versions/v2026_03_10/types/group_0398.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0398.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0398.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0398.py diff --git a/githubkit/versions/v2026_03_10/types/group_0399.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0399.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0399.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0399.py diff --git a/githubkit/versions/v2026_03_10/types/group_0400.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0400.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0400.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0400.py diff --git a/githubkit/versions/v2026_03_10/types/group_0401.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0401.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0401.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0401.py diff --git a/githubkit/versions/v2026_03_10/types/group_0402.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0402.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0402.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0402.py diff --git a/githubkit/versions/v2026_03_10/types/group_0403.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0403.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0403.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0403.py diff --git a/githubkit/versions/v2026_03_10/types/group_0404.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0404.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0404.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0404.py diff --git a/githubkit/versions/v2026_03_10/types/group_0405.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0405.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0405.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0405.py diff --git a/githubkit/versions/v2026_03_10/types/group_0406.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0406.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0406.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0406.py diff --git a/githubkit/versions/v2026_03_10/types/group_0407.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0407.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0407.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0407.py diff --git a/githubkit/versions/v2026_03_10/types/group_0408.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0408.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0408.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0408.py diff --git a/githubkit/versions/v2026_03_10/types/group_0409.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0409.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0409.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0409.py diff --git a/githubkit/versions/v2026_03_10/types/group_0410.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0410.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0410.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0410.py diff --git a/githubkit/versions/v2026_03_10/types/group_0411.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0411.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0411.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0411.py diff --git a/githubkit/versions/v2026_03_10/types/group_0412.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0412.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0412.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0412.py diff --git a/githubkit/versions/v2026_03_10/types/group_0413.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0413.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0413.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0413.py diff --git a/githubkit/versions/v2026_03_10/types/group_0414.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0414.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0414.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0414.py diff --git a/githubkit/versions/v2026_03_10/types/group_0415.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0415.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0415.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0415.py diff --git a/githubkit/versions/v2026_03_10/types/group_0416.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0416.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0416.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0416.py diff --git a/githubkit/versions/v2026_03_10/types/group_0417.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0417.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0417.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0417.py diff --git a/githubkit/versions/v2026_03_10/types/group_0418.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0418.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0418.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0418.py diff --git a/githubkit/versions/v2026_03_10/types/group_0419.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0419.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0419.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0419.py diff --git a/githubkit/versions/v2026_03_10/types/group_0420.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0420.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0420.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0420.py diff --git a/githubkit/versions/v2026_03_10/types/group_0421.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0421.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0421.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0421.py diff --git a/githubkit/versions/v2026_03_10/types/group_0422.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0422.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0422.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0422.py diff --git a/githubkit/versions/v2026_03_10/types/group_0423.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0423.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0423.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0423.py diff --git a/githubkit/versions/v2026_03_10/types/group_0424.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0424.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0424.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0424.py diff --git a/githubkit/versions/v2026_03_10/types/group_0425.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0425.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0425.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0425.py diff --git a/githubkit/versions/v2026_03_10/types/group_0426.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0426.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0426.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0426.py diff --git a/githubkit/versions/v2026_03_10/types/group_0427.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0427.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0427.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0427.py diff --git a/githubkit/versions/v2026_03_10/types/group_0428.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0428.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0428.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0428.py diff --git a/githubkit/versions/v2026_03_10/types/group_0429.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0429.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0429.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0429.py diff --git a/githubkit/versions/v2026_03_10/types/group_0430.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0430.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0430.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0430.py diff --git a/githubkit/versions/v2026_03_10/types/group_0431.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0431.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0431.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0431.py diff --git a/githubkit/versions/v2026_03_10/types/group_0432.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0432.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0432.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0432.py diff --git a/githubkit/versions/v2026_03_10/types/group_0433.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0433.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0433.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0433.py diff --git a/githubkit/versions/v2026_03_10/types/group_0434.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0434.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0434.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0434.py diff --git a/githubkit/versions/v2026_03_10/types/group_0435.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0435.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0435.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0435.py diff --git a/githubkit/versions/v2026_03_10/types/group_0436.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0436.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0436.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0436.py diff --git a/githubkit/versions/v2026_03_10/types/group_0437.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0437.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0437.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0437.py diff --git a/githubkit/versions/v2026_03_10/types/group_0438.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0438.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0438.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0438.py diff --git a/githubkit/versions/v2026_03_10/types/group_0439.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0439.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0439.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0439.py diff --git a/githubkit/versions/v2026_03_10/types/group_0440.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0440.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0440.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0440.py diff --git a/githubkit/versions/v2026_03_10/types/group_0441.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0441.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0441.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0441.py diff --git a/githubkit/versions/v2026_03_10/types/group_0442.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0442.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0442.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0442.py diff --git a/githubkit/versions/v2026_03_10/types/group_0443.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0443.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0443.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0443.py diff --git a/githubkit/versions/v2026_03_10/types/group_0444.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0444.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0444.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0444.py diff --git a/githubkit/versions/v2026_03_10/types/group_0445.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0445.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0445.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0445.py diff --git a/githubkit/versions/v2026_03_10/types/group_0446.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0446.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0446.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0446.py diff --git a/githubkit/versions/v2026_03_10/types/group_0447.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0447.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0447.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0447.py diff --git a/githubkit/versions/v2026_03_10/types/group_0448.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0448.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0448.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0448.py diff --git a/githubkit/versions/v2026_03_10/types/group_0449.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0449.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0449.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0449.py diff --git a/githubkit/versions/v2026_03_10/types/group_0450.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0450.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0450.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0450.py diff --git a/githubkit/versions/v2026_03_10/types/group_0451.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0451.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0451.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0451.py diff --git a/githubkit/versions/v2026_03_10/types/group_0452.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0452.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0452.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0452.py diff --git a/githubkit/versions/v2026_03_10/types/group_0453.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0453.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0453.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0453.py diff --git a/githubkit/versions/v2026_03_10/types/group_0454.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0454.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0454.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0454.py diff --git a/githubkit/versions/v2026_03_10/types/group_0455.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0455.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0455.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0455.py diff --git a/githubkit/versions/v2026_03_10/types/group_0456.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0456.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0456.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0456.py diff --git a/githubkit/versions/v2026_03_10/types/group_0457.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0457.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0457.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0457.py diff --git a/githubkit/versions/v2026_03_10/types/group_0458.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0458.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0458.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0458.py diff --git a/githubkit/versions/v2026_03_10/types/group_0459.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0459.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0459.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0459.py diff --git a/githubkit/versions/v2026_03_10/types/group_0460.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0460.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0460.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0460.py diff --git a/githubkit/versions/v2026_03_10/types/group_0461.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0461.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0461.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0461.py diff --git a/githubkit/versions/v2026_03_10/types/group_0462.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0462.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0462.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0462.py diff --git a/githubkit/versions/v2026_03_10/types/group_0463.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0463.py similarity index 99% rename from githubkit/versions/v2026_03_10/types/group_0463.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0463.py index 9d5d3b3284..a373c19365 100644 --- a/githubkit/versions/v2026_03_10/types/group_0463.py +++ b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0463.py @@ -84,7 +84,7 @@ class IssueSearchResultItemType(TypedDict): body_text: NotRequired[str] timeline_url: NotRequired[str] type: NotRequired[Union[IssueTypeType, None]] - performed_via_github_app: NotRequired[Union[None, IntegrationType, None]] + performed_via_github_app: NotRequired[Union[None, IntegrationType]] pinned_comment: NotRequired[Union[None, IssueCommentType]] reactions: NotRequired[ReactionRollupType] @@ -140,7 +140,7 @@ class IssueSearchResultItemTypeForResponse(TypedDict): body_text: NotRequired[str] timeline_url: NotRequired[str] type: NotRequired[Union[IssueTypeTypeForResponse, None]] - performed_via_github_app: NotRequired[Union[None, IntegrationTypeForResponse, None]] + performed_via_github_app: NotRequired[Union[None, IntegrationTypeForResponse]] pinned_comment: NotRequired[Union[None, IssueCommentTypeForResponse]] reactions: NotRequired[ReactionRollupTypeForResponse] diff --git a/githubkit/versions/v2026_03_10/types/group_0464.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0464.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0464.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0464.py diff --git a/githubkit/versions/v2026_03_10/types/group_0465.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0465.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0465.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0465.py diff --git a/githubkit/versions/v2026_03_10/types/group_0466.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0466.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0466.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0466.py diff --git a/githubkit/versions/v2026_03_10/types/group_0467.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0467.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0467.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0467.py diff --git a/githubkit/versions/v2026_03_10/types/group_0468.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0468.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0468.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0468.py diff --git a/githubkit/versions/v2026_03_10/types/group_0469.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0469.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0469.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0469.py diff --git a/githubkit/versions/v2026_03_10/types/group_0470.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0470.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0470.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0470.py diff --git a/githubkit/versions/v2026_03_10/types/group_0471.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0471.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0471.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0471.py diff --git a/githubkit/versions/v2026_03_10/types/group_0472.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0472.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0472.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0472.py diff --git a/githubkit/versions/v2026_03_10/types/group_0473.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0473.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0473.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0473.py diff --git a/githubkit/versions/v2026_03_10/types/group_0474.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0474.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0474.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0474.py diff --git a/githubkit/versions/v2026_03_10/types/group_0475.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0475.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0475.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0475.py diff --git a/githubkit/versions/v2026_03_10/types/group_0476.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0476.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0476.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0476.py diff --git a/githubkit/versions/v2026_03_10/types/group_0477.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0477.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0477.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0477.py diff --git a/githubkit/versions/v2026_03_10/types/group_0478.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0478.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0478.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0478.py diff --git a/githubkit/versions/v2026_03_10/types/group_0479.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0479.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0479.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0479.py diff --git a/githubkit/versions/v2026_03_10/types/group_0480.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0480.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0480.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0480.py diff --git a/githubkit/versions/v2026_03_10/types/group_0481.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0481.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0481.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0481.py diff --git a/githubkit/versions/v2026_03_10/types/group_0482.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0482.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0482.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0482.py diff --git a/githubkit/versions/v2026_03_10/types/group_0483.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0483.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0483.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0483.py diff --git a/githubkit/versions/v2026_03_10/types/group_0484.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0484.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0484.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0484.py diff --git a/githubkit/versions/v2026_03_10/types/group_0485.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0485.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0485.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0485.py diff --git a/githubkit/versions/v2026_03_10/types/group_0486.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0486.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0486.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0486.py diff --git a/githubkit/versions/v2026_03_10/types/group_0487.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0487.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0487.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0487.py diff --git a/githubkit/versions/v2026_03_10/types/group_0488.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0488.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0488.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0488.py diff --git a/githubkit/versions/v2026_03_10/types/group_0489.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0489.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0489.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0489.py diff --git a/githubkit/versions/v2026_03_10/types/group_0490.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0490.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0490.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0490.py diff --git a/githubkit/versions/v2026_03_10/types/group_0491.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0491.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0491.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0491.py diff --git a/githubkit/versions/v2026_03_10/types/group_0492.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0492.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0492.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0492.py diff --git a/githubkit/versions/v2026_03_10/types/group_0493.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0493.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0493.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0493.py diff --git a/githubkit/versions/v2026_03_10/types/group_0494.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0494.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0494.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0494.py diff --git a/githubkit/versions/v2026_03_10/types/group_0495.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0495.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0495.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0495.py diff --git a/githubkit/versions/v2026_03_10/types/group_0496.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0496.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0496.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0496.py diff --git a/githubkit/versions/v2026_03_10/types/group_0497.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0497.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0497.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0497.py diff --git a/githubkit/versions/v2026_03_10/types/group_0498.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0498.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0498.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0498.py diff --git a/githubkit/versions/v2026_03_10/types/group_0499.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0499.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0499.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0499.py diff --git a/githubkit/versions/v2026_03_10/types/group_0500.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0500.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0500.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0500.py diff --git a/githubkit/versions/v2026_03_10/types/group_0501.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0501.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0501.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0501.py diff --git a/githubkit/versions/v2026_03_10/types/group_0502.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0502.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0502.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0502.py diff --git a/githubkit/versions/v2026_03_10/types/group_0503.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0503.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0503.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0503.py diff --git a/githubkit/versions/v2026_03_10/types/group_0504.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0504.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0504.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0504.py diff --git a/githubkit/versions/v2026_03_10/types/group_0505.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0505.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0505.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0505.py diff --git a/githubkit/versions/v2026_03_10/types/group_0506.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0506.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0506.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0506.py diff --git a/githubkit/versions/v2026_03_10/types/group_0507.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0507.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0507.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0507.py diff --git a/githubkit/versions/v2026_03_10/types/group_0508.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0508.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0508.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0508.py diff --git a/githubkit/versions/v2026_03_10/types/group_0509.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0509.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0509.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0509.py diff --git a/githubkit/versions/v2026_03_10/types/group_0510.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0510.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0510.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0510.py diff --git a/githubkit/versions/v2026_03_10/types/group_0511.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0511.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0511.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0511.py diff --git a/githubkit/versions/v2026_03_10/types/group_0512.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0512.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0512.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0512.py diff --git a/githubkit/versions/v2026_03_10/types/group_0513.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0513.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0513.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0513.py diff --git a/githubkit/versions/v2026_03_10/types/group_0514.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0514.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0514.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0514.py diff --git a/githubkit/versions/v2026_03_10/types/group_0515.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0515.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0515.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0515.py diff --git a/githubkit/versions/v2026_03_10/types/group_0516.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0516.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0516.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0516.py diff --git a/githubkit/versions/v2026_03_10/types/group_0517.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0517.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0517.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0517.py diff --git a/githubkit/versions/v2026_03_10/types/group_0518.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0518.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0518.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0518.py diff --git a/githubkit/versions/v2026_03_10/types/group_0519.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0519.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0519.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0519.py diff --git a/githubkit/versions/v2026_03_10/types/group_0520.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0520.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0520.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0520.py diff --git a/githubkit/versions/v2026_03_10/types/group_0521.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0521.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0521.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0521.py diff --git a/githubkit/versions/v2026_03_10/types/group_0522.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0522.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0522.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0522.py diff --git a/githubkit/versions/v2026_03_10/types/group_0523.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0523.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0523.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0523.py diff --git a/githubkit/versions/v2026_03_10/types/group_0524.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0524.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0524.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0524.py diff --git a/githubkit/versions/v2026_03_10/types/group_0525.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0525.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0525.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0525.py diff --git a/githubkit/versions/v2026_03_10/types/group_0526.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0526.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0526.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0526.py diff --git a/githubkit/versions/v2026_03_10/types/group_0527.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0527.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0527.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0527.py diff --git a/githubkit/versions/v2026_03_10/types/group_0528.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0528.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0528.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0528.py diff --git a/githubkit/versions/v2026_03_10/types/group_0529.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0529.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0529.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0529.py diff --git a/githubkit/versions/v2026_03_10/types/group_0530.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0530.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0530.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0530.py diff --git a/githubkit/versions/v2026_03_10/types/group_0531.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0531.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0531.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0531.py diff --git a/githubkit/versions/v2026_03_10/types/group_0532.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0532.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0532.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0532.py diff --git a/githubkit/versions/v2026_03_10/types/group_0533.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0533.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0533.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0533.py diff --git a/githubkit/versions/v2026_03_10/types/group_0534.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0534.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0534.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0534.py diff --git a/githubkit/versions/v2026_03_10/types/group_0535.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0535.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0535.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0535.py diff --git a/githubkit/versions/v2026_03_10/types/group_0536.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0536.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0536.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0536.py diff --git a/githubkit/versions/v2026_03_10/types/group_0537.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0537.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0537.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0537.py diff --git a/githubkit/versions/v2026_03_10/types/group_0538.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0538.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0538.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0538.py diff --git a/githubkit/versions/v2026_03_10/types/group_0539.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0539.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0539.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0539.py diff --git a/githubkit/versions/v2026_03_10/types/group_0540.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0540.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0540.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0540.py diff --git a/githubkit/versions/v2026_03_10/types/group_0541.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0541.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0541.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0541.py diff --git a/githubkit/versions/v2026_03_10/types/group_0542.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0542.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0542.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0542.py diff --git a/githubkit/versions/v2026_03_10/types/group_0543.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0543.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0543.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0543.py diff --git a/githubkit/versions/v2026_03_10/types/group_0544.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0544.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0544.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0544.py diff --git a/githubkit/versions/v2026_03_10/types/group_0545.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0545.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0545.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0545.py diff --git a/githubkit/versions/v2026_03_10/types/group_0546.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0546.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0546.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0546.py diff --git a/githubkit/versions/v2026_03_10/types/group_0547.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0547.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0547.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0547.py diff --git a/githubkit/versions/v2026_03_10/types/group_0548.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0548.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0548.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0548.py diff --git a/githubkit/versions/v2026_03_10/types/group_0549.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0549.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0549.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0549.py diff --git a/githubkit/versions/v2026_03_10/types/group_0550.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0550.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0550.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0550.py diff --git a/githubkit/versions/v2026_03_10/types/group_0551.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0551.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0551.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0551.py diff --git a/githubkit/versions/v2026_03_10/types/group_0552.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0552.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0552.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0552.py diff --git a/githubkit/versions/v2026_03_10/types/group_0553.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0553.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0553.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0553.py diff --git a/githubkit/versions/v2026_03_10/types/group_0554.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0554.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0554.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0554.py diff --git a/githubkit/versions/v2026_03_10/types/group_0555.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0555.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0555.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0555.py diff --git a/githubkit/versions/v2026_03_10/types/group_0556.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0556.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0556.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0556.py diff --git a/githubkit/versions/v2026_03_10/types/group_0557.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0557.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0557.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0557.py diff --git a/githubkit/versions/v2026_03_10/types/group_0558.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0558.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0558.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0558.py diff --git a/githubkit/versions/v2026_03_10/types/group_0559.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0559.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0559.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0559.py diff --git a/githubkit/versions/v2026_03_10/types/group_0560.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0560.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0560.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0560.py diff --git a/githubkit/versions/v2026_03_10/types/group_0561.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0561.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0561.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0561.py diff --git a/githubkit/versions/v2026_03_10/types/group_0562.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0562.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0562.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0562.py diff --git a/githubkit/versions/v2026_03_10/types/group_0563.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0563.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0563.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0563.py diff --git a/githubkit/versions/v2026_03_10/types/group_0564.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0564.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0564.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0564.py diff --git a/githubkit/versions/v2026_03_10/types/group_0565.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0565.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0565.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0565.py diff --git a/githubkit/versions/v2026_03_10/types/group_0566.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0566.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0566.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0566.py diff --git a/githubkit/versions/v2026_03_10/types/group_0567.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0567.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0567.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0567.py diff --git a/githubkit/versions/v2026_03_10/types/group_0568.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0568.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0568.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0568.py diff --git a/githubkit/versions/v2026_03_10/types/group_0569.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0569.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0569.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0569.py diff --git a/githubkit/versions/v2026_03_10/types/group_0570.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0570.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0570.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0570.py diff --git a/githubkit/versions/v2026_03_10/types/group_0571.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0571.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0571.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0571.py diff --git a/githubkit/versions/v2026_03_10/types/group_0572.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0572.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0572.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0572.py diff --git a/githubkit/versions/v2026_03_10/types/group_0573.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0573.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0573.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0573.py diff --git a/githubkit/versions/v2026_03_10/types/group_0574.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0574.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0574.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0574.py diff --git a/githubkit/versions/v2026_03_10/types/group_0575.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0575.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0575.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0575.py diff --git a/githubkit/versions/v2026_03_10/types/group_0576.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0576.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0576.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0576.py diff --git a/githubkit/versions/v2026_03_10/types/group_0577.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0577.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0577.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0577.py diff --git a/githubkit/versions/v2026_03_10/types/group_0578.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0578.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0578.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0578.py diff --git a/githubkit/versions/v2026_03_10/types/group_0579.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0579.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0579.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0579.py diff --git a/githubkit/versions/v2026_03_10/types/group_0580.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0580.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0580.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0580.py diff --git a/githubkit/versions/v2026_03_10/types/group_0581.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0581.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0581.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0581.py diff --git a/githubkit/versions/v2026_03_10/types/group_0582.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0582.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0582.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0582.py diff --git a/githubkit/versions/v2026_03_10/types/group_0583.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0583.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0583.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0583.py diff --git a/githubkit/versions/v2026_03_10/types/group_0584.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0584.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0584.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0584.py diff --git a/githubkit/versions/v2026_03_10/types/group_0585.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0585.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0585.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0585.py diff --git a/githubkit/versions/v2026_03_10/types/group_0586.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0586.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0586.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0586.py diff --git a/githubkit/versions/v2026_03_10/types/group_0587.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0587.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0587.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0587.py diff --git a/githubkit/versions/v2026_03_10/types/group_0588.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0588.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0588.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0588.py diff --git a/githubkit/versions/v2026_03_10/types/group_0589.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0589.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0589.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0589.py diff --git a/githubkit/versions/v2026_03_10/types/group_0590.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0590.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0590.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0590.py diff --git a/githubkit/versions/v2026_03_10/types/group_0591.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0591.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0591.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0591.py diff --git a/githubkit/versions/v2026_03_10/types/group_0592.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0592.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0592.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0592.py diff --git a/githubkit/versions/v2026_03_10/types/group_0593.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0593.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0593.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0593.py diff --git a/githubkit/versions/v2026_03_10/types/group_0594.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0594.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0594.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0594.py diff --git a/githubkit/versions/v2026_03_10/types/group_0595.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0595.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0595.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0595.py diff --git a/githubkit/versions/v2026_03_10/types/group_0596.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0596.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0596.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0596.py diff --git a/githubkit/versions/v2026_03_10/types/group_0597.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0597.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0597.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0597.py diff --git a/githubkit/versions/v2026_03_10/types/group_0598.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0598.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0598.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0598.py diff --git a/githubkit/versions/v2026_03_10/types/group_0599.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0599.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0599.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0599.py diff --git a/githubkit/versions/v2026_03_10/types/group_0600.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0600.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0600.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0600.py diff --git a/githubkit/versions/v2026_03_10/types/group_0601.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0601.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0601.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0601.py diff --git a/githubkit/versions/v2026_03_10/types/group_0602.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0602.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0602.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0602.py diff --git a/githubkit/versions/v2026_03_10/types/group_0603.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0603.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0603.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0603.py diff --git a/githubkit/versions/v2026_03_10/types/group_0604.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0604.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0604.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0604.py diff --git a/githubkit/versions/v2026_03_10/types/group_0605.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0605.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0605.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0605.py diff --git a/githubkit/versions/v2026_03_10/types/group_0606.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0606.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0606.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0606.py diff --git a/githubkit/versions/v2026_03_10/types/group_0607.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0607.py similarity index 97% rename from githubkit/versions/v2026_03_10/types/group_0607.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0607.py index 8d5463f2b9..23fa78bd9a 100644 --- a/githubkit/versions/v2026_03_10/types/group_0607.py +++ b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0607.py @@ -48,7 +48,7 @@ class WebhookForkPropForkeeType(TypedDict): default_branch: str delete_branch_on_merge: NotRequired[bool] deployments_url: str - description: Union[Union[str, None], None] + description: Union[str, None] disabled: NotRequired[bool] downloads_url: str events_url: str @@ -66,7 +66,7 @@ class WebhookForkPropForkeeType(TypedDict): has_pages: bool has_projects: bool has_wiki: bool - homepage: Union[Union[str, None], None] + homepage: Union[str, None] hooks_url: str html_url: str id: int @@ -147,7 +147,7 @@ class WebhookForkPropForkeeTypeForResponse(TypedDict): default_branch: str delete_branch_on_merge: NotRequired[bool] deployments_url: str - description: Union[Union[str, None], None] + description: Union[str, None] disabled: NotRequired[bool] downloads_url: str events_url: str @@ -165,7 +165,7 @@ class WebhookForkPropForkeeTypeForResponse(TypedDict): has_pages: bool has_projects: bool has_wiki: bool - homepage: Union[Union[str, None], None] + homepage: Union[str, None] hooks_url: str html_url: str id: int diff --git a/githubkit/versions/v2026_03_10/types/group_0608.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0608.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0608.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0608.py diff --git a/githubkit/versions/v2026_03_10/types/group_0609.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0609.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0609.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0609.py diff --git a/githubkit/versions/v2026_03_10/types/group_0610.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0610.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0610.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0610.py diff --git a/githubkit/versions/v2026_03_10/types/group_0611.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0611.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0611.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0611.py diff --git a/githubkit/versions/v2026_03_10/types/group_0612.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0612.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0612.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0612.py diff --git a/githubkit/versions/v2026_03_10/types/group_0613.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0613.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0613.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0613.py diff --git a/githubkit/versions/v2026_03_10/types/group_0614.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0614.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0614.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0614.py diff --git a/githubkit/versions/v2026_03_10/types/group_0615.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0615.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0615.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0615.py diff --git a/githubkit/versions/v2026_03_10/types/group_0616.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0616.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0616.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0616.py diff --git a/githubkit/versions/v2026_03_10/types/group_0617.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0617.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0617.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0617.py diff --git a/githubkit/versions/v2026_03_10/types/group_0618.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0618.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0618.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0618.py diff --git a/githubkit/versions/v2026_03_10/types/group_0619.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0619.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0619.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0619.py diff --git a/githubkit/versions/v2026_03_10/types/group_0620.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0620.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0620.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0620.py diff --git a/githubkit/versions/v2026_03_10/types/group_0621.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0621.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0621.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0621.py diff --git a/githubkit/versions/v2026_03_10/types/group_0622.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0622.py similarity index 98% rename from githubkit/versions/v2026_03_10/types/group_0622.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0622.py index e52e809793..60c2fe1380 100644 --- a/githubkit/versions/v2026_03_10/types/group_0622.py +++ b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0622.py @@ -40,7 +40,7 @@ class WebhookIssueCommentCreatedPropCommentType(TypedDict): id: int issue_url: str node_id: str - performed_via_github_app: Union[None, IntegrationType, None] + performed_via_github_app: Union[None, IntegrationType] reactions: WebhookIssueCommentCreatedPropCommentPropReactionsType updated_at: _dt.datetime url: str @@ -71,7 +71,7 @@ class WebhookIssueCommentCreatedPropCommentTypeForResponse(TypedDict): id: int issue_url: str node_id: str - performed_via_github_app: Union[None, IntegrationTypeForResponse, None] + performed_via_github_app: Union[None, IntegrationTypeForResponse] reactions: WebhookIssueCommentCreatedPropCommentPropReactionsTypeForResponse updated_at: str url: str diff --git a/githubkit/versions/v2026_03_10/types/group_0623.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0623.py similarity index 96% rename from githubkit/versions/v2026_03_10/types/group_0623.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0623.py index 820da767c5..b7e63db97b 100644 --- a/githubkit/versions/v2026_03_10/types/group_0623.py +++ b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0623.py @@ -48,9 +48,7 @@ class WebhookIssueCommentCreatedPropIssueType(TypedDict): active_lock_reason: Union[ Literal["resolved", "off-topic", "too heated", "spam"], None ] - assignee: Union[ - Union[WebhookIssueCommentCreatedPropIssueAllof0PropAssigneeType, None], None - ] + assignee: Union[WebhookIssueCommentCreatedPropIssueAllof0PropAssigneeType, None] assignees: list[WebhookIssueCommentCreatedPropIssueMergedAssigneesType] author_association: Literal[ "COLLABORATOR", @@ -62,7 +60,7 @@ class WebhookIssueCommentCreatedPropIssueType(TypedDict): "NONE", "OWNER", ] - body: Union[Union[str, None], None] + body: Union[str, None] closed_at: Union[_dt.datetime, None] comments: int comments_url: str @@ -108,10 +106,7 @@ class WebhookIssueCommentCreatedPropIssueTypeForResponse(TypedDict): Literal["resolved", "off-topic", "too heated", "spam"], None ] assignee: Union[ - Union[ - WebhookIssueCommentCreatedPropIssueAllof0PropAssigneeTypeForResponse, None - ], - None, + WebhookIssueCommentCreatedPropIssueAllof0PropAssigneeTypeForResponse, None ] assignees: list[WebhookIssueCommentCreatedPropIssueMergedAssigneesTypeForResponse] author_association: Literal[ @@ -124,7 +119,7 @@ class WebhookIssueCommentCreatedPropIssueTypeForResponse(TypedDict): "NONE", "OWNER", ] - body: Union[Union[str, None], None] + body: Union[str, None] closed_at: Union[str, None] comments: int comments_url: str diff --git a/githubkit/versions/v2026_03_10/types/group_0624.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0624.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0624.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0624.py diff --git a/githubkit/versions/v2026_03_10/types/group_0625.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0625.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0625.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0625.py diff --git a/githubkit/versions/v2026_03_10/types/group_0626.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0626.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0626.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0626.py diff --git a/githubkit/versions/v2026_03_10/types/group_0627.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0627.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0627.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0627.py diff --git a/githubkit/versions/v2026_03_10/types/group_0628.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0628.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0628.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0628.py diff --git a/githubkit/versions/v2026_03_10/types/group_0629.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0629.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0629.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0629.py diff --git a/githubkit/versions/v2026_03_10/types/group_0630.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0630.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0630.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0630.py diff --git a/githubkit/versions/v2026_03_10/types/group_0631.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0631.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0631.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0631.py diff --git a/githubkit/versions/v2026_03_10/types/group_0632.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0632.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0632.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0632.py diff --git a/githubkit/versions/v2026_03_10/types/group_0633.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0633.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0633.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0633.py diff --git a/githubkit/versions/v2026_03_10/types/group_0634.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0634.py similarity index 96% rename from githubkit/versions/v2026_03_10/types/group_0634.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0634.py index 26893a6a50..ffd2b7ef9d 100644 --- a/githubkit/versions/v2026_03_10/types/group_0634.py +++ b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0634.py @@ -48,9 +48,7 @@ class WebhookIssueCommentDeletedPropIssueType(TypedDict): active_lock_reason: Union[ Literal["resolved", "off-topic", "too heated", "spam"], None ] - assignee: Union[ - Union[WebhookIssueCommentDeletedPropIssueAllof0PropAssigneeType, None], None - ] + assignee: Union[WebhookIssueCommentDeletedPropIssueAllof0PropAssigneeType, None] assignees: list[WebhookIssueCommentDeletedPropIssueMergedAssigneesType] author_association: Literal[ "COLLABORATOR", @@ -62,7 +60,7 @@ class WebhookIssueCommentDeletedPropIssueType(TypedDict): "NONE", "OWNER", ] - body: Union[Union[str, None], None] + body: Union[str, None] closed_at: Union[_dt.datetime, None] comments: int comments_url: str @@ -108,10 +106,7 @@ class WebhookIssueCommentDeletedPropIssueTypeForResponse(TypedDict): Literal["resolved", "off-topic", "too heated", "spam"], None ] assignee: Union[ - Union[ - WebhookIssueCommentDeletedPropIssueAllof0PropAssigneeTypeForResponse, None - ], - None, + WebhookIssueCommentDeletedPropIssueAllof0PropAssigneeTypeForResponse, None ] assignees: list[WebhookIssueCommentDeletedPropIssueMergedAssigneesTypeForResponse] author_association: Literal[ @@ -124,7 +119,7 @@ class WebhookIssueCommentDeletedPropIssueTypeForResponse(TypedDict): "NONE", "OWNER", ] - body: Union[Union[str, None], None] + body: Union[str, None] closed_at: Union[str, None] comments: int comments_url: str diff --git a/githubkit/versions/v2026_03_10/types/group_0635.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0635.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0635.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0635.py diff --git a/githubkit/versions/v2026_03_10/types/group_0636.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0636.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0636.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0636.py diff --git a/githubkit/versions/v2026_03_10/types/group_0637.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0637.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0637.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0637.py diff --git a/githubkit/versions/v2026_03_10/types/group_0638.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0638.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0638.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0638.py diff --git a/githubkit/versions/v2026_03_10/types/group_0639.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0639.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0639.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0639.py diff --git a/githubkit/versions/v2026_03_10/types/group_0640.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0640.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0640.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0640.py diff --git a/githubkit/versions/v2026_03_10/types/group_0641.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0641.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0641.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0641.py diff --git a/githubkit/versions/v2026_03_10/types/group_0642.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0642.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0642.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0642.py diff --git a/githubkit/versions/v2026_03_10/types/group_0643.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0643.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0643.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0643.py diff --git a/githubkit/versions/v2026_03_10/types/group_0644.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0644.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0644.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0644.py diff --git a/githubkit/versions/v2026_03_10/types/group_0645.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0645.py similarity index 96% rename from githubkit/versions/v2026_03_10/types/group_0645.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0645.py index c27586136b..262c2d120e 100644 --- a/githubkit/versions/v2026_03_10/types/group_0645.py +++ b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0645.py @@ -48,9 +48,7 @@ class WebhookIssueCommentEditedPropIssueType(TypedDict): active_lock_reason: Union[ Literal["resolved", "off-topic", "too heated", "spam"], None ] - assignee: Union[ - Union[WebhookIssueCommentEditedPropIssueAllof0PropAssigneeType, None], None - ] + assignee: Union[WebhookIssueCommentEditedPropIssueAllof0PropAssigneeType, None] assignees: list[WebhookIssueCommentEditedPropIssueMergedAssigneesType] author_association: Literal[ "COLLABORATOR", @@ -62,7 +60,7 @@ class WebhookIssueCommentEditedPropIssueType(TypedDict): "NONE", "OWNER", ] - body: Union[Union[str, None], None] + body: Union[str, None] closed_at: Union[_dt.datetime, None] comments: int comments_url: str @@ -108,10 +106,7 @@ class WebhookIssueCommentEditedPropIssueTypeForResponse(TypedDict): Literal["resolved", "off-topic", "too heated", "spam"], None ] assignee: Union[ - Union[ - WebhookIssueCommentEditedPropIssueAllof0PropAssigneeTypeForResponse, None - ], - None, + WebhookIssueCommentEditedPropIssueAllof0PropAssigneeTypeForResponse, None ] assignees: list[WebhookIssueCommentEditedPropIssueMergedAssigneesTypeForResponse] author_association: Literal[ @@ -124,7 +119,7 @@ class WebhookIssueCommentEditedPropIssueTypeForResponse(TypedDict): "NONE", "OWNER", ] - body: Union[Union[str, None], None] + body: Union[str, None] closed_at: Union[str, None] comments: int comments_url: str diff --git a/githubkit/versions/v2026_03_10/types/group_0646.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0646.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0646.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0646.py diff --git a/githubkit/versions/v2026_03_10/types/group_0647.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0647.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0647.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0647.py diff --git a/githubkit/versions/v2026_03_10/types/group_0648.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0648.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0648.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0648.py diff --git a/githubkit/versions/v2026_03_10/types/group_0649.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0649.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0649.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0649.py diff --git a/githubkit/versions/v2026_03_10/types/group_0650.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0650.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0650.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0650.py diff --git a/githubkit/versions/v2026_03_10/types/group_0651.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0651.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0651.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0651.py diff --git a/githubkit/versions/v2026_03_10/types/group_0652.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0652.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0652.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0652.py diff --git a/githubkit/versions/v2026_03_10/types/group_0653.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0653.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0653.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0653.py diff --git a/githubkit/versions/v2026_03_10/types/group_0654.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0654.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0654.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0654.py diff --git a/githubkit/versions/v2026_03_10/types/group_0655.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0655.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0655.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0655.py diff --git a/githubkit/versions/v2026_03_10/types/group_0656.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0656.py similarity index 96% rename from githubkit/versions/v2026_03_10/types/group_0656.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0656.py index 7a5e24bf9c..8e0e7c659a 100644 --- a/githubkit/versions/v2026_03_10/types/group_0656.py +++ b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0656.py @@ -48,9 +48,7 @@ class WebhookIssueCommentPinnedPropIssueType(TypedDict): active_lock_reason: Union[ Literal["resolved", "off-topic", "too heated", "spam"], None ] - assignee: Union[ - Union[WebhookIssueCommentPinnedPropIssueAllof0PropAssigneeType, None], None - ] + assignee: Union[WebhookIssueCommentPinnedPropIssueAllof0PropAssigneeType, None] assignees: list[WebhookIssueCommentPinnedPropIssueMergedAssigneesType] author_association: Literal[ "COLLABORATOR", @@ -62,7 +60,7 @@ class WebhookIssueCommentPinnedPropIssueType(TypedDict): "NONE", "OWNER", ] - body: Union[Union[str, None], None] + body: Union[str, None] closed_at: Union[_dt.datetime, None] comments: int comments_url: str @@ -108,10 +106,7 @@ class WebhookIssueCommentPinnedPropIssueTypeForResponse(TypedDict): Literal["resolved", "off-topic", "too heated", "spam"], None ] assignee: Union[ - Union[ - WebhookIssueCommentPinnedPropIssueAllof0PropAssigneeTypeForResponse, None - ], - None, + WebhookIssueCommentPinnedPropIssueAllof0PropAssigneeTypeForResponse, None ] assignees: list[WebhookIssueCommentPinnedPropIssueMergedAssigneesTypeForResponse] author_association: Literal[ @@ -124,7 +119,7 @@ class WebhookIssueCommentPinnedPropIssueTypeForResponse(TypedDict): "NONE", "OWNER", ] - body: Union[Union[str, None], None] + body: Union[str, None] closed_at: Union[str, None] comments: int comments_url: str diff --git a/githubkit/versions/v2026_03_10/types/group_0657.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0657.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0657.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0657.py diff --git a/githubkit/versions/v2026_03_10/types/group_0658.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0658.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0658.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0658.py diff --git a/githubkit/versions/v2026_03_10/types/group_0659.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0659.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0659.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0659.py diff --git a/githubkit/versions/v2026_03_10/types/group_0660.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0660.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0660.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0660.py diff --git a/githubkit/versions/v2026_03_10/types/group_0661.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0661.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0661.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0661.py diff --git a/githubkit/versions/v2026_03_10/types/group_0662.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0662.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0662.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0662.py diff --git a/githubkit/versions/v2026_03_10/types/group_0663.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0663.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0663.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0663.py diff --git a/githubkit/versions/v2026_03_10/types/group_0664.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0664.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0664.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0664.py diff --git a/githubkit/versions/v2026_03_10/types/group_0665.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0665.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0665.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0665.py diff --git a/githubkit/versions/v2026_03_10/types/group_0666.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0666.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0666.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0666.py diff --git a/githubkit/versions/v2026_03_10/types/group_0667.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0667.py similarity index 96% rename from githubkit/versions/v2026_03_10/types/group_0667.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0667.py index 339db8f8f9..292077c523 100644 --- a/githubkit/versions/v2026_03_10/types/group_0667.py +++ b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0667.py @@ -48,9 +48,7 @@ class WebhookIssueCommentUnpinnedPropIssueType(TypedDict): active_lock_reason: Union[ Literal["resolved", "off-topic", "too heated", "spam"], None ] - assignee: Union[ - Union[WebhookIssueCommentUnpinnedPropIssueAllof0PropAssigneeType, None], None - ] + assignee: Union[WebhookIssueCommentUnpinnedPropIssueAllof0PropAssigneeType, None] assignees: list[WebhookIssueCommentUnpinnedPropIssueMergedAssigneesType] author_association: Literal[ "COLLABORATOR", @@ -62,7 +60,7 @@ class WebhookIssueCommentUnpinnedPropIssueType(TypedDict): "NONE", "OWNER", ] - body: Union[Union[str, None], None] + body: Union[str, None] closed_at: Union[_dt.datetime, None] comments: int comments_url: str @@ -108,10 +106,7 @@ class WebhookIssueCommentUnpinnedPropIssueTypeForResponse(TypedDict): Literal["resolved", "off-topic", "too heated", "spam"], None ] assignee: Union[ - Union[ - WebhookIssueCommentUnpinnedPropIssueAllof0PropAssigneeTypeForResponse, None - ], - None, + WebhookIssueCommentUnpinnedPropIssueAllof0PropAssigneeTypeForResponse, None ] assignees: list[WebhookIssueCommentUnpinnedPropIssueMergedAssigneesTypeForResponse] author_association: Literal[ @@ -124,7 +119,7 @@ class WebhookIssueCommentUnpinnedPropIssueTypeForResponse(TypedDict): "NONE", "OWNER", ] - body: Union[Union[str, None], None] + body: Union[str, None] closed_at: Union[str, None] comments: int comments_url: str diff --git a/githubkit/versions/v2026_03_10/types/group_0668.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0668.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0668.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0668.py diff --git a/githubkit/versions/v2026_03_10/types/group_0669.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0669.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0669.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0669.py diff --git a/githubkit/versions/v2026_03_10/types/group_0670.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0670.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0670.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0670.py diff --git a/githubkit/versions/v2026_03_10/types/group_0671.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0671.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0671.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0671.py diff --git a/githubkit/versions/v2026_03_10/types/group_0672.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0672.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0672.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0672.py diff --git a/githubkit/versions/v2026_03_10/types/group_0673.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0673.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0673.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0673.py diff --git a/githubkit/versions/v2026_03_10/types/group_0674.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0674.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0674.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0674.py diff --git a/githubkit/versions/v2026_03_10/types/group_0675.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0675.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0675.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0675.py diff --git a/githubkit/versions/v2026_03_10/types/group_0676.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0676.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0676.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0676.py diff --git a/githubkit/versions/v2026_03_10/types/group_0677.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0677.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0677.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0677.py diff --git a/githubkit/versions/v2026_03_10/types/group_0678.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0678.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0678.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0678.py diff --git a/githubkit/versions/v2026_03_10/types/group_0679.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0679.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0679.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0679.py diff --git a/githubkit/versions/v2026_03_10/types/group_0680.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0680.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0680.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0680.py diff --git a/githubkit/versions/v2026_03_10/types/group_0681.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0681.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0681.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0681.py diff --git a/githubkit/versions/v2026_03_10/types/group_0682.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0682.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0682.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0682.py diff --git a/githubkit/versions/v2026_03_10/types/group_0683.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0683.py similarity index 99% rename from githubkit/versions/v2026_03_10/types/group_0683.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0683.py index b2358865cd..e8da14a957 100644 --- a/githubkit/versions/v2026_03_10/types/group_0683.py +++ b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0683.py @@ -57,7 +57,7 @@ class WebhookIssuesClosedPropIssueType(TypedDict): "NONE", "OWNER", ] - body: Union[Union[str, None], None] + body: Union[str, None] closed_at: Union[_dt.datetime, None] comments: int comments_url: str @@ -115,7 +115,7 @@ class WebhookIssuesClosedPropIssueTypeForResponse(TypedDict): "NONE", "OWNER", ] - body: Union[Union[str, None], None] + body: Union[str, None] closed_at: Union[str, None] comments: int comments_url: str diff --git a/githubkit/versions/v2026_03_10/types/group_0684.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0684.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0684.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0684.py diff --git a/githubkit/versions/v2026_03_10/types/group_0685.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0685.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0685.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0685.py diff --git a/githubkit/versions/v2026_03_10/types/group_0686.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0686.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0686.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0686.py diff --git a/githubkit/versions/v2026_03_10/types/group_0687.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0687.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0687.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0687.py diff --git a/githubkit/versions/v2026_03_10/types/group_0688.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0688.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0688.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0688.py diff --git a/githubkit/versions/v2026_03_10/types/group_0689.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0689.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0689.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0689.py diff --git a/githubkit/versions/v2026_03_10/types/group_0690.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0690.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0690.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0690.py diff --git a/githubkit/versions/v2026_03_10/types/group_0691.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0691.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0691.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0691.py diff --git a/githubkit/versions/v2026_03_10/types/group_0692.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0692.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0692.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0692.py diff --git a/githubkit/versions/v2026_03_10/types/group_0693.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0693.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0693.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0693.py diff --git a/githubkit/versions/v2026_03_10/types/group_0694.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0694.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0694.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0694.py diff --git a/githubkit/versions/v2026_03_10/types/group_0695.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0695.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0695.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0695.py diff --git a/githubkit/versions/v2026_03_10/types/group_0696.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0696.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0696.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0696.py diff --git a/githubkit/versions/v2026_03_10/types/group_0697.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0697.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0697.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0697.py diff --git a/githubkit/versions/v2026_03_10/types/group_0698.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0698.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0698.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0698.py diff --git a/githubkit/versions/v2026_03_10/types/group_0699.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0699.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0699.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0699.py diff --git a/githubkit/versions/v2026_03_10/types/group_0700.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0700.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0700.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0700.py diff --git a/githubkit/versions/v2026_03_10/types/group_0701.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0701.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0701.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0701.py diff --git a/githubkit/versions/v2026_03_10/types/group_0702.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0702.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0702.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0702.py diff --git a/githubkit/versions/v2026_03_10/types/group_0703.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0703.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0703.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0703.py diff --git a/githubkit/versions/v2026_03_10/types/group_0704.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0704.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0704.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0704.py diff --git a/githubkit/versions/v2026_03_10/types/group_0705.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0705.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0705.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0705.py diff --git a/githubkit/versions/v2026_03_10/types/group_0706.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0706.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0706.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0706.py diff --git a/githubkit/versions/v2026_03_10/types/group_0707.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0707.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0707.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0707.py diff --git a/githubkit/versions/v2026_03_10/types/group_0708.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0708.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0708.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0708.py diff --git a/githubkit/versions/v2026_03_10/types/group_0709.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0709.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0709.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0709.py diff --git a/githubkit/versions/v2026_03_10/types/group_0710.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0710.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0710.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0710.py diff --git a/githubkit/versions/v2026_03_10/types/group_0711.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0711.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0711.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0711.py diff --git a/githubkit/versions/v2026_03_10/types/group_0712.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0712.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0712.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0712.py diff --git a/githubkit/versions/v2026_03_10/types/group_0713.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0713.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0713.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0713.py diff --git a/githubkit/versions/v2026_03_10/types/group_0714.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0714.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0714.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0714.py diff --git a/githubkit/versions/v2026_03_10/types/group_0715.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0715.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0715.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0715.py diff --git a/githubkit/versions/v2026_03_10/types/group_0716.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0716.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0716.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0716.py diff --git a/githubkit/versions/v2026_03_10/types/group_0717.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0717.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0717.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0717.py diff --git a/githubkit/versions/v2026_03_10/types/group_0718.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0718.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0718.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0718.py diff --git a/githubkit/versions/v2026_03_10/types/group_0719.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0719.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0719.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0719.py diff --git a/githubkit/versions/v2026_03_10/types/group_0720.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0720.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0720.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0720.py diff --git a/githubkit/versions/v2026_03_10/types/group_0721.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0721.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0721.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0721.py diff --git a/githubkit/versions/v2026_03_10/types/group_0722.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0722.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0722.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0722.py diff --git a/githubkit/versions/v2026_03_10/types/group_0723.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0723.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0723.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0723.py diff --git a/githubkit/versions/v2026_03_10/types/group_0724.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0724.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0724.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0724.py diff --git a/githubkit/versions/v2026_03_10/types/group_0725.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0725.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0725.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0725.py diff --git a/githubkit/versions/v2026_03_10/types/group_0726.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0726.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0726.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0726.py diff --git a/githubkit/versions/v2026_03_10/types/group_0727.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0727.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0727.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0727.py diff --git a/githubkit/versions/v2026_03_10/types/group_0728.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0728.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0728.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0728.py diff --git a/githubkit/versions/v2026_03_10/types/group_0729.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0729.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0729.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0729.py diff --git a/githubkit/versions/v2026_03_10/types/group_0730.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0730.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0730.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0730.py diff --git a/githubkit/versions/v2026_03_10/types/group_0731.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0731.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0731.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0731.py diff --git a/githubkit/versions/v2026_03_10/types/group_0732.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0732.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0732.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0732.py diff --git a/githubkit/versions/v2026_03_10/types/group_0733.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0733.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0733.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0733.py diff --git a/githubkit/versions/v2026_03_10/types/group_0734.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0734.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0734.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0734.py diff --git a/githubkit/versions/v2026_03_10/types/group_0735.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0735.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0735.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0735.py diff --git a/githubkit/versions/v2026_03_10/types/group_0736.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0736.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0736.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0736.py diff --git a/githubkit/versions/v2026_03_10/types/group_0737.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0737.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0737.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0737.py diff --git a/githubkit/versions/v2026_03_10/types/group_0738.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0738.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0738.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0738.py diff --git a/githubkit/versions/v2026_03_10/types/group_0739.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0739.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0739.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0739.py diff --git a/githubkit/versions/v2026_03_10/types/group_0740.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0740.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0740.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0740.py diff --git a/githubkit/versions/v2026_03_10/types/group_0741.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0741.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0741.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0741.py diff --git a/githubkit/versions/v2026_03_10/types/group_0742.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0742.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0742.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0742.py diff --git a/githubkit/versions/v2026_03_10/types/group_0743.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0743.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0743.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0743.py diff --git a/githubkit/versions/v2026_03_10/types/group_0744.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0744.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0744.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0744.py diff --git a/githubkit/versions/v2026_03_10/types/group_0745.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0745.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0745.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0745.py diff --git a/githubkit/versions/v2026_03_10/types/group_0746.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0746.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0746.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0746.py diff --git a/githubkit/versions/v2026_03_10/types/group_0747.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0747.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0747.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0747.py diff --git a/githubkit/versions/v2026_03_10/types/group_0748.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0748.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0748.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0748.py diff --git a/githubkit/versions/v2026_03_10/types/group_0749.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0749.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0749.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0749.py diff --git a/githubkit/versions/v2026_03_10/types/group_0750.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0750.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0750.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0750.py diff --git a/githubkit/versions/v2026_03_10/types/group_0751.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0751.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0751.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0751.py diff --git a/githubkit/versions/v2026_03_10/types/group_0752.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0752.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0752.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0752.py diff --git a/githubkit/versions/v2026_03_10/types/group_0753.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0753.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0753.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0753.py diff --git a/githubkit/versions/v2026_03_10/types/group_0754.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0754.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0754.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0754.py diff --git a/githubkit/versions/v2026_03_10/types/group_0755.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0755.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0755.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0755.py diff --git a/githubkit/versions/v2026_03_10/types/group_0756.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0756.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0756.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0756.py diff --git a/githubkit/versions/v2026_03_10/types/group_0757.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0757.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0757.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0757.py diff --git a/githubkit/versions/v2026_03_10/types/group_0758.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0758.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0758.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0758.py diff --git a/githubkit/versions/v2026_03_10/types/group_0759.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0759.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0759.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0759.py diff --git a/githubkit/versions/v2026_03_10/types/group_0760.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0760.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0760.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0760.py diff --git a/githubkit/versions/v2026_03_10/types/group_0761.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0761.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0761.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0761.py diff --git a/githubkit/versions/v2026_03_10/types/group_0762.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0762.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0762.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0762.py diff --git a/githubkit/versions/v2026_03_10/types/group_0763.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0763.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0763.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0763.py diff --git a/githubkit/versions/v2026_03_10/types/group_0764.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0764.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0764.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0764.py diff --git a/githubkit/versions/v2026_03_10/types/group_0765.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0765.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0765.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0765.py diff --git a/githubkit/versions/v2026_03_10/types/group_0766.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0766.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0766.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0766.py diff --git a/githubkit/versions/v2026_03_10/types/group_0767.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0767.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0767.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0767.py diff --git a/githubkit/versions/v2026_03_10/types/group_0768.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0768.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0768.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0768.py diff --git a/githubkit/versions/v2026_03_10/types/group_0769.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0769.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0769.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0769.py diff --git a/githubkit/versions/v2026_03_10/types/group_0770.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0770.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0770.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0770.py diff --git a/githubkit/versions/v2026_03_10/types/group_0771.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0771.py similarity index 97% rename from githubkit/versions/v2026_03_10/types/group_0771.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0771.py index f9e76837fc..3ec8e96936 100644 --- a/githubkit/versions/v2026_03_10/types/group_0771.py +++ b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0771.py @@ -76,7 +76,7 @@ class WebhookProjectCardMovedPropChangesPropColumnIdTypeForResponse(TypedDict): class WebhookProjectCardMovedPropProjectCardType(TypedDict): """WebhookProjectCardMovedPropProjectCard""" - after_id: Union[Union[int, None], None] + after_id: Union[int, None] archived: bool column_id: int column_url: str @@ -85,7 +85,7 @@ class WebhookProjectCardMovedPropProjectCardType(TypedDict): creator: Union[WebhookProjectCardMovedPropProjectCardMergedCreatorType, None] id: int node_id: str - note: Union[Union[str, None], None] + note: Union[str, None] project_url: str updated_at: _dt.datetime url: str @@ -94,7 +94,7 @@ class WebhookProjectCardMovedPropProjectCardType(TypedDict): class WebhookProjectCardMovedPropProjectCardTypeForResponse(TypedDict): """WebhookProjectCardMovedPropProjectCard""" - after_id: Union[Union[int, None], None] + after_id: Union[int, None] archived: bool column_id: int column_url: str @@ -105,7 +105,7 @@ class WebhookProjectCardMovedPropProjectCardTypeForResponse(TypedDict): ] id: int node_id: str - note: Union[Union[str, None], None] + note: Union[str, None] project_url: str updated_at: str url: str diff --git a/githubkit/versions/v2026_03_10/types/group_0772.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0772.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0772.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0772.py diff --git a/githubkit/versions/v2026_03_10/types/group_0773.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0773.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0773.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0773.py diff --git a/githubkit/versions/v2026_03_10/types/group_0774.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0774.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0774.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0774.py diff --git a/githubkit/versions/v2026_03_10/types/group_0775.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0775.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0775.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0775.py diff --git a/githubkit/versions/v2026_03_10/types/group_0776.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0776.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0776.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0776.py diff --git a/githubkit/versions/v2026_03_10/types/group_0777.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0777.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0777.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0777.py diff --git a/githubkit/versions/v2026_03_10/types/group_0778.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0778.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0778.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0778.py diff --git a/githubkit/versions/v2026_03_10/types/group_0779.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0779.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0779.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0779.py diff --git a/githubkit/versions/v2026_03_10/types/group_0780.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0780.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0780.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0780.py diff --git a/githubkit/versions/v2026_03_10/types/group_0781.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0781.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0781.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0781.py diff --git a/githubkit/versions/v2026_03_10/types/group_0782.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0782.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0782.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0782.py diff --git a/githubkit/versions/v2026_03_10/types/group_0783.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0783.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0783.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0783.py diff --git a/githubkit/versions/v2026_03_10/types/group_0784.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0784.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0784.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0784.py diff --git a/githubkit/versions/v2026_03_10/types/group_0785.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0785.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0785.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0785.py diff --git a/githubkit/versions/v2026_03_10/types/group_0786.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0786.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0786.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0786.py diff --git a/githubkit/versions/v2026_03_10/types/group_0787.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0787.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0787.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0787.py diff --git a/githubkit/versions/v2026_03_10/types/group_0788.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0788.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0788.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0788.py diff --git a/githubkit/versions/v2026_03_10/types/group_0789.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0789.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0789.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0789.py diff --git a/githubkit/versions/v2026_03_10/types/group_0790.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0790.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0790.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0790.py diff --git a/githubkit/versions/v2026_03_10/types/group_0791.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0791.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0791.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0791.py diff --git a/githubkit/versions/v2026_03_10/types/group_0792.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0792.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0792.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0792.py diff --git a/githubkit/versions/v2026_03_10/types/group_0793.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0793.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0793.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0793.py diff --git a/githubkit/versions/v2026_03_10/types/group_0794.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0794.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0794.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0794.py diff --git a/githubkit/versions/v2026_03_10/types/group_0795.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0795.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0795.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0795.py diff --git a/githubkit/versions/v2026_03_10/types/group_0796.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0796.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0796.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0796.py diff --git a/githubkit/versions/v2026_03_10/types/group_0797.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0797.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0797.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0797.py diff --git a/githubkit/versions/v2026_03_10/types/group_0798.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0798.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0798.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0798.py diff --git a/githubkit/versions/v2026_03_10/types/group_0799.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0799.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0799.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0799.py diff --git a/githubkit/versions/v2026_03_10/types/group_0800.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0800.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0800.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0800.py diff --git a/githubkit/versions/v2026_03_10/types/group_0801.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0801.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0801.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0801.py diff --git a/githubkit/versions/v2026_03_10/types/group_0802.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0802.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0802.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0802.py diff --git a/githubkit/versions/v2026_03_10/types/group_0803.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0803.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0803.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0803.py diff --git a/githubkit/versions/v2026_03_10/types/group_0804.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0804.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0804.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0804.py diff --git a/githubkit/versions/v2026_03_10/types/group_0805.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0805.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0805.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0805.py diff --git a/githubkit/versions/v2026_03_10/types/group_0806.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0806.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0806.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0806.py diff --git a/githubkit/versions/v2026_03_10/types/group_0807.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0807.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0807.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0807.py diff --git a/githubkit/versions/v2026_03_10/types/group_0808.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0808.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0808.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0808.py diff --git a/githubkit/versions/v2026_03_10/types/group_0809.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0809.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0809.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0809.py diff --git a/githubkit/versions/v2026_03_10/types/group_0810.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0810.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0810.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0810.py diff --git a/githubkit/versions/v2026_03_10/types/group_0811.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0811.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0811.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0811.py diff --git a/githubkit/versions/v2026_03_10/types/group_0812.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0812.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0812.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0812.py diff --git a/githubkit/versions/v2026_03_10/types/group_0813.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0813.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0813.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0813.py diff --git a/githubkit/versions/v2026_03_10/types/group_0814.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0814.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0814.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0814.py diff --git a/githubkit/versions/v2026_03_10/types/group_0815.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0815.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0815.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0815.py diff --git a/githubkit/versions/v2026_03_10/types/group_0816.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0816.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0816.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0816.py diff --git a/githubkit/versions/v2026_03_10/types/group_0817.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0817.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0817.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0817.py diff --git a/githubkit/versions/v2026_03_10/types/group_0818.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0818.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0818.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0818.py diff --git a/githubkit/versions/v2026_03_10/types/group_0819.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0819.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0819.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0819.py diff --git a/githubkit/versions/v2026_03_10/types/group_0820.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0820.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0820.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0820.py diff --git a/githubkit/versions/v2026_03_10/types/group_0821.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0821.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0821.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0821.py diff --git a/githubkit/versions/v2026_03_10/types/group_0822.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0822.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0822.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0822.py diff --git a/githubkit/versions/v2026_03_10/types/group_0823.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0823.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0823.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0823.py diff --git a/githubkit/versions/v2026_03_10/types/group_0824.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0824.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0824.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0824.py diff --git a/githubkit/versions/v2026_03_10/types/group_0825.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0825.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0825.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0825.py diff --git a/githubkit/versions/v2026_03_10/types/group_0826.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0826.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0826.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0826.py diff --git a/githubkit/versions/v2026_03_10/types/group_0827.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0827.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0827.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0827.py diff --git a/githubkit/versions/v2026_03_10/types/group_0828.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0828.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0828.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0828.py diff --git a/githubkit/versions/v2026_03_10/types/group_0829.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0829.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0829.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0829.py diff --git a/githubkit/versions/v2026_03_10/types/group_0830.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0830.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0830.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0830.py diff --git a/githubkit/versions/v2026_03_10/types/group_0831.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0831.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0831.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0831.py diff --git a/githubkit/versions/v2026_03_10/types/group_0832.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0832.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0832.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0832.py diff --git a/githubkit/versions/v2026_03_10/types/group_0833.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0833.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0833.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0833.py diff --git a/githubkit/versions/v2026_03_10/types/group_0834.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0834.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0834.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0834.py diff --git a/githubkit/versions/v2026_03_10/types/group_0835.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0835.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0835.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0835.py diff --git a/githubkit/versions/v2026_03_10/types/group_0836.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0836.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0836.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0836.py diff --git a/githubkit/versions/v2026_03_10/types/group_0837.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0837.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0837.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0837.py diff --git a/githubkit/versions/v2026_03_10/types/group_0838.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0838.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0838.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0838.py diff --git a/githubkit/versions/v2026_03_10/types/group_0839.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0839.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0839.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0839.py diff --git a/githubkit/versions/v2026_03_10/types/group_0840.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0840.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0840.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0840.py diff --git a/githubkit/versions/v2026_03_10/types/group_0841.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0841.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0841.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0841.py diff --git a/githubkit/versions/v2026_03_10/types/group_0842.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0842.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0842.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0842.py diff --git a/githubkit/versions/v2026_03_10/types/group_0843.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0843.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0843.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0843.py diff --git a/githubkit/versions/v2026_03_10/types/group_0844.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0844.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0844.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0844.py diff --git a/githubkit/versions/v2026_03_10/types/group_0845.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0845.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0845.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0845.py diff --git a/githubkit/versions/v2026_03_10/types/group_0846.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0846.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0846.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0846.py diff --git a/githubkit/versions/v2026_03_10/types/group_0847.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0847.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0847.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0847.py diff --git a/githubkit/versions/v2026_03_10/types/group_0848.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0848.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0848.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0848.py diff --git a/githubkit/versions/v2026_03_10/types/group_0849.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0849.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0849.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0849.py diff --git a/githubkit/versions/v2026_03_10/types/group_0850.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0850.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0850.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0850.py diff --git a/githubkit/versions/v2026_03_10/types/group_0851.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0851.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0851.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0851.py diff --git a/githubkit/versions/v2026_03_10/types/group_0852.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0852.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0852.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0852.py diff --git a/githubkit/versions/v2026_03_10/types/group_0853.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0853.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0853.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0853.py diff --git a/githubkit/versions/v2026_03_10/types/group_0854.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0854.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0854.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0854.py diff --git a/githubkit/versions/v2026_03_10/types/group_0855.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0855.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0855.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0855.py diff --git a/githubkit/versions/v2026_03_10/types/group_0856.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0856.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0856.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0856.py diff --git a/githubkit/versions/v2026_03_10/types/group_0857.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0857.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0857.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0857.py diff --git a/githubkit/versions/v2026_03_10/types/group_0858.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0858.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0858.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0858.py diff --git a/githubkit/versions/v2026_03_10/types/group_0859.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0859.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0859.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0859.py diff --git a/githubkit/versions/v2026_03_10/types/group_0860.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0860.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0860.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0860.py diff --git a/githubkit/versions/v2026_03_10/types/group_0861.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0861.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0861.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0861.py diff --git a/githubkit/versions/v2026_03_10/types/group_0862.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0862.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0862.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0862.py diff --git a/githubkit/versions/v2026_03_10/types/group_0863.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0863.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0863.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0863.py diff --git a/githubkit/versions/v2026_03_10/types/group_0864.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0864.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0864.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0864.py diff --git a/githubkit/versions/v2026_03_10/types/group_0865.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0865.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0865.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0865.py diff --git a/githubkit/versions/v2026_03_10/types/group_0866.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0866.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0866.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0866.py diff --git a/githubkit/versions/v2026_03_10/types/group_0867.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0867.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0867.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0867.py diff --git a/githubkit/versions/v2026_03_10/types/group_0868.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0868.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0868.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0868.py diff --git a/githubkit/versions/v2026_03_10/types/group_0869.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0869.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0869.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0869.py diff --git a/githubkit/versions/v2026_03_10/types/group_0870.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0870.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0870.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0870.py diff --git a/githubkit/versions/v2026_03_10/types/group_0871.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0871.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0871.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0871.py diff --git a/githubkit/versions/v2026_03_10/types/group_0872.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0872.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0872.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0872.py diff --git a/githubkit/versions/v2026_03_10/types/group_0873.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0873.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0873.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0873.py diff --git a/githubkit/versions/v2026_03_10/types/group_0874.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0874.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0874.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0874.py diff --git a/githubkit/versions/v2026_03_10/types/group_0875.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0875.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0875.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0875.py diff --git a/githubkit/versions/v2026_03_10/types/group_0876.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0876.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0876.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0876.py diff --git a/githubkit/versions/v2026_03_10/types/group_0877.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0877.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0877.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0877.py diff --git a/githubkit/versions/v2026_03_10/types/group_0878.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0878.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0878.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0878.py diff --git a/githubkit/versions/v2026_03_10/types/group_0879.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0879.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0879.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0879.py diff --git a/githubkit/versions/v2026_03_10/types/group_0880.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0880.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0880.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0880.py diff --git a/githubkit/versions/v2026_03_10/types/group_0881.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0881.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0881.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0881.py diff --git a/githubkit/versions/v2026_03_10/types/group_0882.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0882.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0882.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0882.py diff --git a/githubkit/versions/v2026_03_10/types/group_0883.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0883.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0883.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0883.py diff --git a/githubkit/versions/v2026_03_10/types/group_0884.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0884.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0884.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0884.py diff --git a/githubkit/versions/v2026_03_10/types/group_0885.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0885.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0885.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0885.py diff --git a/githubkit/versions/v2026_03_10/types/group_0886.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0886.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0886.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0886.py diff --git a/githubkit/versions/v2026_03_10/types/group_0887.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0887.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0887.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0887.py diff --git a/githubkit/versions/v2026_03_10/types/group_0888.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0888.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0888.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0888.py diff --git a/githubkit/versions/v2026_03_10/types/group_0889.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0889.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0889.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0889.py diff --git a/githubkit/versions/v2026_03_10/types/group_0890.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0890.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0890.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0890.py diff --git a/githubkit/versions/v2026_03_10/types/group_0891.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0891.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0891.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0891.py diff --git a/githubkit/versions/v2026_03_10/types/group_0892.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0892.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0892.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0892.py diff --git a/githubkit/versions/v2026_03_10/types/group_0893.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0893.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0893.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0893.py diff --git a/githubkit/versions/v2026_03_10/types/group_0894.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0894.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0894.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0894.py diff --git a/githubkit/versions/v2026_03_10/types/group_0895.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0895.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0895.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0895.py diff --git a/githubkit/versions/v2026_03_10/types/group_0896.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0896.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0896.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0896.py diff --git a/githubkit/versions/v2026_03_10/types/group_0897.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0897.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0897.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0897.py diff --git a/githubkit/versions/v2026_03_10/types/group_0898.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0898.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0898.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0898.py diff --git a/githubkit/versions/v2026_03_10/types/group_0899.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0899.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0899.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0899.py diff --git a/githubkit/versions/v2026_03_10/types/group_0900.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0900.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0900.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0900.py diff --git a/githubkit/versions/v2026_03_10/types/group_0901.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0901.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0901.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0901.py diff --git a/githubkit/versions/v2026_03_10/types/group_0902.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0902.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0902.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0902.py diff --git a/githubkit/versions/v2026_03_10/types/group_0903.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0903.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0903.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0903.py diff --git a/githubkit/versions/v2026_03_10/types/group_0904.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0904.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0904.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0904.py diff --git a/githubkit/versions/v2026_03_10/types/group_0905.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0905.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0905.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0905.py diff --git a/githubkit/versions/v2026_03_10/types/group_0906.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0906.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0906.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0906.py diff --git a/githubkit/versions/v2026_03_10/types/group_0907.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0907.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0907.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0907.py diff --git a/githubkit/versions/v2026_03_10/types/group_0908.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0908.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0908.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0908.py diff --git a/githubkit/versions/v2026_03_10/types/group_0909.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0909.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0909.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0909.py diff --git a/githubkit/versions/v2026_03_10/types/group_0910.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0910.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0910.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0910.py diff --git a/githubkit/versions/v2026_03_10/types/group_0911.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0911.py similarity index 88% rename from githubkit/versions/v2026_03_10/types/group_0911.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0911.py index bd1908abfc..24bc45a2a6 100644 --- a/githubkit/versions/v2026_03_10/types/group_0911.py +++ b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0911.py @@ -73,14 +73,14 @@ class WebhookWorkflowJobCompletedPropWorkflowJobType(TypedDict): run_attempt: int run_id: int run_url: str - runner_group_id: Union[Union[int, None], None] - runner_group_name: Union[Union[str, None], None] - runner_id: Union[Union[int, None], None] - runner_name: Union[Union[str, None], None] + runner_group_id: Union[int, None] + runner_group_name: Union[str, None] + runner_id: Union[int, None] + runner_name: Union[str, None] started_at: str status: Literal["queued", "in_progress", "completed", "waiting"] - head_branch: Union[Union[str, None], None] - workflow_name: Union[Union[str, None], None] + head_branch: Union[str, None] + workflow_name: Union[str, None] steps: list[WebhookWorkflowJobCompletedPropWorkflowJobMergedStepsType] url: str @@ -109,14 +109,14 @@ class WebhookWorkflowJobCompletedPropWorkflowJobTypeForResponse(TypedDict): run_attempt: int run_id: int run_url: str - runner_group_id: Union[Union[int, None], None] - runner_group_name: Union[Union[str, None], None] - runner_id: Union[Union[int, None], None] - runner_name: Union[Union[str, None], None] + runner_group_id: Union[int, None] + runner_group_name: Union[str, None] + runner_id: Union[int, None] + runner_name: Union[str, None] started_at: str status: Literal["queued", "in_progress", "completed", "waiting"] - head_branch: Union[Union[str, None], None] - workflow_name: Union[Union[str, None], None] + head_branch: Union[str, None] + workflow_name: Union[str, None] steps: list[WebhookWorkflowJobCompletedPropWorkflowJobMergedStepsTypeForResponse] url: str diff --git a/githubkit/versions/v2026_03_10/types/group_0912.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0912.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0912.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0912.py diff --git a/githubkit/versions/v2026_03_10/types/group_0913.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0913.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0913.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0913.py diff --git a/githubkit/versions/v2026_03_10/types/group_0914.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0914.py similarity index 82% rename from githubkit/versions/v2026_03_10/types/group_0914.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0914.py index dbdb695c4f..9c5bc1b372 100644 --- a/githubkit/versions/v2026_03_10/types/group_0914.py +++ b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0914.py @@ -53,7 +53,7 @@ class WebhookWorkflowJobInProgressPropWorkflowJobType(TypedDict): """WebhookWorkflowJobInProgressPropWorkflowJob""" check_run_url: str - completed_at: Union[Union[str, None], None] + completed_at: Union[str, None] conclusion: Union[Literal["success", "failure", "cancelled", "neutral"], None] created_at: str head_sha: str @@ -65,14 +65,14 @@ class WebhookWorkflowJobInProgressPropWorkflowJobType(TypedDict): run_attempt: int run_id: int run_url: str - runner_group_id: Union[Union[int, None], None] - runner_group_name: Union[Union[str, None], None] - runner_id: Union[Union[int, None], None] - runner_name: Union[Union[str, None], None] + runner_group_id: Union[int, None] + runner_group_name: Union[str, None] + runner_id: Union[int, None] + runner_name: Union[str, None] started_at: str status: Literal["queued", "in_progress", "completed"] - head_branch: Union[Union[str, None], None] - workflow_name: Union[Union[str, None], None] + head_branch: Union[str, None] + workflow_name: Union[str, None] steps: list[WebhookWorkflowJobInProgressPropWorkflowJobMergedStepsType] url: str @@ -81,7 +81,7 @@ class WebhookWorkflowJobInProgressPropWorkflowJobTypeForResponse(TypedDict): """WebhookWorkflowJobInProgressPropWorkflowJob""" check_run_url: str - completed_at: Union[Union[str, None], None] + completed_at: Union[str, None] conclusion: Union[Literal["success", "failure", "cancelled", "neutral"], None] created_at: str head_sha: str @@ -93,14 +93,14 @@ class WebhookWorkflowJobInProgressPropWorkflowJobTypeForResponse(TypedDict): run_attempt: int run_id: int run_url: str - runner_group_id: Union[Union[int, None], None] - runner_group_name: Union[Union[str, None], None] - runner_id: Union[Union[int, None], None] - runner_name: Union[Union[str, None], None] + runner_group_id: Union[int, None] + runner_group_name: Union[str, None] + runner_id: Union[int, None] + runner_name: Union[str, None] started_at: str status: Literal["queued", "in_progress", "completed"] - head_branch: Union[Union[str, None], None] - workflow_name: Union[Union[str, None], None] + head_branch: Union[str, None] + workflow_name: Union[str, None] steps: list[WebhookWorkflowJobInProgressPropWorkflowJobMergedStepsTypeForResponse] url: str @@ -108,22 +108,22 @@ class WebhookWorkflowJobInProgressPropWorkflowJobTypeForResponse(TypedDict): class WebhookWorkflowJobInProgressPropWorkflowJobMergedStepsType(TypedDict): """WebhookWorkflowJobInProgressPropWorkflowJobMergedSteps""" - completed_at: Union[Union[str, None], None] + completed_at: Union[str, None] conclusion: Union[Literal["failure", "skipped", "success", "cancelled"], None] name: str number: int - started_at: Union[Union[str, None], None] + started_at: Union[str, None] status: Literal["in_progress", "completed", "queued", "pending"] class WebhookWorkflowJobInProgressPropWorkflowJobMergedStepsTypeForResponse(TypedDict): """WebhookWorkflowJobInProgressPropWorkflowJobMergedSteps""" - completed_at: Union[Union[str, None], None] + completed_at: Union[str, None] conclusion: Union[Literal["failure", "skipped", "success", "cancelled"], None] name: str number: int - started_at: Union[Union[str, None], None] + started_at: Union[str, None] status: Literal["in_progress", "completed", "queued", "pending"] diff --git a/githubkit/versions/v2026_03_10/types/group_0915.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0915.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0915.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0915.py diff --git a/githubkit/versions/v2026_03_10/types/group_0916.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0916.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0916.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0916.py diff --git a/githubkit/versions/v2026_03_10/types/group_0917.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0917.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0917.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0917.py diff --git a/githubkit/versions/v2026_03_10/types/group_0918.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0918.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0918.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0918.py diff --git a/githubkit/versions/v2026_03_10/types/group_0919.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0919.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0919.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0919.py diff --git a/githubkit/versions/v2026_03_10/types/group_0920.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0920.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0920.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0920.py diff --git a/githubkit/versions/v2026_03_10/types/group_0921.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0921.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0921.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0921.py diff --git a/githubkit/versions/v2026_03_10/types/group_0922.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0922.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0922.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0922.py diff --git a/githubkit/versions/v2026_03_10/types/group_0923.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0923.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0923.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0923.py diff --git a/githubkit/versions/v2026_03_10/types/group_0924.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0924.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0924.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0924.py diff --git a/githubkit/versions/v2026_03_10/types/group_0925.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0925.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0925.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0925.py diff --git a/githubkit/versions/v2026_03_10/types/group_0926.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0926.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0926.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0926.py diff --git a/githubkit/versions/v2026_03_10/types/group_0927.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0927.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0927.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0927.py diff --git a/githubkit/versions/v2026_03_10/types/group_0928.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0928.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0928.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0928.py diff --git a/githubkit/versions/v2026_03_10/types/group_0929.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0929.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0929.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0929.py diff --git a/githubkit/versions/v2026_03_10/types/group_0930.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0930.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0930.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0930.py diff --git a/githubkit/versions/v2026_03_10/types/group_0931.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0931.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0931.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0931.py diff --git a/githubkit/versions/v2026_03_10/types/group_0932.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0932.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0932.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0932.py diff --git a/githubkit/versions/v2026_03_10/types/group_0933.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0933.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0933.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0933.py diff --git a/githubkit/versions/v2026_03_10/types/group_0934.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0934.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0934.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0934.py diff --git a/githubkit/versions/v2026_03_10/types/group_0935.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0935.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0935.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0935.py diff --git a/githubkit/versions/v2026_03_10/types/group_0936.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0936.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0936.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0936.py diff --git a/githubkit/versions/v2026_03_10/types/group_0937.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0937.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0937.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0937.py diff --git a/githubkit/versions/v2026_03_10/types/group_0938.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0938.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0938.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0938.py diff --git a/githubkit/versions/v2026_03_10/types/group_0939.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0939.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0939.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0939.py diff --git a/githubkit/versions/v2026_03_10/types/group_0940.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0940.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0940.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0940.py diff --git a/githubkit/versions/v2026_03_10/types/group_0941.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0941.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0941.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0941.py diff --git a/githubkit/versions/v2026_03_10/types/group_0942.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0942.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0942.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0942.py diff --git a/githubkit/versions/v2026_03_10/types/group_0943.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0943.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0943.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0943.py diff --git a/githubkit/versions/v2026_03_10/types/group_0944.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0944.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0944.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0944.py diff --git a/githubkit/versions/v2026_03_10/types/group_0945.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0945.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0945.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0945.py diff --git a/githubkit/versions/v2026_03_10/types/group_0946.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0946.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0946.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0946.py diff --git a/githubkit/versions/v2026_03_10/types/group_0947.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0947.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0947.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0947.py diff --git a/githubkit/versions/v2026_03_10/types/group_0948.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0948.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0948.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0948.py diff --git a/githubkit/versions/v2026_03_10/types/group_0949.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0949.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0949.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0949.py diff --git a/githubkit/versions/v2026_03_10/types/group_0950.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0950.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0950.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0950.py diff --git a/githubkit/versions/v2026_03_10/types/group_0951.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0951.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0951.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0951.py diff --git a/githubkit/versions/v2026_03_10/types/group_0952.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0952.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0952.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0952.py diff --git a/githubkit/versions/v2026_03_10/types/group_0953.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0953.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0953.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0953.py diff --git a/githubkit/versions/v2026_03_10/types/group_0954.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0954.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0954.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0954.py diff --git a/githubkit/versions/v2026_03_10/types/group_0955.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0955.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0955.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0955.py diff --git a/githubkit/versions/v2026_03_10/types/group_0956.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0956.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0956.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0956.py diff --git a/githubkit/versions/v2026_03_10/types/group_0957.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0957.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0957.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0957.py diff --git a/githubkit/versions/v2026_03_10/types/group_0958.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0958.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0958.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0958.py diff --git a/githubkit/versions/v2026_03_10/types/group_0959.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0959.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0959.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0959.py diff --git a/githubkit/versions/v2026_03_10/types/group_0960.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0960.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0960.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0960.py diff --git a/githubkit/versions/v2026_03_10/types/group_0961.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0961.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0961.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0961.py diff --git a/githubkit/versions/v2026_03_10/types/group_0962.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0962.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0962.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0962.py diff --git a/githubkit/versions/v2026_03_10/types/group_0963.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0963.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0963.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0963.py diff --git a/githubkit/versions/v2026_03_10/types/group_0964.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0964.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0964.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0964.py diff --git a/githubkit/versions/v2026_03_10/types/group_0965.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0965.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0965.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0965.py diff --git a/githubkit/versions/v2026_03_10/types/group_0966.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0966.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0966.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0966.py diff --git a/githubkit/versions/v2026_03_10/types/group_0967.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0967.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0967.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0967.py diff --git a/githubkit/versions/v2026_03_10/types/group_0968.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0968.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0968.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0968.py diff --git a/githubkit/versions/v2026_03_10/types/group_0969.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0969.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0969.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0969.py diff --git a/githubkit/versions/v2026_03_10/types/group_0970.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0970.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0970.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0970.py diff --git a/githubkit/versions/v2026_03_10/types/group_0971.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0971.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0971.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0971.py diff --git a/githubkit/versions/v2026_03_10/types/group_0972.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0972.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0972.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0972.py diff --git a/githubkit/versions/v2026_03_10/types/group_0973.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0973.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0973.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0973.py diff --git a/githubkit/versions/v2026_03_10/types/group_0974.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0974.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0974.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0974.py diff --git a/githubkit/versions/v2026_03_10/types/group_0975.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0975.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0975.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0975.py diff --git a/githubkit/versions/v2026_03_10/types/group_0976.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0976.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0976.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0976.py diff --git a/githubkit/versions/v2026_03_10/types/group_0977.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0977.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0977.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0977.py diff --git a/githubkit/versions/v2026_03_10/types/group_0978.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0978.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0978.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0978.py diff --git a/githubkit/versions/v2026_03_10/types/group_0979.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0979.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0979.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0979.py diff --git a/githubkit/versions/v2026_03_10/types/group_0980.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0980.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0980.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0980.py diff --git a/githubkit/versions/v2026_03_10/types/group_0981.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0981.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0981.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0981.py diff --git a/githubkit/versions/v2026_03_10/types/group_0982.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0982.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0982.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0982.py diff --git a/githubkit/versions/v2026_03_10/types/group_0983.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0983.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0983.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0983.py diff --git a/githubkit/versions/v2026_03_10/types/group_0984.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0984.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0984.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0984.py diff --git a/githubkit/versions/v2026_03_10/types/group_0985.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0985.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0985.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0985.py diff --git a/githubkit/versions/v2026_03_10/types/group_0986.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0986.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0986.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0986.py diff --git a/githubkit/versions/v2026_03_10/types/group_0987.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0987.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0987.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0987.py diff --git a/githubkit/versions/v2026_03_10/types/group_0988.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0988.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0988.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0988.py diff --git a/githubkit/versions/v2026_03_10/types/group_0989.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0989.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0989.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0989.py diff --git a/githubkit/versions/v2026_03_10/types/group_0990.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0990.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0990.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0990.py diff --git a/githubkit/versions/v2026_03_10/types/group_0991.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0991.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0991.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0991.py diff --git a/githubkit/versions/v2026_03_10/types/group_0992.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0992.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0992.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0992.py diff --git a/githubkit/versions/v2026_03_10/types/group_0993.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0993.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0993.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0993.py diff --git a/githubkit/versions/v2026_03_10/types/group_0994.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0994.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0994.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0994.py diff --git a/githubkit/versions/v2026_03_10/types/group_0995.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0995.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0995.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0995.py diff --git a/githubkit/versions/v2026_03_10/types/group_0996.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0996.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0996.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0996.py diff --git a/githubkit/versions/v2026_03_10/types/group_0997.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0997.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0997.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0997.py diff --git a/githubkit/versions/v2026_03_10/types/group_0998.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0998.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0998.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0998.py diff --git a/githubkit/versions/v2026_03_10/types/group_0999.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0999.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0999.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_0999.py diff --git a/githubkit/versions/v2026_03_10/types/group_1000.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1000.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1000.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1000.py diff --git a/githubkit/versions/v2026_03_10/types/group_1001.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1001.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1001.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1001.py diff --git a/githubkit/versions/v2026_03_10/types/group_1002.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1002.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1002.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1002.py diff --git a/githubkit/versions/v2026_03_10/types/group_1003.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1003.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1003.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1003.py diff --git a/githubkit/versions/v2026_03_10/types/group_1004.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1004.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1004.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1004.py diff --git a/githubkit/versions/v2026_03_10/types/group_1005.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1005.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1005.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1005.py diff --git a/githubkit/versions/v2026_03_10/types/group_1006.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1006.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1006.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1006.py diff --git a/githubkit/versions/v2026_03_10/types/group_1007.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1007.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1007.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1007.py diff --git a/githubkit/versions/v2026_03_10/types/group_1008.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1008.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1008.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1008.py diff --git a/githubkit/versions/v2026_03_10/types/group_1009.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1009.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1009.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1009.py diff --git a/githubkit/versions/v2026_03_10/types/group_1010.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1010.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1010.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1010.py diff --git a/githubkit/versions/v2026_03_10/types/group_1011.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1011.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1011.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1011.py diff --git a/githubkit/versions/v2026_03_10/types/group_1012.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1012.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1012.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1012.py diff --git a/githubkit/versions/v2026_03_10/types/group_1013.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1013.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1013.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1013.py diff --git a/githubkit/versions/v2026_03_10/types/group_1014.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1014.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1014.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1014.py diff --git a/githubkit/versions/v2026_03_10/types/group_1015.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1015.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1015.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1015.py diff --git a/githubkit/versions/v2026_03_10/types/group_1016.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1016.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1016.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1016.py diff --git a/githubkit/versions/v2026_03_10/types/group_1017.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1017.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1017.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1017.py diff --git a/githubkit/versions/v2026_03_10/types/group_1018.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1018.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1018.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1018.py diff --git a/githubkit/versions/v2026_03_10/types/group_1019.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1019.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1019.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1019.py diff --git a/githubkit/versions/v2026_03_10/types/group_1020.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1020.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1020.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1020.py diff --git a/githubkit/versions/v2026_03_10/types/group_1021.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1021.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1021.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1021.py diff --git a/githubkit/versions/v2026_03_10/types/group_1022.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1022.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1022.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1022.py diff --git a/githubkit/versions/v2026_03_10/types/group_1023.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1023.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1023.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1023.py diff --git a/githubkit/versions/v2026_03_10/types/group_1024.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1024.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1024.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1024.py diff --git a/githubkit/versions/v2026_03_10/types/group_1025.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1025.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1025.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1025.py diff --git a/githubkit/versions/v2026_03_10/types/group_1026.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1026.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1026.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1026.py diff --git a/githubkit/versions/v2026_03_10/types/group_1027.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1027.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1027.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1027.py diff --git a/githubkit/versions/v2026_03_10/types/group_1028.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1028.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1028.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1028.py diff --git a/githubkit/versions/v2026_03_10/types/group_1029.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1029.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1029.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1029.py diff --git a/githubkit/versions/v2026_03_10/types/group_1030.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1030.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1030.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1030.py diff --git a/githubkit/versions/v2026_03_10/types/group_1031.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1031.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1031.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1031.py diff --git a/githubkit/versions/v2026_03_10/types/group_1032.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1032.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1032.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1032.py diff --git a/githubkit/versions/v2026_03_10/types/group_1033.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1033.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1033.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1033.py diff --git a/githubkit/versions/v2026_03_10/types/group_1034.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1034.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1034.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1034.py diff --git a/githubkit/versions/v2026_03_10/types/group_1035.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1035.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1035.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1035.py diff --git a/githubkit/versions/v2026_03_10/types/group_1036.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1036.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1036.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1036.py diff --git a/githubkit/versions/v2026_03_10/types/group_1037.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1037.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1037.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1037.py diff --git a/githubkit/versions/v2026_03_10/types/group_1038.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1038.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1038.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1038.py diff --git a/githubkit/versions/v2026_03_10/types/group_1039.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1039.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1039.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1039.py diff --git a/githubkit/versions/v2026_03_10/types/group_1040.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1040.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1040.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1040.py diff --git a/githubkit/versions/v2026_03_10/types/group_1041.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1041.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1041.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1041.py diff --git a/githubkit/versions/v2026_03_10/types/group_1042.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1042.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1042.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1042.py diff --git a/githubkit/versions/v2026_03_10/types/group_1043.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1043.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1043.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1043.py diff --git a/githubkit/versions/v2026_03_10/types/group_1044.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1044.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1044.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1044.py diff --git a/githubkit/versions/v2026_03_10/types/group_1045.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1045.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1045.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1045.py diff --git a/githubkit/versions/v2026_03_10/types/group_1046.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1046.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1046.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1046.py diff --git a/githubkit/versions/v2026_03_10/types/group_1047.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1047.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1047.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1047.py diff --git a/githubkit/versions/v2026_03_10/types/group_1048.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1048.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1048.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1048.py diff --git a/githubkit/versions/v2026_03_10/types/group_1049.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1049.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1049.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1049.py diff --git a/githubkit/versions/v2026_03_10/types/group_1050.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1050.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1050.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1050.py diff --git a/githubkit/versions/v2026_03_10/types/group_1051.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1051.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1051.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1051.py diff --git a/githubkit/versions/v2026_03_10/types/group_1052.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1052.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1052.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1052.py diff --git a/githubkit/versions/v2026_03_10/types/group_1053.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1053.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1053.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1053.py diff --git a/githubkit/versions/v2026_03_10/types/group_1054.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1054.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1054.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1054.py diff --git a/githubkit/versions/v2026_03_10/types/group_1055.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1055.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1055.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1055.py diff --git a/githubkit/versions/v2026_03_10/types/group_1056.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1056.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1056.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1056.py diff --git a/githubkit/versions/v2026_03_10/types/group_1057.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1057.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1057.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1057.py diff --git a/githubkit/versions/v2026_03_10/types/group_1058.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1058.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1058.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1058.py diff --git a/githubkit/versions/v2026_03_10/types/group_1059.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1059.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1059.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1059.py diff --git a/githubkit/versions/v2026_03_10/types/group_1060.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1060.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1060.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1060.py diff --git a/githubkit/versions/v2026_03_10/types/group_1061.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1061.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1061.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1061.py diff --git a/githubkit/versions/v2026_03_10/types/group_1062.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1062.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1062.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1062.py diff --git a/githubkit/versions/v2026_03_10/types/group_1063.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1063.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1063.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1063.py diff --git a/githubkit/versions/v2026_03_10/types/group_1064.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1064.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1064.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1064.py diff --git a/githubkit/versions/v2026_03_10/types/group_1065.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1065.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1065.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1065.py diff --git a/githubkit/versions/v2026_03_10/types/group_1066.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1066.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1066.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1066.py diff --git a/githubkit/versions/v2026_03_10/types/group_1067.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1067.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1067.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1067.py diff --git a/githubkit/versions/v2026_03_10/types/group_1068.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1068.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1068.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1068.py diff --git a/githubkit/versions/v2026_03_10/types/group_1069.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1069.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1069.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1069.py diff --git a/githubkit/versions/v2026_03_10/types/group_1070.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1070.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1070.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1070.py diff --git a/githubkit/versions/v2026_03_10/types/group_1071.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1071.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1071.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1071.py diff --git a/githubkit/versions/v2026_03_10/types/group_1072.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1072.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1072.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1072.py diff --git a/githubkit/versions/v2026_03_10/types/group_1073.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1073.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1073.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1073.py diff --git a/githubkit/versions/v2026_03_10/types/group_1074.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1074.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1074.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1074.py diff --git a/githubkit/versions/v2026_03_10/types/group_1075.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1075.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1075.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1075.py diff --git a/githubkit/versions/v2026_03_10/types/group_1076.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1076.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1076.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1076.py diff --git a/githubkit/versions/v2026_03_10/types/group_1077.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1077.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1077.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1077.py diff --git a/githubkit/versions/v2026_03_10/types/group_1078.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1078.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1078.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1078.py diff --git a/githubkit/versions/v2026_03_10/types/group_1079.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1079.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1079.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1079.py diff --git a/githubkit/versions/v2026_03_10/types/group_1080.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1080.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1080.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1080.py diff --git a/githubkit/versions/v2026_03_10/types/group_1081.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1081.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1081.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1081.py diff --git a/githubkit/versions/v2026_03_10/types/group_1082.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1082.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1082.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1082.py diff --git a/githubkit/versions/v2026_03_10/types/group_1083.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1083.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1083.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1083.py diff --git a/githubkit/versions/v2026_03_10/types/group_1084.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1084.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1084.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1084.py diff --git a/githubkit/versions/v2026_03_10/types/group_1085.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1085.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1085.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1085.py diff --git a/githubkit/versions/v2026_03_10/types/group_1086.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1086.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1086.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1086.py diff --git a/githubkit/versions/v2026_03_10/types/group_1087.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1087.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1087.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1087.py diff --git a/githubkit/versions/v2026_03_10/types/group_1088.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1088.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1088.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1088.py diff --git a/githubkit/versions/v2026_03_10/types/group_1089.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1089.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1089.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1089.py diff --git a/githubkit/versions/v2026_03_10/types/group_1090.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1090.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1090.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1090.py diff --git a/githubkit/versions/v2026_03_10/types/group_1091.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1091.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1091.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1091.py diff --git a/githubkit/versions/v2026_03_10/types/group_1092.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1092.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1092.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1092.py diff --git a/githubkit/versions/v2026_03_10/types/group_1093.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1093.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1093.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1093.py diff --git a/githubkit/versions/v2026_03_10/types/group_1094.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1094.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1094.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1094.py diff --git a/githubkit/versions/v2026_03_10/types/group_1095.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1095.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1095.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1095.py diff --git a/githubkit/versions/v2026_03_10/types/group_1096.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1096.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1096.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1096.py diff --git a/githubkit/versions/v2026_03_10/types/group_1097.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1097.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1097.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1097.py diff --git a/githubkit/versions/v2026_03_10/types/group_1098.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1098.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1098.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1098.py diff --git a/githubkit/versions/v2026_03_10/types/group_1099.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1099.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1099.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1099.py diff --git a/githubkit/versions/v2026_03_10/types/group_1100.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1100.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1100.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1100.py diff --git a/githubkit/versions/v2026_03_10/types/group_1101.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1101.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1101.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1101.py diff --git a/githubkit/versions/v2026_03_10/types/group_1102.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1102.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1102.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1102.py diff --git a/githubkit/versions/v2026_03_10/types/group_1103.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1103.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1103.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1103.py diff --git a/githubkit/versions/v2026_03_10/types/group_1104.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1104.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1104.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1104.py diff --git a/githubkit/versions/v2026_03_10/types/group_1105.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1105.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1105.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1105.py diff --git a/githubkit/versions/v2026_03_10/types/group_1106.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1106.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1106.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1106.py diff --git a/githubkit/versions/v2026_03_10/types/group_1107.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1107.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1107.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1107.py diff --git a/githubkit/versions/v2026_03_10/types/group_1108.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1108.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1108.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1108.py diff --git a/githubkit/versions/v2026_03_10/types/group_1109.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1109.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1109.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1109.py diff --git a/githubkit/versions/v2026_03_10/types/group_1110.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1110.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1110.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1110.py diff --git a/githubkit/versions/v2026_03_10/types/group_1111.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1111.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1111.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1111.py diff --git a/githubkit/versions/v2026_03_10/types/group_1112.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1112.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1112.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1112.py diff --git a/githubkit/versions/v2026_03_10/types/group_1113.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1113.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1113.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1113.py diff --git a/githubkit/versions/v2026_03_10/types/group_1114.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1114.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1114.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1114.py diff --git a/githubkit/versions/v2026_03_10/types/group_1115.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1115.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1115.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1115.py diff --git a/githubkit/versions/v2026_03_10/types/group_1116.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1116.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1116.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1116.py diff --git a/githubkit/versions/v2026_03_10/types/group_1117.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1117.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1117.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1117.py diff --git a/githubkit/versions/v2026_03_10/types/group_1118.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1118.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1118.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1118.py diff --git a/githubkit/versions/v2026_03_10/types/group_1119.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1119.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1119.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1119.py diff --git a/githubkit/versions/v2026_03_10/types/group_1120.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1120.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1120.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1120.py diff --git a/githubkit/versions/v2026_03_10/types/group_1121.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1121.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1121.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1121.py diff --git a/githubkit/versions/v2026_03_10/types/group_1122.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1122.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1122.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1122.py diff --git a/githubkit/versions/v2026_03_10/types/group_1123.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1123.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1123.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1123.py diff --git a/githubkit/versions/v2026_03_10/types/group_1124.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1124.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1124.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1124.py diff --git a/githubkit/versions/v2026_03_10/types/group_1125.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1125.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1125.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1125.py diff --git a/githubkit/versions/v2026_03_10/types/group_1126.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1126.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1126.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1126.py diff --git a/githubkit/versions/v2026_03_10/types/group_1127.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1127.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1127.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1127.py diff --git a/githubkit/versions/v2026_03_10/types/group_1128.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1128.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1128.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1128.py diff --git a/githubkit/versions/v2026_03_10/types/group_1129.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1129.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1129.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1129.py diff --git a/githubkit/versions/v2026_03_10/types/group_1130.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1130.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1130.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1130.py diff --git a/githubkit/versions/v2026_03_10/types/group_1131.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1131.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1131.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1131.py diff --git a/githubkit/versions/v2026_03_10/types/group_1132.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1132.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1132.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1132.py diff --git a/githubkit/versions/v2026_03_10/types/group_1133.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1133.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1133.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1133.py diff --git a/githubkit/versions/v2026_03_10/types/group_1134.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1134.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1134.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1134.py diff --git a/githubkit/versions/v2026_03_10/types/group_1135.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1135.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1135.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1135.py diff --git a/githubkit/versions/v2026_03_10/types/group_1136.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1136.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1136.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1136.py diff --git a/githubkit/versions/v2026_03_10/types/group_1137.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1137.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1137.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1137.py diff --git a/githubkit/versions/v2026_03_10/types/group_1138.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1138.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1138.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1138.py diff --git a/githubkit/versions/v2026_03_10/types/group_1139.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1139.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1139.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1139.py diff --git a/githubkit/versions/v2026_03_10/types/group_1140.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1140.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1140.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1140.py diff --git a/githubkit/versions/v2026_03_10/types/group_1141.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1141.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1141.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1141.py diff --git a/githubkit/versions/v2026_03_10/types/group_1142.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1142.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1142.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1142.py diff --git a/githubkit/versions/v2026_03_10/types/group_1143.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1143.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1143.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1143.py diff --git a/githubkit/versions/v2026_03_10/types/group_1144.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1144.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1144.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1144.py diff --git a/githubkit/versions/v2026_03_10/types/group_1145.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1145.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1145.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1145.py diff --git a/githubkit/versions/v2026_03_10/types/group_1146.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1146.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1146.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1146.py diff --git a/githubkit/versions/v2026_03_10/types/group_1147.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1147.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1147.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1147.py diff --git a/githubkit/versions/v2026_03_10/types/group_1148.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1148.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1148.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1148.py diff --git a/githubkit/versions/v2026_03_10/types/group_1149.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1149.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1149.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1149.py diff --git a/githubkit/versions/v2026_03_10/types/group_1150.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1150.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1150.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1150.py diff --git a/githubkit/versions/v2026_03_10/types/group_1151.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1151.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1151.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1151.py diff --git a/githubkit/versions/v2026_03_10/types/group_1152.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1152.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1152.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1152.py diff --git a/githubkit/versions/v2026_03_10/types/group_1153.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1153.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1153.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1153.py diff --git a/githubkit/versions/v2026_03_10/types/group_1154.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1154.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1154.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1154.py diff --git a/githubkit/versions/v2026_03_10/types/group_1155.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1155.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1155.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1155.py diff --git a/githubkit/versions/v2026_03_10/types/group_1156.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1156.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1156.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1156.py diff --git a/githubkit/versions/v2026_03_10/types/group_1157.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1157.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1157.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1157.py diff --git a/githubkit/versions/v2026_03_10/types/group_1158.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1158.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1158.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1158.py diff --git a/githubkit/versions/v2026_03_10/types/group_1159.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1159.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1159.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1159.py diff --git a/githubkit/versions/v2026_03_10/types/group_1160.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1160.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1160.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1160.py diff --git a/githubkit/versions/v2026_03_10/types/group_1161.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1161.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1161.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1161.py diff --git a/githubkit/versions/v2026_03_10/types/group_1162.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1162.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1162.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1162.py diff --git a/githubkit/versions/v2026_03_10/types/group_1163.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1163.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1163.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1163.py diff --git a/githubkit/versions/v2026_03_10/types/group_1164.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1164.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1164.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1164.py diff --git a/githubkit/versions/v2026_03_10/types/group_1165.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1165.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1165.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1165.py diff --git a/githubkit/versions/v2026_03_10/types/group_1166.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1166.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1166.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1166.py diff --git a/githubkit/versions/v2026_03_10/types/group_1167.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1167.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1167.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1167.py diff --git a/githubkit/versions/v2026_03_10/types/group_1168.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1168.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1168.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1168.py diff --git a/githubkit/versions/v2026_03_10/types/group_1169.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1169.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1169.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1169.py diff --git a/githubkit/versions/v2026_03_10/types/group_1170.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1170.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1170.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1170.py diff --git a/githubkit/versions/v2026_03_10/types/group_1171.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1171.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1171.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1171.py diff --git a/githubkit/versions/v2026_03_10/types/group_1172.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1172.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1172.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1172.py diff --git a/githubkit/versions/v2026_03_10/types/group_1173.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1173.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1173.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1173.py diff --git a/githubkit/versions/v2026_03_10/types/group_1174.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1174.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1174.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1174.py diff --git a/githubkit/versions/v2026_03_10/types/group_1175.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1175.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1175.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1175.py diff --git a/githubkit/versions/v2026_03_10/types/group_1176.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1176.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1176.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1176.py diff --git a/githubkit/versions/v2026_03_10/types/group_1177.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1177.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1177.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1177.py diff --git a/githubkit/versions/v2026_03_10/types/group_1178.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1178.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1178.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1178.py diff --git a/githubkit/versions/v2026_03_10/types/group_1179.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1179.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1179.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1179.py diff --git a/githubkit/versions/v2026_03_10/types/group_1180.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1180.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1180.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1180.py diff --git a/githubkit/versions/v2026_03_10/types/group_1181.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1181.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1181.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1181.py diff --git a/githubkit/versions/v2026_03_10/types/group_1182.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1182.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1182.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1182.py diff --git a/githubkit/versions/v2026_03_10/types/group_1183.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1183.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1183.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1183.py diff --git a/githubkit/versions/v2026_03_10/types/group_1184.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1184.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1184.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1184.py diff --git a/githubkit/versions/v2026_03_10/types/group_1185.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1185.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1185.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1185.py diff --git a/githubkit/versions/v2026_03_10/types/group_1186.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1186.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1186.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1186.py diff --git a/githubkit/versions/v2026_03_10/types/group_1187.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1187.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1187.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1187.py diff --git a/githubkit/versions/v2026_03_10/types/group_1188.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1188.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1188.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1188.py diff --git a/githubkit/versions/v2026_03_10/types/group_1189.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1189.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1189.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1189.py diff --git a/githubkit/versions/v2026_03_10/types/group_1190.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1190.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1190.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1190.py diff --git a/githubkit/versions/v2026_03_10/types/group_1191.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1191.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1191.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1191.py diff --git a/githubkit/versions/v2026_03_10/types/group_1192.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1192.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1192.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1192.py diff --git a/githubkit/versions/v2026_03_10/types/group_1193.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1193.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1193.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1193.py diff --git a/githubkit/versions/v2026_03_10/types/group_1194.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1194.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1194.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1194.py diff --git a/githubkit/versions/v2026_03_10/types/group_1195.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1195.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1195.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1195.py diff --git a/githubkit/versions/v2026_03_10/types/group_1196.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1196.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1196.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1196.py diff --git a/githubkit/versions/v2026_03_10/types/group_1197.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1197.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1197.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1197.py diff --git a/githubkit/versions/v2026_03_10/types/group_1198.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1198.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1198.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1198.py diff --git a/githubkit/versions/v2026_03_10/types/group_1199.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1199.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1199.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1199.py diff --git a/githubkit/versions/v2026_03_10/types/group_1200.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1200.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1200.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1200.py diff --git a/githubkit/versions/v2026_03_10/types/group_1201.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1201.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1201.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1201.py diff --git a/githubkit/versions/v2026_03_10/types/group_1202.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1202.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1202.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1202.py diff --git a/githubkit/versions/v2026_03_10/types/group_1203.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1203.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1203.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1203.py diff --git a/githubkit/versions/v2026_03_10/types/group_1204.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1204.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1204.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1204.py diff --git a/githubkit/versions/v2026_03_10/types/group_1205.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1205.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1205.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1205.py diff --git a/githubkit/versions/v2026_03_10/types/group_1206.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1206.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1206.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1206.py diff --git a/githubkit/versions/v2026_03_10/types/group_1207.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1207.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1207.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1207.py diff --git a/githubkit/versions/v2026_03_10/types/group_1208.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1208.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1208.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1208.py diff --git a/githubkit/versions/v2026_03_10/types/group_1209.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1209.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1209.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1209.py diff --git a/githubkit/versions/v2026_03_10/types/group_1210.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1210.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1210.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1210.py diff --git a/githubkit/versions/v2026_03_10/types/group_1211.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1211.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1211.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1211.py diff --git a/githubkit/versions/v2026_03_10/types/group_1212.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1212.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1212.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1212.py diff --git a/githubkit/versions/v2026_03_10/types/group_1213.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1213.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1213.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1213.py diff --git a/githubkit/versions/v2026_03_10/types/group_1214.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1214.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1214.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1214.py diff --git a/githubkit/versions/v2026_03_10/types/group_1215.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1215.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1215.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1215.py diff --git a/githubkit/versions/v2026_03_10/types/group_1216.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1216.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1216.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1216.py diff --git a/githubkit/versions/v2026_03_10/types/group_1217.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1217.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1217.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1217.py diff --git a/githubkit/versions/v2026_03_10/types/group_1218.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1218.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1218.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1218.py diff --git a/githubkit/versions/v2026_03_10/types/group_1219.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1219.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1219.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1219.py diff --git a/githubkit/versions/v2026_03_10/types/group_1220.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1220.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1220.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1220.py diff --git a/githubkit/versions/v2026_03_10/types/group_1221.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1221.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1221.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1221.py diff --git a/githubkit/versions/v2026_03_10/types/group_1222.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1222.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1222.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1222.py diff --git a/githubkit/versions/v2026_03_10/types/group_1223.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1223.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1223.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1223.py diff --git a/githubkit/versions/v2026_03_10/types/group_1224.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1224.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1224.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1224.py diff --git a/githubkit/versions/v2026_03_10/types/group_1225.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1225.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1225.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1225.py diff --git a/githubkit/versions/v2026_03_10/types/group_1226.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1226.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1226.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1226.py diff --git a/githubkit/versions/v2026_03_10/types/group_1227.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1227.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1227.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1227.py diff --git a/githubkit/versions/v2026_03_10/types/group_1228.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1228.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1228.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1228.py diff --git a/githubkit/versions/v2026_03_10/types/group_1229.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1229.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1229.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1229.py diff --git a/githubkit/versions/v2026_03_10/types/group_1230.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1230.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1230.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1230.py diff --git a/githubkit/versions/v2026_03_10/types/group_1231.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1231.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1231.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1231.py diff --git a/githubkit/versions/v2026_03_10/types/group_1232.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1232.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1232.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1232.py diff --git a/githubkit/versions/v2026_03_10/types/group_1233.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1233.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1233.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1233.py diff --git a/githubkit/versions/v2026_03_10/types/group_1234.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1234.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1234.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1234.py diff --git a/githubkit/versions/v2026_03_10/types/group_1235.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1235.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1235.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1235.py diff --git a/githubkit/versions/v2026_03_10/types/group_1236.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1236.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1236.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1236.py diff --git a/githubkit/versions/v2026_03_10/types/group_1237.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1237.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1237.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1237.py diff --git a/githubkit/versions/v2026_03_10/types/group_1238.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1238.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1238.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1238.py diff --git a/githubkit/versions/v2026_03_10/types/group_1239.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1239.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1239.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1239.py diff --git a/githubkit/versions/v2026_03_10/types/group_1240.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1240.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1240.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1240.py diff --git a/githubkit/versions/v2026_03_10/types/group_1241.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1241.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1241.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1241.py diff --git a/githubkit/versions/v2026_03_10/types/group_1242.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1242.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1242.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1242.py diff --git a/githubkit/versions/v2026_03_10/types/group_1243.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1243.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1243.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1243.py diff --git a/githubkit/versions/v2026_03_10/types/group_1244.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1244.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1244.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1244.py diff --git a/githubkit/versions/v2026_03_10/types/group_1245.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1245.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1245.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1245.py diff --git a/githubkit/versions/v2026_03_10/types/group_1246.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1246.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1246.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1246.py diff --git a/githubkit/versions/v2026_03_10/types/group_1247.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1247.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1247.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1247.py diff --git a/githubkit/versions/v2026_03_10/types/group_1248.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1248.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1248.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1248.py diff --git a/githubkit/versions/v2026_03_10/types/group_1249.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1249.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1249.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1249.py diff --git a/githubkit/versions/v2026_03_10/types/group_1250.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1250.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1250.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1250.py diff --git a/githubkit/versions/v2026_03_10/types/group_1251.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1251.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1251.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1251.py diff --git a/githubkit/versions/v2026_03_10/types/group_1252.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1252.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1252.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1252.py diff --git a/githubkit/versions/v2026_03_10/types/group_1253.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1253.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1253.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1253.py diff --git a/githubkit/versions/v2026_03_10/types/group_1254.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1254.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1254.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1254.py diff --git a/githubkit/versions/v2026_03_10/types/group_1255.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1255.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1255.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1255.py diff --git a/githubkit/versions/v2026_03_10/types/group_1256.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1256.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1256.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1256.py diff --git a/githubkit/versions/v2026_03_10/types/group_1257.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1257.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1257.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1257.py diff --git a/githubkit/versions/v2026_03_10/types/group_1258.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1258.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1258.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1258.py diff --git a/githubkit/versions/v2026_03_10/types/group_1259.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1259.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1259.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1259.py diff --git a/githubkit/versions/v2026_03_10/types/group_1260.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1260.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1260.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1260.py diff --git a/githubkit/versions/v2026_03_10/types/group_1261.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1261.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1261.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1261.py diff --git a/githubkit/versions/v2026_03_10/types/group_1262.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1262.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1262.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1262.py diff --git a/githubkit/versions/v2026_03_10/types/group_1263.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1263.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1263.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1263.py diff --git a/githubkit/versions/v2026_03_10/types/group_1264.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1264.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1264.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1264.py diff --git a/githubkit/versions/v2026_03_10/types/group_1265.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1265.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1265.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1265.py diff --git a/githubkit/versions/v2026_03_10/types/group_1266.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1266.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1266.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1266.py diff --git a/githubkit/versions/v2026_03_10/types/group_1267.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1267.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1267.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1267.py diff --git a/githubkit/versions/v2026_03_10/types/group_1268.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1268.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1268.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1268.py diff --git a/githubkit/versions/v2026_03_10/types/group_1269.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1269.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1269.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1269.py diff --git a/githubkit/versions/v2026_03_10/types/group_1270.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1270.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1270.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1270.py diff --git a/githubkit/versions/v2026_03_10/types/group_1271.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1271.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1271.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1271.py diff --git a/githubkit/versions/v2026_03_10/types/group_1272.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1272.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1272.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1272.py diff --git a/githubkit/versions/v2026_03_10/types/group_1273.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1273.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1273.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1273.py diff --git a/githubkit/versions/v2026_03_10/types/group_1274.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1274.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1274.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1274.py diff --git a/githubkit/versions/v2026_03_10/types/group_1275.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1275.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1275.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1275.py diff --git a/githubkit/versions/v2026_03_10/types/group_1276.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1276.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1276.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1276.py diff --git a/githubkit/versions/v2026_03_10/types/group_1277.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1277.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1277.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1277.py diff --git a/githubkit/versions/v2026_03_10/types/group_1278.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1278.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1278.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1278.py diff --git a/githubkit/versions/v2026_03_10/types/group_1279.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1279.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1279.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1279.py diff --git a/githubkit/versions/v2026_03_10/types/group_1280.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1280.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1280.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1280.py diff --git a/githubkit/versions/v2026_03_10/types/group_1281.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1281.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1281.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1281.py diff --git a/githubkit/versions/v2026_03_10/types/group_1282.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1282.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1282.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1282.py diff --git a/githubkit/versions/v2026_03_10/types/group_1283.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1283.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1283.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1283.py diff --git a/githubkit/versions/v2026_03_10/types/group_1284.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1284.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1284.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1284.py diff --git a/githubkit/versions/v2026_03_10/types/group_1285.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1285.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1285.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1285.py diff --git a/githubkit/versions/v2026_03_10/types/group_1286.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1286.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1286.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1286.py diff --git a/githubkit/versions/v2026_03_10/types/group_1287.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1287.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1287.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1287.py diff --git a/githubkit/versions/v2026_03_10/types/group_1288.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1288.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1288.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1288.py diff --git a/githubkit/versions/v2026_03_10/types/group_1289.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1289.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1289.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1289.py diff --git a/githubkit/versions/v2026_03_10/types/group_1290.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1290.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1290.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1290.py diff --git a/githubkit/versions/v2026_03_10/types/group_1291.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1291.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1291.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1291.py diff --git a/githubkit/versions/v2026_03_10/types/group_1292.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1292.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1292.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1292.py diff --git a/githubkit/versions/v2026_03_10/types/group_1293.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1293.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1293.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1293.py diff --git a/githubkit/versions/v2026_03_10/types/group_1294.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1294.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1294.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1294.py diff --git a/githubkit/versions/v2026_03_10/types/group_1295.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1295.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1295.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1295.py diff --git a/githubkit/versions/v2026_03_10/types/group_1296.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1296.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1296.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1296.py diff --git a/githubkit/versions/v2026_03_10/types/group_1297.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1297.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1297.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1297.py diff --git a/githubkit/versions/v2026_03_10/types/group_1298.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1298.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1298.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1298.py diff --git a/githubkit/versions/v2026_03_10/types/group_1299.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1299.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1299.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1299.py diff --git a/githubkit/versions/v2026_03_10/types/group_1300.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1300.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1300.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1300.py diff --git a/githubkit/versions/v2026_03_10/types/group_1301.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1301.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1301.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1301.py diff --git a/githubkit/versions/v2026_03_10/types/group_1302.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1302.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1302.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1302.py diff --git a/githubkit/versions/v2026_03_10/types/group_1303.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1303.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1303.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1303.py diff --git a/githubkit/versions/v2026_03_10/types/group_1304.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1304.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1304.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1304.py diff --git a/githubkit/versions/v2026_03_10/types/group_1305.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1305.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1305.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1305.py diff --git a/githubkit/versions/v2026_03_10/types/group_1306.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1306.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1306.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1306.py diff --git a/githubkit/versions/v2026_03_10/types/group_1307.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1307.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1307.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1307.py diff --git a/githubkit/versions/v2026_03_10/types/group_1308.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1308.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1308.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1308.py diff --git a/githubkit/versions/v2026_03_10/types/group_1309.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1309.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1309.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1309.py diff --git a/githubkit/versions/v2026_03_10/types/group_1310.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1310.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1310.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1310.py diff --git a/githubkit/versions/v2026_03_10/types/group_1311.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1311.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1311.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1311.py diff --git a/githubkit/versions/v2026_03_10/types/group_1312.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1312.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1312.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1312.py diff --git a/githubkit/versions/v2026_03_10/types/group_1313.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1313.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1313.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1313.py diff --git a/githubkit/versions/v2026_03_10/types/group_1314.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1314.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1314.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1314.py diff --git a/githubkit/versions/v2026_03_10/types/group_1315.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1315.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1315.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1315.py diff --git a/githubkit/versions/v2026_03_10/types/group_1316.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1316.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1316.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1316.py diff --git a/githubkit/versions/v2026_03_10/types/group_1317.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1317.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1317.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1317.py diff --git a/githubkit/versions/v2026_03_10/types/group_1318.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1318.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1318.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1318.py diff --git a/githubkit/versions/v2026_03_10/types/group_1319.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1319.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1319.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1319.py diff --git a/githubkit/versions/v2026_03_10/types/group_1320.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1320.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1320.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1320.py diff --git a/githubkit/versions/v2026_03_10/types/group_1321.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1321.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1321.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1321.py diff --git a/githubkit/versions/v2026_03_10/types/group_1322.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1322.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1322.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1322.py diff --git a/githubkit/versions/v2026_03_10/types/group_1323.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1323.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1323.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1323.py diff --git a/githubkit/versions/v2026_03_10/types/group_1324.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1324.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1324.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1324.py diff --git a/githubkit/versions/v2026_03_10/types/group_1325.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1325.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1325.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1325.py diff --git a/githubkit/versions/v2026_03_10/types/group_1326.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1326.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1326.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1326.py diff --git a/githubkit/versions/v2026_03_10/types/group_1327.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1327.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1327.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1327.py diff --git a/githubkit/versions/v2026_03_10/types/group_1328.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1328.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1328.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1328.py diff --git a/githubkit/versions/v2026_03_10/types/group_1329.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1329.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1329.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1329.py diff --git a/githubkit/versions/v2026_03_10/types/group_1330.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1330.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1330.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1330.py diff --git a/githubkit/versions/v2026_03_10/types/group_1331.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1331.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1331.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1331.py diff --git a/githubkit/versions/v2026_03_10/types/group_1332.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1332.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1332.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1332.py diff --git a/githubkit/versions/v2026_03_10/types/group_1333.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1333.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1333.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1333.py diff --git a/githubkit/versions/v2026_03_10/types/group_1334.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1334.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1334.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1334.py diff --git a/githubkit/versions/v2026_03_10/types/group_1335.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1335.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1335.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1335.py diff --git a/githubkit/versions/v2026_03_10/types/group_1336.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1336.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1336.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1336.py diff --git a/githubkit/versions/v2026_03_10/types/group_1337.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1337.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1337.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1337.py diff --git a/githubkit/versions/v2026_03_10/types/group_1338.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1338.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1338.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1338.py diff --git a/githubkit/versions/v2026_03_10/types/group_1339.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1339.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1339.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1339.py diff --git a/githubkit/versions/v2026_03_10/types/group_1340.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1340.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1340.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1340.py diff --git a/githubkit/versions/v2026_03_10/types/group_1341.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1341.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1341.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1341.py diff --git a/githubkit/versions/v2026_03_10/types/group_1342.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1342.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1342.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1342.py diff --git a/githubkit/versions/v2026_03_10/types/group_1343.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1343.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1343.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1343.py diff --git a/githubkit/versions/v2026_03_10/types/group_1344.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1344.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1344.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1344.py diff --git a/githubkit/versions/v2026_03_10/types/group_1345.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1345.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1345.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1345.py diff --git a/githubkit/versions/v2026_03_10/types/group_1346.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1346.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1346.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1346.py diff --git a/githubkit/versions/v2026_03_10/types/group_1347.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1347.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1347.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1347.py diff --git a/githubkit/versions/v2026_03_10/types/group_1348.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1348.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1348.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1348.py diff --git a/githubkit/versions/v2026_03_10/types/group_1349.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1349.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1349.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1349.py diff --git a/githubkit/versions/v2026_03_10/types/group_1350.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1350.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_1350.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/types/group_1350.py diff --git a/githubkit/versions/v2026_03_10/webhooks/__init__.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/webhooks/__init__.py similarity index 99% rename from githubkit/versions/v2026_03_10/webhooks/__init__.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/webhooks/__init__.py index 71a7c78dd1..9118dbb5db 100644 --- a/githubkit/versions/v2026_03_10/webhooks/__init__.py +++ b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/webhooks/__init__.py @@ -9,7 +9,7 @@ from typing import TYPE_CHECKING -from githubkit.lazy_module import is_lazy_disabled +from githubkit.module_hooks.lazy_module import is_lazy_disabled if TYPE_CHECKING or is_lazy_disabled(): from ._namespace import VALID_EVENT_NAMES as VALID_EVENT_NAMES diff --git a/githubkit/versions/v2026_03_10/webhooks/_namespace.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/webhooks/_namespace.py similarity index 100% rename from githubkit/versions/v2026_03_10/webhooks/_namespace.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/webhooks/_namespace.py diff --git a/githubkit/versions/v2026_03_10/webhooks/_types.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/webhooks/_types.py similarity index 100% rename from githubkit/versions/v2026_03_10/webhooks/_types.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/webhooks/_types.py diff --git a/githubkit/versions/ghec_v2026_03_10/webhooks/branch_protection_configuration.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/webhooks/branch_protection_configuration.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/webhooks/branch_protection_configuration.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/webhooks/branch_protection_configuration.py diff --git a/githubkit/versions/ghec_v2026_03_10/webhooks/branch_protection_rule.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/webhooks/branch_protection_rule.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/webhooks/branch_protection_rule.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/webhooks/branch_protection_rule.py diff --git a/githubkit/versions/ghec_v2026_03_10/webhooks/check_run.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/webhooks/check_run.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/webhooks/check_run.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/webhooks/check_run.py diff --git a/githubkit/versions/ghec_v2026_03_10/webhooks/check_suite.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/webhooks/check_suite.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/webhooks/check_suite.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/webhooks/check_suite.py diff --git a/githubkit/versions/ghec_v2026_03_10/webhooks/code_scanning_alert.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/webhooks/code_scanning_alert.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/webhooks/code_scanning_alert.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/webhooks/code_scanning_alert.py diff --git a/githubkit/versions/ghec_v2026_03_10/webhooks/commit_comment.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/webhooks/commit_comment.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/webhooks/commit_comment.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/webhooks/commit_comment.py diff --git a/githubkit/versions/ghec_v2026_03_10/webhooks/create.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/webhooks/create.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/webhooks/create.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/webhooks/create.py diff --git a/githubkit/versions/ghec_v2026_03_10/webhooks/custom_property.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/webhooks/custom_property.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/webhooks/custom_property.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/webhooks/custom_property.py diff --git a/githubkit/versions/ghec_v2026_03_10/webhooks/custom_property_values.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/webhooks/custom_property_values.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/webhooks/custom_property_values.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/webhooks/custom_property_values.py diff --git a/githubkit/versions/ghec_v2026_03_10/webhooks/delete.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/webhooks/delete.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/webhooks/delete.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/webhooks/delete.py diff --git a/githubkit/versions/ghec_v2026_03_10/webhooks/dependabot_alert.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/webhooks/dependabot_alert.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/webhooks/dependabot_alert.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/webhooks/dependabot_alert.py diff --git a/githubkit/versions/ghec_v2026_03_10/webhooks/deploy_key.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/webhooks/deploy_key.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/webhooks/deploy_key.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/webhooks/deploy_key.py diff --git a/githubkit/versions/ghec_v2026_03_10/webhooks/deployment.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/webhooks/deployment.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/webhooks/deployment.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/webhooks/deployment.py diff --git a/githubkit/versions/ghec_v2026_03_10/webhooks/deployment_protection_rule.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/webhooks/deployment_protection_rule.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/webhooks/deployment_protection_rule.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/webhooks/deployment_protection_rule.py diff --git a/githubkit/versions/ghec_v2026_03_10/webhooks/deployment_review.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/webhooks/deployment_review.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/webhooks/deployment_review.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/webhooks/deployment_review.py diff --git a/githubkit/versions/ghec_v2026_03_10/webhooks/deployment_status.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/webhooks/deployment_status.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/webhooks/deployment_status.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/webhooks/deployment_status.py diff --git a/githubkit/versions/ghec_v2026_03_10/webhooks/discussion.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/webhooks/discussion.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/webhooks/discussion.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/webhooks/discussion.py diff --git a/githubkit/versions/ghec_v2026_03_10/webhooks/discussion_comment.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/webhooks/discussion_comment.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/webhooks/discussion_comment.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/webhooks/discussion_comment.py diff --git a/githubkit/versions/ghec_v2026_03_10/webhooks/fork.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/webhooks/fork.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/webhooks/fork.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/webhooks/fork.py diff --git a/githubkit/versions/ghec_v2026_03_10/webhooks/github_app_authorization.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/webhooks/github_app_authorization.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/webhooks/github_app_authorization.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/webhooks/github_app_authorization.py diff --git a/githubkit/versions/ghec_v2026_03_10/webhooks/gollum.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/webhooks/gollum.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/webhooks/gollum.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/webhooks/gollum.py diff --git a/githubkit/versions/ghec_v2026_03_10/webhooks/installation.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/webhooks/installation.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/webhooks/installation.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/webhooks/installation.py diff --git a/githubkit/versions/ghec_v2026_03_10/webhooks/installation_repositories.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/webhooks/installation_repositories.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/webhooks/installation_repositories.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/webhooks/installation_repositories.py diff --git a/githubkit/versions/ghec_v2026_03_10/webhooks/installation_target.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/webhooks/installation_target.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/webhooks/installation_target.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/webhooks/installation_target.py diff --git a/githubkit/versions/ghec_v2026_03_10/webhooks/issue_comment.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/webhooks/issue_comment.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/webhooks/issue_comment.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/webhooks/issue_comment.py diff --git a/githubkit/versions/ghec_v2026_03_10/webhooks/issue_dependencies.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/webhooks/issue_dependencies.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/webhooks/issue_dependencies.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/webhooks/issue_dependencies.py diff --git a/githubkit/versions/ghec_v2026_03_10/webhooks/issues.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/webhooks/issues.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/webhooks/issues.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/webhooks/issues.py diff --git a/githubkit/versions/ghec_v2026_03_10/webhooks/label.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/webhooks/label.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/webhooks/label.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/webhooks/label.py diff --git a/githubkit/versions/ghec_v2026_03_10/webhooks/marketplace_purchase.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/webhooks/marketplace_purchase.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/webhooks/marketplace_purchase.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/webhooks/marketplace_purchase.py diff --git a/githubkit/versions/ghec_v2026_03_10/webhooks/member.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/webhooks/member.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/webhooks/member.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/webhooks/member.py diff --git a/githubkit/versions/ghec_v2026_03_10/webhooks/membership.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/webhooks/membership.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/webhooks/membership.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/webhooks/membership.py diff --git a/githubkit/versions/ghec_v2026_03_10/webhooks/merge_group.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/webhooks/merge_group.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/webhooks/merge_group.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/webhooks/merge_group.py diff --git a/githubkit/versions/ghec_v2026_03_10/webhooks/meta.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/webhooks/meta.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/webhooks/meta.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/webhooks/meta.py diff --git a/githubkit/versions/ghec_v2026_03_10/webhooks/milestone.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/webhooks/milestone.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/webhooks/milestone.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/webhooks/milestone.py diff --git a/githubkit/versions/ghec_v2026_03_10/webhooks/org_block.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/webhooks/org_block.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/webhooks/org_block.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/webhooks/org_block.py diff --git a/githubkit/versions/ghec_v2026_03_10/webhooks/organization.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/webhooks/organization.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/webhooks/organization.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/webhooks/organization.py diff --git a/githubkit/versions/ghec_v2026_03_10/webhooks/package.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/webhooks/package.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/webhooks/package.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/webhooks/package.py diff --git a/githubkit/versions/ghec_v2026_03_10/webhooks/page_build.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/webhooks/page_build.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/webhooks/page_build.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/webhooks/page_build.py diff --git a/githubkit/versions/ghec_v2026_03_10/webhooks/personal_access_token_request.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/webhooks/personal_access_token_request.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/webhooks/personal_access_token_request.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/webhooks/personal_access_token_request.py diff --git a/githubkit/versions/ghec_v2026_03_10/webhooks/ping.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/webhooks/ping.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/webhooks/ping.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/webhooks/ping.py diff --git a/githubkit/versions/ghec_v2026_03_10/webhooks/project.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/webhooks/project.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/webhooks/project.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/webhooks/project.py diff --git a/githubkit/versions/ghec_v2026_03_10/webhooks/project_card.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/webhooks/project_card.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/webhooks/project_card.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/webhooks/project_card.py diff --git a/githubkit/versions/ghec_v2026_03_10/webhooks/project_column.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/webhooks/project_column.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/webhooks/project_column.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/webhooks/project_column.py diff --git a/githubkit/versions/ghec_v2026_03_10/webhooks/projects_v2.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/webhooks/projects_v2.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/webhooks/projects_v2.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/webhooks/projects_v2.py diff --git a/githubkit/versions/ghec_v2026_03_10/webhooks/projects_v2_item.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/webhooks/projects_v2_item.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/webhooks/projects_v2_item.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/webhooks/projects_v2_item.py diff --git a/githubkit/versions/ghec_v2026_03_10/webhooks/projects_v2_status_update.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/webhooks/projects_v2_status_update.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/webhooks/projects_v2_status_update.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/webhooks/projects_v2_status_update.py diff --git a/githubkit/versions/ghec_v2026_03_10/webhooks/public.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/webhooks/public.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/webhooks/public.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/webhooks/public.py diff --git a/githubkit/versions/ghec_v2026_03_10/webhooks/pull_request.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/webhooks/pull_request.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/webhooks/pull_request.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/webhooks/pull_request.py diff --git a/githubkit/versions/ghec_v2026_03_10/webhooks/pull_request_review.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/webhooks/pull_request_review.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/webhooks/pull_request_review.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/webhooks/pull_request_review.py diff --git a/githubkit/versions/ghec_v2026_03_10/webhooks/pull_request_review_comment.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/webhooks/pull_request_review_comment.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/webhooks/pull_request_review_comment.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/webhooks/pull_request_review_comment.py diff --git a/githubkit/versions/ghec_v2026_03_10/webhooks/pull_request_review_thread.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/webhooks/pull_request_review_thread.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/webhooks/pull_request_review_thread.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/webhooks/pull_request_review_thread.py diff --git a/githubkit/versions/ghec_v2026_03_10/webhooks/push.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/webhooks/push.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/webhooks/push.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/webhooks/push.py diff --git a/githubkit/versions/ghec_v2026_03_10/webhooks/registry_package.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/webhooks/registry_package.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/webhooks/registry_package.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/webhooks/registry_package.py diff --git a/githubkit/versions/ghec_v2026_03_10/webhooks/release.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/webhooks/release.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/webhooks/release.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/webhooks/release.py diff --git a/githubkit/versions/ghec_v2026_03_10/webhooks/repository.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/webhooks/repository.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/webhooks/repository.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/webhooks/repository.py diff --git a/githubkit/versions/ghec_v2026_03_10/webhooks/repository_advisory.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/webhooks/repository_advisory.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/webhooks/repository_advisory.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/webhooks/repository_advisory.py diff --git a/githubkit/versions/ghec_v2026_03_10/webhooks/repository_dispatch.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/webhooks/repository_dispatch.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/webhooks/repository_dispatch.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/webhooks/repository_dispatch.py diff --git a/githubkit/versions/ghec_v2026_03_10/webhooks/repository_import.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/webhooks/repository_import.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/webhooks/repository_import.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/webhooks/repository_import.py diff --git a/githubkit/versions/ghec_v2026_03_10/webhooks/repository_ruleset.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/webhooks/repository_ruleset.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/webhooks/repository_ruleset.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/webhooks/repository_ruleset.py diff --git a/githubkit/versions/ghec_v2026_03_10/webhooks/repository_vulnerability_alert.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/webhooks/repository_vulnerability_alert.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/webhooks/repository_vulnerability_alert.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/webhooks/repository_vulnerability_alert.py diff --git a/githubkit/versions/ghec_v2026_03_10/webhooks/secret_scanning_alert.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/webhooks/secret_scanning_alert.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/webhooks/secret_scanning_alert.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/webhooks/secret_scanning_alert.py diff --git a/githubkit/versions/ghec_v2026_03_10/webhooks/secret_scanning_alert_location.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/webhooks/secret_scanning_alert_location.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/webhooks/secret_scanning_alert_location.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/webhooks/secret_scanning_alert_location.py diff --git a/githubkit/versions/ghec_v2026_03_10/webhooks/secret_scanning_scan.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/webhooks/secret_scanning_scan.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/webhooks/secret_scanning_scan.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/webhooks/secret_scanning_scan.py diff --git a/githubkit/versions/ghec_v2026_03_10/webhooks/security_advisory.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/webhooks/security_advisory.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/webhooks/security_advisory.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/webhooks/security_advisory.py diff --git a/githubkit/versions/ghec_v2026_03_10/webhooks/security_and_analysis.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/webhooks/security_and_analysis.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/webhooks/security_and_analysis.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/webhooks/security_and_analysis.py diff --git a/githubkit/versions/ghec_v2026_03_10/webhooks/sponsorship.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/webhooks/sponsorship.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/webhooks/sponsorship.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/webhooks/sponsorship.py diff --git a/githubkit/versions/ghec_v2026_03_10/webhooks/star.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/webhooks/star.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/webhooks/star.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/webhooks/star.py diff --git a/githubkit/versions/ghec_v2026_03_10/webhooks/status.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/webhooks/status.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/webhooks/status.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/webhooks/status.py diff --git a/githubkit/versions/ghec_v2026_03_10/webhooks/sub_issues.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/webhooks/sub_issues.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/webhooks/sub_issues.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/webhooks/sub_issues.py diff --git a/githubkit/versions/ghec_v2026_03_10/webhooks/team.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/webhooks/team.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/webhooks/team.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/webhooks/team.py diff --git a/githubkit/versions/ghec_v2026_03_10/webhooks/team_add.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/webhooks/team_add.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/webhooks/team_add.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/webhooks/team_add.py diff --git a/githubkit/versions/ghec_v2026_03_10/webhooks/watch.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/webhooks/watch.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/webhooks/watch.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/webhooks/watch.py diff --git a/githubkit/versions/ghec_v2026_03_10/webhooks/workflow_dispatch.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/webhooks/workflow_dispatch.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/webhooks/workflow_dispatch.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/webhooks/workflow_dispatch.py diff --git a/githubkit/versions/ghec_v2026_03_10/webhooks/workflow_job.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/webhooks/workflow_job.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/webhooks/workflow_job.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/webhooks/workflow_job.py diff --git a/githubkit/versions/ghec_v2026_03_10/webhooks/workflow_run.py b/packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/webhooks/workflow_run.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/webhooks/workflow_run.py rename to packages/githubkit-schemas-2026-03-10/githubkit_schemas/v2026_03_10/webhooks/workflow_run.py diff --git a/packages/githubkit-schemas-2026-03-10/pyproject.toml b/packages/githubkit-schemas-2026-03-10/pyproject.toml new file mode 100644 index 0000000000..46081c17d7 --- /dev/null +++ b/packages/githubkit-schemas-2026-03-10/pyproject.toml @@ -0,0 +1,32 @@ +[project] +name = "GitHubKit-schemas-2026-03-10" +version = "26.5.7" +description = "GitHub Schemas for GitHubKit" +authors = [{ name = "yanyongyu", email = "yyy@yyydl.top" }] +license = "MIT" +readme = "README.md" +keywords = ["github", "octokit"] +requires-python = ">=3.9, <4.0" +dependencies = ["githubkit-schemas ==26.5.7"] + +[project.optional-dependencies] + +[project.urls] +Homepage = "https://github.com/yanyongyu/githubkit" +Repository = "https://github.com/yanyongyu/githubkit" +Documentation = "https://github.com/yanyongyu/githubkit" +"Bug Tracker" = "https://github.com/yanyongyu/githubkit/issues" + +[tool.uv] +required-version = ">=0.8.0" + +[tool.uv.sources] +githubkit-schemas = { workspace = true } + +[tool.uv.build-backend] +module-root = "" +module-name = "githubkit_schemas.v2026_03_10" + +[build-system] +requires = ["uv_build >=0.8.3, <0.10.0"] +build-backend = "uv_build" diff --git a/packages/githubkit-schemas-ghec-2022-11-28/README.md b/packages/githubkit-schemas-ghec-2022-11-28/README.md new file mode 100644 index 0000000000..240b20da76 --- /dev/null +++ b/packages/githubkit-schemas-ghec-2022-11-28/README.md @@ -0,0 +1,57 @@ + +
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Documentation | + Report Bug | + GitHub Docs +
+ +This package provides the models and GitHub schemas for GitHubKit. + +When GitHub schemas are updated, this package will be updated accordingly. You can also lock the version of this package using a dependency manager like `uv` to ensure that your project is using a specific version of the schemas. + +## Getting Started + +For more, see the [documentation](https://yanyongyu.github.io/githubkit). diff --git a/githubkit/versions/latest/__init__.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/__init__.py similarity index 100% rename from githubkit/versions/latest/__init__.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/__init__.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/__init__.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/__init__.py similarity index 99% rename from githubkit/versions/ghec_v2022_11_28/models/__init__.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/__init__.py index d362c349f4..c7f376404e 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/__init__.py +++ b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/__init__.py @@ -9,7 +9,7 @@ from typing import TYPE_CHECKING -from githubkit.lazy_module import is_lazy_disabled +from githubkit.module_hooks.lazy_module import is_lazy_disabled if TYPE_CHECKING or is_lazy_disabled(): from .group_0000 import Root as Root diff --git a/githubkit/versions/v2022_11_28/models/group_0000.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0000.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0000.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0000.py diff --git a/githubkit/versions/v2022_11_28/models/group_0001.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0001.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0001.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0001.py diff --git a/githubkit/versions/v2022_11_28/models/group_0002.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0002.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0002.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0002.py diff --git a/githubkit/versions/v2022_11_28/models/group_0003.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0003.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0003.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0003.py diff --git a/githubkit/versions/v2022_11_28/models/group_0004.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0004.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0004.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0004.py diff --git a/githubkit/versions/v2022_11_28/models/group_0005.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0005.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0005.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0005.py diff --git a/githubkit/versions/v2022_11_28/models/group_0006.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0006.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0006.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0006.py diff --git a/githubkit/versions/v2022_11_28/models/group_0007.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0007.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0007.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0007.py diff --git a/githubkit/versions/v2022_11_28/models/group_0008.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0008.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0008.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0008.py diff --git a/githubkit/versions/v2022_11_28/models/group_0009.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0009.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0009.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0009.py diff --git a/githubkit/versions/v2022_11_28/models/group_0010.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0010.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0010.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0010.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0011.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0011.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0011.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0011.py diff --git a/githubkit/versions/v2022_11_28/models/group_0012.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0012.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0012.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0012.py diff --git a/githubkit/versions/v2022_11_28/models/group_0013.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0013.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0013.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0013.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0014.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0014.py similarity index 92% rename from githubkit/versions/ghec_v2026_03_10/models/group_0014.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0014.py index d347d5d9ad..120f59894b 100644 --- a/githubkit/versions/ghec_v2026_03_10/models/group_0014.py +++ b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0014.py @@ -37,7 +37,7 @@ class ValidationErrorPropErrorsItems(GitHubModel): message: Missing[str] = Field(default=UNSET) code: str = Field() index: Missing[int] = Field(default=UNSET) - value: Missing[Union[str, None, int, None, list[str], None]] = Field(default=UNSET) + value: Missing[Union[str, None, int, list[str]]] = Field(default=UNSET) model_rebuild(ValidationError) diff --git a/githubkit/versions/v2022_11_28/models/group_0015.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0015.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0015.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0015.py diff --git a/githubkit/versions/v2022_11_28/models/group_0016.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0016.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0016.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0016.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0017.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0017.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0017.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0017.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0018.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0018.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0018.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0018.py diff --git a/githubkit/versions/v2022_11_28/models/group_0019.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0019.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0019.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0019.py diff --git a/githubkit/versions/v2022_11_28/models/group_0020.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0020.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0020.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0020.py diff --git a/githubkit/versions/v2022_11_28/models/group_0021.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0021.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0021.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0021.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0022.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0022.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0022.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0022.py diff --git a/githubkit/versions/v2022_11_28/models/group_0023.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0023.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0023.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0023.py diff --git a/githubkit/versions/v2022_11_28/models/group_0024.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0024.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0024.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0024.py diff --git a/githubkit/versions/v2022_11_28/models/group_0025.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0025.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0025.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0025.py diff --git a/githubkit/versions/v2022_11_28/models/group_0026.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0026.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0026.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0026.py diff --git a/githubkit/versions/v2022_11_28/models/group_0027.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0027.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0027.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0027.py diff --git a/githubkit/versions/v2022_11_28/models/group_0028.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0028.py similarity index 100% rename from githubkit/versions/v2022_11_28/models/group_0028.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0028.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0029.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0029.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0029.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0029.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0030.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0030.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0030.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0030.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0031.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0031.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0031.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0031.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0032.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0032.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0032.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0032.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0033.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0033.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0033.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0033.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0034.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0034.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0034.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0034.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0035.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0035.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0035.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0035.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0036.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0036.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0036.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0036.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0037.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0037.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0037.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0037.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0038.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0038.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0038.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0038.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0039.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0039.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0039.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0039.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0040.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0040.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0040.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0040.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0041.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0041.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0041.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0041.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0042.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0042.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0042.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0042.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0043.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0043.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0043.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0043.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0044.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0044.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0044.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0044.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0045.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0045.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0045.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0045.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0046.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0046.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0046.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0046.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0047.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0047.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0047.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0047.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0048.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0048.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0048.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0048.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0049.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0049.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0049.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0049.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0050.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0050.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0050.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0050.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0051.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0051.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0051.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0051.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0052.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0052.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0052.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0052.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0053.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0053.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0053.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0053.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0054.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0054.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0054.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0054.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0055.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0055.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0055.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0055.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0056.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0056.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0056.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0056.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0057.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0057.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0057.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0057.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0058.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0058.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0058.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0058.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0059.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0059.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0059.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0059.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0060.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0060.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0060.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0060.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0061.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0061.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0061.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0061.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0062.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0062.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0062.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0062.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0063.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0063.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0063.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0063.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0064.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0064.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0064.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0064.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0065.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0065.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0065.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0065.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0066.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0066.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0066.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0066.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0067.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0067.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0067.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0067.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0068.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0068.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0068.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0068.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0069.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0069.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0069.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0069.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0070.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0070.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0070.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0070.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0071.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0071.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0071.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0071.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0072.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0072.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0072.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0072.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0073.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0073.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0073.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0073.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0074.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0074.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0074.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0074.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0075.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0075.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0075.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0075.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0076.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0076.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0076.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0076.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0077.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0077.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0077.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0077.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0078.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0078.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0078.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0078.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0079.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0079.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0079.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0079.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0080.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0080.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0080.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0080.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0081.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0081.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0081.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0081.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0082.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0082.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0082.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0082.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0083.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0083.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0083.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0083.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0084.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0084.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0084.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0084.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0085.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0085.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0085.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0085.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0086.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0086.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0086.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0086.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0087.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0087.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0087.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0087.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0088.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0088.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0088.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0088.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0089.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0089.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0089.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0089.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0090.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0090.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0090.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0090.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0091.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0091.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0091.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0091.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0092.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0092.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0092.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0092.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0093.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0093.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0093.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0093.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0094.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0094.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0094.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0094.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0095.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0095.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0095.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0095.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0096.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0096.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0096.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0096.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0097.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0097.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0097.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0097.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0098.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0098.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0098.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0098.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0099.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0099.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0099.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0099.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0100.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0100.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0100.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0100.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0101.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0101.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0101.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0101.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0102.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0102.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0102.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0102.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0103.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0103.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0103.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0103.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0104.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0104.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0104.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0104.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0105.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0105.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0105.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0105.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0106.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0106.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0106.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0106.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0107.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0107.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0107.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0107.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0108.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0108.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0108.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0108.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0109.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0109.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0109.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0109.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0110.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0110.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0110.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0110.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0111.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0111.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0111.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0111.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0112.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0112.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0112.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0112.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0113.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0113.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0113.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0113.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0114.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0114.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0114.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0114.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0115.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0115.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0115.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0115.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0116.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0116.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0116.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0116.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0117.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0117.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0117.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0117.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0118.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0118.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0118.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0118.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0119.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0119.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0119.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0119.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0120.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0120.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0120.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0120.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0121.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0121.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0121.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0121.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0122.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0122.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0122.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0122.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0123.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0123.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0123.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0123.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0124.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0124.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0124.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0124.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0125.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0125.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0125.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0125.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0126.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0126.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0126.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0126.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0127.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0127.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0127.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0127.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0128.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0128.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0128.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0128.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0129.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0129.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0129.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0129.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0130.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0130.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0130.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0130.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0131.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0131.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0131.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0131.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0132.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0132.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0132.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0132.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0133.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0133.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0133.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0133.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0134.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0134.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0134.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0134.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0135.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0135.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0135.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0135.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0136.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0136.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0136.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0136.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0137.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0137.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0137.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0137.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0138.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0138.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0138.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0138.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0139.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0139.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0139.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0139.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0140.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0140.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0140.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0140.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0141.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0141.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0141.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0141.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0142.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0142.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0142.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0142.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0143.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0143.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0143.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0143.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0144.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0144.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0144.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0144.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0145.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0145.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0145.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0145.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0146.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0146.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0146.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0146.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0147.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0147.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0147.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0147.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0148.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0148.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0148.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0148.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0149.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0149.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0149.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0149.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0150.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0150.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0150.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0150.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0151.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0151.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0151.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0151.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0152.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0152.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0152.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0152.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0153.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0153.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0153.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0153.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0154.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0154.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0154.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0154.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0155.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0155.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0155.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0155.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0156.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0156.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0156.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0156.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0157.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0157.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0157.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0157.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0158.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0158.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0158.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0158.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0159.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0159.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0159.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0159.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0160.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0160.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0160.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0160.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0161.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0161.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0161.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0161.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0162.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0162.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0162.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0162.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0163.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0163.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0163.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0163.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0164.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0164.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0164.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0164.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0165.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0165.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0165.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0165.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0166.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0166.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0166.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0166.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0167.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0167.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0167.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0167.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0168.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0168.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0168.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0168.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0169.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0169.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0169.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0169.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0170.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0170.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0170.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0170.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0171.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0171.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0171.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0171.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0172.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0172.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0172.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0172.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0173.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0173.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0173.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0173.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0174.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0174.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0174.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0174.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0175.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0175.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0175.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0175.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0176.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0176.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0176.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0176.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0177.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0177.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0177.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0177.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0178.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0178.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0178.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0178.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0179.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0179.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0179.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0179.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0180.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0180.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0180.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0180.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0181.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0181.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0181.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0181.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0182.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0182.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0182.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0182.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0183.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0183.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0183.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0183.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0184.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0184.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0184.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0184.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0185.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0185.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0185.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0185.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0186.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0186.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0186.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0186.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0187.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0187.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0187.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0187.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0188.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0188.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0188.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0188.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0189.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0189.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0189.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0189.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0190.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0190.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0190.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0190.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0191.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0191.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0191.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0191.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0192.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0192.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0192.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0192.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0193.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0193.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0193.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0193.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0194.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0194.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0194.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0194.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0195.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0195.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0195.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0195.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0196.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0196.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0196.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0196.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0197.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0197.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0197.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0197.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0198.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0198.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0198.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0198.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0199.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0199.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0199.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0199.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0200.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0200.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0200.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0200.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0201.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0201.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0201.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0201.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0202.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0202.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0202.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0202.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0203.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0203.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0203.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0203.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0204.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0204.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0204.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0204.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0205.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0205.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0205.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0205.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0206.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0206.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0206.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0206.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0207.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0207.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0207.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0207.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0208.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0208.py similarity index 94% rename from githubkit/versions/ghec_v2022_11_28/models/group_0208.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0208.py index 24c975ea0a..a258544c8e 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0208.py +++ b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0208.py @@ -59,9 +59,7 @@ class IssueComment(GitHubModel): title="author_association", description="How the author is associated with the repository.", ) - performed_via_github_app: Missing[Union[None, Integration, None]] = Field( - default=UNSET - ) + performed_via_github_app: Missing[Union[None, Integration]] = Field(default=UNSET) reactions: Missing[ReactionRollup] = Field(default=UNSET, title="Reaction Rollup") pin: Missing[Union[None, PinnedIssueComment]] = Field(default=UNSET) diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0209.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0209.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0209.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0209.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0210.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0210.py similarity index 98% rename from githubkit/versions/ghec_v2022_11_28/models/group_0210.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0210.py index 4e1cf6c50a..680e899a9a 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0210.py +++ b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0210.py @@ -80,9 +80,7 @@ class Issue(GitHubModel): repository: Missing[Repository] = Field( default=UNSET, title="Repository", description="A repository on GitHub." ) - performed_via_github_app: Missing[Union[None, Integration, None]] = Field( - default=UNSET - ) + performed_via_github_app: Missing[Union[None, Integration]] = Field(default=UNSET) author_association: Missing[ Literal[ "COLLABORATOR", diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0211.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0211.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0211.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0211.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0212.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0212.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0212.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0212.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0213.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0213.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0213.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0213.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0214.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0214.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0214.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0214.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0215.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0215.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0215.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0215.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0216.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0216.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0216.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0216.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0217.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0217.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0217.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0217.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0218.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0218.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0218.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0218.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0219.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0219.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0219.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0219.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0220.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0220.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0220.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0220.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0221.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0221.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0221.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0221.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0222.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0222.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0222.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0222.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0223.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0223.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0223.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0223.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0224.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0224.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0224.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0224.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0225.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0225.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0225.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0225.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0226.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0226.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0226.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0226.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0227.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0227.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0227.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0227.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0228.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0228.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0228.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0228.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0229.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0229.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0229.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0229.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0230.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0230.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0230.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0230.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0231.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0231.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0231.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0231.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0232.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0232.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0232.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0232.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0233.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0233.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0233.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0233.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0234.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0234.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0234.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0234.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0235.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0235.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0235.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0235.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0236.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0236.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0236.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0236.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0237.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0237.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0237.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0237.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0238.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0238.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0238.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0238.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0239.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0239.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0239.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0239.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0240.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0240.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0240.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0240.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0241.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0241.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0241.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0241.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0242.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0242.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0242.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0242.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0243.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0243.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0243.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0243.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0244.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0244.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0244.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0244.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0245.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0245.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0245.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0245.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0246.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0246.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0246.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0246.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0247.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0247.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0247.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0247.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0248.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0248.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0248.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0248.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0249.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0249.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0249.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0249.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0250.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0250.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0250.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0250.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0251.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0251.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0251.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0251.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0252.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0252.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0252.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0252.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0253.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0253.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0253.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0253.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0254.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0254.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0254.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0254.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0255.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0255.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0255.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0255.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0256.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0256.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0256.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0256.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0257.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0257.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0257.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0257.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0258.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0258.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0258.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0258.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0259.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0259.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0259.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0259.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0260.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0260.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0260.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0260.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0261.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0261.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0261.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0261.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0262.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0262.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0262.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0262.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0263.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0263.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0263.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0263.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0264.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0264.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0264.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0264.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0265.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0265.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0265.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0265.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0266.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0266.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0266.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0266.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0267.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0267.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0267.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0267.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0268.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0268.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0268.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0268.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0269.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0269.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0269.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0269.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0270.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0270.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0270.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0270.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0271.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0271.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0271.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0271.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0272.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0272.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0272.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0272.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0273.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0273.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0273.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0273.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0274.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0274.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0274.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0274.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0275.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0275.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0275.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0275.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0276.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0276.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0276.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0276.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0277.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0277.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0277.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0277.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0278.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0278.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0278.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0278.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0279.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0279.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0279.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0279.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0280.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0280.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0280.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0280.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0281.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0281.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0281.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0281.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0282.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0282.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0282.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0282.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0283.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0283.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0283.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0283.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0284.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0284.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0284.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0284.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0285.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0285.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0285.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0285.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0286.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0286.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0286.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0286.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0287.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0287.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0287.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0287.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0288.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0288.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0288.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0288.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0289.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0289.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0289.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0289.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0290.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0290.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0290.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0290.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0291.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0291.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0291.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0291.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0292.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0292.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0292.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0292.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0293.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0293.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0293.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0293.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0294.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0294.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0294.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0294.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0295.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0295.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0295.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0295.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0296.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0296.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0296.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0296.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0297.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0297.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0297.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0297.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0298.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0298.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0298.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0298.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0299.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0299.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0299.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0299.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0300.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0300.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0300.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0300.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0301.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0301.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0301.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0301.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0302.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0302.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0302.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0302.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0303.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0303.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0303.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0303.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0304.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0304.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0304.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0304.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0305.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0305.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0305.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0305.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0306.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0306.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0306.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0306.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0307.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0307.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0307.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0307.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0308.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0308.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0308.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0308.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0309.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0309.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0309.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0309.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0310.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0310.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0310.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0310.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0311.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0311.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0311.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0311.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0312.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0312.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0312.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0312.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0313.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0313.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0313.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0313.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0314.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0314.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0314.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0314.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0315.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0315.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0315.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0315.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0316.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0316.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0316.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0316.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0317.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0317.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0317.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0317.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0318.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0318.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0318.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0318.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0319.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0319.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0319.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0319.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0320.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0320.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0320.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0320.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0321.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0321.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0321.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0321.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0322.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0322.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0322.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0322.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0323.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0323.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0323.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0323.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0324.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0324.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0324.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0324.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0325.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0325.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0325.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0325.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0326.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0326.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0326.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0326.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0327.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0327.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0327.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0327.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0328.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0328.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0328.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0328.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0329.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0329.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0329.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0329.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0330.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0330.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0330.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0330.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0331.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0331.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0331.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0331.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0332.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0332.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0332.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0332.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0333.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0333.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0333.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0333.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0334.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0334.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0334.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0334.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0335.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0335.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0335.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0335.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0336.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0336.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0336.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0336.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0337.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0337.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0337.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0337.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0338.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0338.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0338.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0338.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0339.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0339.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0339.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0339.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0340.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0340.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0340.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0340.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0341.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0341.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0341.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0341.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0342.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0342.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0342.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0342.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0343.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0343.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0343.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0343.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0344.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0344.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0344.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0344.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0345.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0345.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0345.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0345.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0346.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0346.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0346.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0346.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0347.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0347.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0347.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0347.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0348.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0348.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0348.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0348.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0349.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0349.py similarity index 95% rename from githubkit/versions/ghec_v2022_11_28/models/group_0349.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0349.py index 95359f3748..986961f173 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0349.py +++ b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0349.py @@ -53,9 +53,7 @@ class Deployment(GitHubModel): default=UNSET, description="Specifies if the given environment is one that end-users directly interact with. Default: false.", ) - performed_via_github_app: Missing[Union[None, Integration, None]] = Field( - default=UNSET - ) + performed_via_github_app: Missing[Union[None, Integration]] = Field(default=UNSET) class DeploymentPropPayloadOneof0(ExtraGitHubModel): diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0350.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0350.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0350.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0350.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0351.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0351.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0351.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0351.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0352.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0352.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0352.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0352.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0353.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0353.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0353.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0353.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0354.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0354.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0354.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0354.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0355.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0355.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0355.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0355.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0356.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0356.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0356.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0356.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0357.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0357.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0357.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0357.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0358.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0358.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0358.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0358.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0359.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0359.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0359.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0359.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0360.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0360.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0360.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0360.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0361.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0361.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0361.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0361.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0362.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0362.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0362.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0362.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0363.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0363.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0363.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0363.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0364.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0364.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0364.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0364.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0365.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0365.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0365.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0365.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0366.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0366.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0366.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0366.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0367.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0367.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0367.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0367.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0368.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0368.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0368.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0368.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0369.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0369.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0369.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0369.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0370.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0370.py similarity index 94% rename from githubkit/versions/ghec_v2022_11_28/models/group_0370.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0370.py index 19eaea59f7..f16ebab022 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0370.py +++ b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0370.py @@ -47,9 +47,7 @@ class DeploymentSimple(GitHubModel): default=UNSET, description="Specifies if the given environment is one that end-users directly interact with. Default: false.", ) - performed_via_github_app: Missing[Union[None, Integration, None]] = Field( - default=UNSET - ) + performed_via_github_app: Missing[Union[None, Integration]] = Field(default=UNSET) model_rebuild(DeploymentSimple) diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0371.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0371.py similarity index 98% rename from githubkit/versions/ghec_v2022_11_28/models/group_0371.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0371.py index af0c0531d1..cfa8c5947a 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0371.py +++ b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0371.py @@ -58,7 +58,7 @@ class CheckRun(GitHubModel): output: CheckRunPropOutput = Field() name: str = Field(description="The name of the check.") check_suite: Union[CheckRunPropCheckSuite, None] = Field() - app: Union[None, Integration, None] = Field() + app: Union[None, Integration] = Field() pull_requests: list[PullRequestMinimal] = Field( description="Pull requests that are open with a `head_sha` or `head_branch` that matches the check. The returned pull requests do not necessarily indicate pull requests that triggered the check." ) diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0372.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0372.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0372.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0372.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0373.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0373.py similarity index 98% rename from githubkit/versions/ghec_v2022_11_28/models/group_0373.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0373.py index 93fd45415b..9cd16bbf23 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0373.py +++ b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0373.py @@ -62,7 +62,7 @@ class CheckSuite(GitHubModel): before: Union[str, None] = Field() after: Union[str, None] = Field() pull_requests: Union[list[PullRequestMinimal], None] = Field() - app: Union[None, Integration, None] = Field() + app: Union[None, Integration] = Field() repository: MinimalRepository = Field( title="Minimal Repository", description="Minimal Repository" ) diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0374.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0374.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0374.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0374.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0375.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0375.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0375.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0375.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0376.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0376.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0376.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0376.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0377.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0377.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0377.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0377.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0378.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0378.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0378.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0378.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0379.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0379.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0379.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0379.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0380.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0380.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0380.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0380.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0381.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0381.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0381.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0381.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0382.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0382.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0382.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0382.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0383.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0383.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0383.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0383.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0384.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0384.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0384.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0384.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0385.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0385.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0385.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0385.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0386.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0386.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0386.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0386.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0387.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0387.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0387.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0387.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0388.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0388.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0388.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0388.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0389.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0389.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0389.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0389.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0390.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0390.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0390.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0390.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0391.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0391.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0391.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0391.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0392.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0392.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0392.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0392.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0393.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0393.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0393.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0393.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0394.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0394.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0394.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0394.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0395.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0395.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0395.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0395.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0396.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0396.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0396.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0396.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0397.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0397.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0397.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0397.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0398.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0398.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0398.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0398.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0399.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0399.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0399.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0399.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0400.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0400.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0400.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0400.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0401.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0401.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0401.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0401.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0402.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0402.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0402.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0402.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0403.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0403.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0403.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0403.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0404.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0404.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0404.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0404.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0405.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0405.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0405.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0405.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0406.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0406.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0406.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0406.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0407.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0407.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0407.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0407.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0408.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0408.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0408.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0408.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0409.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0409.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0409.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0409.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0410.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0410.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0410.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0410.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0411.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0411.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0411.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0411.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0412.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0412.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0412.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0412.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0413.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0413.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0413.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0413.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0414.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0414.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0414.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0414.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0415.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0415.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0415.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0415.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0416.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0416.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0416.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0416.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0417.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0417.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0417.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0417.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0418.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0418.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0418.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0418.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0419.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0419.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0419.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0419.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0420.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0420.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0420.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0420.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0421.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0421.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0421.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0421.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0422.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0422.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0422.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0422.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0423.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0423.py similarity index 94% rename from githubkit/versions/ghec_v2022_11_28/models/group_0423.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0423.py index 4329e238bc..d886fb6755 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0423.py +++ b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0423.py @@ -56,9 +56,7 @@ class DeploymentStatus(GitHubModel): log_url: Missing[str] = Field( default=UNSET, description="The URL to associate with this status." ) - performed_via_github_app: Missing[Union[None, Integration, None]] = Field( - default=UNSET - ) + performed_via_github_app: Missing[Union[None, Integration]] = Field(default=UNSET) model_rebuild(DeploymentStatus) diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0424.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0424.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0424.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0424.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0425.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0425.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0425.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0425.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0426.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0426.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0426.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0426.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0427.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0427.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0427.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0427.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0428.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0428.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0428.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0428.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0429.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0429.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0429.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0429.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0430.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0430.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0430.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0430.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0431.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0431.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0431.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0431.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0432.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0432.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0432.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0432.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0433.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0433.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0433.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0433.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0434.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0434.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0434.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0434.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0435.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0435.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0435.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0435.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0436.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0436.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0436.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0436.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0437.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0437.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0437.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0437.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0438.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0438.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0438.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0438.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0439.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0439.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0439.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0439.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0440.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0440.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0440.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0440.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0441.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0441.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0441.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0441.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0442.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0442.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0442.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0442.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0443.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0443.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0443.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0443.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0444.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0444.py similarity index 97% rename from githubkit/versions/ghec_v2022_11_28/models/group_0444.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0444.py index a2d838831d..1b5368f29c 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0444.py +++ b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0444.py @@ -84,9 +84,7 @@ class IssueEvent(GitHubModel): description="How the author is associated with the repository.", ) lock_reason: Missing[Union[str, None]] = Field(default=UNSET) - performed_via_github_app: Missing[Union[None, Integration, None]] = Field( - default=UNSET - ) + performed_via_github_app: Missing[Union[None, Integration]] = Field(default=UNSET) class IssueEventLabel(GitHubModel): diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0445.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0445.py similarity index 94% rename from githubkit/versions/ghec_v2022_11_28/models/group_0445.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0445.py index 3ec22fb630..f62792ffa1 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0445.py +++ b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0445.py @@ -33,7 +33,7 @@ class LabeledIssueEvent(GitHubModel): commit_id: Union[str, None] = Field() commit_url: Union[str, None] = Field() created_at: str = Field() - performed_via_github_app: Union[None, Integration, None] = Field() + performed_via_github_app: Union[None, Integration] = Field() label: LabeledIssueEventPropLabel = Field() diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0446.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0446.py similarity index 94% rename from githubkit/versions/ghec_v2022_11_28/models/group_0446.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0446.py index 695ea4a4eb..f949ecf726 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0446.py +++ b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0446.py @@ -33,7 +33,7 @@ class UnlabeledIssueEvent(GitHubModel): commit_id: Union[str, None] = Field() commit_url: Union[str, None] = Field() created_at: str = Field() - performed_via_github_app: Union[None, Integration, None] = Field() + performed_via_github_app: Union[None, Integration] = Field() label: UnlabeledIssueEventPropLabel = Field() diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0447.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0447.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0447.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0447.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0448.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0448.py similarity index 93% rename from githubkit/versions/ghec_v2022_11_28/models/group_0448.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0448.py index d36e83286a..9fcb9db594 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0448.py +++ b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0448.py @@ -33,7 +33,7 @@ class UnassignedIssueEvent(GitHubModel): commit_id: Union[str, None] = Field() commit_url: Union[str, None] = Field() created_at: str = Field() - performed_via_github_app: Union[None, Integration, None] = Field() + performed_via_github_app: Union[None, Integration] = Field() assignee: SimpleUser = Field(title="Simple User", description="A GitHub user.") assigner: SimpleUser = Field(title="Simple User", description="A GitHub user.") diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0449.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0449.py similarity index 94% rename from githubkit/versions/ghec_v2022_11_28/models/group_0449.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0449.py index 734796d8a5..6f795ed55c 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0449.py +++ b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0449.py @@ -33,7 +33,7 @@ class MilestonedIssueEvent(GitHubModel): commit_id: Union[str, None] = Field() commit_url: Union[str, None] = Field() created_at: str = Field() - performed_via_github_app: Union[None, Integration, None] = Field() + performed_via_github_app: Union[None, Integration] = Field() milestone: MilestonedIssueEventPropMilestone = Field() diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0450.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0450.py similarity index 94% rename from githubkit/versions/ghec_v2022_11_28/models/group_0450.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0450.py index 1b03cd99a5..c9224cbb54 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0450.py +++ b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0450.py @@ -33,7 +33,7 @@ class DemilestonedIssueEvent(GitHubModel): commit_id: Union[str, None] = Field() commit_url: Union[str, None] = Field() created_at: str = Field() - performed_via_github_app: Union[None, Integration, None] = Field() + performed_via_github_app: Union[None, Integration] = Field() milestone: DemilestonedIssueEventPropMilestone = Field() diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0451.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0451.py similarity index 94% rename from githubkit/versions/ghec_v2022_11_28/models/group_0451.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0451.py index 234895caf4..c09adc19c9 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0451.py +++ b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0451.py @@ -33,7 +33,7 @@ class RenamedIssueEvent(GitHubModel): commit_id: Union[str, None] = Field() commit_url: Union[str, None] = Field() created_at: str = Field() - performed_via_github_app: Union[None, Integration, None] = Field() + performed_via_github_app: Union[None, Integration] = Field() rename: RenamedIssueEventPropRename = Field() diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0452.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0452.py similarity index 95% rename from githubkit/versions/ghec_v2022_11_28/models/group_0452.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0452.py index fde0f0f700..fae31646cd 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0452.py +++ b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0452.py @@ -36,7 +36,7 @@ class ReviewRequestedIssueEvent(GitHubModel): commit_id: Union[str, None] = Field() commit_url: Union[str, None] = Field() created_at: str = Field() - performed_via_github_app: Union[None, Integration, None] = Field() + performed_via_github_app: Union[None, Integration] = Field() review_requester: SimpleUser = Field( title="Simple User", description="A GitHub user." ) diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0453.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0453.py similarity index 95% rename from githubkit/versions/ghec_v2022_11_28/models/group_0453.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0453.py index 8b3e66e7ad..e53058cbd1 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0453.py +++ b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0453.py @@ -36,7 +36,7 @@ class ReviewRequestRemovedIssueEvent(GitHubModel): commit_id: Union[str, None] = Field() commit_url: Union[str, None] = Field() created_at: str = Field() - performed_via_github_app: Union[None, Integration, None] = Field() + performed_via_github_app: Union[None, Integration] = Field() review_requester: SimpleUser = Field( title="Simple User", description="A GitHub user." ) diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0454.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0454.py similarity index 95% rename from githubkit/versions/ghec_v2022_11_28/models/group_0454.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0454.py index bc686e09d6..cc4a94a56f 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0454.py +++ b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0454.py @@ -35,7 +35,7 @@ class ReviewDismissedIssueEvent(GitHubModel): commit_id: Union[str, None] = Field() commit_url: Union[str, None] = Field() created_at: str = Field() - performed_via_github_app: Union[None, Integration, None] = Field() + performed_via_github_app: Union[None, Integration] = Field() dismissed_review: ReviewDismissedIssueEventPropDismissedReview = Field() diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0455.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0455.py similarity index 93% rename from githubkit/versions/ghec_v2022_11_28/models/group_0455.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0455.py index e0130f1522..c47c1c3352 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0455.py +++ b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0455.py @@ -33,7 +33,7 @@ class LockedIssueEvent(GitHubModel): commit_id: Union[str, None] = Field() commit_url: Union[str, None] = Field() created_at: str = Field() - performed_via_github_app: Union[None, Integration, None] = Field() + performed_via_github_app: Union[None, Integration] = Field() lock_reason: Union[str, None] = Field() diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0456.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0456.py similarity index 95% rename from githubkit/versions/ghec_v2022_11_28/models/group_0456.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0456.py index cf2b6b5f8f..e3c6fb1be8 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0456.py +++ b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0456.py @@ -35,7 +35,7 @@ class AddedToProjectIssueEvent(GitHubModel): commit_id: Union[str, None] = Field() commit_url: Union[str, None] = Field() created_at: str = Field() - performed_via_github_app: Union[None, Integration, None] = Field() + performed_via_github_app: Union[None, Integration] = Field() project_card: Missing[AddedToProjectIssueEventPropProjectCard] = Field( default=UNSET ) diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0457.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0457.py similarity index 95% rename from githubkit/versions/ghec_v2022_11_28/models/group_0457.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0457.py index 5d2b15f176..04b216df30 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0457.py +++ b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0457.py @@ -35,7 +35,7 @@ class MovedColumnInProjectIssueEvent(GitHubModel): commit_id: Union[str, None] = Field() commit_url: Union[str, None] = Field() created_at: str = Field() - performed_via_github_app: Union[None, Integration, None] = Field() + performed_via_github_app: Union[None, Integration] = Field() project_card: Missing[MovedColumnInProjectIssueEventPropProjectCard] = Field( default=UNSET ) diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0458.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0458.py similarity index 95% rename from githubkit/versions/ghec_v2022_11_28/models/group_0458.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0458.py index 3bd6fbf406..d935784e81 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0458.py +++ b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0458.py @@ -35,7 +35,7 @@ class RemovedFromProjectIssueEvent(GitHubModel): commit_id: Union[str, None] = Field() commit_url: Union[str, None] = Field() created_at: str = Field() - performed_via_github_app: Union[None, Integration, None] = Field() + performed_via_github_app: Union[None, Integration] = Field() project_card: Missing[RemovedFromProjectIssueEventPropProjectCard] = Field( default=UNSET ) diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0459.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0459.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0459.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0459.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0460.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0460.py similarity index 94% rename from githubkit/versions/ghec_v2022_11_28/models/group_0460.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0460.py index e7e0dd279b..f7faa435e9 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0460.py +++ b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0460.py @@ -58,9 +58,7 @@ class TimelineCommentEvent(GitHubModel): title="author_association", description="How the author is associated with the repository.", ) - performed_via_github_app: Missing[Union[None, Integration, None]] = Field( - default=UNSET - ) + performed_via_github_app: Missing[Union[None, Integration]] = Field(default=UNSET) reactions: Missing[ReactionRollup] = Field(default=UNSET, title="Reaction Rollup") pin: Missing[Union[None, PinnedIssueComment]] = Field(default=UNSET) diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0461.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0461.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0461.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0461.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0462.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0462.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0462.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0462.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0463.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0463.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0463.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0463.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0464.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0464.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0464.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0464.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0465.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0465.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0465.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0465.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0466.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0466.py similarity index 93% rename from githubkit/versions/ghec_v2022_11_28/models/group_0466.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0466.py index c45a39f8c0..4c346d16a7 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0466.py +++ b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0466.py @@ -33,7 +33,7 @@ class TimelineAssignedIssueEvent(GitHubModel): commit_id: Union[str, None] = Field() commit_url: Union[str, None] = Field() created_at: str = Field() - performed_via_github_app: Union[None, Integration, None] = Field() + performed_via_github_app: Union[None, Integration] = Field() assignee: SimpleUser = Field(title="Simple User", description="A GitHub user.") diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0467.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0467.py similarity index 93% rename from githubkit/versions/ghec_v2022_11_28/models/group_0467.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0467.py index 420f91c260..1345ff8005 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0467.py +++ b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0467.py @@ -33,7 +33,7 @@ class TimelineUnassignedIssueEvent(GitHubModel): commit_id: Union[str, None] = Field() commit_url: Union[str, None] = Field() created_at: str = Field() - performed_via_github_app: Union[None, Integration, None] = Field() + performed_via_github_app: Union[None, Integration] = Field() assignee: SimpleUser = Field(title="Simple User", description="A GitHub user.") diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0468.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0468.py similarity index 93% rename from githubkit/versions/ghec_v2022_11_28/models/group_0468.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0468.py index 799278e566..2f31082e88 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0468.py +++ b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0468.py @@ -35,7 +35,7 @@ class StateChangeIssueEvent(GitHubModel): commit_id: Union[str, None] = Field() commit_url: Union[str, None] = Field() created_at: str = Field() - performed_via_github_app: Union[None, Integration, None] = Field() + performed_via_github_app: Union[None, Integration] = Field() state_reason: Missing[Union[str, None]] = Field(default=UNSET) diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0469.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0469.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0469.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0469.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0470.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0470.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0470.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0470.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0471.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0471.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0471.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0471.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0472.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0472.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0472.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0472.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0473.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0473.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0473.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0473.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0474.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0474.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0474.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0474.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0475.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0475.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0475.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0475.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0476.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0476.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0476.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0476.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0477.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0477.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0477.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0477.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0478.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0478.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0478.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0478.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0479.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0479.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0479.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0479.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0480.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0480.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0480.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0480.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0481.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0481.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0481.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0481.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0482.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0482.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0482.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0482.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0483.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0483.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0483.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0483.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0484.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0484.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0484.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0484.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0485.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0485.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0485.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0485.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0486.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0486.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0486.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0486.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0487.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0487.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0487.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0487.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0488.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0488.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0488.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0488.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0489.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0489.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0489.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0489.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0490.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0490.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0490.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0490.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0491.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0491.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0491.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0491.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0492.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0492.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0492.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0492.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0493.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0493.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0493.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0493.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0494.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0494.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0494.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0494.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0495.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0495.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0495.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0495.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0496.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0496.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0496.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0496.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0497.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0497.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0497.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0497.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0498.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0498.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0498.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0498.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0499.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0499.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0499.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0499.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0500.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0500.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0500.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0500.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0501.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0501.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0501.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0501.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0502.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0502.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0502.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0502.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0503.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0503.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0503.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0503.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0504.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0504.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0504.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0504.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0505.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0505.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0505.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0505.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0506.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0506.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0506.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0506.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0507.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0507.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0507.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0507.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0508.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0508.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0508.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0508.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0509.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0509.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0509.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0509.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0510.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0510.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0510.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0510.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0511.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0511.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0511.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0511.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0512.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0512.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0512.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0512.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0513.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0513.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0513.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0513.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0514.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0514.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0514.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0514.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0515.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0515.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0515.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0515.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0516.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0516.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0516.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0516.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0517.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0517.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0517.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0517.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0518.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0518.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0518.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0518.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0519.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0519.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0519.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0519.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0520.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0520.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0520.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0520.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0521.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0521.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0521.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0521.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0522.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0522.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0522.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0522.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0523.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0523.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0523.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0523.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0524.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0524.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0524.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0524.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0525.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0525.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0525.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0525.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0526.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0526.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0526.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0526.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0527.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0527.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0527.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0527.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0528.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0528.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0528.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0528.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0529.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0529.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0529.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0529.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0530.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0530.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0530.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0530.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0531.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0531.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0531.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0531.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0532.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0532.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0532.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0532.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0533.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0533.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0533.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0533.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0534.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0534.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0534.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0534.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0535.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0535.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0535.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0535.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0536.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0536.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0536.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0536.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0537.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0537.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0537.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0537.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0538.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0538.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0538.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0538.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0539.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0539.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0539.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0539.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0540.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0540.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0540.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0540.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0541.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0541.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0541.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0541.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0542.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0542.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0542.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0542.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0543.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0543.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0543.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0543.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0544.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0544.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0544.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0544.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0545.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0545.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0545.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0545.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0546.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0546.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0546.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0546.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0547.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0547.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0547.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0547.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0548.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0548.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0548.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0548.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0549.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0549.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0549.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0549.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0550.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0550.py similarity index 98% rename from githubkit/versions/ghec_v2022_11_28/models/group_0550.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0550.py index 1747056542..f4ae41cf24 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0550.py +++ b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0550.py @@ -95,9 +95,7 @@ class IssueSearchResultItem(GitHubModel): type: Missing[Union[IssueType, None]] = Field( default=UNSET, title="Issue Type", description="The type of issue." ) - performed_via_github_app: Missing[Union[None, Integration, None]] = Field( - default=UNSET - ) + performed_via_github_app: Missing[Union[None, Integration]] = Field(default=UNSET) pinned_comment: Missing[Union[None, IssueComment]] = Field(default=UNSET) reactions: Missing[ReactionRollup] = Field(default=UNSET, title="Reaction Rollup") diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0551.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0551.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0551.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0551.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0552.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0552.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0552.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0552.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0553.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0553.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0553.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0553.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0554.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0554.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0554.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0554.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0555.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0555.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0555.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0555.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0556.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0556.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0556.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0556.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0557.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0557.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0557.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0557.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0558.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0558.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0558.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0558.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0559.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0559.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0559.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0559.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0560.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0560.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0560.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0560.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0561.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0561.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0561.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0561.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0562.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0562.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0562.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0562.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0563.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0563.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0563.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0563.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0564.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0564.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0564.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0564.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0565.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0565.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0565.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0565.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0566.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0566.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0566.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0566.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0567.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0567.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0567.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0567.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0568.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0568.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0568.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0568.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0569.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0569.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0569.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0569.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0570.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0570.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0570.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0570.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0571.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0571.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0571.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0571.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0572.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0572.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0572.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0572.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0573.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0573.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0573.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0573.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0574.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0574.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0574.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0574.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0575.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0575.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0575.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0575.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0576.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0576.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0576.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0576.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0577.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0577.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0577.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0577.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0578.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0578.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0578.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0578.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0579.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0579.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0579.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0579.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0580.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0580.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0580.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0580.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0581.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0581.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0581.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0581.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0582.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0582.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0582.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0582.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0583.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0583.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0583.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0583.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0584.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0584.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0584.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0584.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0585.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0585.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0585.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0585.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0586.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0586.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0586.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0586.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0587.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0587.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0587.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0587.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0588.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0588.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0588.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0588.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0589.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0589.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0589.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0589.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0590.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0590.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0590.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0590.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0591.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0591.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0591.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0591.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0592.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0592.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0592.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0592.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0593.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0593.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0593.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0593.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0594.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0594.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0594.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0594.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0595.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0595.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0595.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0595.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0596.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0596.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0596.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0596.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0597.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0597.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0597.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0597.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0598.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0598.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0598.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0598.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0599.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0599.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0599.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0599.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0600.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0600.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0600.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0600.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0601.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0601.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0601.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0601.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0602.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0602.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0602.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0602.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0603.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0603.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0603.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0603.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0604.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0604.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0604.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0604.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0605.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0605.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0605.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0605.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0606.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0606.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0606.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0606.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0607.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0607.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0607.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0607.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0608.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0608.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0608.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0608.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0609.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0609.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0609.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0609.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0610.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0610.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0610.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0610.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0611.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0611.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0611.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0611.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0612.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0612.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0612.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0612.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0613.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0613.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0613.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0613.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0614.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0614.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0614.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0614.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0615.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0615.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0615.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0615.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0616.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0616.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0616.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0616.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0617.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0617.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0617.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0617.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0618.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0618.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0618.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0618.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0619.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0619.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0619.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0619.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0620.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0620.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0620.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0620.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0621.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0621.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0621.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0621.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0622.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0622.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0622.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0622.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0623.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0623.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0623.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0623.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0624.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0624.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0624.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0624.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0625.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0625.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0625.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0625.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0626.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0626.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0626.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0626.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0627.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0627.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0627.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0627.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0628.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0628.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0628.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0628.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0629.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0629.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0629.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0629.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0630.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0630.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0630.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0630.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0631.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0631.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0631.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0631.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0632.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0632.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0632.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0632.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0633.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0633.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0633.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0633.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0634.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0634.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0634.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0634.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0635.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0635.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0635.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0635.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0636.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0636.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0636.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0636.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0637.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0637.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0637.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0637.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0638.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0638.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0638.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0638.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0639.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0639.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0639.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0639.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0640.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0640.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0640.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0640.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0641.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0641.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0641.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0641.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0642.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0642.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0642.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0642.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0643.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0643.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0643.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0643.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0644.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0644.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0644.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0644.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0645.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0645.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0645.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0645.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0646.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0646.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0646.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0646.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0647.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0647.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0647.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0647.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0648.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0648.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0648.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0648.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0649.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0649.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0649.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0649.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0650.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0650.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0650.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0650.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0651.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0651.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0651.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0651.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0652.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0652.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0652.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0652.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0653.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0653.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0653.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0653.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0654.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0654.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0654.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0654.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0655.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0655.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0655.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0655.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0656.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0656.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0656.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0656.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0657.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0657.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0657.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0657.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0658.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0658.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0658.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0658.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0659.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0659.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0659.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0659.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0660.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0660.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0660.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0660.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0661.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0661.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0661.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0661.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0662.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0662.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0662.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0662.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0663.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0663.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0663.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0663.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0664.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0664.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0664.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0664.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0665.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0665.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0665.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0665.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0666.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0666.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0666.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0666.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0667.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0667.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0667.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0667.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0668.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0668.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0668.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0668.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0669.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0669.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0669.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0669.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0670.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0670.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0670.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0670.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0671.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0671.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0671.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0671.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0672.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0672.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0672.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0672.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0673.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0673.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0673.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0673.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0674.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0674.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0674.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0674.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0675.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0675.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0675.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0675.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0676.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0676.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0676.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0676.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0677.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0677.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0677.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0677.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0678.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0678.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0678.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0678.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0679.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0679.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0679.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0679.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0680.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0680.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0680.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0680.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0681.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0681.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0681.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0681.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0682.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0682.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0682.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0682.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0683.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0683.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0683.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0683.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0684.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0684.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0684.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0684.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0685.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0685.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0685.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0685.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0686.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0686.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0686.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0686.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0687.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0687.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0687.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0687.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0688.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0688.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0688.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0688.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0689.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0689.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0689.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0689.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0690.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0690.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0690.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0690.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0691.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0691.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0691.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0691.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0692.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0692.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0692.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0692.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0693.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0693.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0693.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0693.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0694.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0694.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0694.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0694.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0695.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0695.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0695.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0695.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0696.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0696.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0696.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0696.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0697.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0697.py similarity index 98% rename from githubkit/versions/ghec_v2022_11_28/models/group_0697.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0697.py index fbd7fdb4fe..b3e3622aee 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0697.py +++ b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0697.py @@ -65,7 +65,7 @@ class WebhookForkPropForkee(GitHubModel): description="Whether to delete head branches when pull requests are merged", ) deployments_url: str = Field() - description: Union[Union[str, None], None] = Field() + description: Union[str, None] = Field() disabled: Missing[bool] = Field( default=UNSET, description="Returns whether or not this repository is disabled." ) @@ -89,7 +89,7 @@ class WebhookForkPropForkee(GitHubModel): default=True, description="Whether projects are enabled." ) has_wiki: bool = Field(default=True, description="Whether the wiki is enabled.") - homepage: Union[Union[str, None], None] = Field() + homepage: Union[str, None] = Field() hooks_url: str = Field() html_url: str = Field() id: int = Field(description="Unique identifier of the repository") diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0698.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0698.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0698.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0698.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0699.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0699.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0699.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0699.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0700.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0700.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0700.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0700.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0701.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0701.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0701.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0701.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0702.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0702.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0702.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0702.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0703.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0703.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0703.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0703.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0704.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0704.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0704.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0704.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0705.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0705.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0705.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0705.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0706.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0706.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0706.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0706.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0707.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0707.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0707.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0707.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0708.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0708.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0708.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0708.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0709.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0709.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0709.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0709.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0710.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0710.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0710.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0710.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0711.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0711.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0711.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0711.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0712.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0712.py similarity index 98% rename from githubkit/versions/ghec_v2022_11_28/models/group_0712.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0712.py index 7d3b043546..a2ada20b5c 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0712.py +++ b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0712.py @@ -48,7 +48,7 @@ class WebhookIssueCommentCreatedPropComment(GitHubModel): id: int = Field(description="Unique identifier of the issue comment") issue_url: str = Field() node_id: str = Field() - performed_via_github_app: Union[None, Integration, None] = Field() + performed_via_github_app: Union[None, Integration] = Field() reactions: WebhookIssueCommentCreatedPropCommentPropReactions = Field( title="Reactions" ) diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0713.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0713.py similarity index 97% rename from githubkit/versions/ghec_v2022_11_28/models/group_0713.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0713.py index 8ecda9346a..17f57d4c92 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0713.py +++ b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0713.py @@ -39,9 +39,9 @@ class WebhookIssueCommentCreatedPropIssue(GitHubModel): active_lock_reason: Union[ Literal["resolved", "off-topic", "too heated", "spam"], None ] = Field() - assignee: Union[ - Union[WebhookIssueCommentCreatedPropIssueAllof0PropAssignee, None], None - ] = Field(title="User") + assignee: Union[WebhookIssueCommentCreatedPropIssueAllof0PropAssignee, None] = ( + Field(title="User") + ) assignees: list[WebhookIssueCommentCreatedPropIssueMergedAssignees] = Field() author_association: Literal[ "COLLABORATOR", @@ -56,7 +56,7 @@ class WebhookIssueCommentCreatedPropIssue(GitHubModel): title="AuthorAssociation", description="How the author is associated with the repository.", ) - body: Union[Union[str, None], None] = Field(description="Contents of the issue") + body: Union[str, None] = Field(description="Contents of the issue") closed_at: Union[_dt.datetime, None] = Field() comments: int = Field() comments_url: str = Field() diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0714.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0714.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0714.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0714.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0715.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0715.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0715.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0715.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0716.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0716.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0716.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0716.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0717.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0717.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0717.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0717.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0718.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0718.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0718.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0718.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0719.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0719.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0719.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0719.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0720.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0720.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0720.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0720.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0721.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0721.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0721.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0721.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0722.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0722.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0722.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0722.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0723.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0723.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0723.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0723.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0724.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0724.py similarity index 97% rename from githubkit/versions/ghec_v2022_11_28/models/group_0724.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0724.py index ab1e2a3308..8de1206d37 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0724.py +++ b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0724.py @@ -39,9 +39,9 @@ class WebhookIssueCommentDeletedPropIssue(GitHubModel): active_lock_reason: Union[ Literal["resolved", "off-topic", "too heated", "spam"], None ] = Field() - assignee: Union[ - Union[WebhookIssueCommentDeletedPropIssueAllof0PropAssignee, None], None - ] = Field(title="User") + assignee: Union[WebhookIssueCommentDeletedPropIssueAllof0PropAssignee, None] = ( + Field(title="User") + ) assignees: list[WebhookIssueCommentDeletedPropIssueMergedAssignees] = Field() author_association: Literal[ "COLLABORATOR", @@ -56,7 +56,7 @@ class WebhookIssueCommentDeletedPropIssue(GitHubModel): title="AuthorAssociation", description="How the author is associated with the repository.", ) - body: Union[Union[str, None], None] = Field(description="Contents of the issue") + body: Union[str, None] = Field(description="Contents of the issue") closed_at: Union[_dt.datetime, None] = Field() comments: int = Field() comments_url: str = Field() diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0725.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0725.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0725.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0725.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0726.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0726.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0726.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0726.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0727.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0727.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0727.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0727.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0728.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0728.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0728.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0728.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0729.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0729.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0729.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0729.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0730.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0730.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0730.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0730.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0731.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0731.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0731.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0731.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0732.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0732.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0732.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0732.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0733.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0733.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0733.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0733.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0734.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0734.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0734.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0734.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0735.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0735.py similarity index 97% rename from githubkit/versions/ghec_v2022_11_28/models/group_0735.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0735.py index dec41e553e..e238c4ab8d 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0735.py +++ b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0735.py @@ -39,9 +39,9 @@ class WebhookIssueCommentEditedPropIssue(GitHubModel): active_lock_reason: Union[ Literal["resolved", "off-topic", "too heated", "spam"], None ] = Field() - assignee: Union[ - Union[WebhookIssueCommentEditedPropIssueAllof0PropAssignee, None], None - ] = Field(title="User") + assignee: Union[WebhookIssueCommentEditedPropIssueAllof0PropAssignee, None] = Field( + title="User" + ) assignees: list[WebhookIssueCommentEditedPropIssueMergedAssignees] = Field() author_association: Literal[ "COLLABORATOR", @@ -56,7 +56,7 @@ class WebhookIssueCommentEditedPropIssue(GitHubModel): title="AuthorAssociation", description="How the author is associated with the repository.", ) - body: Union[Union[str, None], None] = Field(description="Contents of the issue") + body: Union[str, None] = Field(description="Contents of the issue") closed_at: Union[_dt.datetime, None] = Field() comments: int = Field() comments_url: str = Field() diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0736.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0736.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0736.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0736.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0737.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0737.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0737.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0737.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0738.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0738.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0738.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0738.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0739.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0739.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0739.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0739.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0740.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0740.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0740.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0740.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0741.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0741.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0741.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0741.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0742.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0742.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0742.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0742.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0743.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0743.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0743.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0743.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0744.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0744.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0744.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0744.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0745.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0745.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0745.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0745.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0746.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0746.py similarity index 97% rename from githubkit/versions/ghec_v2022_11_28/models/group_0746.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0746.py index 4abe3fb2d5..202af7e604 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0746.py +++ b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0746.py @@ -39,9 +39,9 @@ class WebhookIssueCommentPinnedPropIssue(GitHubModel): active_lock_reason: Union[ Literal["resolved", "off-topic", "too heated", "spam"], None ] = Field() - assignee: Union[ - Union[WebhookIssueCommentPinnedPropIssueAllof0PropAssignee, None], None - ] = Field(title="User") + assignee: Union[WebhookIssueCommentPinnedPropIssueAllof0PropAssignee, None] = Field( + title="User" + ) assignees: list[WebhookIssueCommentPinnedPropIssueMergedAssignees] = Field() author_association: Literal[ "COLLABORATOR", @@ -56,7 +56,7 @@ class WebhookIssueCommentPinnedPropIssue(GitHubModel): title="AuthorAssociation", description="How the author is associated with the repository.", ) - body: Union[Union[str, None], None] = Field(description="Contents of the issue") + body: Union[str, None] = Field(description="Contents of the issue") closed_at: Union[_dt.datetime, None] = Field() comments: int = Field() comments_url: str = Field() diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0747.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0747.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0747.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0747.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0748.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0748.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0748.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0748.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0749.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0749.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0749.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0749.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0750.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0750.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0750.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0750.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0751.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0751.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0751.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0751.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0752.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0752.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0752.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0752.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0753.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0753.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0753.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0753.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0754.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0754.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0754.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0754.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0755.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0755.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0755.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0755.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0756.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0756.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0756.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0756.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0757.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0757.py similarity index 97% rename from githubkit/versions/ghec_v2022_11_28/models/group_0757.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0757.py index 52893b141d..69fe525b22 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0757.py +++ b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0757.py @@ -39,9 +39,9 @@ class WebhookIssueCommentUnpinnedPropIssue(GitHubModel): active_lock_reason: Union[ Literal["resolved", "off-topic", "too heated", "spam"], None ] = Field() - assignee: Union[ - Union[WebhookIssueCommentUnpinnedPropIssueAllof0PropAssignee, None], None - ] = Field(title="User") + assignee: Union[WebhookIssueCommentUnpinnedPropIssueAllof0PropAssignee, None] = ( + Field(title="User") + ) assignees: list[WebhookIssueCommentUnpinnedPropIssueMergedAssignees] = Field() author_association: Literal[ "COLLABORATOR", @@ -56,7 +56,7 @@ class WebhookIssueCommentUnpinnedPropIssue(GitHubModel): title="AuthorAssociation", description="How the author is associated with the repository.", ) - body: Union[Union[str, None], None] = Field(description="Contents of the issue") + body: Union[str, None] = Field(description="Contents of the issue") closed_at: Union[_dt.datetime, None] = Field() comments: int = Field() comments_url: str = Field() diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0758.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0758.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0758.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0758.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0759.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0759.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0759.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0759.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0760.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0760.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0760.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0760.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0761.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0761.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0761.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0761.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0762.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0762.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0762.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0762.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0763.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0763.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0763.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0763.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0764.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0764.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0764.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0764.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0765.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0765.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0765.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0765.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0766.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0766.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0766.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0766.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0767.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0767.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0767.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0767.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0768.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0768.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0768.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0768.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0769.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0769.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0769.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0769.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0770.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0770.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0770.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0770.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0771.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0771.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0771.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0771.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0772.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0772.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0772.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0772.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0773.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0773.py similarity index 99% rename from githubkit/versions/ghec_v2022_11_28/models/group_0773.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0773.py index 06049c6c9d..f9e64c21b8 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0773.py +++ b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0773.py @@ -54,7 +54,7 @@ class WebhookIssuesClosedPropIssue(GitHubModel): title="AuthorAssociation", description="How the author is associated with the repository.", ) - body: Union[Union[str, None], None] = Field(description="Contents of the issue") + body: Union[str, None] = Field(description="Contents of the issue") closed_at: Union[_dt.datetime, None] = Field() comments: int = Field() comments_url: str = Field() diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0774.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0774.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0774.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0774.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0775.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0775.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0775.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0775.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0776.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0776.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0776.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0776.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0777.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0777.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0777.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0777.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0778.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0778.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0778.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0778.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0779.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0779.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0779.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0779.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0780.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0780.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0780.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0780.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0781.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0781.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0781.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0781.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0782.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0782.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0782.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0782.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0783.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0783.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0783.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0783.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0784.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0784.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0784.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0784.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0785.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0785.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0785.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0785.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0786.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0786.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0786.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0786.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0787.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0787.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0787.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0787.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0788.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0788.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0788.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0788.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0789.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0789.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0789.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0789.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0790.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0790.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0790.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0790.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0791.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0791.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0791.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0791.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0792.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0792.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0792.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0792.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0793.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0793.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0793.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0793.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0794.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0794.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0794.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0794.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0795.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0795.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0795.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0795.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0796.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0796.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0796.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0796.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0797.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0797.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0797.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0797.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0798.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0798.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0798.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0798.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0799.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0799.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0799.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0799.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0800.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0800.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0800.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0800.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0801.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0801.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0801.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0801.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0802.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0802.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0802.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0802.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0803.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0803.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0803.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0803.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0804.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0804.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0804.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0804.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0805.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0805.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0805.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0805.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0806.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0806.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0806.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0806.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0807.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0807.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0807.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0807.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0808.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0808.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0808.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0808.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0809.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0809.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0809.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0809.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0810.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0810.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0810.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0810.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0811.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0811.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0811.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0811.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0812.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0812.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0812.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0812.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0813.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0813.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0813.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0813.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0814.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0814.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0814.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0814.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0815.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0815.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0815.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0815.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0816.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0816.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0816.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0816.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0817.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0817.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0817.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0817.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0818.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0818.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0818.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0818.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0819.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0819.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0819.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0819.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0820.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0820.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0820.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0820.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0821.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0821.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0821.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0821.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0822.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0822.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0822.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0822.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0823.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0823.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0823.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0823.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0824.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0824.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0824.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0824.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0825.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0825.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0825.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0825.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0826.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0826.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0826.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0826.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0827.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0827.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0827.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0827.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0828.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0828.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0828.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0828.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0829.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0829.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0829.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0829.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0830.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0830.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0830.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0830.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0831.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0831.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0831.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0831.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0832.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0832.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0832.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0832.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0833.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0833.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0833.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0833.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0834.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0834.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0834.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0834.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0835.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0835.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0835.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0835.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0836.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0836.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0836.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0836.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0837.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0837.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0837.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0837.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0838.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0838.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0838.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0838.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0839.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0839.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0839.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0839.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0840.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0840.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0840.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0840.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0841.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0841.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0841.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0841.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0842.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0842.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0842.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0842.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0843.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0843.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0843.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0843.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0844.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0844.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0844.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0844.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0845.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0845.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0845.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0845.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0846.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0846.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0846.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0846.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0847.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0847.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0847.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0847.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0848.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0848.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0848.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0848.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0849.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0849.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0849.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0849.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0850.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0850.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0850.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0850.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0851.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0851.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0851.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0851.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0852.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0852.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0852.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0852.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0853.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0853.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0853.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0853.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0854.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0854.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0854.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0854.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0855.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0855.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0855.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0855.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0856.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0856.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0856.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0856.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0857.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0857.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0857.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0857.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0858.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0858.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0858.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0858.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0859.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0859.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0859.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0859.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0860.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0860.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0860.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0860.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0861.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0861.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0861.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0861.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0862.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0862.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0862.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0862.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0863.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0863.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0863.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0863.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0864.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0864.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0864.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0864.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0865.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0865.py similarity index 98% rename from githubkit/versions/ghec_v2022_11_28/models/group_0865.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0865.py index f9a9861a47..a38d092195 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_0865.py +++ b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0865.py @@ -69,7 +69,7 @@ class WebhookProjectCardMovedPropChangesPropColumnId(GitHubModel): class WebhookProjectCardMovedPropProjectCard(GitHubModel): """WebhookProjectCardMovedPropProjectCard""" - after_id: Union[Union[int, None], None] = Field() + after_id: Union[int, None] = Field() archived: bool = Field(description="Whether or not the card is archived") column_id: int = Field() column_url: str = Field() @@ -78,7 +78,7 @@ class WebhookProjectCardMovedPropProjectCard(GitHubModel): creator: Union[WebhookProjectCardMovedPropProjectCardMergedCreator, None] = Field() id: int = Field(description="The project card's ID") node_id: str = Field() - note: Union[Union[str, None], None] = Field() + note: Union[str, None] = Field() project_url: str = Field() updated_at: _dt.datetime = Field() url: str = Field() diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0866.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0866.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0866.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0866.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0867.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0867.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0867.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0867.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0868.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0868.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0868.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0868.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0869.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0869.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0869.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0869.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0870.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0870.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0870.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0870.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0871.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0871.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0871.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0871.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0872.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0872.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0872.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0872.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0873.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0873.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0873.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0873.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0874.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0874.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0874.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0874.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0875.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0875.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0875.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0875.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0876.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0876.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0876.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0876.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0877.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0877.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0877.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0877.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0878.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0878.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0878.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0878.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0879.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0879.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0879.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0879.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0880.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0880.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0880.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0880.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0881.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0881.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0881.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0881.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0882.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0882.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0882.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0882.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0883.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0883.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0883.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0883.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0884.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0884.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0884.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0884.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0885.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0885.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0885.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0885.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0886.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0886.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0886.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0886.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0887.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0887.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0887.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0887.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0888.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0888.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0888.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0888.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0889.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0889.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0889.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0889.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0890.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0890.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0890.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0890.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0891.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0891.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0891.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0891.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0892.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0892.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0892.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0892.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0893.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0893.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0893.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0893.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0894.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0894.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0894.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0894.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0895.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0895.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0895.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0895.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0896.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0896.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0896.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0896.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0897.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0897.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0897.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0897.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0898.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0898.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0898.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0898.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0899.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0899.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0899.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0899.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0900.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0900.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0900.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0900.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0901.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0901.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0901.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0901.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0902.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0902.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0902.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0902.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0903.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0903.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0903.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0903.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0904.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0904.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0904.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0904.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0905.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0905.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0905.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0905.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0906.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0906.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0906.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0906.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0907.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0907.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0907.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0907.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0908.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0908.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0908.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0908.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0909.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0909.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0909.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0909.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0910.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0910.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0910.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0910.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0911.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0911.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0911.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0911.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0912.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0912.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0912.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0912.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0913.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0913.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0913.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0913.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0914.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0914.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0914.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0914.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0915.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0915.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0915.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0915.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0916.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0916.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0916.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0916.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0917.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0917.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0917.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0917.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0918.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0918.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0918.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0918.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0919.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0919.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0919.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0919.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0920.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0920.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0920.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0920.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0921.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0921.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0921.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0921.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0922.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0922.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0922.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0922.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0923.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0923.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0923.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0923.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0924.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0924.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0924.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0924.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0925.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0925.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0925.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0925.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0926.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0926.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0926.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0926.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0927.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0927.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0927.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0927.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0928.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0928.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0928.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0928.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0929.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0929.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0929.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0929.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0930.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0930.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0930.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0930.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0931.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0931.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0931.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0931.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0932.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0932.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0932.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0932.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0933.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0933.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0933.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0933.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0934.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0934.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0934.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0934.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0935.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0935.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0935.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0935.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0936.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0936.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0936.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0936.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0937.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0937.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0937.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0937.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0938.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0938.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0938.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0938.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0939.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0939.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0939.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0939.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0940.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0940.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0940.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0940.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0941.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0941.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0941.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0941.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0942.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0942.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0942.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0942.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0943.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0943.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0943.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0943.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0944.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0944.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0944.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0944.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0945.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0945.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0945.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0945.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0946.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0946.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0946.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0946.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0947.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0947.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0947.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0947.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0948.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0948.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0948.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0948.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0949.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0949.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0949.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0949.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0950.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0950.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0950.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0950.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0951.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0951.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0951.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0951.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0952.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0952.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0952.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0952.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0953.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0953.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0953.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0953.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0954.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0954.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0954.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0954.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0955.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0955.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0955.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0955.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0956.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0956.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0956.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0956.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0957.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0957.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0957.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0957.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0958.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0958.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0958.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0958.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0959.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0959.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0959.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0959.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0960.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0960.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0960.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0960.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0961.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0961.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0961.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0961.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0962.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0962.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0962.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0962.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0963.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0963.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0963.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0963.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0964.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0964.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0964.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0964.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0965.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0965.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0965.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0965.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0966.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0966.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0966.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0966.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0967.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0967.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0967.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0967.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0968.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0968.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0968.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0968.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0969.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0969.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0969.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0969.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0970.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0970.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0970.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0970.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0971.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0971.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0971.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0971.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0972.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0972.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0972.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0972.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0973.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0973.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0973.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0973.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0974.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0974.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0974.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0974.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0975.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0975.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0975.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0975.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0976.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0976.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0976.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0976.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0977.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0977.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0977.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0977.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0978.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0978.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0978.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0978.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0979.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0979.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0979.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0979.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0980.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0980.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0980.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0980.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0981.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0981.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0981.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0981.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0982.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0982.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0982.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0982.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0983.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0983.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0983.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0983.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0984.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0984.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0984.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0984.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0985.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0985.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0985.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0985.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0986.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0986.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0986.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0986.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0987.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0987.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0987.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0987.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0988.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0988.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0988.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0988.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0989.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0989.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0989.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0989.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0990.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0990.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0990.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0990.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0991.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0991.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0991.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0991.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0992.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0992.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0992.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0992.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0993.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0993.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0993.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0993.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0994.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0994.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0994.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0994.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0995.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0995.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0995.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0995.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0996.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0996.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0996.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0996.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0997.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0997.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0997.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0997.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0998.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0998.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0998.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0998.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_0999.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0999.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_0999.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_0999.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1000.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1000.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1000.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1000.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1001.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1001.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1001.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1001.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1002.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1002.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1002.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1002.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1003.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1003.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1003.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1003.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1004.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1004.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1004.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1004.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1005.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1005.py similarity index 92% rename from githubkit/versions/ghec_v2022_11_28/models/group_1005.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1005.py index fe7cc7777f..2286363737 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_1005.py +++ b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1005.py @@ -83,28 +83,24 @@ class WebhookWorkflowJobCompletedPropWorkflowJob(GitHubModel): run_attempt: int = Field() run_id: int = Field() run_url: str = Field() - runner_group_id: Union[Union[int, None], None] = Field( + runner_group_id: Union[int, None] = Field( description="The ID of the runner group that is running this job. This will be `null` as long as `workflow_job[status]` is `queued`." ) - runner_group_name: Union[Union[str, None], None] = Field( + runner_group_name: Union[str, None] = Field( description="The name of the runner group that is running this job. This will be `null` as long as `workflow_job[status]` is `queued`." ) - runner_id: Union[Union[int, None], None] = Field( + runner_id: Union[int, None] = Field( description="The ID of the runner that is running this job. This will be `null` as long as `workflow_job[status]` is `queued`." ) - runner_name: Union[Union[str, None], None] = Field( + runner_name: Union[str, None] = Field( description="The name of the runner that is running this job. This will be `null` as long as `workflow_job[status]` is `queued`." ) started_at: str = Field() status: Literal["queued", "in_progress", "completed", "waiting"] = Field( description="The current status of the job. Can be `queued`, `in_progress`, `waiting`, or `completed`." ) - head_branch: Union[Union[str, None], None] = Field( - description="The name of the current branch." - ) - workflow_name: Union[Union[str, None], None] = Field( - description="The name of the workflow." - ) + head_branch: Union[str, None] = Field(description="The name of the current branch.") + workflow_name: Union[str, None] = Field(description="The name of the workflow.") steps: list[WebhookWorkflowJobCompletedPropWorkflowJobMergedSteps] = Field() url: str = Field() diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1006.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1006.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1006.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1006.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1007.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1007.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1007.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1007.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1008.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1008.py similarity index 89% rename from githubkit/versions/ghec_v2022_11_28/models/group_1008.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1008.py index cf699b9d6d..2b30df343d 100644 --- a/githubkit/versions/ghec_v2022_11_28/models/group_1008.py +++ b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1008.py @@ -61,7 +61,7 @@ class WebhookWorkflowJobInProgressPropWorkflowJob(GitHubModel): """WebhookWorkflowJobInProgressPropWorkflowJob""" check_run_url: str = Field() - completed_at: Union[Union[str, None], None] = Field() + completed_at: Union[str, None] = Field() conclusion: Union[Literal["success", "failure", "cancelled", "neutral"], None] = ( Field() ) @@ -77,28 +77,24 @@ class WebhookWorkflowJobInProgressPropWorkflowJob(GitHubModel): run_attempt: int = Field() run_id: int = Field() run_url: str = Field() - runner_group_id: Union[Union[int, None], None] = Field( + runner_group_id: Union[int, None] = Field( description="The ID of the runner group that is running this job. This will be `null` as long as `workflow_job[status]` is `queued`." ) - runner_group_name: Union[Union[str, None], None] = Field( + runner_group_name: Union[str, None] = Field( description="The name of the runner group that is running this job. This will be `null` as long as `workflow_job[status]` is `queued`." ) - runner_id: Union[Union[int, None], None] = Field( + runner_id: Union[int, None] = Field( description="The ID of the runner that is running this job. This will be `null` as long as `workflow_job[status]` is `queued`." ) - runner_name: Union[Union[str, None], None] = Field( + runner_name: Union[str, None] = Field( description="The name of the runner that is running this job. This will be `null` as long as `workflow_job[status]` is `queued`." ) started_at: str = Field() status: Literal["queued", "in_progress", "completed"] = Field( description="The current status of the job. Can be `queued`, `in_progress`, or `completed`." ) - head_branch: Union[Union[str, None], None] = Field( - description="The name of the current branch." - ) - workflow_name: Union[Union[str, None], None] = Field( - description="The name of the workflow." - ) + head_branch: Union[str, None] = Field(description="The name of the current branch.") + workflow_name: Union[str, None] = Field(description="The name of the workflow.") steps: list[WebhookWorkflowJobInProgressPropWorkflowJobMergedSteps] = Field() url: str = Field() @@ -106,13 +102,13 @@ class WebhookWorkflowJobInProgressPropWorkflowJob(GitHubModel): class WebhookWorkflowJobInProgressPropWorkflowJobMergedSteps(GitHubModel): """WebhookWorkflowJobInProgressPropWorkflowJobMergedSteps""" - completed_at: Union[Union[str, None], None] = Field() + completed_at: Union[str, None] = Field() conclusion: Union[Literal["failure", "skipped", "success", "cancelled"], None] = ( Field() ) name: str = Field() number: int = Field() - started_at: Union[Union[str, None], None] = Field() + started_at: Union[str, None] = Field() status: Literal["in_progress", "completed", "queued", "pending"] = Field() diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1009.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1009.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1009.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1009.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1010.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1010.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1010.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1010.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1011.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1011.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1011.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1011.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1012.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1012.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1012.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1012.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1013.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1013.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1013.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1013.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1014.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1014.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1014.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1014.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1015.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1015.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1015.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1015.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1016.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1016.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1016.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1016.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1017.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1017.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1017.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1017.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1018.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1018.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1018.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1018.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1019.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1019.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1019.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1019.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1020.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1020.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1020.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1020.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1021.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1021.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1021.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1021.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1022.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1022.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1022.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1022.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1023.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1023.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1023.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1023.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1024.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1024.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1024.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1024.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1025.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1025.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1025.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1025.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1026.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1026.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1026.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1026.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1027.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1027.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1027.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1027.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1028.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1028.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1028.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1028.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1029.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1029.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1029.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1029.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1030.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1030.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1030.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1030.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1031.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1031.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1031.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1031.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1032.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1032.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1032.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1032.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1033.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1033.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1033.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1033.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1034.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1034.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1034.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1034.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1035.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1035.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1035.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1035.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1036.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1036.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1036.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1036.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1037.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1037.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1037.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1037.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1038.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1038.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1038.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1038.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1039.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1039.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1039.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1039.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1040.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1040.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1040.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1040.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1041.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1041.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1041.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1041.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1042.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1042.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1042.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1042.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1043.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1043.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1043.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1043.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1044.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1044.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1044.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1044.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1045.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1045.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1045.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1045.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1046.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1046.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1046.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1046.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1047.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1047.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1047.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1047.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1048.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1048.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1048.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1048.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1049.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1049.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1049.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1049.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1050.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1050.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1050.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1050.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1051.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1051.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1051.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1051.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1052.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1052.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1052.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1052.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1053.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1053.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1053.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1053.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1054.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1054.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1054.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1054.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1055.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1055.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1055.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1055.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1056.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1056.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1056.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1056.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1057.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1057.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1057.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1057.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1058.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1058.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1058.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1058.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1059.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1059.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1059.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1059.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1060.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1060.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1060.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1060.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1061.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1061.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1061.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1061.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1062.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1062.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1062.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1062.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1063.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1063.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1063.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1063.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1064.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1064.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1064.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1064.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1065.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1065.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1065.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1065.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1066.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1066.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1066.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1066.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1067.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1067.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1067.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1067.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1068.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1068.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1068.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1068.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1069.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1069.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1069.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1069.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1070.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1070.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1070.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1070.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1071.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1071.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1071.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1071.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1072.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1072.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1072.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1072.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1073.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1073.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1073.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1073.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1074.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1074.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1074.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1074.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1075.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1075.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1075.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1075.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1076.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1076.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1076.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1076.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1077.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1077.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1077.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1077.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1078.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1078.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1078.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1078.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1079.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1079.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1079.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1079.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1080.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1080.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1080.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1080.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1081.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1081.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1081.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1081.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1082.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1082.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1082.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1082.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1083.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1083.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1083.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1083.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1084.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1084.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1084.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1084.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1085.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1085.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1085.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1085.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1086.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1086.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1086.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1086.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1087.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1087.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1087.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1087.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1088.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1088.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1088.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1088.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1089.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1089.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1089.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1089.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1090.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1090.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1090.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1090.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1091.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1091.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1091.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1091.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1092.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1092.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1092.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1092.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1093.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1093.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1093.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1093.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1094.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1094.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1094.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1094.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1095.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1095.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1095.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1095.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1096.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1096.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1096.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1096.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1097.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1097.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1097.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1097.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1098.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1098.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1098.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1098.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1099.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1099.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1099.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1099.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1100.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1100.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1100.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1100.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1101.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1101.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1101.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1101.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1102.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1102.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1102.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1102.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1103.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1103.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1103.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1103.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1104.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1104.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1104.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1104.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1105.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1105.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1105.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1105.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1106.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1106.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1106.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1106.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1107.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1107.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1107.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1107.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1108.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1108.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1108.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1108.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1109.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1109.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1109.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1109.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1110.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1110.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1110.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1110.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1111.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1111.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1111.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1111.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1112.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1112.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1112.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1112.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1113.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1113.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1113.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1113.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1114.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1114.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1114.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1114.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1115.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1115.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1115.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1115.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1116.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1116.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1116.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1116.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1117.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1117.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1117.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1117.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1118.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1118.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1118.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1118.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1119.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1119.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1119.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1119.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1120.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1120.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1120.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1120.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1121.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1121.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1121.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1121.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1122.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1122.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1122.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1122.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1123.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1123.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1123.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1123.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1124.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1124.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1124.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1124.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1125.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1125.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1125.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1125.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1126.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1126.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1126.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1126.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1127.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1127.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1127.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1127.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1128.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1128.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1128.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1128.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1129.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1129.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1129.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1129.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1130.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1130.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1130.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1130.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1131.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1131.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1131.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1131.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1132.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1132.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1132.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1132.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1133.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1133.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1133.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1133.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1134.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1134.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1134.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1134.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1135.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1135.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1135.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1135.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1136.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1136.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1136.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1136.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1137.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1137.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1137.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1137.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1138.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1138.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1138.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1138.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1139.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1139.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1139.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1139.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1140.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1140.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1140.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1140.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1141.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1141.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1141.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1141.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1142.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1142.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1142.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1142.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1143.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1143.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1143.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1143.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1144.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1144.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1144.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1144.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1145.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1145.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1145.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1145.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1146.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1146.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1146.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1146.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1147.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1147.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1147.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1147.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1148.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1148.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1148.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1148.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1149.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1149.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1149.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1149.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1150.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1150.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1150.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1150.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1151.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1151.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1151.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1151.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1152.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1152.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1152.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1152.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1153.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1153.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1153.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1153.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1154.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1154.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1154.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1154.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1155.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1155.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1155.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1155.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1156.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1156.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1156.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1156.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1157.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1157.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1157.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1157.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1158.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1158.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1158.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1158.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1159.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1159.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1159.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1159.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1160.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1160.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1160.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1160.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1161.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1161.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1161.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1161.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1162.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1162.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1162.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1162.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1163.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1163.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1163.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1163.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1164.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1164.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1164.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1164.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1165.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1165.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1165.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1165.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1166.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1166.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1166.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1166.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1167.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1167.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1167.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1167.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1168.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1168.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1168.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1168.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1169.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1169.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1169.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1169.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1170.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1170.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1170.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1170.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1171.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1171.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1171.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1171.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1172.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1172.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1172.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1172.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1173.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1173.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1173.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1173.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1174.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1174.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1174.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1174.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1175.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1175.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1175.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1175.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1176.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1176.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1176.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1176.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1177.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1177.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1177.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1177.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1178.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1178.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1178.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1178.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1179.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1179.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1179.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1179.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1180.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1180.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1180.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1180.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1181.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1181.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1181.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1181.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1182.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1182.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1182.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1182.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1183.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1183.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1183.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1183.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1184.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1184.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1184.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1184.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1185.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1185.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1185.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1185.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1186.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1186.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1186.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1186.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1187.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1187.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1187.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1187.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1188.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1188.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1188.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1188.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1189.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1189.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1189.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1189.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1190.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1190.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1190.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1190.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1191.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1191.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1191.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1191.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1192.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1192.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1192.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1192.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1193.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1193.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1193.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1193.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1194.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1194.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1194.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1194.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1195.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1195.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1195.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1195.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1196.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1196.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1196.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1196.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1197.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1197.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1197.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1197.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1198.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1198.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1198.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1198.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1199.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1199.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1199.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1199.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1200.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1200.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1200.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1200.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1201.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1201.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1201.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1201.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1202.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1202.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1202.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1202.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1203.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1203.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1203.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1203.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1204.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1204.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1204.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1204.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1205.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1205.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1205.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1205.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1206.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1206.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1206.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1206.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1207.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1207.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1207.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1207.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1208.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1208.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1208.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1208.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1209.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1209.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1209.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1209.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1210.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1210.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1210.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1210.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1211.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1211.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1211.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1211.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1212.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1212.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1212.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1212.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1213.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1213.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1213.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1213.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1214.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1214.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1214.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1214.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1215.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1215.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1215.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1215.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1216.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1216.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1216.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1216.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1217.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1217.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1217.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1217.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1218.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1218.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1218.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1218.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1219.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1219.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1219.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1219.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1220.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1220.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1220.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1220.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1221.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1221.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1221.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1221.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1222.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1222.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1222.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1222.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1223.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1223.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1223.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1223.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1224.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1224.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1224.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1224.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1225.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1225.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1225.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1225.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1226.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1226.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1226.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1226.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1227.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1227.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1227.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1227.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1228.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1228.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1228.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1228.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1229.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1229.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1229.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1229.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1230.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1230.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1230.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1230.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1231.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1231.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1231.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1231.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1232.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1232.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1232.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1232.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1233.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1233.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1233.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1233.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1234.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1234.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1234.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1234.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1235.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1235.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1235.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1235.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1236.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1236.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1236.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1236.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1237.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1237.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1237.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1237.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1238.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1238.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1238.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1238.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1239.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1239.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1239.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1239.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1240.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1240.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1240.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1240.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1241.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1241.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1241.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1241.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1242.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1242.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1242.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1242.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1243.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1243.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1243.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1243.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1244.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1244.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1244.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1244.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1245.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1245.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1245.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1245.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1246.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1246.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1246.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1246.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1247.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1247.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1247.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1247.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1248.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1248.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1248.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1248.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1249.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1249.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1249.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1249.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1250.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1250.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1250.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1250.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1251.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1251.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1251.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1251.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1252.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1252.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1252.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1252.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1253.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1253.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1253.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1253.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1254.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1254.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1254.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1254.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1255.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1255.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1255.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1255.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1256.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1256.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1256.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1256.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1257.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1257.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1257.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1257.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1258.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1258.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1258.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1258.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1259.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1259.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1259.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1259.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1260.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1260.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1260.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1260.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1261.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1261.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1261.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1261.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1262.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1262.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1262.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1262.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1263.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1263.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1263.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1263.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1264.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1264.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1264.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1264.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1265.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1265.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1265.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1265.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1266.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1266.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1266.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1266.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1267.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1267.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1267.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1267.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1268.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1268.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1268.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1268.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1269.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1269.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1269.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1269.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1270.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1270.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1270.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1270.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1271.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1271.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1271.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1271.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1272.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1272.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1272.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1272.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1273.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1273.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1273.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1273.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1274.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1274.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1274.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1274.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1275.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1275.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1275.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1275.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1276.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1276.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1276.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1276.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1277.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1277.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1277.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1277.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1278.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1278.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1278.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1278.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1279.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1279.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1279.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1279.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1280.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1280.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1280.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1280.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1281.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1281.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1281.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1281.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1282.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1282.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1282.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1282.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1283.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1283.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1283.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1283.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1284.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1284.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1284.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1284.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1285.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1285.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1285.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1285.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1286.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1286.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1286.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1286.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1287.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1287.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1287.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1287.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1288.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1288.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1288.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1288.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1289.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1289.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1289.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1289.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1290.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1290.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1290.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1290.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1291.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1291.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1291.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1291.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1292.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1292.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1292.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1292.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1293.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1293.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1293.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1293.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1294.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1294.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1294.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1294.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1295.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1295.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1295.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1295.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1296.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1296.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1296.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1296.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1297.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1297.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1297.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1297.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1298.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1298.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1298.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1298.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1299.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1299.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1299.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1299.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1300.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1300.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1300.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1300.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1301.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1301.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1301.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1301.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1302.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1302.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1302.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1302.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1303.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1303.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1303.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1303.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1304.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1304.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1304.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1304.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1305.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1305.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1305.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1305.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1306.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1306.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1306.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1306.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1307.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1307.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1307.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1307.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1308.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1308.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1308.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1308.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1309.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1309.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1309.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1309.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1310.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1310.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1310.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1310.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1311.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1311.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1311.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1311.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1312.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1312.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1312.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1312.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1313.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1313.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1313.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1313.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1314.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1314.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1314.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1314.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1315.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1315.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1315.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1315.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1316.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1316.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1316.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1316.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1317.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1317.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1317.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1317.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1318.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1318.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1318.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1318.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1319.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1319.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1319.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1319.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1320.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1320.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1320.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1320.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1321.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1321.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1321.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1321.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1322.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1322.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1322.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1322.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1323.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1323.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1323.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1323.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1324.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1324.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1324.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1324.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1325.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1325.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1325.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1325.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1326.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1326.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1326.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1326.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1327.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1327.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1327.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1327.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1328.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1328.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1328.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1328.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1329.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1329.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1329.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1329.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1330.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1330.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1330.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1330.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1331.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1331.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1331.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1331.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1332.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1332.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1332.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1332.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1333.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1333.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1333.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1333.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1334.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1334.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1334.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1334.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1335.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1335.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1335.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1335.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1336.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1336.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1336.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1336.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1337.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1337.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1337.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1337.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1338.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1338.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1338.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1338.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1339.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1339.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1339.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1339.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1340.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1340.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1340.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1340.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1341.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1341.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1341.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1341.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1342.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1342.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1342.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1342.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1343.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1343.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1343.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1343.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1344.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1344.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1344.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1344.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1345.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1345.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1345.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1345.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1346.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1346.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1346.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1346.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1347.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1347.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1347.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1347.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1348.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1348.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1348.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1348.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1349.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1349.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1349.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1349.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1350.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1350.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1350.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1350.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1351.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1351.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1351.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1351.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1352.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1352.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1352.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1352.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1353.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1353.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1353.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1353.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1354.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1354.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1354.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1354.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1355.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1355.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1355.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1355.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1356.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1356.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1356.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1356.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1357.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1357.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1357.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1357.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1358.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1358.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1358.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1358.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1359.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1359.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1359.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1359.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1360.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1360.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1360.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1360.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1361.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1361.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1361.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1361.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1362.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1362.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1362.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1362.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1363.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1363.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1363.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1363.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1364.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1364.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1364.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1364.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1365.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1365.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1365.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1365.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1366.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1366.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1366.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1366.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1367.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1367.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1367.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1367.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1368.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1368.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1368.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1368.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1369.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1369.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1369.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1369.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1370.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1370.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1370.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1370.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1371.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1371.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1371.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1371.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1372.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1372.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1372.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1372.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1373.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1373.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1373.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1373.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1374.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1374.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1374.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1374.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1375.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1375.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1375.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1375.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1376.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1376.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1376.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1376.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1377.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1377.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1377.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1377.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1378.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1378.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1378.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1378.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1379.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1379.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1379.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1379.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1380.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1380.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1380.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1380.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1381.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1381.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1381.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1381.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1382.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1382.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1382.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1382.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1383.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1383.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1383.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1383.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1384.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1384.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1384.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1384.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1385.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1385.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1385.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1385.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1386.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1386.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1386.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1386.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1387.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1387.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1387.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1387.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1388.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1388.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1388.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1388.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1389.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1389.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1389.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1389.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1390.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1390.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1390.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1390.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1391.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1391.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1391.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1391.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1392.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1392.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1392.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1392.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1393.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1393.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1393.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1393.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1394.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1394.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1394.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1394.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1395.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1395.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1395.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1395.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1396.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1396.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1396.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1396.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1397.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1397.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1397.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1397.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1398.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1398.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1398.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1398.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1399.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1399.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1399.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1399.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1400.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1400.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1400.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1400.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1401.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1401.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1401.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1401.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1402.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1402.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1402.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1402.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1403.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1403.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1403.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1403.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1404.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1404.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1404.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1404.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1405.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1405.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1405.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1405.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1406.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1406.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1406.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1406.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1407.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1407.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1407.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1407.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1408.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1408.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1408.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1408.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1409.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1409.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1409.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1409.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1410.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1410.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1410.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1410.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1411.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1411.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1411.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1411.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1412.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1412.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1412.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1412.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1413.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1413.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1413.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1413.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1414.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1414.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1414.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1414.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1415.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1415.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1415.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1415.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1416.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1416.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1416.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1416.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1417.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1417.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1417.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1417.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1418.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1418.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1418.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1418.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1419.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1419.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1419.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1419.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1420.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1420.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1420.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1420.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1421.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1421.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1421.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1421.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1422.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1422.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1422.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1422.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1423.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1423.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1423.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1423.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1424.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1424.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1424.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1424.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1425.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1425.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1425.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1425.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1426.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1426.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1426.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1426.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1427.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1427.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1427.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1427.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1428.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1428.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1428.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1428.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1429.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1429.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1429.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1429.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1430.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1430.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1430.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1430.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1431.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1431.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1431.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1431.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1432.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1432.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1432.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1432.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1433.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1433.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1433.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1433.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1434.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1434.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1434.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1434.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1435.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1435.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1435.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1435.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1436.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1436.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1436.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1436.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1437.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1437.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1437.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1437.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1438.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1438.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1438.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1438.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1439.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1439.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1439.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1439.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1440.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1440.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1440.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1440.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1441.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1441.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1441.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1441.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1442.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1442.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1442.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1442.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1443.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1443.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1443.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1443.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1444.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1444.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1444.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1444.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1445.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1445.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1445.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1445.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1446.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1446.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1446.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1446.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1447.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1447.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1447.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1447.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1448.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1448.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1448.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1448.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1449.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1449.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1449.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1449.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1450.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1450.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1450.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1450.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1451.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1451.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1451.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1451.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1452.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1452.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1452.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1452.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1453.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1453.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1453.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1453.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1454.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1454.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1454.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1454.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1455.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1455.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1455.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1455.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1456.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1456.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1456.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1456.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1457.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1457.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1457.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1457.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1458.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1458.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1458.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1458.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1459.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1459.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1459.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1459.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1460.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1460.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1460.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1460.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1461.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1461.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1461.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1461.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1462.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1462.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1462.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1462.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1463.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1463.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1463.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1463.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1464.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1464.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1464.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1464.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1465.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1465.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1465.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1465.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1466.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1466.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1466.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1466.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1467.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1467.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1467.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1467.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1468.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1468.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1468.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1468.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1469.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1469.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1469.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1469.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1470.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1470.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1470.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1470.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1471.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1471.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1471.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1471.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1472.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1472.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1472.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1472.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1473.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1473.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1473.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1473.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1474.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1474.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1474.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1474.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1475.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1475.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1475.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1475.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1476.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1476.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1476.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1476.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1477.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1477.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1477.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1477.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1478.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1478.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1478.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1478.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1479.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1479.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1479.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1479.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1480.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1480.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1480.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1480.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1481.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1481.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1481.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1481.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1482.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1482.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1482.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1482.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1483.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1483.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1483.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1483.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1484.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1484.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1484.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1484.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1485.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1485.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1485.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1485.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1486.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1486.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1486.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1486.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1487.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1487.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1487.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1487.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1488.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1488.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1488.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1488.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1489.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1489.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1489.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1489.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1490.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1490.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1490.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1490.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1491.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1491.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1491.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1491.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1492.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1492.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1492.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1492.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1493.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1493.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1493.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1493.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1494.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1494.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1494.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1494.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1495.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1495.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1495.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1495.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1496.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1496.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1496.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1496.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1497.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1497.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1497.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1497.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1498.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1498.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1498.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1498.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1499.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1499.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1499.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1499.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1500.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1500.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1500.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1500.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1501.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1501.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1501.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1501.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1502.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1502.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1502.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1502.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1503.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1503.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1503.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1503.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1504.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1504.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1504.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1504.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1505.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1505.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1505.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1505.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1506.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1506.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1506.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1506.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1507.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1507.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1507.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1507.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1508.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1508.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1508.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1508.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1509.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1509.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1509.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1509.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1510.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1510.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1510.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1510.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1511.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1511.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1511.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1511.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1512.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1512.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1512.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1512.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1513.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1513.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1513.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1513.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1514.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1514.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1514.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1514.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1515.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1515.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1515.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1515.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1516.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1516.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1516.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1516.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1517.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1517.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1517.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1517.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1518.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1518.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1518.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1518.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1519.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1519.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1519.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1519.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1520.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1520.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1520.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1520.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1521.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1521.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1521.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1521.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1522.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1522.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1522.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1522.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1523.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1523.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1523.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1523.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1524.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1524.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1524.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1524.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1525.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1525.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1525.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1525.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1526.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1526.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1526.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1526.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1527.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1527.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1527.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1527.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1528.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1528.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1528.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1528.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1529.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1529.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1529.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1529.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1530.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1530.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1530.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1530.py diff --git a/githubkit/versions/ghec_v2022_11_28/models/group_1531.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1531.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/models/group_1531.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/models/group_1531.py diff --git a/githubkit/versions/ghec_v2022_11_28/rest/__init__.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/rest/__init__.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/rest/__init__.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/rest/__init__.py diff --git a/githubkit/versions/ghec_v2022_11_28/rest/actions.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/rest/actions.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/rest/actions.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/rest/actions.py diff --git a/githubkit/versions/ghec_v2022_11_28/rest/activity.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/rest/activity.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/rest/activity.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/rest/activity.py diff --git a/githubkit/versions/ghec_v2022_11_28/rest/apps.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/rest/apps.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/rest/apps.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/rest/apps.py diff --git a/githubkit/versions/ghec_v2022_11_28/rest/billing.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/rest/billing.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/rest/billing.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/rest/billing.py diff --git a/githubkit/versions/ghec_v2022_11_28/rest/campaigns.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/rest/campaigns.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/rest/campaigns.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/rest/campaigns.py diff --git a/githubkit/versions/ghec_v2022_11_28/rest/checks.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/rest/checks.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/rest/checks.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/rest/checks.py diff --git a/githubkit/versions/ghec_v2022_11_28/rest/classroom.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/rest/classroom.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/rest/classroom.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/rest/classroom.py diff --git a/githubkit/versions/ghec_v2022_11_28/rest/code_scanning.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/rest/code_scanning.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/rest/code_scanning.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/rest/code_scanning.py diff --git a/githubkit/versions/ghec_v2022_11_28/rest/code_security.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/rest/code_security.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/rest/code_security.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/rest/code_security.py diff --git a/githubkit/versions/ghec_v2022_11_28/rest/codes_of_conduct.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/rest/codes_of_conduct.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/rest/codes_of_conduct.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/rest/codes_of_conduct.py diff --git a/githubkit/versions/ghec_v2022_11_28/rest/codespaces.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/rest/codespaces.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/rest/codespaces.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/rest/codespaces.py diff --git a/githubkit/versions/ghec_v2022_11_28/rest/copilot.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/rest/copilot.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/rest/copilot.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/rest/copilot.py diff --git a/githubkit/versions/ghec_v2022_11_28/rest/copilot_spaces.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/rest/copilot_spaces.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/rest/copilot_spaces.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/rest/copilot_spaces.py diff --git a/githubkit/versions/ghec_v2022_11_28/rest/credentials.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/rest/credentials.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/rest/credentials.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/rest/credentials.py diff --git a/githubkit/versions/ghec_v2022_11_28/rest/dependabot.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/rest/dependabot.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/rest/dependabot.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/rest/dependabot.py diff --git a/githubkit/versions/ghec_v2022_11_28/rest/dependency_graph.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/rest/dependency_graph.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/rest/dependency_graph.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/rest/dependency_graph.py diff --git a/githubkit/versions/ghec_v2022_11_28/rest/emojis.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/rest/emojis.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/rest/emojis.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/rest/emojis.py diff --git a/githubkit/versions/ghec_v2022_11_28/rest/enterprise_admin.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/rest/enterprise_admin.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/rest/enterprise_admin.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/rest/enterprise_admin.py diff --git a/githubkit/versions/ghec_v2022_11_28/rest/enterprise_team_memberships.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/rest/enterprise_team_memberships.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/rest/enterprise_team_memberships.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/rest/enterprise_team_memberships.py diff --git a/githubkit/versions/ghec_v2022_11_28/rest/enterprise_team_organizations.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/rest/enterprise_team_organizations.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/rest/enterprise_team_organizations.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/rest/enterprise_team_organizations.py diff --git a/githubkit/versions/ghec_v2022_11_28/rest/enterprise_teams.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/rest/enterprise_teams.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/rest/enterprise_teams.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/rest/enterprise_teams.py diff --git a/githubkit/versions/ghec_v2022_11_28/rest/gists.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/rest/gists.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/rest/gists.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/rest/gists.py diff --git a/githubkit/versions/ghec_v2022_11_28/rest/git.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/rest/git.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/rest/git.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/rest/git.py diff --git a/githubkit/versions/ghec_v2022_11_28/rest/gitignore.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/rest/gitignore.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/rest/gitignore.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/rest/gitignore.py diff --git a/githubkit/versions/ghec_v2022_11_28/rest/hosted_compute.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/rest/hosted_compute.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/rest/hosted_compute.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/rest/hosted_compute.py diff --git a/githubkit/versions/ghec_v2022_11_28/rest/interactions.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/rest/interactions.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/rest/interactions.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/rest/interactions.py diff --git a/githubkit/versions/ghec_v2022_11_28/rest/issues.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/rest/issues.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/rest/issues.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/rest/issues.py diff --git a/githubkit/versions/ghec_v2022_11_28/rest/licenses.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/rest/licenses.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/rest/licenses.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/rest/licenses.py diff --git a/githubkit/versions/ghec_v2022_11_28/rest/markdown.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/rest/markdown.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/rest/markdown.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/rest/markdown.py diff --git a/githubkit/versions/ghec_v2022_11_28/rest/meta.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/rest/meta.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/rest/meta.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/rest/meta.py diff --git a/githubkit/versions/ghec_v2022_11_28/rest/migrations.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/rest/migrations.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/rest/migrations.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/rest/migrations.py diff --git a/githubkit/versions/ghec_v2022_11_28/rest/oidc.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/rest/oidc.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/rest/oidc.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/rest/oidc.py diff --git a/githubkit/versions/ghec_v2022_11_28/rest/orgs.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/rest/orgs.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/rest/orgs.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/rest/orgs.py diff --git a/githubkit/versions/ghec_v2022_11_28/rest/packages.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/rest/packages.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/rest/packages.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/rest/packages.py diff --git a/githubkit/versions/ghec_v2022_11_28/rest/private_registries.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/rest/private_registries.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/rest/private_registries.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/rest/private_registries.py diff --git a/githubkit/versions/ghec_v2022_11_28/rest/projects.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/rest/projects.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/rest/projects.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/rest/projects.py diff --git a/githubkit/versions/ghec_v2022_11_28/rest/pulls.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/rest/pulls.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/rest/pulls.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/rest/pulls.py diff --git a/githubkit/versions/ghec_v2022_11_28/rest/rate_limit.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/rest/rate_limit.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/rest/rate_limit.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/rest/rate_limit.py diff --git a/githubkit/versions/ghec_v2022_11_28/rest/reactions.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/rest/reactions.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/rest/reactions.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/rest/reactions.py diff --git a/githubkit/versions/ghec_v2022_11_28/rest/repos.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/rest/repos.py similarity index 99% rename from githubkit/versions/ghec_v2022_11_28/rest/repos.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/rest/repos.py index f6839f351f..dad4ba7d92 100644 --- a/githubkit/versions/ghec_v2022_11_28/rest/repos.py +++ b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/rest/repos.py @@ -16794,7 +16794,6 @@ def create_pages_site( ReposOwnerRepoPagesPostBodyAnyof0Type, None, ReposOwnerRepoPagesPostBodyAnyof1Type, - None, ], ) -> Response[Page, PageTypeForResponse]: ... @@ -16836,7 +16835,6 @@ def create_pages_site( ReposOwnerRepoPagesPostBodyAnyof0Type, None, ReposOwnerRepoPagesPostBodyAnyof1Type, - None, ] ] = UNSET, **kwargs, @@ -16879,7 +16877,6 @@ def create_pages_site( ReposOwnerRepoPagesPostBodyAnyof0, None, ReposOwnerRepoPagesPostBodyAnyof1, - None, ], json, ) @@ -16910,7 +16907,6 @@ async def async_create_pages_site( ReposOwnerRepoPagesPostBodyAnyof0Type, None, ReposOwnerRepoPagesPostBodyAnyof1Type, - None, ], ) -> Response[Page, PageTypeForResponse]: ... @@ -16952,7 +16948,6 @@ async def async_create_pages_site( ReposOwnerRepoPagesPostBodyAnyof0Type, None, ReposOwnerRepoPagesPostBodyAnyof1Type, - None, ] ] = UNSET, **kwargs, @@ -16995,7 +16990,6 @@ async def async_create_pages_site( ReposOwnerRepoPagesPostBodyAnyof0, None, ReposOwnerRepoPagesPostBodyAnyof1, - None, ], json, ) diff --git a/githubkit/versions/ghec_v2022_11_28/rest/scim.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/rest/scim.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/rest/scim.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/rest/scim.py diff --git a/githubkit/versions/ghec_v2022_11_28/rest/search.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/rest/search.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/rest/search.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/rest/search.py diff --git a/githubkit/versions/ghec_v2022_11_28/rest/secret_scanning.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/rest/secret_scanning.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/rest/secret_scanning.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/rest/secret_scanning.py diff --git a/githubkit/versions/ghec_v2022_11_28/rest/security_advisories.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/rest/security_advisories.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/rest/security_advisories.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/rest/security_advisories.py diff --git a/githubkit/versions/ghec_v2022_11_28/rest/server_statistics.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/rest/server_statistics.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/rest/server_statistics.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/rest/server_statistics.py diff --git a/githubkit/versions/ghec_v2022_11_28/rest/teams.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/rest/teams.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/rest/teams.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/rest/teams.py diff --git a/githubkit/versions/ghec_v2022_11_28/rest/users.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/rest/users.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/rest/users.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/rest/users.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/__init__.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/__init__.py similarity index 99% rename from githubkit/versions/ghec_v2022_11_28/types/__init__.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/__init__.py index e31e611d1d..953df5905a 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/__init__.py +++ b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/__init__.py @@ -9,7 +9,7 @@ from typing import TYPE_CHECKING -from githubkit.lazy_module import is_lazy_disabled +from githubkit.module_hooks.lazy_module import is_lazy_disabled if TYPE_CHECKING or is_lazy_disabled(): from .group_0000 import RootType as RootType diff --git a/githubkit/versions/v2022_11_28/types/group_0000.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0000.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0000.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0000.py diff --git a/githubkit/versions/v2022_11_28/types/group_0001.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0001.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0001.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0001.py diff --git a/githubkit/versions/v2022_11_28/types/group_0002.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0002.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0002.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0002.py diff --git a/githubkit/versions/v2022_11_28/types/group_0003.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0003.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0003.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0003.py diff --git a/githubkit/versions/v2022_11_28/types/group_0004.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0004.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0004.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0004.py diff --git a/githubkit/versions/v2022_11_28/types/group_0005.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0005.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0005.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0005.py diff --git a/githubkit/versions/v2022_11_28/types/group_0006.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0006.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0006.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0006.py diff --git a/githubkit/versions/v2022_11_28/types/group_0007.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0007.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0007.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0007.py diff --git a/githubkit/versions/v2022_11_28/types/group_0008.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0008.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0008.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0008.py diff --git a/githubkit/versions/v2022_11_28/types/group_0009.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0009.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0009.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0009.py diff --git a/githubkit/versions/v2022_11_28/types/group_0010.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0010.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0010.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0010.py diff --git a/githubkit/versions/v2022_11_28/types/group_0011.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0011.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0011.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0011.py diff --git a/githubkit/versions/v2022_11_28/types/group_0012.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0012.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0012.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0012.py diff --git a/githubkit/versions/v2022_11_28/types/group_0013.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0013.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0013.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0013.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0014.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0014.py similarity index 91% rename from githubkit/versions/ghec_v2022_11_28/types/group_0014.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0014.py index 5dca7785ad..34841d0229 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0014.py +++ b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0014.py @@ -43,7 +43,7 @@ class ValidationErrorPropErrorsItemsType(TypedDict): message: NotRequired[str] code: str index: NotRequired[int] - value: NotRequired[Union[str, None, int, None, list[str], None]] + value: NotRequired[Union[str, None, int, list[str]]] class ValidationErrorPropErrorsItemsTypeForResponse(TypedDict): @@ -54,7 +54,7 @@ class ValidationErrorPropErrorsItemsTypeForResponse(TypedDict): message: NotRequired[str] code: str index: NotRequired[int] - value: NotRequired[Union[str, None, int, None, list[str], None]] + value: NotRequired[Union[str, None, int, list[str]]] __all__ = ( diff --git a/githubkit/versions/v2022_11_28/types/group_0015.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0015.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0015.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0015.py diff --git a/githubkit/versions/v2022_11_28/types/group_0016.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0016.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0016.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0016.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0017.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0017.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0017.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0017.py diff --git a/githubkit/versions/v2022_11_28/types/group_0018.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0018.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0018.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0018.py diff --git a/githubkit/versions/v2022_11_28/types/group_0019.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0019.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0019.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0019.py diff --git a/githubkit/versions/v2022_11_28/types/group_0020.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0020.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0020.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0020.py diff --git a/githubkit/versions/v2022_11_28/types/group_0021.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0021.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0021.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0021.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0022.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0022.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0022.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0022.py diff --git a/githubkit/versions/v2022_11_28/types/group_0023.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0023.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0023.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0023.py diff --git a/githubkit/versions/v2022_11_28/types/group_0024.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0024.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0024.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0024.py diff --git a/githubkit/versions/v2022_11_28/types/group_0025.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0025.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0025.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0025.py diff --git a/githubkit/versions/v2022_11_28/types/group_0026.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0026.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0026.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0026.py diff --git a/githubkit/versions/v2022_11_28/types/group_0027.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0027.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0027.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0027.py diff --git a/githubkit/versions/v2022_11_28/types/group_0028.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0028.py similarity index 100% rename from githubkit/versions/v2022_11_28/types/group_0028.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0028.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0029.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0029.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0029.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0029.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0030.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0030.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0030.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0030.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0031.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0031.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0031.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0031.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0032.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0032.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0032.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0032.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0033.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0033.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0033.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0033.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0034.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0034.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0034.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0034.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0035.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0035.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0035.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0035.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0036.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0036.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0036.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0036.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0037.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0037.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0037.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0037.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0038.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0038.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0038.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0038.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0039.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0039.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0039.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0039.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0040.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0040.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0040.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0040.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0041.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0041.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0041.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0041.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0042.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0042.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0042.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0042.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0043.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0043.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0043.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0043.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0044.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0044.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0044.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0044.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0045.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0045.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0045.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0045.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0046.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0046.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0046.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0046.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0047.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0047.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0047.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0047.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0048.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0048.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0048.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0048.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0049.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0049.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0049.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0049.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0050.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0050.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0050.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0050.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0051.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0051.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0051.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0051.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0052.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0052.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0052.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0052.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0053.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0053.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0053.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0053.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0054.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0054.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0054.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0054.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0055.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0055.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0055.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0055.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0056.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0056.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0056.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0056.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0057.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0057.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0057.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0057.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0058.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0058.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0058.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0058.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0059.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0059.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0059.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0059.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0060.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0060.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0060.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0060.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0061.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0061.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0061.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0061.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0062.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0062.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0062.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0062.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0063.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0063.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0063.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0063.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0064.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0064.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0064.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0064.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0065.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0065.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0065.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0065.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0066.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0066.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0066.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0066.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0067.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0067.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0067.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0067.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0068.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0068.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0068.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0068.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0069.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0069.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0069.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0069.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0070.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0070.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0070.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0070.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0071.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0071.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0071.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0071.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0072.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0072.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0072.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0072.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0073.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0073.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0073.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0073.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0074.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0074.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0074.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0074.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0075.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0075.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0075.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0075.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0076.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0076.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0076.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0076.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0077.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0077.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0077.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0077.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0078.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0078.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0078.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0078.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0079.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0079.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0079.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0079.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0080.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0080.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0080.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0080.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0081.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0081.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0081.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0081.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0082.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0082.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0082.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0082.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0083.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0083.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0083.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0083.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0084.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0084.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0084.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0084.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0085.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0085.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0085.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0085.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0086.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0086.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0086.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0086.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0087.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0087.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0087.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0087.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0088.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0088.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0088.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0088.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0089.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0089.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0089.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0089.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0090.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0090.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0090.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0090.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0091.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0091.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0091.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0091.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0092.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0092.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0092.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0092.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0093.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0093.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0093.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0093.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0094.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0094.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0094.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0094.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0095.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0095.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0095.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0095.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0096.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0096.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0096.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0096.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0097.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0097.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0097.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0097.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0098.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0098.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0098.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0098.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0099.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0099.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0099.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0099.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0100.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0100.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0100.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0100.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0101.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0101.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0101.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0101.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0102.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0102.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0102.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0102.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0103.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0103.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0103.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0103.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0104.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0104.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0104.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0104.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0105.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0105.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0105.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0105.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0106.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0106.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0106.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0106.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0107.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0107.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0107.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0107.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0108.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0108.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0108.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0108.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0109.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0109.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0109.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0109.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0110.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0110.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0110.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0110.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0111.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0111.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0111.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0111.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0112.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0112.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0112.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0112.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0113.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0113.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0113.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0113.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0114.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0114.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0114.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0114.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0115.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0115.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0115.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0115.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0116.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0116.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0116.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0116.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0117.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0117.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0117.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0117.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0118.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0118.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0118.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0118.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0119.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0119.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0119.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0119.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0120.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0120.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0120.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0120.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0121.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0121.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0121.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0121.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0122.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0122.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0122.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0122.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0123.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0123.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0123.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0123.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0124.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0124.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0124.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0124.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0125.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0125.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0125.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0125.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0126.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0126.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0126.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0126.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0127.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0127.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0127.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0127.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0128.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0128.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0128.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0128.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0129.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0129.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0129.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0129.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0130.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0130.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0130.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0130.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0131.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0131.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0131.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0131.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0132.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0132.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0132.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0132.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0133.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0133.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0133.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0133.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0134.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0134.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0134.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0134.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0135.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0135.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0135.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0135.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0136.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0136.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0136.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0136.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0137.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0137.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0137.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0137.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0138.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0138.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0138.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0138.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0139.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0139.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0139.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0139.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0140.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0140.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0140.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0140.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0141.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0141.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0141.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0141.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0142.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0142.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0142.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0142.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0143.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0143.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0143.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0143.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0144.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0144.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0144.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0144.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0145.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0145.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0145.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0145.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0146.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0146.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0146.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0146.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0147.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0147.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0147.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0147.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0148.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0148.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0148.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0148.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0149.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0149.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0149.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0149.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0150.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0150.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0150.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0150.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0151.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0151.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0151.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0151.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0152.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0152.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0152.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0152.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0153.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0153.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0153.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0153.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0154.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0154.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0154.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0154.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0155.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0155.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0155.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0155.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0156.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0156.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0156.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0156.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0157.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0157.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0157.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0157.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0158.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0158.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0158.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0158.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0159.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0159.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0159.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0159.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0160.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0160.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0160.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0160.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0161.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0161.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0161.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0161.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0162.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0162.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0162.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0162.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0163.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0163.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0163.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0163.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0164.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0164.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0164.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0164.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0165.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0165.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0165.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0165.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0166.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0166.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0166.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0166.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0167.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0167.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0167.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0167.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0168.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0168.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0168.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0168.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0169.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0169.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0169.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0169.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0170.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0170.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0170.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0170.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0171.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0171.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0171.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0171.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0172.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0172.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0172.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0172.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0173.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0173.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0173.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0173.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0174.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0174.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0174.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0174.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0175.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0175.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0175.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0175.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0176.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0176.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0176.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0176.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0177.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0177.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0177.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0177.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0178.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0178.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0178.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0178.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0179.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0179.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0179.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0179.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0180.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0180.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0180.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0180.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0181.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0181.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0181.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0181.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0182.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0182.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0182.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0182.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0183.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0183.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0183.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0183.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0184.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0184.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0184.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0184.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0185.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0185.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0185.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0185.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0186.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0186.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0186.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0186.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0187.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0187.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0187.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0187.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0188.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0188.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0188.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0188.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0189.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0189.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0189.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0189.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0190.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0190.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0190.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0190.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0191.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0191.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0191.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0191.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0192.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0192.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0192.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0192.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0193.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0193.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0193.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0193.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0194.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0194.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0194.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0194.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0195.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0195.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0195.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0195.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0196.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0196.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0196.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0196.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0197.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0197.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0197.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0197.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0198.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0198.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0198.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0198.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0199.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0199.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0199.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0199.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0200.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0200.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0200.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0200.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0201.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0201.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0201.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0201.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0202.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0202.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0202.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0202.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0203.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0203.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0203.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0203.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0204.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0204.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0204.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0204.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0205.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0205.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0205.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0205.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0206.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0206.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0206.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0206.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0207.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0207.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0207.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0207.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0208.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0208.py similarity index 98% rename from githubkit/versions/ghec_v2022_11_28/types/group_0208.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0208.py index 3da32bc124..1075b5cea0 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0208.py +++ b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0208.py @@ -48,7 +48,7 @@ class IssueCommentType(TypedDict): "OWNER", ] ] - performed_via_github_app: NotRequired[Union[None, IntegrationType, None]] + performed_via_github_app: NotRequired[Union[None, IntegrationType]] reactions: NotRequired[ReactionRollupType] pin: NotRequired[Union[None, PinnedIssueCommentType]] @@ -82,7 +82,7 @@ class IssueCommentTypeForResponse(TypedDict): "OWNER", ] ] - performed_via_github_app: NotRequired[Union[None, IntegrationTypeForResponse, None]] + performed_via_github_app: NotRequired[Union[None, IntegrationTypeForResponse]] reactions: NotRequired[ReactionRollupTypeForResponse] pin: NotRequired[Union[None, PinnedIssueCommentTypeForResponse]] diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0209.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0209.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0209.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0209.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0210.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0210.py similarity index 99% rename from githubkit/versions/ghec_v2022_11_28/types/group_0210.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0210.py index 127d3df56c..292a158058 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0210.py +++ b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0210.py @@ -70,7 +70,7 @@ class IssueType(TypedDict): timeline_url: NotRequired[str] type: NotRequired[Union[IssueTypeType, None]] repository: NotRequired[RepositoryType] - performed_via_github_app: NotRequired[Union[None, IntegrationType, None]] + performed_via_github_app: NotRequired[Union[None, IntegrationType]] author_association: NotRequired[ Literal[ "COLLABORATOR", @@ -132,7 +132,7 @@ class IssueTypeForResponse(TypedDict): timeline_url: NotRequired[str] type: NotRequired[Union[IssueTypeTypeForResponse, None]] repository: NotRequired[RepositoryTypeForResponse] - performed_via_github_app: NotRequired[Union[None, IntegrationTypeForResponse, None]] + performed_via_github_app: NotRequired[Union[None, IntegrationTypeForResponse]] author_association: NotRequired[ Literal[ "COLLABORATOR", diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0211.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0211.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0211.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0211.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0212.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0212.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0212.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0212.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0213.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0213.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0213.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0213.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0214.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0214.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0214.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0214.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0215.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0215.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0215.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0215.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0216.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0216.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0216.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0216.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0217.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0217.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0217.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0217.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0218.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0218.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0218.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0218.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0219.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0219.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0219.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0219.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0220.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0220.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0220.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0220.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0221.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0221.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0221.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0221.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0222.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0222.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0222.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0222.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0223.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0223.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0223.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0223.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0224.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0224.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0224.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0224.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0225.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0225.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0225.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0225.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0226.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0226.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0226.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0226.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0227.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0227.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0227.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0227.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0228.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0228.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0228.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0228.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0229.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0229.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0229.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0229.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0230.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0230.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0230.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0230.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0231.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0231.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0231.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0231.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0232.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0232.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0232.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0232.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0233.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0233.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0233.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0233.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0234.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0234.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0234.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0234.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0235.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0235.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0235.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0235.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0236.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0236.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0236.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0236.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0237.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0237.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0237.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0237.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0238.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0238.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0238.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0238.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0239.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0239.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0239.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0239.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0240.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0240.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0240.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0240.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0241.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0241.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0241.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0241.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0242.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0242.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0242.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0242.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0243.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0243.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0243.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0243.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0244.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0244.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0244.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0244.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0245.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0245.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0245.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0245.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0246.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0246.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0246.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0246.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0247.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0247.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0247.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0247.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0248.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0248.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0248.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0248.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0249.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0249.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0249.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0249.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0250.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0250.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0250.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0250.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0251.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0251.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0251.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0251.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0252.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0252.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0252.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0252.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0253.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0253.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0253.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0253.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0254.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0254.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0254.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0254.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0255.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0255.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0255.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0255.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0256.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0256.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0256.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0256.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0257.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0257.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0257.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0257.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0258.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0258.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0258.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0258.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0259.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0259.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0259.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0259.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0260.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0260.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0260.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0260.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0261.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0261.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0261.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0261.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0262.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0262.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0262.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0262.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0263.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0263.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0263.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0263.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0264.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0264.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0264.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0264.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0265.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0265.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0265.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0265.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0266.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0266.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0266.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0266.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0267.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0267.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0267.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0267.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0268.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0268.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0268.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0268.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0269.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0269.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0269.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0269.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0270.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0270.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0270.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0270.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0271.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0271.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0271.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0271.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0272.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0272.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0272.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0272.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0273.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0273.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0273.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0273.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0274.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0274.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0274.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0274.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0275.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0275.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0275.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0275.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0276.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0276.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0276.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0276.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0277.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0277.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0277.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0277.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0278.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0278.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0278.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0278.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0279.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0279.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0279.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0279.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0280.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0280.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0280.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0280.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0281.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0281.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0281.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0281.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0282.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0282.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0282.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0282.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0283.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0283.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0283.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0283.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0284.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0284.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0284.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0284.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0285.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0285.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0285.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0285.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0286.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0286.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0286.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0286.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0287.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0287.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0287.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0287.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0288.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0288.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0288.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0288.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0289.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0289.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0289.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0289.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0290.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0290.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0290.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0290.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0291.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0291.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0291.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0291.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0292.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0292.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0292.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0292.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0293.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0293.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0293.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0293.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0294.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0294.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0294.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0294.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0295.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0295.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0295.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0295.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0296.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0296.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0296.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0296.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0297.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0297.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0297.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0297.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0298.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0298.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0298.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0298.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0299.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0299.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0299.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0299.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0300.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0300.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0300.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0300.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0301.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0301.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0301.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0301.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0302.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0302.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0302.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0302.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0303.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0303.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0303.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0303.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0304.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0304.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0304.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0304.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0305.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0305.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0305.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0305.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0306.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0306.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0306.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0306.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0307.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0307.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0307.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0307.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0308.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0308.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0308.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0308.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0309.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0309.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0309.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0309.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0310.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0310.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0310.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0310.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0311.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0311.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0311.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0311.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0312.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0312.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0312.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0312.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0313.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0313.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0313.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0313.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0314.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0314.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0314.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0314.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0315.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0315.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0315.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0315.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0316.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0316.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0316.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0316.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0317.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0317.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0317.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0317.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0318.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0318.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0318.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0318.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0319.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0319.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0319.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0319.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0320.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0320.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0320.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0320.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0321.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0321.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0321.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0321.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0322.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0322.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0322.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0322.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0323.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0323.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0323.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0323.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0324.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0324.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0324.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0324.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0325.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0325.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0325.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0325.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0326.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0326.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0326.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0326.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0327.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0327.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0327.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0327.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0328.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0328.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0328.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0328.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0329.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0329.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0329.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0329.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0330.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0330.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0330.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0330.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0331.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0331.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0331.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0331.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0332.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0332.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0332.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0332.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0333.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0333.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0333.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0333.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0334.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0334.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0334.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0334.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0335.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0335.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0335.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0335.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0336.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0336.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0336.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0336.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0337.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0337.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0337.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0337.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0338.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0338.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0338.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0338.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0339.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0339.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0339.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0339.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0340.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0340.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0340.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0340.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0341.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0341.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0341.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0341.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0342.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0342.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0342.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0342.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0343.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0343.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0343.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0343.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0344.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0344.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0344.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0344.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0345.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0345.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0345.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0345.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0346.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0346.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0346.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0346.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0347.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0347.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0347.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0347.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0348.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0348.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0348.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0348.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0349.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0349.py similarity index 98% rename from githubkit/versions/ghec_v2022_11_28/types/group_0349.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0349.py index ec9b47bfff..58cb672999 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0349.py +++ b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0349.py @@ -40,7 +40,7 @@ class DeploymentType(TypedDict): repository_url: str transient_environment: NotRequired[bool] production_environment: NotRequired[bool] - performed_via_github_app: NotRequired[Union[None, IntegrationType, None]] + performed_via_github_app: NotRequired[Union[None, IntegrationType]] class DeploymentTypeForResponse(TypedDict): @@ -66,7 +66,7 @@ class DeploymentTypeForResponse(TypedDict): repository_url: str transient_environment: NotRequired[bool] production_environment: NotRequired[bool] - performed_via_github_app: NotRequired[Union[None, IntegrationTypeForResponse, None]] + performed_via_github_app: NotRequired[Union[None, IntegrationTypeForResponse]] DeploymentPropPayloadOneof0Type: TypeAlias = dict[str, Any] diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0350.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0350.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0350.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0350.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0351.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0351.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0351.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0351.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0352.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0352.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0352.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0352.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0353.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0353.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0353.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0353.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0354.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0354.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0354.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0354.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0355.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0355.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0355.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0355.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0356.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0356.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0356.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0356.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0357.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0357.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0357.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0357.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0358.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0358.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0358.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0358.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0359.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0359.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0359.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0359.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0360.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0360.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0360.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0360.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0361.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0361.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0361.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0361.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0362.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0362.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0362.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0362.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0363.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0363.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0363.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0363.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0364.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0364.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0364.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0364.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0365.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0365.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0365.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0365.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0366.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0366.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0366.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0366.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0367.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0367.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0367.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0367.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0368.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0368.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0368.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0368.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0369.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0369.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0369.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0369.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0370.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0370.py similarity index 97% rename from githubkit/versions/ghec_v2022_11_28/types/group_0370.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0370.py index 5aa09ed91d..67b2d3310c 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0370.py +++ b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0370.py @@ -36,7 +36,7 @@ class DeploymentSimpleType(TypedDict): repository_url: str transient_environment: NotRequired[bool] production_environment: NotRequired[bool] - performed_via_github_app: NotRequired[Union[None, IntegrationType, None]] + performed_via_github_app: NotRequired[Union[None, IntegrationType]] class DeploymentSimpleTypeForResponse(TypedDict): @@ -59,7 +59,7 @@ class DeploymentSimpleTypeForResponse(TypedDict): repository_url: str transient_environment: NotRequired[bool] production_environment: NotRequired[bool] - performed_via_github_app: NotRequired[Union[None, IntegrationTypeForResponse, None]] + performed_via_github_app: NotRequired[Union[None, IntegrationTypeForResponse]] __all__ = ( diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0371.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0371.py similarity index 97% rename from githubkit/versions/ghec_v2022_11_28/types/group_0371.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0371.py index 602b34e7e5..d3c38f9317 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0371.py +++ b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0371.py @@ -51,7 +51,7 @@ class CheckRunType(TypedDict): output: CheckRunPropOutputType name: str check_suite: Union[CheckRunPropCheckSuiteType, None] - app: Union[None, IntegrationType, None] + app: Union[None, IntegrationType] pull_requests: list[PullRequestMinimalType] deployment: NotRequired[DeploymentSimpleType] @@ -89,7 +89,7 @@ class CheckRunTypeForResponse(TypedDict): output: CheckRunPropOutputTypeForResponse name: str check_suite: Union[CheckRunPropCheckSuiteTypeForResponse, None] - app: Union[None, IntegrationTypeForResponse, None] + app: Union[None, IntegrationTypeForResponse] pull_requests: list[PullRequestMinimalTypeForResponse] deployment: NotRequired[DeploymentSimpleTypeForResponse] diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0372.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0372.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0372.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0372.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0373.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0373.py similarity index 97% rename from githubkit/versions/ghec_v2022_11_28/types/group_0373.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0373.py index e8511ce567..3e98300d99 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0373.py +++ b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0373.py @@ -53,7 +53,7 @@ class CheckSuiteType(TypedDict): before: Union[str, None] after: Union[str, None] pull_requests: Union[list[PullRequestMinimalType], None] - app: Union[None, IntegrationType, None] + app: Union[None, IntegrationType] repository: MinimalRepositoryType created_at: Union[_dt.datetime, None] updated_at: Union[_dt.datetime, None] @@ -98,7 +98,7 @@ class CheckSuiteTypeForResponse(TypedDict): before: Union[str, None] after: Union[str, None] pull_requests: Union[list[PullRequestMinimalTypeForResponse], None] - app: Union[None, IntegrationTypeForResponse, None] + app: Union[None, IntegrationTypeForResponse] repository: MinimalRepositoryTypeForResponse created_at: Union[str, None] updated_at: Union[str, None] diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0374.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0374.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0374.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0374.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0375.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0375.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0375.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0375.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0376.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0376.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0376.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0376.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0377.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0377.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0377.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0377.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0378.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0378.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0378.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0378.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0379.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0379.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0379.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0379.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0380.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0380.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0380.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0380.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0381.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0381.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0381.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0381.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0382.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0382.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0382.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0382.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0383.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0383.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0383.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0383.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0384.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0384.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0384.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0384.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0385.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0385.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0385.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0385.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0386.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0386.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0386.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0386.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0387.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0387.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0387.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0387.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0388.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0388.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0388.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0388.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0389.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0389.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0389.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0389.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0390.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0390.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0390.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0390.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0391.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0391.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0391.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0391.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0392.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0392.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0392.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0392.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0393.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0393.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0393.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0393.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0394.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0394.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0394.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0394.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0395.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0395.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0395.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0395.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0396.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0396.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0396.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0396.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0397.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0397.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0397.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0397.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0398.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0398.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0398.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0398.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0399.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0399.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0399.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0399.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0400.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0400.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0400.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0400.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0401.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0401.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0401.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0401.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0402.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0402.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0402.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0402.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0403.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0403.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0403.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0403.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0404.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0404.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0404.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0404.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0405.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0405.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0405.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0405.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0406.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0406.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0406.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0406.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0407.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0407.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0407.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0407.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0408.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0408.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0408.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0408.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0409.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0409.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0409.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0409.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0410.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0410.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0410.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0410.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0411.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0411.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0411.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0411.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0412.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0412.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0412.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0412.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0413.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0413.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0413.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0413.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0414.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0414.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0414.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0414.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0415.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0415.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0415.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0415.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0416.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0416.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0416.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0416.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0417.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0417.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0417.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0417.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0418.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0418.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0418.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0418.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0419.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0419.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0419.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0419.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0420.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0420.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0420.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0420.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0421.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0421.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0421.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0421.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0422.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0422.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0422.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0422.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0423.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0423.py similarity index 97% rename from githubkit/versions/ghec_v2022_11_28/types/group_0423.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0423.py index 61d78a0498..b659d7ac2a 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0423.py +++ b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0423.py @@ -39,7 +39,7 @@ class DeploymentStatusType(TypedDict): repository_url: str environment_url: NotRequired[str] log_url: NotRequired[str] - performed_via_github_app: NotRequired[Union[None, IntegrationType, None]] + performed_via_github_app: NotRequired[Union[None, IntegrationType]] class DeploymentStatusTypeForResponse(TypedDict): @@ -64,7 +64,7 @@ class DeploymentStatusTypeForResponse(TypedDict): repository_url: str environment_url: NotRequired[str] log_url: NotRequired[str] - performed_via_github_app: NotRequired[Union[None, IntegrationTypeForResponse, None]] + performed_via_github_app: NotRequired[Union[None, IntegrationTypeForResponse]] __all__ = ( diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0424.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0424.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0424.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0424.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0425.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0425.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0425.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0425.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0426.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0426.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0426.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0426.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0427.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0427.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0427.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0427.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0428.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0428.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0428.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0428.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0429.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0429.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0429.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0429.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0430.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0430.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0430.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0430.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0431.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0431.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0431.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0431.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0432.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0432.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0432.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0432.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0433.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0433.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0433.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0433.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0434.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0434.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0434.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0434.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0435.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0435.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0435.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0435.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0436.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0436.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0436.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0436.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0437.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0437.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0437.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0437.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0438.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0438.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0438.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0438.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0439.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0439.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0439.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0439.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0440.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0440.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0440.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0440.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0441.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0441.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0441.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0441.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0442.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0442.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0442.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0442.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0443.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0443.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0443.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0443.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0444.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0444.py similarity index 99% rename from githubkit/versions/ghec_v2022_11_28/types/group_0444.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0444.py index cafe57fcad..69c6ca0ec4 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0444.py +++ b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0444.py @@ -57,7 +57,7 @@ class IssueEventType(TypedDict): ] ] lock_reason: NotRequired[Union[str, None]] - performed_via_github_app: NotRequired[Union[None, IntegrationType, None]] + performed_via_github_app: NotRequired[Union[None, IntegrationType]] class IssueEventTypeForResponse(TypedDict): @@ -98,7 +98,7 @@ class IssueEventTypeForResponse(TypedDict): ] ] lock_reason: NotRequired[Union[str, None]] - performed_via_github_app: NotRequired[Union[None, IntegrationTypeForResponse, None]] + performed_via_github_app: NotRequired[Union[None, IntegrationTypeForResponse]] class IssueEventLabelType(TypedDict): diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0445.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0445.py similarity index 95% rename from githubkit/versions/ghec_v2022_11_28/types/group_0445.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0445.py index 5b9522f972..890c6fd308 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0445.py +++ b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0445.py @@ -30,7 +30,7 @@ class LabeledIssueEventType(TypedDict): commit_id: Union[str, None] commit_url: Union[str, None] created_at: str - performed_via_github_app: Union[None, IntegrationType, None] + performed_via_github_app: Union[None, IntegrationType] label: LabeledIssueEventPropLabelType @@ -48,7 +48,7 @@ class LabeledIssueEventTypeForResponse(TypedDict): commit_id: Union[str, None] commit_url: Union[str, None] created_at: str - performed_via_github_app: Union[None, IntegrationTypeForResponse, None] + performed_via_github_app: Union[None, IntegrationTypeForResponse] label: LabeledIssueEventPropLabelTypeForResponse diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0446.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0446.py similarity index 95% rename from githubkit/versions/ghec_v2022_11_28/types/group_0446.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0446.py index 607ed755a0..f5b8170bef 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0446.py +++ b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0446.py @@ -30,7 +30,7 @@ class UnlabeledIssueEventType(TypedDict): commit_id: Union[str, None] commit_url: Union[str, None] created_at: str - performed_via_github_app: Union[None, IntegrationType, None] + performed_via_github_app: Union[None, IntegrationType] label: UnlabeledIssueEventPropLabelType @@ -48,7 +48,7 @@ class UnlabeledIssueEventTypeForResponse(TypedDict): commit_id: Union[str, None] commit_url: Union[str, None] created_at: str - performed_via_github_app: Union[None, IntegrationTypeForResponse, None] + performed_via_github_app: Union[None, IntegrationTypeForResponse] label: UnlabeledIssueEventPropLabelTypeForResponse diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0447.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0447.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0447.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0447.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0448.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0448.py similarity index 94% rename from githubkit/versions/ghec_v2022_11_28/types/group_0448.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0448.py index 9f3572b6aa..4a42df9599 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0448.py +++ b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0448.py @@ -30,7 +30,7 @@ class UnassignedIssueEventType(TypedDict): commit_id: Union[str, None] commit_url: Union[str, None] created_at: str - performed_via_github_app: Union[None, IntegrationType, None] + performed_via_github_app: Union[None, IntegrationType] assignee: SimpleUserType assigner: SimpleUserType @@ -49,7 +49,7 @@ class UnassignedIssueEventTypeForResponse(TypedDict): commit_id: Union[str, None] commit_url: Union[str, None] created_at: str - performed_via_github_app: Union[None, IntegrationTypeForResponse, None] + performed_via_github_app: Union[None, IntegrationTypeForResponse] assignee: SimpleUserTypeForResponse assigner: SimpleUserTypeForResponse diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0449.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0449.py similarity index 95% rename from githubkit/versions/ghec_v2022_11_28/types/group_0449.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0449.py index 1a28663c59..1724338327 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0449.py +++ b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0449.py @@ -30,7 +30,7 @@ class MilestonedIssueEventType(TypedDict): commit_id: Union[str, None] commit_url: Union[str, None] created_at: str - performed_via_github_app: Union[None, IntegrationType, None] + performed_via_github_app: Union[None, IntegrationType] milestone: MilestonedIssueEventPropMilestoneType @@ -48,7 +48,7 @@ class MilestonedIssueEventTypeForResponse(TypedDict): commit_id: Union[str, None] commit_url: Union[str, None] created_at: str - performed_via_github_app: Union[None, IntegrationTypeForResponse, None] + performed_via_github_app: Union[None, IntegrationTypeForResponse] milestone: MilestonedIssueEventPropMilestoneTypeForResponse diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0450.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0450.py similarity index 95% rename from githubkit/versions/ghec_v2022_11_28/types/group_0450.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0450.py index 60ccecc3f7..b44670af28 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0450.py +++ b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0450.py @@ -30,7 +30,7 @@ class DemilestonedIssueEventType(TypedDict): commit_id: Union[str, None] commit_url: Union[str, None] created_at: str - performed_via_github_app: Union[None, IntegrationType, None] + performed_via_github_app: Union[None, IntegrationType] milestone: DemilestonedIssueEventPropMilestoneType @@ -48,7 +48,7 @@ class DemilestonedIssueEventTypeForResponse(TypedDict): commit_id: Union[str, None] commit_url: Union[str, None] created_at: str - performed_via_github_app: Union[None, IntegrationTypeForResponse, None] + performed_via_github_app: Union[None, IntegrationTypeForResponse] milestone: DemilestonedIssueEventPropMilestoneTypeForResponse diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0451.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0451.py similarity index 95% rename from githubkit/versions/ghec_v2022_11_28/types/group_0451.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0451.py index 94b63e682f..c39a91c014 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0451.py +++ b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0451.py @@ -30,7 +30,7 @@ class RenamedIssueEventType(TypedDict): commit_id: Union[str, None] commit_url: Union[str, None] created_at: str - performed_via_github_app: Union[None, IntegrationType, None] + performed_via_github_app: Union[None, IntegrationType] rename: RenamedIssueEventPropRenameType @@ -48,7 +48,7 @@ class RenamedIssueEventTypeForResponse(TypedDict): commit_id: Union[str, None] commit_url: Union[str, None] created_at: str - performed_via_github_app: Union[None, IntegrationTypeForResponse, None] + performed_via_github_app: Union[None, IntegrationTypeForResponse] rename: RenamedIssueEventPropRenameTypeForResponse diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0452.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0452.py similarity index 95% rename from githubkit/versions/ghec_v2022_11_28/types/group_0452.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0452.py index de1d8c5685..a91d70ee5f 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0452.py +++ b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0452.py @@ -31,7 +31,7 @@ class ReviewRequestedIssueEventType(TypedDict): commit_id: Union[str, None] commit_url: Union[str, None] created_at: str - performed_via_github_app: Union[None, IntegrationType, None] + performed_via_github_app: Union[None, IntegrationType] review_requester: SimpleUserType requested_team: NotRequired[TeamType] requested_reviewer: NotRequired[SimpleUserType] @@ -51,7 +51,7 @@ class ReviewRequestedIssueEventTypeForResponse(TypedDict): commit_id: Union[str, None] commit_url: Union[str, None] created_at: str - performed_via_github_app: Union[None, IntegrationTypeForResponse, None] + performed_via_github_app: Union[None, IntegrationTypeForResponse] review_requester: SimpleUserTypeForResponse requested_team: NotRequired[TeamTypeForResponse] requested_reviewer: NotRequired[SimpleUserTypeForResponse] diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0453.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0453.py similarity index 95% rename from githubkit/versions/ghec_v2022_11_28/types/group_0453.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0453.py index 7255642d65..5572dc99a9 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0453.py +++ b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0453.py @@ -31,7 +31,7 @@ class ReviewRequestRemovedIssueEventType(TypedDict): commit_id: Union[str, None] commit_url: Union[str, None] created_at: str - performed_via_github_app: Union[None, IntegrationType, None] + performed_via_github_app: Union[None, IntegrationType] review_requester: SimpleUserType requested_team: NotRequired[TeamType] requested_reviewer: NotRequired[SimpleUserType] @@ -51,7 +51,7 @@ class ReviewRequestRemovedIssueEventTypeForResponse(TypedDict): commit_id: Union[str, None] commit_url: Union[str, None] created_at: str - performed_via_github_app: Union[None, IntegrationTypeForResponse, None] + performed_via_github_app: Union[None, IntegrationTypeForResponse] review_requester: SimpleUserTypeForResponse requested_team: NotRequired[TeamTypeForResponse] requested_reviewer: NotRequired[SimpleUserTypeForResponse] diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0454.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0454.py similarity index 96% rename from githubkit/versions/ghec_v2022_11_28/types/group_0454.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0454.py index 60e83087f6..ca32726c75 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0454.py +++ b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0454.py @@ -30,7 +30,7 @@ class ReviewDismissedIssueEventType(TypedDict): commit_id: Union[str, None] commit_url: Union[str, None] created_at: str - performed_via_github_app: Union[None, IntegrationType, None] + performed_via_github_app: Union[None, IntegrationType] dismissed_review: ReviewDismissedIssueEventPropDismissedReviewType @@ -48,7 +48,7 @@ class ReviewDismissedIssueEventTypeForResponse(TypedDict): commit_id: Union[str, None] commit_url: Union[str, None] created_at: str - performed_via_github_app: Union[None, IntegrationTypeForResponse, None] + performed_via_github_app: Union[None, IntegrationTypeForResponse] dismissed_review: ReviewDismissedIssueEventPropDismissedReviewTypeForResponse diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0455.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0455.py similarity index 94% rename from githubkit/versions/ghec_v2022_11_28/types/group_0455.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0455.py index b64f7e5588..b4190fbe44 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0455.py +++ b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0455.py @@ -30,7 +30,7 @@ class LockedIssueEventType(TypedDict): commit_id: Union[str, None] commit_url: Union[str, None] created_at: str - performed_via_github_app: Union[None, IntegrationType, None] + performed_via_github_app: Union[None, IntegrationType] lock_reason: Union[str, None] @@ -48,7 +48,7 @@ class LockedIssueEventTypeForResponse(TypedDict): commit_id: Union[str, None] commit_url: Union[str, None] created_at: str - performed_via_github_app: Union[None, IntegrationTypeForResponse, None] + performed_via_github_app: Union[None, IntegrationTypeForResponse] lock_reason: Union[str, None] diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0456.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0456.py similarity index 96% rename from githubkit/versions/ghec_v2022_11_28/types/group_0456.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0456.py index 1a7ae01706..5b4b16803e 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0456.py +++ b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0456.py @@ -30,7 +30,7 @@ class AddedToProjectIssueEventType(TypedDict): commit_id: Union[str, None] commit_url: Union[str, None] created_at: str - performed_via_github_app: Union[None, IntegrationType, None] + performed_via_github_app: Union[None, IntegrationType] project_card: NotRequired[AddedToProjectIssueEventPropProjectCardType] @@ -48,7 +48,7 @@ class AddedToProjectIssueEventTypeForResponse(TypedDict): commit_id: Union[str, None] commit_url: Union[str, None] created_at: str - performed_via_github_app: Union[None, IntegrationTypeForResponse, None] + performed_via_github_app: Union[None, IntegrationTypeForResponse] project_card: NotRequired[AddedToProjectIssueEventPropProjectCardTypeForResponse] diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0457.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0457.py similarity index 96% rename from githubkit/versions/ghec_v2022_11_28/types/group_0457.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0457.py index 1e0cd3854f..89fc05a616 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0457.py +++ b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0457.py @@ -30,7 +30,7 @@ class MovedColumnInProjectIssueEventType(TypedDict): commit_id: Union[str, None] commit_url: Union[str, None] created_at: str - performed_via_github_app: Union[None, IntegrationType, None] + performed_via_github_app: Union[None, IntegrationType] project_card: NotRequired[MovedColumnInProjectIssueEventPropProjectCardType] @@ -48,7 +48,7 @@ class MovedColumnInProjectIssueEventTypeForResponse(TypedDict): commit_id: Union[str, None] commit_url: Union[str, None] created_at: str - performed_via_github_app: Union[None, IntegrationTypeForResponse, None] + performed_via_github_app: Union[None, IntegrationTypeForResponse] project_card: NotRequired[ MovedColumnInProjectIssueEventPropProjectCardTypeForResponse ] diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0458.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0458.py similarity index 96% rename from githubkit/versions/ghec_v2022_11_28/types/group_0458.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0458.py index d713e771b0..d8507cc4c6 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0458.py +++ b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0458.py @@ -30,7 +30,7 @@ class RemovedFromProjectIssueEventType(TypedDict): commit_id: Union[str, None] commit_url: Union[str, None] created_at: str - performed_via_github_app: Union[None, IntegrationType, None] + performed_via_github_app: Union[None, IntegrationType] project_card: NotRequired[RemovedFromProjectIssueEventPropProjectCardType] @@ -48,7 +48,7 @@ class RemovedFromProjectIssueEventTypeForResponse(TypedDict): commit_id: Union[str, None] commit_url: Union[str, None] created_at: str - performed_via_github_app: Union[None, IntegrationTypeForResponse, None] + performed_via_github_app: Union[None, IntegrationTypeForResponse] project_card: NotRequired[ RemovedFromProjectIssueEventPropProjectCardTypeForResponse ] diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0459.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0459.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0459.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0459.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0460.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0460.py similarity index 98% rename from githubkit/versions/ghec_v2022_11_28/types/group_0460.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0460.py index 36c0a4f8ad..f2d3f10a26 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0460.py +++ b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0460.py @@ -48,7 +48,7 @@ class TimelineCommentEventType(TypedDict): "NONE", "OWNER", ] - performed_via_github_app: NotRequired[Union[None, IntegrationType, None]] + performed_via_github_app: NotRequired[Union[None, IntegrationType]] reactions: NotRequired[ReactionRollupType] pin: NotRequired[Union[None, PinnedIssueCommentType]] @@ -82,7 +82,7 @@ class TimelineCommentEventTypeForResponse(TypedDict): "NONE", "OWNER", ] - performed_via_github_app: NotRequired[Union[None, IntegrationTypeForResponse, None]] + performed_via_github_app: NotRequired[Union[None, IntegrationTypeForResponse]] reactions: NotRequired[ReactionRollupTypeForResponse] pin: NotRequired[Union[None, PinnedIssueCommentTypeForResponse]] diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0461.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0461.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0461.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0461.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0462.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0462.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0462.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0462.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0463.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0463.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0463.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0463.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0464.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0464.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0464.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0464.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0465.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0465.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0465.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0465.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0466.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0466.py similarity index 94% rename from githubkit/versions/ghec_v2022_11_28/types/group_0466.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0466.py index cdf3fbdf4f..effa45ad0a 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0466.py +++ b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0466.py @@ -30,7 +30,7 @@ class TimelineAssignedIssueEventType(TypedDict): commit_id: Union[str, None] commit_url: Union[str, None] created_at: str - performed_via_github_app: Union[None, IntegrationType, None] + performed_via_github_app: Union[None, IntegrationType] assignee: SimpleUserType @@ -48,7 +48,7 @@ class TimelineAssignedIssueEventTypeForResponse(TypedDict): commit_id: Union[str, None] commit_url: Union[str, None] created_at: str - performed_via_github_app: Union[None, IntegrationTypeForResponse, None] + performed_via_github_app: Union[None, IntegrationTypeForResponse] assignee: SimpleUserTypeForResponse diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0467.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0467.py similarity index 94% rename from githubkit/versions/ghec_v2022_11_28/types/group_0467.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0467.py index d35d38d156..c807facca3 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0467.py +++ b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0467.py @@ -30,7 +30,7 @@ class TimelineUnassignedIssueEventType(TypedDict): commit_id: Union[str, None] commit_url: Union[str, None] created_at: str - performed_via_github_app: Union[None, IntegrationType, None] + performed_via_github_app: Union[None, IntegrationType] assignee: SimpleUserType @@ -48,7 +48,7 @@ class TimelineUnassignedIssueEventTypeForResponse(TypedDict): commit_id: Union[str, None] commit_url: Union[str, None] created_at: str - performed_via_github_app: Union[None, IntegrationTypeForResponse, None] + performed_via_github_app: Union[None, IntegrationTypeForResponse] assignee: SimpleUserTypeForResponse diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0468.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0468.py similarity index 94% rename from githubkit/versions/ghec_v2022_11_28/types/group_0468.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0468.py index 8cd6db3e2f..6acc686d25 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0468.py +++ b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0468.py @@ -30,7 +30,7 @@ class StateChangeIssueEventType(TypedDict): commit_id: Union[str, None] commit_url: Union[str, None] created_at: str - performed_via_github_app: Union[None, IntegrationType, None] + performed_via_github_app: Union[None, IntegrationType] state_reason: NotRequired[Union[str, None]] @@ -48,7 +48,7 @@ class StateChangeIssueEventTypeForResponse(TypedDict): commit_id: Union[str, None] commit_url: Union[str, None] created_at: str - performed_via_github_app: Union[None, IntegrationTypeForResponse, None] + performed_via_github_app: Union[None, IntegrationTypeForResponse] state_reason: NotRequired[Union[str, None]] diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0469.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0469.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0469.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0469.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0470.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0470.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0470.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0470.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0471.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0471.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0471.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0471.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0472.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0472.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0472.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0472.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0473.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0473.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0473.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0473.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0474.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0474.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0474.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0474.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0475.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0475.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0475.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0475.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0476.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0476.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0476.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0476.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0477.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0477.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0477.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0477.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0478.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0478.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0478.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0478.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0479.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0479.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0479.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0479.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0480.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0480.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0480.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0480.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0481.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0481.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0481.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0481.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0482.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0482.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0482.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0482.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0483.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0483.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0483.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0483.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0484.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0484.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0484.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0484.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0485.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0485.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0485.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0485.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0486.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0486.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0486.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0486.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0487.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0487.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0487.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0487.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0488.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0488.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0488.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0488.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0489.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0489.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0489.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0489.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0490.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0490.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0490.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0490.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0491.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0491.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0491.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0491.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0492.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0492.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0492.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0492.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0493.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0493.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0493.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0493.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0494.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0494.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0494.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0494.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0495.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0495.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0495.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0495.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0496.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0496.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0496.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0496.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0497.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0497.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0497.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0497.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0498.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0498.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0498.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0498.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0499.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0499.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0499.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0499.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0500.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0500.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0500.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0500.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0501.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0501.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0501.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0501.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0502.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0502.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0502.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0502.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0503.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0503.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0503.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0503.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0504.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0504.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0504.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0504.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0505.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0505.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0505.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0505.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0506.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0506.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0506.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0506.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0507.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0507.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0507.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0507.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0508.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0508.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0508.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0508.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0509.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0509.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0509.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0509.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0510.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0510.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0510.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0510.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0511.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0511.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0511.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0511.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0512.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0512.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0512.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0512.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0513.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0513.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0513.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0513.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0514.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0514.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0514.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0514.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0515.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0515.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0515.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0515.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0516.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0516.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0516.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0516.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0517.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0517.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0517.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0517.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0518.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0518.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0518.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0518.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0519.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0519.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0519.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0519.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0520.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0520.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0520.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0520.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0521.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0521.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0521.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0521.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0522.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0522.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0522.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0522.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0523.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0523.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0523.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0523.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0524.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0524.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0524.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0524.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0525.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0525.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0525.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0525.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0526.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0526.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0526.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0526.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0527.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0527.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0527.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0527.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0528.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0528.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0528.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0528.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0529.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0529.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0529.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0529.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0530.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0530.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0530.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0530.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0531.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0531.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0531.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0531.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0532.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0532.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0532.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0532.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0533.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0533.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0533.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0533.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0534.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0534.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0534.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0534.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0535.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0535.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0535.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0535.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0536.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0536.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0536.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0536.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0537.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0537.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0537.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0537.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0538.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0538.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0538.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0538.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0539.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0539.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0539.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0539.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0540.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0540.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0540.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0540.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0541.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0541.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0541.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0541.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0542.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0542.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0542.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0542.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0543.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0543.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0543.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0543.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0544.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0544.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0544.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0544.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0545.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0545.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0545.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0545.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0546.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0546.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0546.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0546.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0547.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0547.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0547.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0547.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0548.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0548.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0548.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0548.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0549.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0549.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0549.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0549.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0550.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0550.py similarity index 99% rename from githubkit/versions/ghec_v2022_11_28/types/group_0550.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0550.py index aab44e56c2..7b23a7a897 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0550.py +++ b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0550.py @@ -85,7 +85,7 @@ class IssueSearchResultItemType(TypedDict): body_text: NotRequired[str] timeline_url: NotRequired[str] type: NotRequired[Union[IssueTypeType, None]] - performed_via_github_app: NotRequired[Union[None, IntegrationType, None]] + performed_via_github_app: NotRequired[Union[None, IntegrationType]] pinned_comment: NotRequired[Union[None, IssueCommentType]] reactions: NotRequired[ReactionRollupType] @@ -142,7 +142,7 @@ class IssueSearchResultItemTypeForResponse(TypedDict): body_text: NotRequired[str] timeline_url: NotRequired[str] type: NotRequired[Union[IssueTypeTypeForResponse, None]] - performed_via_github_app: NotRequired[Union[None, IntegrationTypeForResponse, None]] + performed_via_github_app: NotRequired[Union[None, IntegrationTypeForResponse]] pinned_comment: NotRequired[Union[None, IssueCommentTypeForResponse]] reactions: NotRequired[ReactionRollupTypeForResponse] diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0551.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0551.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0551.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0551.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0552.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0552.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0552.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0552.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0553.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0553.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0553.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0553.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0554.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0554.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0554.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0554.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0555.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0555.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0555.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0555.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0556.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0556.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0556.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0556.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0557.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0557.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0557.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0557.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0558.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0558.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0558.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0558.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0559.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0559.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0559.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0559.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0560.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0560.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0560.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0560.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0561.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0561.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0561.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0561.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0562.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0562.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0562.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0562.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0563.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0563.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0563.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0563.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0564.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0564.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0564.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0564.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0565.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0565.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0565.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0565.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0566.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0566.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0566.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0566.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0567.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0567.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0567.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0567.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0568.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0568.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0568.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0568.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0569.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0569.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0569.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0569.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0570.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0570.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0570.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0570.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0571.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0571.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0571.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0571.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0572.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0572.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0572.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0572.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0573.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0573.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0573.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0573.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0574.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0574.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0574.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0574.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0575.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0575.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0575.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0575.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0576.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0576.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0576.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0576.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0577.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0577.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0577.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0577.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0578.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0578.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0578.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0578.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0579.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0579.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0579.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0579.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0580.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0580.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0580.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0580.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0581.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0581.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0581.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0581.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0582.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0582.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0582.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0582.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0583.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0583.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0583.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0583.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0584.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0584.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0584.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0584.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0585.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0585.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0585.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0585.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0586.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0586.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0586.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0586.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0587.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0587.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0587.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0587.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0588.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0588.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0588.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0588.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0589.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0589.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0589.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0589.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0590.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0590.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0590.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0590.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0591.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0591.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0591.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0591.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0592.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0592.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0592.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0592.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0593.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0593.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0593.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0593.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0594.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0594.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0594.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0594.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0595.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0595.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0595.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0595.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0596.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0596.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0596.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0596.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0597.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0597.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0597.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0597.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0598.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0598.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0598.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0598.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0599.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0599.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0599.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0599.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0600.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0600.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0600.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0600.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0601.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0601.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0601.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0601.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0602.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0602.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0602.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0602.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0603.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0603.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0603.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0603.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0604.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0604.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0604.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0604.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0605.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0605.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0605.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0605.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0606.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0606.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0606.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0606.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0607.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0607.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0607.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0607.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0608.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0608.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0608.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0608.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0609.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0609.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0609.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0609.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0610.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0610.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0610.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0610.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0611.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0611.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0611.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0611.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0612.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0612.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0612.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0612.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0613.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0613.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0613.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0613.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0614.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0614.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0614.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0614.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0615.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0615.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0615.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0615.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0616.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0616.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0616.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0616.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0617.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0617.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0617.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0617.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0618.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0618.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0618.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0618.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0619.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0619.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0619.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0619.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0620.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0620.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0620.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0620.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0621.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0621.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0621.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0621.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0622.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0622.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0622.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0622.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0623.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0623.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0623.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0623.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0624.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0624.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0624.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0624.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0625.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0625.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0625.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0625.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0626.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0626.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0626.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0626.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0627.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0627.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0627.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0627.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0628.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0628.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0628.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0628.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0629.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0629.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0629.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0629.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0630.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0630.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0630.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0630.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0631.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0631.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0631.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0631.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0632.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0632.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0632.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0632.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0633.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0633.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0633.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0633.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0634.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0634.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0634.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0634.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0635.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0635.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0635.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0635.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0636.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0636.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0636.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0636.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0637.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0637.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0637.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0637.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0638.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0638.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0638.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0638.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0639.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0639.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0639.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0639.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0640.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0640.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0640.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0640.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0641.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0641.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0641.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0641.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0642.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0642.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0642.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0642.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0643.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0643.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0643.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0643.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0644.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0644.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0644.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0644.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0645.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0645.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0645.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0645.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0646.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0646.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0646.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0646.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0647.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0647.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0647.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0647.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0648.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0648.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0648.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0648.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0649.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0649.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0649.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0649.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0650.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0650.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0650.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0650.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0651.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0651.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0651.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0651.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0652.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0652.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0652.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0652.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0653.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0653.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0653.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0653.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0654.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0654.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0654.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0654.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0655.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0655.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0655.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0655.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0656.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0656.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0656.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0656.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0657.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0657.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0657.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0657.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0658.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0658.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0658.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0658.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0659.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0659.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0659.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0659.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0660.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0660.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0660.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0660.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0661.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0661.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0661.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0661.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0662.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0662.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0662.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0662.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0663.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0663.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0663.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0663.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0664.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0664.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0664.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0664.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0665.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0665.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0665.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0665.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0666.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0666.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0666.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0666.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0667.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0667.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0667.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0667.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0668.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0668.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0668.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0668.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0669.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0669.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0669.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0669.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0670.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0670.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0670.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0670.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0671.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0671.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0671.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0671.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0672.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0672.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0672.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0672.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0673.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0673.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0673.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0673.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0674.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0674.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0674.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0674.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0675.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0675.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0675.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0675.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0676.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0676.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0676.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0676.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0677.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0677.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0677.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0677.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0678.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0678.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0678.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0678.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0679.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0679.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0679.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0679.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0680.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0680.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0680.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0680.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0681.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0681.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0681.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0681.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0682.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0682.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0682.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0682.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0683.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0683.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0683.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0683.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0684.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0684.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0684.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0684.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0685.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0685.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0685.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0685.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0686.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0686.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0686.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0686.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0687.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0687.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0687.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0687.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0688.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0688.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0688.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0688.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0689.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0689.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0689.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0689.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0690.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0690.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0690.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0690.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0691.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0691.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0691.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0691.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0692.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0692.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0692.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0692.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0693.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0693.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0693.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0693.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0694.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0694.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0694.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0694.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0695.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0695.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0695.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0695.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0696.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0696.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0696.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0696.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0697.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0697.py similarity index 97% rename from githubkit/versions/ghec_v2022_11_28/types/group_0697.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0697.py index 524591c1b4..6d34cfb9d0 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0697.py +++ b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0697.py @@ -48,7 +48,7 @@ class WebhookForkPropForkeeType(TypedDict): default_branch: str delete_branch_on_merge: NotRequired[bool] deployments_url: str - description: Union[Union[str, None], None] + description: Union[str, None] disabled: NotRequired[bool] downloads_url: str events_url: str @@ -66,7 +66,7 @@ class WebhookForkPropForkeeType(TypedDict): has_pages: bool has_projects: bool has_wiki: bool - homepage: Union[Union[str, None], None] + homepage: Union[str, None] hooks_url: str html_url: str id: int @@ -147,7 +147,7 @@ class WebhookForkPropForkeeTypeForResponse(TypedDict): default_branch: str delete_branch_on_merge: NotRequired[bool] deployments_url: str - description: Union[Union[str, None], None] + description: Union[str, None] disabled: NotRequired[bool] downloads_url: str events_url: str @@ -165,7 +165,7 @@ class WebhookForkPropForkeeTypeForResponse(TypedDict): has_pages: bool has_projects: bool has_wiki: bool - homepage: Union[Union[str, None], None] + homepage: Union[str, None] hooks_url: str html_url: str id: int diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0698.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0698.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0698.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0698.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0699.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0699.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0699.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0699.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0700.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0700.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0700.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0700.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0701.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0701.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0701.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0701.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0702.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0702.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0702.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0702.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0703.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0703.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0703.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0703.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0704.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0704.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0704.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0704.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0705.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0705.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0705.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0705.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0706.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0706.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0706.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0706.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0707.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0707.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0707.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0707.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0708.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0708.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0708.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0708.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0709.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0709.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0709.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0709.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0710.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0710.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0710.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0710.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0711.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0711.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0711.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0711.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0712.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0712.py similarity index 98% rename from githubkit/versions/ghec_v2022_11_28/types/group_0712.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0712.py index 5d01818e73..0a74e07dd8 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0712.py +++ b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0712.py @@ -40,7 +40,7 @@ class WebhookIssueCommentCreatedPropCommentType(TypedDict): id: int issue_url: str node_id: str - performed_via_github_app: Union[None, IntegrationType, None] + performed_via_github_app: Union[None, IntegrationType] reactions: WebhookIssueCommentCreatedPropCommentPropReactionsType updated_at: _dt.datetime url: str @@ -71,7 +71,7 @@ class WebhookIssueCommentCreatedPropCommentTypeForResponse(TypedDict): id: int issue_url: str node_id: str - performed_via_github_app: Union[None, IntegrationTypeForResponse, None] + performed_via_github_app: Union[None, IntegrationTypeForResponse] reactions: WebhookIssueCommentCreatedPropCommentPropReactionsTypeForResponse updated_at: str url: str diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0713.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0713.py similarity index 96% rename from githubkit/versions/ghec_v2022_11_28/types/group_0713.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0713.py index 864d8b1051..fca52ccfbc 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0713.py +++ b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0713.py @@ -48,9 +48,7 @@ class WebhookIssueCommentCreatedPropIssueType(TypedDict): active_lock_reason: Union[ Literal["resolved", "off-topic", "too heated", "spam"], None ] - assignee: Union[ - Union[WebhookIssueCommentCreatedPropIssueAllof0PropAssigneeType, None], None - ] + assignee: Union[WebhookIssueCommentCreatedPropIssueAllof0PropAssigneeType, None] assignees: list[WebhookIssueCommentCreatedPropIssueMergedAssigneesType] author_association: Literal[ "COLLABORATOR", @@ -62,7 +60,7 @@ class WebhookIssueCommentCreatedPropIssueType(TypedDict): "NONE", "OWNER", ] - body: Union[Union[str, None], None] + body: Union[str, None] closed_at: Union[_dt.datetime, None] comments: int comments_url: str @@ -108,10 +106,7 @@ class WebhookIssueCommentCreatedPropIssueTypeForResponse(TypedDict): Literal["resolved", "off-topic", "too heated", "spam"], None ] assignee: Union[ - Union[ - WebhookIssueCommentCreatedPropIssueAllof0PropAssigneeTypeForResponse, None - ], - None, + WebhookIssueCommentCreatedPropIssueAllof0PropAssigneeTypeForResponse, None ] assignees: list[WebhookIssueCommentCreatedPropIssueMergedAssigneesTypeForResponse] author_association: Literal[ @@ -124,7 +119,7 @@ class WebhookIssueCommentCreatedPropIssueTypeForResponse(TypedDict): "NONE", "OWNER", ] - body: Union[Union[str, None], None] + body: Union[str, None] closed_at: Union[str, None] comments: int comments_url: str diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0714.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0714.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0714.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0714.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0715.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0715.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0715.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0715.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0716.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0716.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0716.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0716.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0717.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0717.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0717.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0717.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0718.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0718.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0718.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0718.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0719.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0719.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0719.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0719.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0720.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0720.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0720.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0720.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0721.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0721.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0721.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0721.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0722.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0722.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0722.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0722.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0723.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0723.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0723.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0723.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0724.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0724.py similarity index 96% rename from githubkit/versions/ghec_v2022_11_28/types/group_0724.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0724.py index 2d233ea4bf..4fc029e54a 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0724.py +++ b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0724.py @@ -48,9 +48,7 @@ class WebhookIssueCommentDeletedPropIssueType(TypedDict): active_lock_reason: Union[ Literal["resolved", "off-topic", "too heated", "spam"], None ] - assignee: Union[ - Union[WebhookIssueCommentDeletedPropIssueAllof0PropAssigneeType, None], None - ] + assignee: Union[WebhookIssueCommentDeletedPropIssueAllof0PropAssigneeType, None] assignees: list[WebhookIssueCommentDeletedPropIssueMergedAssigneesType] author_association: Literal[ "COLLABORATOR", @@ -62,7 +60,7 @@ class WebhookIssueCommentDeletedPropIssueType(TypedDict): "NONE", "OWNER", ] - body: Union[Union[str, None], None] + body: Union[str, None] closed_at: Union[_dt.datetime, None] comments: int comments_url: str @@ -108,10 +106,7 @@ class WebhookIssueCommentDeletedPropIssueTypeForResponse(TypedDict): Literal["resolved", "off-topic", "too heated", "spam"], None ] assignee: Union[ - Union[ - WebhookIssueCommentDeletedPropIssueAllof0PropAssigneeTypeForResponse, None - ], - None, + WebhookIssueCommentDeletedPropIssueAllof0PropAssigneeTypeForResponse, None ] assignees: list[WebhookIssueCommentDeletedPropIssueMergedAssigneesTypeForResponse] author_association: Literal[ @@ -124,7 +119,7 @@ class WebhookIssueCommentDeletedPropIssueTypeForResponse(TypedDict): "NONE", "OWNER", ] - body: Union[Union[str, None], None] + body: Union[str, None] closed_at: Union[str, None] comments: int comments_url: str diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0725.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0725.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0725.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0725.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0726.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0726.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0726.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0726.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0727.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0727.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0727.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0727.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0728.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0728.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0728.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0728.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0729.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0729.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0729.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0729.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0730.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0730.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0730.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0730.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0731.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0731.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0731.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0731.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0732.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0732.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0732.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0732.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0733.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0733.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0733.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0733.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0734.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0734.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0734.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0734.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0735.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0735.py similarity index 96% rename from githubkit/versions/ghec_v2022_11_28/types/group_0735.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0735.py index 6e375b57e0..c051bad8dd 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0735.py +++ b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0735.py @@ -48,9 +48,7 @@ class WebhookIssueCommentEditedPropIssueType(TypedDict): active_lock_reason: Union[ Literal["resolved", "off-topic", "too heated", "spam"], None ] - assignee: Union[ - Union[WebhookIssueCommentEditedPropIssueAllof0PropAssigneeType, None], None - ] + assignee: Union[WebhookIssueCommentEditedPropIssueAllof0PropAssigneeType, None] assignees: list[WebhookIssueCommentEditedPropIssueMergedAssigneesType] author_association: Literal[ "COLLABORATOR", @@ -62,7 +60,7 @@ class WebhookIssueCommentEditedPropIssueType(TypedDict): "NONE", "OWNER", ] - body: Union[Union[str, None], None] + body: Union[str, None] closed_at: Union[_dt.datetime, None] comments: int comments_url: str @@ -108,10 +106,7 @@ class WebhookIssueCommentEditedPropIssueTypeForResponse(TypedDict): Literal["resolved", "off-topic", "too heated", "spam"], None ] assignee: Union[ - Union[ - WebhookIssueCommentEditedPropIssueAllof0PropAssigneeTypeForResponse, None - ], - None, + WebhookIssueCommentEditedPropIssueAllof0PropAssigneeTypeForResponse, None ] assignees: list[WebhookIssueCommentEditedPropIssueMergedAssigneesTypeForResponse] author_association: Literal[ @@ -124,7 +119,7 @@ class WebhookIssueCommentEditedPropIssueTypeForResponse(TypedDict): "NONE", "OWNER", ] - body: Union[Union[str, None], None] + body: Union[str, None] closed_at: Union[str, None] comments: int comments_url: str diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0736.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0736.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0736.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0736.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0737.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0737.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0737.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0737.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0738.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0738.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0738.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0738.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0739.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0739.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0739.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0739.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0740.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0740.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0740.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0740.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0741.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0741.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0741.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0741.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0742.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0742.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0742.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0742.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0743.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0743.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0743.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0743.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0744.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0744.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0744.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0744.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0745.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0745.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0745.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0745.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0746.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0746.py similarity index 96% rename from githubkit/versions/ghec_v2022_11_28/types/group_0746.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0746.py index 082d9a77ee..8b5d199292 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0746.py +++ b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0746.py @@ -48,9 +48,7 @@ class WebhookIssueCommentPinnedPropIssueType(TypedDict): active_lock_reason: Union[ Literal["resolved", "off-topic", "too heated", "spam"], None ] - assignee: Union[ - Union[WebhookIssueCommentPinnedPropIssueAllof0PropAssigneeType, None], None - ] + assignee: Union[WebhookIssueCommentPinnedPropIssueAllof0PropAssigneeType, None] assignees: list[WebhookIssueCommentPinnedPropIssueMergedAssigneesType] author_association: Literal[ "COLLABORATOR", @@ -62,7 +60,7 @@ class WebhookIssueCommentPinnedPropIssueType(TypedDict): "NONE", "OWNER", ] - body: Union[Union[str, None], None] + body: Union[str, None] closed_at: Union[_dt.datetime, None] comments: int comments_url: str @@ -108,10 +106,7 @@ class WebhookIssueCommentPinnedPropIssueTypeForResponse(TypedDict): Literal["resolved", "off-topic", "too heated", "spam"], None ] assignee: Union[ - Union[ - WebhookIssueCommentPinnedPropIssueAllof0PropAssigneeTypeForResponse, None - ], - None, + WebhookIssueCommentPinnedPropIssueAllof0PropAssigneeTypeForResponse, None ] assignees: list[WebhookIssueCommentPinnedPropIssueMergedAssigneesTypeForResponse] author_association: Literal[ @@ -124,7 +119,7 @@ class WebhookIssueCommentPinnedPropIssueTypeForResponse(TypedDict): "NONE", "OWNER", ] - body: Union[Union[str, None], None] + body: Union[str, None] closed_at: Union[str, None] comments: int comments_url: str diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0747.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0747.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0747.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0747.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0748.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0748.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0748.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0748.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0749.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0749.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0749.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0749.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0750.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0750.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0750.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0750.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0751.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0751.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0751.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0751.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0752.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0752.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0752.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0752.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0753.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0753.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0753.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0753.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0754.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0754.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0754.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0754.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0755.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0755.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0755.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0755.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0756.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0756.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0756.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0756.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0757.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0757.py similarity index 96% rename from githubkit/versions/ghec_v2022_11_28/types/group_0757.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0757.py index 843cf5e426..936471a639 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0757.py +++ b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0757.py @@ -48,9 +48,7 @@ class WebhookIssueCommentUnpinnedPropIssueType(TypedDict): active_lock_reason: Union[ Literal["resolved", "off-topic", "too heated", "spam"], None ] - assignee: Union[ - Union[WebhookIssueCommentUnpinnedPropIssueAllof0PropAssigneeType, None], None - ] + assignee: Union[WebhookIssueCommentUnpinnedPropIssueAllof0PropAssigneeType, None] assignees: list[WebhookIssueCommentUnpinnedPropIssueMergedAssigneesType] author_association: Literal[ "COLLABORATOR", @@ -62,7 +60,7 @@ class WebhookIssueCommentUnpinnedPropIssueType(TypedDict): "NONE", "OWNER", ] - body: Union[Union[str, None], None] + body: Union[str, None] closed_at: Union[_dt.datetime, None] comments: int comments_url: str @@ -108,10 +106,7 @@ class WebhookIssueCommentUnpinnedPropIssueTypeForResponse(TypedDict): Literal["resolved", "off-topic", "too heated", "spam"], None ] assignee: Union[ - Union[ - WebhookIssueCommentUnpinnedPropIssueAllof0PropAssigneeTypeForResponse, None - ], - None, + WebhookIssueCommentUnpinnedPropIssueAllof0PropAssigneeTypeForResponse, None ] assignees: list[WebhookIssueCommentUnpinnedPropIssueMergedAssigneesTypeForResponse] author_association: Literal[ @@ -124,7 +119,7 @@ class WebhookIssueCommentUnpinnedPropIssueTypeForResponse(TypedDict): "NONE", "OWNER", ] - body: Union[Union[str, None], None] + body: Union[str, None] closed_at: Union[str, None] comments: int comments_url: str diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0758.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0758.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0758.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0758.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0759.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0759.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0759.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0759.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0760.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0760.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0760.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0760.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0761.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0761.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0761.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0761.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0762.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0762.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0762.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0762.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0763.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0763.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0763.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0763.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0764.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0764.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0764.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0764.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0765.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0765.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0765.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0765.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0766.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0766.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0766.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0766.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0767.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0767.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0767.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0767.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0768.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0768.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0768.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0768.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0769.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0769.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0769.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0769.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0770.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0770.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0770.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0770.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0771.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0771.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0771.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0771.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0772.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0772.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0772.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0772.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0773.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0773.py similarity index 99% rename from githubkit/versions/ghec_v2022_11_28/types/group_0773.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0773.py index 001ae46080..e7c0c7fc9b 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0773.py +++ b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0773.py @@ -58,7 +58,7 @@ class WebhookIssuesClosedPropIssueType(TypedDict): "NONE", "OWNER", ] - body: Union[Union[str, None], None] + body: Union[str, None] closed_at: Union[_dt.datetime, None] comments: int comments_url: str @@ -117,7 +117,7 @@ class WebhookIssuesClosedPropIssueTypeForResponse(TypedDict): "NONE", "OWNER", ] - body: Union[Union[str, None], None] + body: Union[str, None] closed_at: Union[str, None] comments: int comments_url: str diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0774.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0774.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0774.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0774.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0775.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0775.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0775.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0775.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0776.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0776.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0776.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0776.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0777.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0777.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0777.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0777.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0778.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0778.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0778.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0778.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0779.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0779.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0779.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0779.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0780.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0780.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0780.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0780.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0781.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0781.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0781.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0781.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0782.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0782.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0782.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0782.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0783.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0783.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0783.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0783.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0784.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0784.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0784.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0784.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0785.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0785.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0785.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0785.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0786.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0786.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0786.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0786.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0787.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0787.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0787.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0787.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0788.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0788.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0788.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0788.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0789.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0789.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0789.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0789.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0790.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0790.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0790.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0790.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0791.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0791.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0791.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0791.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0792.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0792.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0792.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0792.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0793.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0793.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0793.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0793.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0794.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0794.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0794.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0794.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0795.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0795.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0795.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0795.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0796.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0796.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0796.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0796.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0797.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0797.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0797.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0797.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0798.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0798.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0798.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0798.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0799.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0799.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0799.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0799.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0800.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0800.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0800.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0800.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0801.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0801.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0801.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0801.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0802.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0802.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0802.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0802.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0803.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0803.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0803.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0803.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0804.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0804.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0804.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0804.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0805.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0805.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0805.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0805.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0806.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0806.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0806.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0806.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0807.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0807.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0807.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0807.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0808.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0808.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0808.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0808.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0809.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0809.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0809.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0809.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0810.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0810.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0810.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0810.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0811.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0811.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0811.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0811.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0812.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0812.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0812.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0812.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0813.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0813.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0813.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0813.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0814.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0814.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0814.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0814.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0815.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0815.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0815.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0815.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0816.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0816.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0816.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0816.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0817.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0817.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0817.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0817.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0818.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0818.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0818.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0818.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0819.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0819.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0819.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0819.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0820.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0820.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0820.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0820.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0821.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0821.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0821.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0821.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0822.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0822.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0822.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0822.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0823.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0823.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0823.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0823.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0824.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0824.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0824.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0824.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0825.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0825.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0825.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0825.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0826.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0826.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0826.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0826.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0827.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0827.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0827.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0827.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0828.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0828.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0828.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0828.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0829.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0829.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0829.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0829.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0830.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0830.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0830.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0830.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0831.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0831.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0831.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0831.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0832.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0832.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0832.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0832.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0833.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0833.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0833.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0833.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0834.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0834.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0834.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0834.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0835.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0835.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0835.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0835.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0836.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0836.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0836.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0836.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0837.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0837.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0837.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0837.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0838.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0838.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0838.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0838.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0839.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0839.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0839.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0839.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0840.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0840.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0840.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0840.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0841.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0841.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0841.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0841.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0842.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0842.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0842.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0842.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0843.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0843.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0843.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0843.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0844.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0844.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0844.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0844.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0845.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0845.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0845.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0845.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0846.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0846.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0846.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0846.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0847.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0847.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0847.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0847.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0848.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0848.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0848.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0848.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0849.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0849.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0849.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0849.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0850.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0850.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0850.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0850.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0851.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0851.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0851.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0851.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0852.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0852.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0852.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0852.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0853.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0853.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0853.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0853.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0854.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0854.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0854.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0854.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0855.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0855.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0855.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0855.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0856.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0856.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0856.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0856.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0857.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0857.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0857.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0857.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0858.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0858.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0858.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0858.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0859.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0859.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0859.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0859.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0860.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0860.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0860.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0860.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0861.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0861.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0861.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0861.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0862.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0862.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0862.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0862.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0863.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0863.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0863.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0863.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0864.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0864.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0864.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0864.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0865.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0865.py similarity index 97% rename from githubkit/versions/ghec_v2022_11_28/types/group_0865.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0865.py index 69778bb8ce..a1e85e24e6 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_0865.py +++ b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0865.py @@ -76,7 +76,7 @@ class WebhookProjectCardMovedPropChangesPropColumnIdTypeForResponse(TypedDict): class WebhookProjectCardMovedPropProjectCardType(TypedDict): """WebhookProjectCardMovedPropProjectCard""" - after_id: Union[Union[int, None], None] + after_id: Union[int, None] archived: bool column_id: int column_url: str @@ -85,7 +85,7 @@ class WebhookProjectCardMovedPropProjectCardType(TypedDict): creator: Union[WebhookProjectCardMovedPropProjectCardMergedCreatorType, None] id: int node_id: str - note: Union[Union[str, None], None] + note: Union[str, None] project_url: str updated_at: _dt.datetime url: str @@ -94,7 +94,7 @@ class WebhookProjectCardMovedPropProjectCardType(TypedDict): class WebhookProjectCardMovedPropProjectCardTypeForResponse(TypedDict): """WebhookProjectCardMovedPropProjectCard""" - after_id: Union[Union[int, None], None] + after_id: Union[int, None] archived: bool column_id: int column_url: str @@ -105,7 +105,7 @@ class WebhookProjectCardMovedPropProjectCardTypeForResponse(TypedDict): ] id: int node_id: str - note: Union[Union[str, None], None] + note: Union[str, None] project_url: str updated_at: str url: str diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0866.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0866.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0866.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0866.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0867.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0867.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0867.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0867.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0868.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0868.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0868.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0868.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0869.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0869.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0869.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0869.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0870.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0870.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0870.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0870.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0871.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0871.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0871.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0871.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0872.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0872.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0872.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0872.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0873.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0873.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0873.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0873.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0874.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0874.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0874.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0874.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0875.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0875.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0875.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0875.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0876.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0876.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0876.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0876.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0877.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0877.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0877.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0877.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0878.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0878.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0878.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0878.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0879.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0879.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0879.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0879.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0880.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0880.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0880.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0880.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0881.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0881.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0881.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0881.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0882.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0882.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0882.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0882.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0883.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0883.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0883.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0883.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0884.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0884.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0884.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0884.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0885.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0885.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0885.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0885.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0886.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0886.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0886.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0886.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0887.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0887.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0887.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0887.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0888.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0888.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0888.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0888.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0889.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0889.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0889.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0889.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0890.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0890.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0890.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0890.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0891.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0891.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0891.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0891.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0892.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0892.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0892.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0892.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0893.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0893.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0893.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0893.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0894.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0894.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0894.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0894.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0895.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0895.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0895.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0895.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0896.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0896.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0896.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0896.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0897.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0897.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0897.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0897.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0898.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0898.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0898.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0898.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0899.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0899.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0899.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0899.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0900.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0900.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0900.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0900.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0901.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0901.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0901.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0901.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0902.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0902.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0902.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0902.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0903.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0903.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0903.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0903.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0904.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0904.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0904.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0904.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0905.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0905.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0905.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0905.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0906.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0906.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0906.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0906.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0907.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0907.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0907.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0907.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0908.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0908.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0908.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0908.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0909.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0909.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0909.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0909.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0910.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0910.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0910.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0910.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0911.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0911.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0911.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0911.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0912.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0912.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0912.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0912.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0913.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0913.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0913.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0913.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0914.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0914.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0914.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0914.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0915.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0915.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0915.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0915.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0916.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0916.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0916.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0916.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0917.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0917.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0917.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0917.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0918.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0918.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0918.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0918.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0919.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0919.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0919.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0919.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0920.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0920.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0920.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0920.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0921.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0921.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0921.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0921.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0922.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0922.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0922.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0922.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0923.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0923.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0923.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0923.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0924.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0924.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0924.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0924.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0925.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0925.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0925.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0925.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0926.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0926.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0926.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0926.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0927.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0927.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0927.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0927.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0928.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0928.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0928.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0928.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0929.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0929.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0929.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0929.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0930.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0930.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0930.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0930.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0931.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0931.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0931.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0931.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0932.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0932.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0932.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0932.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0933.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0933.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0933.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0933.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0934.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0934.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0934.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0934.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0935.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0935.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0935.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0935.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0936.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0936.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0936.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0936.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0937.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0937.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0937.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0937.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0938.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0938.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0938.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0938.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0939.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0939.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0939.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0939.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0940.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0940.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0940.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0940.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0941.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0941.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0941.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0941.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0942.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0942.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0942.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0942.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0943.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0943.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0943.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0943.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0944.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0944.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0944.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0944.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0945.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0945.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0945.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0945.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0946.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0946.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0946.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0946.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0947.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0947.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0947.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0947.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0948.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0948.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0948.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0948.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0949.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0949.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0949.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0949.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0950.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0950.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0950.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0950.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0951.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0951.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0951.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0951.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0952.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0952.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0952.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0952.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0953.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0953.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0953.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0953.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0954.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0954.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0954.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0954.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0955.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0955.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0955.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0955.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0956.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0956.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0956.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0956.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0957.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0957.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0957.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0957.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0958.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0958.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0958.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0958.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0959.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0959.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0959.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0959.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0960.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0960.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0960.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0960.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0961.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0961.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0961.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0961.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0962.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0962.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0962.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0962.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0963.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0963.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0963.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0963.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0964.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0964.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0964.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0964.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0965.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0965.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0965.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0965.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0966.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0966.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0966.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0966.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0967.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0967.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0967.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0967.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0968.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0968.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0968.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0968.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0969.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0969.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0969.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0969.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0970.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0970.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0970.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0970.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0971.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0971.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0971.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0971.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0972.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0972.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0972.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0972.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0973.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0973.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0973.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0973.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0974.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0974.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0974.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0974.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0975.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0975.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0975.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0975.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0976.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0976.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0976.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0976.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0977.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0977.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0977.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0977.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0978.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0978.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0978.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0978.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0979.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0979.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0979.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0979.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0980.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0980.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0980.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0980.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0981.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0981.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0981.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0981.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0982.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0982.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0982.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0982.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0983.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0983.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0983.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0983.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0984.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0984.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0984.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0984.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0985.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0985.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0985.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0985.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0986.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0986.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0986.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0986.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0987.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0987.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0987.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0987.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0988.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0988.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0988.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0988.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0989.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0989.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0989.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0989.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0990.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0990.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0990.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0990.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0991.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0991.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0991.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0991.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0992.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0992.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0992.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0992.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0993.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0993.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0993.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0993.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0994.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0994.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0994.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0994.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0995.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0995.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0995.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0995.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0996.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0996.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0996.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0996.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0997.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0997.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0997.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0997.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0998.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0998.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0998.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0998.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_0999.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0999.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_0999.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_0999.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1000.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1000.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1000.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1000.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1001.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1001.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1001.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1001.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1002.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1002.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1002.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1002.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1003.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1003.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1003.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1003.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1004.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1004.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1004.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1004.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1005.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1005.py similarity index 88% rename from githubkit/versions/ghec_v2022_11_28/types/group_1005.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1005.py index 5a6f1f8d37..32b5f3433a 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_1005.py +++ b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1005.py @@ -73,14 +73,14 @@ class WebhookWorkflowJobCompletedPropWorkflowJobType(TypedDict): run_attempt: int run_id: int run_url: str - runner_group_id: Union[Union[int, None], None] - runner_group_name: Union[Union[str, None], None] - runner_id: Union[Union[int, None], None] - runner_name: Union[Union[str, None], None] + runner_group_id: Union[int, None] + runner_group_name: Union[str, None] + runner_id: Union[int, None] + runner_name: Union[str, None] started_at: str status: Literal["queued", "in_progress", "completed", "waiting"] - head_branch: Union[Union[str, None], None] - workflow_name: Union[Union[str, None], None] + head_branch: Union[str, None] + workflow_name: Union[str, None] steps: list[WebhookWorkflowJobCompletedPropWorkflowJobMergedStepsType] url: str @@ -109,14 +109,14 @@ class WebhookWorkflowJobCompletedPropWorkflowJobTypeForResponse(TypedDict): run_attempt: int run_id: int run_url: str - runner_group_id: Union[Union[int, None], None] - runner_group_name: Union[Union[str, None], None] - runner_id: Union[Union[int, None], None] - runner_name: Union[Union[str, None], None] + runner_group_id: Union[int, None] + runner_group_name: Union[str, None] + runner_id: Union[int, None] + runner_name: Union[str, None] started_at: str status: Literal["queued", "in_progress", "completed", "waiting"] - head_branch: Union[Union[str, None], None] - workflow_name: Union[Union[str, None], None] + head_branch: Union[str, None] + workflow_name: Union[str, None] steps: list[WebhookWorkflowJobCompletedPropWorkflowJobMergedStepsTypeForResponse] url: str diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1006.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1006.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1006.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1006.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1007.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1007.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1007.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1007.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1008.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1008.py similarity index 82% rename from githubkit/versions/ghec_v2022_11_28/types/group_1008.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1008.py index 0597ffcce1..bfdcc0a008 100644 --- a/githubkit/versions/ghec_v2022_11_28/types/group_1008.py +++ b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1008.py @@ -53,7 +53,7 @@ class WebhookWorkflowJobInProgressPropWorkflowJobType(TypedDict): """WebhookWorkflowJobInProgressPropWorkflowJob""" check_run_url: str - completed_at: Union[Union[str, None], None] + completed_at: Union[str, None] conclusion: Union[Literal["success", "failure", "cancelled", "neutral"], None] created_at: str head_sha: str @@ -65,14 +65,14 @@ class WebhookWorkflowJobInProgressPropWorkflowJobType(TypedDict): run_attempt: int run_id: int run_url: str - runner_group_id: Union[Union[int, None], None] - runner_group_name: Union[Union[str, None], None] - runner_id: Union[Union[int, None], None] - runner_name: Union[Union[str, None], None] + runner_group_id: Union[int, None] + runner_group_name: Union[str, None] + runner_id: Union[int, None] + runner_name: Union[str, None] started_at: str status: Literal["queued", "in_progress", "completed"] - head_branch: Union[Union[str, None], None] - workflow_name: Union[Union[str, None], None] + head_branch: Union[str, None] + workflow_name: Union[str, None] steps: list[WebhookWorkflowJobInProgressPropWorkflowJobMergedStepsType] url: str @@ -81,7 +81,7 @@ class WebhookWorkflowJobInProgressPropWorkflowJobTypeForResponse(TypedDict): """WebhookWorkflowJobInProgressPropWorkflowJob""" check_run_url: str - completed_at: Union[Union[str, None], None] + completed_at: Union[str, None] conclusion: Union[Literal["success", "failure", "cancelled", "neutral"], None] created_at: str head_sha: str @@ -93,14 +93,14 @@ class WebhookWorkflowJobInProgressPropWorkflowJobTypeForResponse(TypedDict): run_attempt: int run_id: int run_url: str - runner_group_id: Union[Union[int, None], None] - runner_group_name: Union[Union[str, None], None] - runner_id: Union[Union[int, None], None] - runner_name: Union[Union[str, None], None] + runner_group_id: Union[int, None] + runner_group_name: Union[str, None] + runner_id: Union[int, None] + runner_name: Union[str, None] started_at: str status: Literal["queued", "in_progress", "completed"] - head_branch: Union[Union[str, None], None] - workflow_name: Union[Union[str, None], None] + head_branch: Union[str, None] + workflow_name: Union[str, None] steps: list[WebhookWorkflowJobInProgressPropWorkflowJobMergedStepsTypeForResponse] url: str @@ -108,22 +108,22 @@ class WebhookWorkflowJobInProgressPropWorkflowJobTypeForResponse(TypedDict): class WebhookWorkflowJobInProgressPropWorkflowJobMergedStepsType(TypedDict): """WebhookWorkflowJobInProgressPropWorkflowJobMergedSteps""" - completed_at: Union[Union[str, None], None] + completed_at: Union[str, None] conclusion: Union[Literal["failure", "skipped", "success", "cancelled"], None] name: str number: int - started_at: Union[Union[str, None], None] + started_at: Union[str, None] status: Literal["in_progress", "completed", "queued", "pending"] class WebhookWorkflowJobInProgressPropWorkflowJobMergedStepsTypeForResponse(TypedDict): """WebhookWorkflowJobInProgressPropWorkflowJobMergedSteps""" - completed_at: Union[Union[str, None], None] + completed_at: Union[str, None] conclusion: Union[Literal["failure", "skipped", "success", "cancelled"], None] name: str number: int - started_at: Union[Union[str, None], None] + started_at: Union[str, None] status: Literal["in_progress", "completed", "queued", "pending"] diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1009.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1009.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1009.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1009.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1010.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1010.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1010.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1010.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1011.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1011.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1011.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1011.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1012.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1012.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1012.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1012.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1013.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1013.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1013.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1013.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1014.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1014.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1014.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1014.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1015.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1015.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1015.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1015.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1016.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1016.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1016.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1016.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1017.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1017.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1017.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1017.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1018.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1018.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1018.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1018.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1019.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1019.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1019.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1019.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1020.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1020.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1020.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1020.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1021.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1021.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1021.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1021.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1022.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1022.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1022.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1022.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1023.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1023.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1023.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1023.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1024.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1024.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1024.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1024.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1025.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1025.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1025.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1025.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1026.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1026.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1026.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1026.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1027.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1027.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1027.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1027.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1028.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1028.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1028.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1028.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1029.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1029.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1029.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1029.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1030.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1030.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1030.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1030.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1031.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1031.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1031.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1031.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1032.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1032.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1032.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1032.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1033.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1033.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1033.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1033.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1034.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1034.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1034.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1034.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1035.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1035.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1035.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1035.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1036.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1036.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1036.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1036.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1037.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1037.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1037.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1037.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1038.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1038.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1038.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1038.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1039.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1039.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1039.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1039.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1040.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1040.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1040.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1040.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1041.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1041.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1041.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1041.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1042.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1042.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1042.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1042.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1043.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1043.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1043.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1043.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1044.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1044.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1044.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1044.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1045.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1045.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1045.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1045.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1046.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1046.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1046.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1046.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1047.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1047.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1047.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1047.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1048.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1048.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1048.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1048.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1049.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1049.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1049.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1049.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1050.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1050.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1050.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1050.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1051.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1051.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1051.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1051.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1052.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1052.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1052.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1052.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1053.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1053.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1053.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1053.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1054.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1054.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1054.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1054.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1055.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1055.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1055.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1055.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1056.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1056.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1056.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1056.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1057.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1057.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1057.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1057.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1058.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1058.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1058.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1058.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1059.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1059.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1059.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1059.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1060.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1060.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1060.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1060.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1061.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1061.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1061.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1061.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1062.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1062.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1062.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1062.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1063.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1063.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1063.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1063.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1064.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1064.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1064.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1064.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1065.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1065.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1065.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1065.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1066.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1066.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1066.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1066.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1067.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1067.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1067.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1067.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1068.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1068.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1068.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1068.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1069.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1069.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1069.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1069.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1070.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1070.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1070.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1070.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1071.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1071.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1071.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1071.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1072.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1072.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1072.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1072.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1073.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1073.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1073.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1073.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1074.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1074.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1074.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1074.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1075.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1075.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1075.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1075.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1076.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1076.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1076.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1076.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1077.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1077.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1077.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1077.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1078.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1078.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1078.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1078.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1079.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1079.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1079.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1079.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1080.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1080.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1080.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1080.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1081.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1081.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1081.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1081.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1082.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1082.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1082.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1082.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1083.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1083.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1083.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1083.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1084.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1084.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1084.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1084.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1085.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1085.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1085.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1085.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1086.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1086.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1086.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1086.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1087.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1087.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1087.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1087.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1088.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1088.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1088.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1088.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1089.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1089.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1089.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1089.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1090.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1090.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1090.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1090.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1091.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1091.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1091.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1091.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1092.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1092.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1092.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1092.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1093.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1093.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1093.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1093.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1094.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1094.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1094.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1094.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1095.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1095.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1095.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1095.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1096.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1096.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1096.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1096.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1097.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1097.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1097.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1097.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1098.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1098.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1098.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1098.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1099.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1099.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1099.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1099.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1100.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1100.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1100.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1100.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1101.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1101.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1101.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1101.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1102.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1102.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1102.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1102.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1103.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1103.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1103.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1103.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1104.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1104.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1104.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1104.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1105.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1105.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1105.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1105.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1106.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1106.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1106.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1106.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1107.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1107.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1107.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1107.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1108.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1108.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1108.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1108.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1109.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1109.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1109.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1109.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1110.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1110.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1110.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1110.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1111.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1111.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1111.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1111.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1112.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1112.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1112.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1112.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1113.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1113.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1113.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1113.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1114.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1114.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1114.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1114.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1115.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1115.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1115.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1115.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1116.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1116.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1116.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1116.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1117.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1117.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1117.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1117.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1118.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1118.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1118.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1118.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1119.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1119.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1119.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1119.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1120.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1120.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1120.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1120.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1121.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1121.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1121.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1121.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1122.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1122.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1122.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1122.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1123.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1123.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1123.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1123.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1124.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1124.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1124.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1124.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1125.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1125.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1125.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1125.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1126.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1126.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1126.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1126.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1127.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1127.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1127.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1127.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1128.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1128.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1128.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1128.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1129.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1129.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1129.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1129.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1130.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1130.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1130.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1130.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1131.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1131.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1131.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1131.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1132.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1132.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1132.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1132.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1133.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1133.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1133.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1133.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1134.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1134.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1134.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1134.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1135.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1135.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1135.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1135.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1136.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1136.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1136.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1136.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1137.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1137.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1137.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1137.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1138.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1138.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1138.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1138.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1139.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1139.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1139.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1139.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1140.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1140.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1140.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1140.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1141.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1141.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1141.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1141.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1142.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1142.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1142.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1142.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1143.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1143.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1143.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1143.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1144.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1144.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1144.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1144.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1145.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1145.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1145.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1145.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1146.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1146.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1146.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1146.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1147.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1147.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1147.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1147.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1148.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1148.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1148.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1148.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1149.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1149.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1149.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1149.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1150.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1150.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1150.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1150.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1151.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1151.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1151.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1151.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1152.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1152.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1152.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1152.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1153.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1153.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1153.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1153.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1154.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1154.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1154.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1154.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1155.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1155.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1155.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1155.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1156.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1156.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1156.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1156.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1157.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1157.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1157.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1157.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1158.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1158.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1158.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1158.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1159.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1159.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1159.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1159.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1160.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1160.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1160.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1160.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1161.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1161.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1161.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1161.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1162.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1162.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1162.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1162.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1163.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1163.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1163.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1163.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1164.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1164.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1164.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1164.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1165.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1165.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1165.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1165.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1166.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1166.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1166.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1166.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1167.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1167.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1167.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1167.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1168.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1168.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1168.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1168.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1169.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1169.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1169.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1169.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1170.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1170.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1170.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1170.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1171.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1171.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1171.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1171.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1172.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1172.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1172.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1172.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1173.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1173.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1173.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1173.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1174.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1174.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1174.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1174.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1175.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1175.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1175.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1175.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1176.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1176.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1176.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1176.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1177.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1177.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1177.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1177.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1178.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1178.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1178.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1178.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1179.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1179.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1179.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1179.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1180.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1180.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1180.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1180.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1181.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1181.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1181.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1181.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1182.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1182.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1182.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1182.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1183.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1183.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1183.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1183.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1184.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1184.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1184.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1184.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1185.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1185.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1185.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1185.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1186.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1186.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1186.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1186.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1187.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1187.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1187.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1187.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1188.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1188.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1188.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1188.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1189.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1189.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1189.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1189.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1190.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1190.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1190.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1190.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1191.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1191.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1191.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1191.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1192.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1192.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1192.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1192.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1193.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1193.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1193.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1193.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1194.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1194.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1194.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1194.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1195.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1195.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1195.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1195.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1196.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1196.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1196.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1196.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1197.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1197.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1197.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1197.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1198.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1198.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1198.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1198.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1199.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1199.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1199.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1199.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1200.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1200.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1200.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1200.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1201.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1201.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1201.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1201.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1202.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1202.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1202.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1202.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1203.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1203.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1203.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1203.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1204.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1204.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1204.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1204.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1205.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1205.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1205.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1205.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1206.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1206.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1206.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1206.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1207.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1207.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1207.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1207.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1208.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1208.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1208.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1208.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1209.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1209.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1209.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1209.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1210.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1210.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1210.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1210.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1211.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1211.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1211.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1211.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1212.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1212.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1212.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1212.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1213.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1213.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1213.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1213.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1214.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1214.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1214.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1214.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1215.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1215.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1215.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1215.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1216.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1216.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1216.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1216.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1217.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1217.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1217.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1217.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1218.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1218.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1218.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1218.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1219.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1219.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1219.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1219.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1220.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1220.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1220.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1220.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1221.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1221.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1221.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1221.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1222.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1222.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1222.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1222.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1223.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1223.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1223.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1223.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1224.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1224.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1224.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1224.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1225.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1225.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1225.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1225.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1226.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1226.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1226.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1226.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1227.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1227.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1227.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1227.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1228.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1228.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1228.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1228.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1229.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1229.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1229.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1229.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1230.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1230.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1230.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1230.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1231.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1231.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1231.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1231.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1232.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1232.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1232.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1232.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1233.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1233.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1233.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1233.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1234.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1234.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1234.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1234.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1235.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1235.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1235.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1235.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1236.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1236.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1236.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1236.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1237.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1237.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1237.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1237.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1238.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1238.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1238.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1238.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1239.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1239.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1239.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1239.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1240.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1240.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1240.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1240.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1241.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1241.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1241.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1241.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1242.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1242.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1242.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1242.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1243.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1243.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1243.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1243.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1244.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1244.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1244.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1244.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1245.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1245.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1245.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1245.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1246.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1246.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1246.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1246.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1247.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1247.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1247.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1247.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1248.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1248.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1248.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1248.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1249.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1249.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1249.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1249.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1250.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1250.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1250.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1250.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1251.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1251.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1251.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1251.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1252.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1252.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1252.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1252.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1253.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1253.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1253.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1253.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1254.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1254.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1254.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1254.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1255.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1255.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1255.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1255.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1256.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1256.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1256.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1256.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1257.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1257.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1257.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1257.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1258.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1258.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1258.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1258.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1259.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1259.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1259.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1259.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1260.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1260.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1260.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1260.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1261.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1261.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1261.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1261.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1262.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1262.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1262.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1262.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1263.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1263.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1263.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1263.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1264.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1264.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1264.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1264.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1265.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1265.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1265.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1265.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1266.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1266.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1266.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1266.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1267.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1267.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1267.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1267.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1268.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1268.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1268.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1268.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1269.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1269.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1269.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1269.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1270.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1270.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1270.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1270.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1271.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1271.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1271.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1271.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1272.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1272.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1272.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1272.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1273.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1273.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1273.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1273.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1274.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1274.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1274.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1274.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1275.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1275.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1275.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1275.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1276.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1276.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1276.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1276.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1277.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1277.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1277.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1277.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1278.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1278.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1278.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1278.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1279.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1279.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1279.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1279.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1280.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1280.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1280.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1280.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1281.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1281.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1281.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1281.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1282.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1282.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1282.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1282.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1283.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1283.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1283.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1283.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1284.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1284.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1284.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1284.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1285.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1285.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1285.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1285.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1286.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1286.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1286.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1286.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1287.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1287.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1287.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1287.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1288.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1288.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1288.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1288.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1289.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1289.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1289.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1289.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1290.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1290.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1290.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1290.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1291.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1291.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1291.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1291.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1292.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1292.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1292.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1292.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1293.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1293.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1293.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1293.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1294.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1294.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1294.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1294.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1295.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1295.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1295.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1295.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1296.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1296.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1296.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1296.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1297.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1297.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1297.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1297.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1298.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1298.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1298.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1298.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1299.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1299.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1299.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1299.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1300.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1300.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1300.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1300.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1301.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1301.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1301.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1301.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1302.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1302.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1302.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1302.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1303.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1303.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1303.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1303.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1304.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1304.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1304.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1304.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1305.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1305.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1305.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1305.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1306.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1306.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1306.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1306.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1307.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1307.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1307.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1307.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1308.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1308.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1308.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1308.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1309.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1309.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1309.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1309.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1310.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1310.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1310.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1310.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1311.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1311.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1311.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1311.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1312.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1312.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1312.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1312.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1313.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1313.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1313.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1313.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1314.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1314.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1314.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1314.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1315.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1315.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1315.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1315.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1316.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1316.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1316.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1316.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1317.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1317.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1317.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1317.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1318.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1318.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1318.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1318.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1319.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1319.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1319.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1319.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1320.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1320.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1320.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1320.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1321.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1321.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1321.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1321.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1322.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1322.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1322.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1322.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1323.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1323.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1323.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1323.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1324.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1324.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1324.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1324.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1325.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1325.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1325.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1325.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1326.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1326.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1326.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1326.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1327.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1327.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1327.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1327.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1328.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1328.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1328.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1328.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1329.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1329.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1329.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1329.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1330.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1330.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1330.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1330.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1331.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1331.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1331.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1331.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1332.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1332.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1332.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1332.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1333.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1333.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1333.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1333.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1334.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1334.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1334.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1334.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1335.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1335.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1335.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1335.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1336.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1336.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1336.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1336.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1337.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1337.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1337.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1337.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1338.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1338.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1338.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1338.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1339.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1339.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1339.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1339.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1340.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1340.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1340.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1340.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1341.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1341.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1341.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1341.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1342.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1342.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1342.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1342.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1343.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1343.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1343.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1343.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1344.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1344.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1344.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1344.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1345.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1345.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1345.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1345.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1346.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1346.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1346.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1346.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1347.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1347.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1347.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1347.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1348.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1348.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1348.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1348.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1349.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1349.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1349.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1349.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1350.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1350.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1350.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1350.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1351.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1351.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1351.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1351.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1352.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1352.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1352.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1352.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1353.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1353.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1353.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1353.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1354.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1354.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1354.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1354.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1355.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1355.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1355.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1355.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1356.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1356.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1356.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1356.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1357.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1357.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1357.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1357.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1358.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1358.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1358.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1358.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1359.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1359.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1359.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1359.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1360.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1360.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1360.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1360.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1361.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1361.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1361.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1361.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1362.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1362.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1362.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1362.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1363.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1363.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1363.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1363.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1364.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1364.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1364.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1364.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1365.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1365.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1365.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1365.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1366.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1366.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1366.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1366.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1367.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1367.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1367.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1367.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1368.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1368.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1368.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1368.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1369.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1369.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1369.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1369.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1370.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1370.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1370.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1370.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1371.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1371.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1371.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1371.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1372.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1372.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1372.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1372.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1373.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1373.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1373.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1373.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1374.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1374.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1374.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1374.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1375.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1375.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1375.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1375.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1376.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1376.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1376.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1376.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1377.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1377.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1377.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1377.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1378.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1378.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1378.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1378.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1379.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1379.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1379.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1379.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1380.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1380.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1380.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1380.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1381.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1381.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1381.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1381.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1382.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1382.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1382.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1382.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1383.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1383.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1383.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1383.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1384.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1384.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1384.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1384.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1385.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1385.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1385.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1385.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1386.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1386.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1386.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1386.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1387.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1387.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1387.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1387.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1388.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1388.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1388.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1388.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1389.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1389.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1389.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1389.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1390.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1390.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1390.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1390.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1391.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1391.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1391.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1391.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1392.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1392.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1392.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1392.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1393.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1393.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1393.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1393.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1394.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1394.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1394.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1394.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1395.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1395.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1395.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1395.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1396.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1396.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1396.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1396.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1397.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1397.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1397.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1397.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1398.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1398.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1398.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1398.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1399.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1399.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1399.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1399.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1400.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1400.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1400.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1400.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1401.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1401.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1401.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1401.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1402.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1402.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1402.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1402.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1403.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1403.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1403.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1403.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1404.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1404.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1404.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1404.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1405.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1405.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1405.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1405.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1406.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1406.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1406.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1406.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1407.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1407.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1407.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1407.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1408.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1408.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1408.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1408.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1409.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1409.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1409.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1409.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1410.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1410.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1410.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1410.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1411.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1411.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1411.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1411.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1412.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1412.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1412.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1412.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1413.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1413.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1413.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1413.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1414.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1414.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1414.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1414.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1415.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1415.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1415.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1415.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1416.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1416.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1416.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1416.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1417.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1417.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1417.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1417.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1418.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1418.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1418.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1418.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1419.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1419.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1419.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1419.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1420.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1420.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1420.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1420.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1421.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1421.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1421.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1421.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1422.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1422.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1422.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1422.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1423.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1423.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1423.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1423.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1424.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1424.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1424.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1424.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1425.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1425.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1425.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1425.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1426.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1426.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1426.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1426.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1427.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1427.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1427.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1427.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1428.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1428.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1428.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1428.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1429.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1429.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1429.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1429.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1430.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1430.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1430.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1430.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1431.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1431.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1431.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1431.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1432.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1432.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1432.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1432.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1433.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1433.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1433.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1433.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1434.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1434.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1434.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1434.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1435.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1435.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1435.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1435.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1436.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1436.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1436.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1436.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1437.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1437.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1437.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1437.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1438.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1438.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1438.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1438.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1439.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1439.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1439.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1439.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1440.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1440.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1440.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1440.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1441.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1441.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1441.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1441.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1442.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1442.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1442.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1442.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1443.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1443.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1443.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1443.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1444.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1444.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1444.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1444.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1445.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1445.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1445.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1445.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1446.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1446.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1446.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1446.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1447.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1447.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1447.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1447.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1448.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1448.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1448.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1448.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1449.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1449.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1449.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1449.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1450.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1450.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1450.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1450.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1451.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1451.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1451.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1451.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1452.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1452.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1452.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1452.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1453.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1453.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1453.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1453.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1454.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1454.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1454.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1454.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1455.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1455.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1455.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1455.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1456.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1456.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1456.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1456.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1457.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1457.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1457.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1457.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1458.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1458.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1458.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1458.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1459.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1459.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1459.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1459.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1460.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1460.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1460.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1460.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1461.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1461.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1461.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1461.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1462.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1462.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1462.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1462.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1463.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1463.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1463.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1463.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1464.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1464.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1464.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1464.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1465.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1465.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1465.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1465.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1466.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1466.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1466.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1466.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1467.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1467.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1467.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1467.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1468.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1468.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1468.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1468.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1469.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1469.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1469.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1469.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1470.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1470.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1470.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1470.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1471.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1471.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1471.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1471.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1472.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1472.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1472.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1472.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1473.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1473.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1473.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1473.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1474.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1474.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1474.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1474.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1475.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1475.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1475.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1475.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1476.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1476.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1476.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1476.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1477.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1477.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1477.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1477.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1478.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1478.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1478.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1478.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1479.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1479.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1479.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1479.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1480.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1480.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1480.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1480.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1481.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1481.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1481.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1481.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1482.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1482.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1482.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1482.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1483.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1483.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1483.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1483.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1484.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1484.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1484.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1484.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1485.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1485.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1485.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1485.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1486.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1486.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1486.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1486.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1487.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1487.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1487.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1487.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1488.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1488.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1488.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1488.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1489.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1489.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1489.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1489.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1490.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1490.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1490.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1490.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1491.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1491.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1491.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1491.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1492.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1492.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1492.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1492.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1493.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1493.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1493.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1493.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1494.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1494.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1494.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1494.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1495.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1495.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1495.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1495.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1496.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1496.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1496.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1496.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1497.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1497.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1497.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1497.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1498.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1498.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1498.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1498.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1499.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1499.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1499.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1499.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1500.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1500.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1500.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1500.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1501.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1501.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1501.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1501.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1502.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1502.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1502.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1502.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1503.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1503.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1503.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1503.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1504.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1504.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1504.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1504.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1505.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1505.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1505.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1505.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1506.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1506.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1506.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1506.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1507.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1507.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1507.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1507.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1508.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1508.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1508.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1508.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1509.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1509.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1509.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1509.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1510.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1510.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1510.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1510.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1511.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1511.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1511.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1511.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1512.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1512.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1512.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1512.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1513.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1513.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1513.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1513.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1514.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1514.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1514.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1514.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1515.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1515.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1515.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1515.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1516.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1516.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1516.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1516.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1517.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1517.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1517.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1517.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1518.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1518.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1518.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1518.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1519.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1519.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1519.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1519.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1520.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1520.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1520.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1520.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1521.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1521.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1521.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1521.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1522.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1522.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1522.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1522.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1523.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1523.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1523.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1523.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1524.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1524.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1524.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1524.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1525.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1525.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1525.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1525.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1526.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1526.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1526.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1526.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1527.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1527.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1527.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1527.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1528.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1528.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1528.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1528.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1529.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1529.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1529.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1529.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1530.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1530.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1530.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1530.py diff --git a/githubkit/versions/ghec_v2022_11_28/types/group_1531.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1531.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/types/group_1531.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/types/group_1531.py diff --git a/githubkit/versions/ghec_v2026_03_10/webhooks/__init__.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/webhooks/__init__.py similarity index 99% rename from githubkit/versions/ghec_v2026_03_10/webhooks/__init__.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/webhooks/__init__.py index 29d8cb0857..4da24586d8 100644 --- a/githubkit/versions/ghec_v2026_03_10/webhooks/__init__.py +++ b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/webhooks/__init__.py @@ -9,7 +9,7 @@ from typing import TYPE_CHECKING -from githubkit.lazy_module import is_lazy_disabled +from githubkit.module_hooks.lazy_module import is_lazy_disabled if TYPE_CHECKING or is_lazy_disabled(): from ._namespace import VALID_EVENT_NAMES as VALID_EVENT_NAMES diff --git a/githubkit/versions/ghec_v2022_11_28/webhooks/_namespace.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/webhooks/_namespace.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/webhooks/_namespace.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/webhooks/_namespace.py diff --git a/githubkit/versions/ghec_v2022_11_28/webhooks/_types.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/webhooks/_types.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/webhooks/_types.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/webhooks/_types.py diff --git a/githubkit/versions/v2022_11_28/webhooks/branch_protection_configuration.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/webhooks/branch_protection_configuration.py similarity index 100% rename from githubkit/versions/v2022_11_28/webhooks/branch_protection_configuration.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/webhooks/branch_protection_configuration.py diff --git a/githubkit/versions/v2022_11_28/webhooks/branch_protection_rule.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/webhooks/branch_protection_rule.py similarity index 100% rename from githubkit/versions/v2022_11_28/webhooks/branch_protection_rule.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/webhooks/branch_protection_rule.py diff --git a/githubkit/versions/v2022_11_28/webhooks/check_run.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/webhooks/check_run.py similarity index 100% rename from githubkit/versions/v2022_11_28/webhooks/check_run.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/webhooks/check_run.py diff --git a/githubkit/versions/v2022_11_28/webhooks/check_suite.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/webhooks/check_suite.py similarity index 100% rename from githubkit/versions/v2022_11_28/webhooks/check_suite.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/webhooks/check_suite.py diff --git a/githubkit/versions/v2022_11_28/webhooks/code_scanning_alert.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/webhooks/code_scanning_alert.py similarity index 100% rename from githubkit/versions/v2022_11_28/webhooks/code_scanning_alert.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/webhooks/code_scanning_alert.py diff --git a/githubkit/versions/v2022_11_28/webhooks/commit_comment.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/webhooks/commit_comment.py similarity index 100% rename from githubkit/versions/v2022_11_28/webhooks/commit_comment.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/webhooks/commit_comment.py diff --git a/githubkit/versions/v2022_11_28/webhooks/create.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/webhooks/create.py similarity index 100% rename from githubkit/versions/v2022_11_28/webhooks/create.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/webhooks/create.py diff --git a/githubkit/versions/v2022_11_28/webhooks/custom_property.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/webhooks/custom_property.py similarity index 100% rename from githubkit/versions/v2022_11_28/webhooks/custom_property.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/webhooks/custom_property.py diff --git a/githubkit/versions/v2022_11_28/webhooks/custom_property_values.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/webhooks/custom_property_values.py similarity index 100% rename from githubkit/versions/v2022_11_28/webhooks/custom_property_values.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/webhooks/custom_property_values.py diff --git a/githubkit/versions/v2022_11_28/webhooks/delete.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/webhooks/delete.py similarity index 100% rename from githubkit/versions/v2022_11_28/webhooks/delete.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/webhooks/delete.py diff --git a/githubkit/versions/v2022_11_28/webhooks/dependabot_alert.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/webhooks/dependabot_alert.py similarity index 100% rename from githubkit/versions/v2022_11_28/webhooks/dependabot_alert.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/webhooks/dependabot_alert.py diff --git a/githubkit/versions/v2022_11_28/webhooks/deploy_key.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/webhooks/deploy_key.py similarity index 100% rename from githubkit/versions/v2022_11_28/webhooks/deploy_key.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/webhooks/deploy_key.py diff --git a/githubkit/versions/v2022_11_28/webhooks/deployment.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/webhooks/deployment.py similarity index 100% rename from githubkit/versions/v2022_11_28/webhooks/deployment.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/webhooks/deployment.py diff --git a/githubkit/versions/v2022_11_28/webhooks/deployment_protection_rule.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/webhooks/deployment_protection_rule.py similarity index 100% rename from githubkit/versions/v2022_11_28/webhooks/deployment_protection_rule.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/webhooks/deployment_protection_rule.py diff --git a/githubkit/versions/v2022_11_28/webhooks/deployment_review.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/webhooks/deployment_review.py similarity index 100% rename from githubkit/versions/v2022_11_28/webhooks/deployment_review.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/webhooks/deployment_review.py diff --git a/githubkit/versions/v2022_11_28/webhooks/deployment_status.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/webhooks/deployment_status.py similarity index 100% rename from githubkit/versions/v2022_11_28/webhooks/deployment_status.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/webhooks/deployment_status.py diff --git a/githubkit/versions/v2022_11_28/webhooks/discussion.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/webhooks/discussion.py similarity index 100% rename from githubkit/versions/v2022_11_28/webhooks/discussion.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/webhooks/discussion.py diff --git a/githubkit/versions/v2022_11_28/webhooks/discussion_comment.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/webhooks/discussion_comment.py similarity index 100% rename from githubkit/versions/v2022_11_28/webhooks/discussion_comment.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/webhooks/discussion_comment.py diff --git a/githubkit/versions/ghec_v2022_11_28/webhooks/dismissal_request_code_scanning.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/webhooks/dismissal_request_code_scanning.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/webhooks/dismissal_request_code_scanning.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/webhooks/dismissal_request_code_scanning.py diff --git a/githubkit/versions/ghec_v2022_11_28/webhooks/dismissal_request_dependabot.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/webhooks/dismissal_request_dependabot.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/webhooks/dismissal_request_dependabot.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/webhooks/dismissal_request_dependabot.py diff --git a/githubkit/versions/ghec_v2022_11_28/webhooks/dismissal_request_secret_scanning.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/webhooks/dismissal_request_secret_scanning.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/webhooks/dismissal_request_secret_scanning.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/webhooks/dismissal_request_secret_scanning.py diff --git a/githubkit/versions/ghec_v2022_11_28/webhooks/exemption_request_push_ruleset.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/webhooks/exemption_request_push_ruleset.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/webhooks/exemption_request_push_ruleset.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/webhooks/exemption_request_push_ruleset.py diff --git a/githubkit/versions/ghec_v2022_11_28/webhooks/exemption_request_secret_scanning.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/webhooks/exemption_request_secret_scanning.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/webhooks/exemption_request_secret_scanning.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/webhooks/exemption_request_secret_scanning.py diff --git a/githubkit/versions/v2022_11_28/webhooks/fork.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/webhooks/fork.py similarity index 100% rename from githubkit/versions/v2022_11_28/webhooks/fork.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/webhooks/fork.py diff --git a/githubkit/versions/v2022_11_28/webhooks/github_app_authorization.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/webhooks/github_app_authorization.py similarity index 100% rename from githubkit/versions/v2022_11_28/webhooks/github_app_authorization.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/webhooks/github_app_authorization.py diff --git a/githubkit/versions/v2022_11_28/webhooks/gollum.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/webhooks/gollum.py similarity index 100% rename from githubkit/versions/v2022_11_28/webhooks/gollum.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/webhooks/gollum.py diff --git a/githubkit/versions/v2022_11_28/webhooks/installation.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/webhooks/installation.py similarity index 100% rename from githubkit/versions/v2022_11_28/webhooks/installation.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/webhooks/installation.py diff --git a/githubkit/versions/v2022_11_28/webhooks/installation_repositories.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/webhooks/installation_repositories.py similarity index 100% rename from githubkit/versions/v2022_11_28/webhooks/installation_repositories.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/webhooks/installation_repositories.py diff --git a/githubkit/versions/v2022_11_28/webhooks/installation_target.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/webhooks/installation_target.py similarity index 100% rename from githubkit/versions/v2022_11_28/webhooks/installation_target.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/webhooks/installation_target.py diff --git a/githubkit/versions/v2022_11_28/webhooks/issue_comment.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/webhooks/issue_comment.py similarity index 100% rename from githubkit/versions/v2022_11_28/webhooks/issue_comment.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/webhooks/issue_comment.py diff --git a/githubkit/versions/v2022_11_28/webhooks/issue_dependencies.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/webhooks/issue_dependencies.py similarity index 100% rename from githubkit/versions/v2022_11_28/webhooks/issue_dependencies.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/webhooks/issue_dependencies.py diff --git a/githubkit/versions/v2022_11_28/webhooks/issues.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/webhooks/issues.py similarity index 100% rename from githubkit/versions/v2022_11_28/webhooks/issues.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/webhooks/issues.py diff --git a/githubkit/versions/v2022_11_28/webhooks/label.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/webhooks/label.py similarity index 100% rename from githubkit/versions/v2022_11_28/webhooks/label.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/webhooks/label.py diff --git a/githubkit/versions/v2022_11_28/webhooks/marketplace_purchase.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/webhooks/marketplace_purchase.py similarity index 100% rename from githubkit/versions/v2022_11_28/webhooks/marketplace_purchase.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/webhooks/marketplace_purchase.py diff --git a/githubkit/versions/v2022_11_28/webhooks/member.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/webhooks/member.py similarity index 100% rename from githubkit/versions/v2022_11_28/webhooks/member.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/webhooks/member.py diff --git a/githubkit/versions/v2022_11_28/webhooks/membership.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/webhooks/membership.py similarity index 100% rename from githubkit/versions/v2022_11_28/webhooks/membership.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/webhooks/membership.py diff --git a/githubkit/versions/v2022_11_28/webhooks/merge_group.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/webhooks/merge_group.py similarity index 100% rename from githubkit/versions/v2022_11_28/webhooks/merge_group.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/webhooks/merge_group.py diff --git a/githubkit/versions/v2022_11_28/webhooks/meta.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/webhooks/meta.py similarity index 100% rename from githubkit/versions/v2022_11_28/webhooks/meta.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/webhooks/meta.py diff --git a/githubkit/versions/v2022_11_28/webhooks/milestone.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/webhooks/milestone.py similarity index 100% rename from githubkit/versions/v2022_11_28/webhooks/milestone.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/webhooks/milestone.py diff --git a/githubkit/versions/v2022_11_28/webhooks/org_block.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/webhooks/org_block.py similarity index 100% rename from githubkit/versions/v2022_11_28/webhooks/org_block.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/webhooks/org_block.py diff --git a/githubkit/versions/v2022_11_28/webhooks/organization.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/webhooks/organization.py similarity index 100% rename from githubkit/versions/v2022_11_28/webhooks/organization.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/webhooks/organization.py diff --git a/githubkit/versions/ghec_v2022_11_28/webhooks/organization_custom_property.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/webhooks/organization_custom_property.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/webhooks/organization_custom_property.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/webhooks/organization_custom_property.py diff --git a/githubkit/versions/ghec_v2022_11_28/webhooks/organization_custom_property_values.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/webhooks/organization_custom_property_values.py similarity index 100% rename from githubkit/versions/ghec_v2022_11_28/webhooks/organization_custom_property_values.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/webhooks/organization_custom_property_values.py diff --git a/githubkit/versions/v2022_11_28/webhooks/package.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/webhooks/package.py similarity index 100% rename from githubkit/versions/v2022_11_28/webhooks/package.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/webhooks/package.py diff --git a/githubkit/versions/v2022_11_28/webhooks/page_build.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/webhooks/page_build.py similarity index 100% rename from githubkit/versions/v2022_11_28/webhooks/page_build.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/webhooks/page_build.py diff --git a/githubkit/versions/v2022_11_28/webhooks/personal_access_token_request.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/webhooks/personal_access_token_request.py similarity index 100% rename from githubkit/versions/v2022_11_28/webhooks/personal_access_token_request.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/webhooks/personal_access_token_request.py diff --git a/githubkit/versions/v2022_11_28/webhooks/ping.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/webhooks/ping.py similarity index 100% rename from githubkit/versions/v2022_11_28/webhooks/ping.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/webhooks/ping.py diff --git a/githubkit/versions/v2022_11_28/webhooks/project.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/webhooks/project.py similarity index 100% rename from githubkit/versions/v2022_11_28/webhooks/project.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/webhooks/project.py diff --git a/githubkit/versions/v2022_11_28/webhooks/project_card.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/webhooks/project_card.py similarity index 100% rename from githubkit/versions/v2022_11_28/webhooks/project_card.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/webhooks/project_card.py diff --git a/githubkit/versions/v2022_11_28/webhooks/project_column.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/webhooks/project_column.py similarity index 100% rename from githubkit/versions/v2022_11_28/webhooks/project_column.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/webhooks/project_column.py diff --git a/githubkit/versions/v2022_11_28/webhooks/projects_v2.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/webhooks/projects_v2.py similarity index 100% rename from githubkit/versions/v2022_11_28/webhooks/projects_v2.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/webhooks/projects_v2.py diff --git a/githubkit/versions/v2022_11_28/webhooks/projects_v2_item.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/webhooks/projects_v2_item.py similarity index 100% rename from githubkit/versions/v2022_11_28/webhooks/projects_v2_item.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/webhooks/projects_v2_item.py diff --git a/githubkit/versions/v2022_11_28/webhooks/projects_v2_status_update.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/webhooks/projects_v2_status_update.py similarity index 100% rename from githubkit/versions/v2022_11_28/webhooks/projects_v2_status_update.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/webhooks/projects_v2_status_update.py diff --git a/githubkit/versions/v2022_11_28/webhooks/public.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/webhooks/public.py similarity index 100% rename from githubkit/versions/v2022_11_28/webhooks/public.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/webhooks/public.py diff --git a/githubkit/versions/v2022_11_28/webhooks/pull_request.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/webhooks/pull_request.py similarity index 100% rename from githubkit/versions/v2022_11_28/webhooks/pull_request.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/webhooks/pull_request.py diff --git a/githubkit/versions/v2022_11_28/webhooks/pull_request_review.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/webhooks/pull_request_review.py similarity index 100% rename from githubkit/versions/v2022_11_28/webhooks/pull_request_review.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/webhooks/pull_request_review.py diff --git a/githubkit/versions/v2022_11_28/webhooks/pull_request_review_comment.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/webhooks/pull_request_review_comment.py similarity index 100% rename from githubkit/versions/v2022_11_28/webhooks/pull_request_review_comment.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/webhooks/pull_request_review_comment.py diff --git a/githubkit/versions/v2022_11_28/webhooks/pull_request_review_thread.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/webhooks/pull_request_review_thread.py similarity index 100% rename from githubkit/versions/v2022_11_28/webhooks/pull_request_review_thread.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/webhooks/pull_request_review_thread.py diff --git a/githubkit/versions/v2022_11_28/webhooks/push.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/webhooks/push.py similarity index 100% rename from githubkit/versions/v2022_11_28/webhooks/push.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/webhooks/push.py diff --git a/githubkit/versions/v2022_11_28/webhooks/registry_package.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/webhooks/registry_package.py similarity index 100% rename from githubkit/versions/v2022_11_28/webhooks/registry_package.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/webhooks/registry_package.py diff --git a/githubkit/versions/v2022_11_28/webhooks/release.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/webhooks/release.py similarity index 100% rename from githubkit/versions/v2022_11_28/webhooks/release.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/webhooks/release.py diff --git a/githubkit/versions/v2022_11_28/webhooks/repository.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/webhooks/repository.py similarity index 100% rename from githubkit/versions/v2022_11_28/webhooks/repository.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/webhooks/repository.py diff --git a/githubkit/versions/v2022_11_28/webhooks/repository_advisory.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/webhooks/repository_advisory.py similarity index 100% rename from githubkit/versions/v2022_11_28/webhooks/repository_advisory.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/webhooks/repository_advisory.py diff --git a/githubkit/versions/v2022_11_28/webhooks/repository_dispatch.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/webhooks/repository_dispatch.py similarity index 100% rename from githubkit/versions/v2022_11_28/webhooks/repository_dispatch.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/webhooks/repository_dispatch.py diff --git a/githubkit/versions/v2022_11_28/webhooks/repository_import.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/webhooks/repository_import.py similarity index 100% rename from githubkit/versions/v2022_11_28/webhooks/repository_import.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/webhooks/repository_import.py diff --git a/githubkit/versions/v2022_11_28/webhooks/repository_ruleset.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/webhooks/repository_ruleset.py similarity index 100% rename from githubkit/versions/v2022_11_28/webhooks/repository_ruleset.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/webhooks/repository_ruleset.py diff --git a/githubkit/versions/v2022_11_28/webhooks/repository_vulnerability_alert.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/webhooks/repository_vulnerability_alert.py similarity index 100% rename from githubkit/versions/v2022_11_28/webhooks/repository_vulnerability_alert.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/webhooks/repository_vulnerability_alert.py diff --git a/githubkit/versions/v2022_11_28/webhooks/secret_scanning_alert.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/webhooks/secret_scanning_alert.py similarity index 100% rename from githubkit/versions/v2022_11_28/webhooks/secret_scanning_alert.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/webhooks/secret_scanning_alert.py diff --git a/githubkit/versions/v2022_11_28/webhooks/secret_scanning_alert_location.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/webhooks/secret_scanning_alert_location.py similarity index 100% rename from githubkit/versions/v2022_11_28/webhooks/secret_scanning_alert_location.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/webhooks/secret_scanning_alert_location.py diff --git a/githubkit/versions/v2022_11_28/webhooks/secret_scanning_scan.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/webhooks/secret_scanning_scan.py similarity index 100% rename from githubkit/versions/v2022_11_28/webhooks/secret_scanning_scan.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/webhooks/secret_scanning_scan.py diff --git a/githubkit/versions/v2022_11_28/webhooks/security_advisory.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/webhooks/security_advisory.py similarity index 100% rename from githubkit/versions/v2022_11_28/webhooks/security_advisory.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/webhooks/security_advisory.py diff --git a/githubkit/versions/v2022_11_28/webhooks/security_and_analysis.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/webhooks/security_and_analysis.py similarity index 100% rename from githubkit/versions/v2022_11_28/webhooks/security_and_analysis.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/webhooks/security_and_analysis.py diff --git a/githubkit/versions/v2022_11_28/webhooks/sponsorship.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/webhooks/sponsorship.py similarity index 100% rename from githubkit/versions/v2022_11_28/webhooks/sponsorship.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/webhooks/sponsorship.py diff --git a/githubkit/versions/v2022_11_28/webhooks/star.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/webhooks/star.py similarity index 100% rename from githubkit/versions/v2022_11_28/webhooks/star.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/webhooks/star.py diff --git a/githubkit/versions/v2022_11_28/webhooks/status.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/webhooks/status.py similarity index 100% rename from githubkit/versions/v2022_11_28/webhooks/status.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/webhooks/status.py diff --git a/githubkit/versions/v2022_11_28/webhooks/sub_issues.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/webhooks/sub_issues.py similarity index 100% rename from githubkit/versions/v2022_11_28/webhooks/sub_issues.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/webhooks/sub_issues.py diff --git a/githubkit/versions/v2022_11_28/webhooks/team.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/webhooks/team.py similarity index 100% rename from githubkit/versions/v2022_11_28/webhooks/team.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/webhooks/team.py diff --git a/githubkit/versions/v2022_11_28/webhooks/team_add.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/webhooks/team_add.py similarity index 100% rename from githubkit/versions/v2022_11_28/webhooks/team_add.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/webhooks/team_add.py diff --git a/githubkit/versions/v2022_11_28/webhooks/watch.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/webhooks/watch.py similarity index 100% rename from githubkit/versions/v2022_11_28/webhooks/watch.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/webhooks/watch.py diff --git a/githubkit/versions/v2022_11_28/webhooks/workflow_dispatch.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/webhooks/workflow_dispatch.py similarity index 100% rename from githubkit/versions/v2022_11_28/webhooks/workflow_dispatch.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/webhooks/workflow_dispatch.py diff --git a/githubkit/versions/v2022_11_28/webhooks/workflow_job.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/webhooks/workflow_job.py similarity index 100% rename from githubkit/versions/v2022_11_28/webhooks/workflow_job.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/webhooks/workflow_job.py diff --git a/githubkit/versions/v2022_11_28/webhooks/workflow_run.py b/packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/webhooks/workflow_run.py similarity index 100% rename from githubkit/versions/v2022_11_28/webhooks/workflow_run.py rename to packages/githubkit-schemas-ghec-2022-11-28/githubkit_schemas/ghec_v2022_11_28/webhooks/workflow_run.py diff --git a/packages/githubkit-schemas-ghec-2022-11-28/pyproject.toml b/packages/githubkit-schemas-ghec-2022-11-28/pyproject.toml new file mode 100644 index 0000000000..7803cd616c --- /dev/null +++ b/packages/githubkit-schemas-ghec-2022-11-28/pyproject.toml @@ -0,0 +1,32 @@ +[project] +name = "GitHubKit-schemas-ghec-2022-11-28" +version = "26.5.7" +description = "GitHub Schemas for GitHubKit" +authors = [{ name = "yanyongyu", email = "yyy@yyydl.top" }] +license = "MIT" +readme = "README.md" +keywords = ["github", "octokit"] +requires-python = ">=3.9, <4.0" +dependencies = ["githubkit-schemas ==26.5.7"] + +[project.optional-dependencies] + +[project.urls] +Homepage = "https://github.com/yanyongyu/githubkit" +Repository = "https://github.com/yanyongyu/githubkit" +Documentation = "https://github.com/yanyongyu/githubkit" +"Bug Tracker" = "https://github.com/yanyongyu/githubkit/issues" + +[tool.uv] +required-version = ">=0.8.0" + +[tool.uv.sources] +githubkit-schemas = { workspace = true } + +[tool.uv.build-backend] +module-root = "" +module-name = "githubkit_schemas.ghec_v2022_11_28" + +[build-system] +requires = ["uv_build >=0.8.3, <0.10.0"] +build-backend = "uv_build" diff --git a/packages/githubkit-schemas-ghec-2026-03-10/README.md b/packages/githubkit-schemas-ghec-2026-03-10/README.md new file mode 100644 index 0000000000..240b20da76 --- /dev/null +++ b/packages/githubkit-schemas-ghec-2026-03-10/README.md @@ -0,0 +1,57 @@ + +
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Documentation | + Report Bug | + GitHub Docs +
+ +This package provides the models and GitHub schemas for GitHubKit. + +When GitHub schemas are updated, this package will be updated accordingly. You can also lock the version of this package using a dependency manager like `uv` to ensure that your project is using a specific version of the schemas. + +## Getting Started + +For more, see the [documentation](https://yanyongyu.github.io/githubkit). diff --git a/githubkit/versions/v2022_11_28/__init__.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/__init__.py similarity index 100% rename from githubkit/versions/v2022_11_28/__init__.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/__init__.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/__init__.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/__init__.py similarity index 99% rename from githubkit/versions/ghec_v2026_03_10/models/__init__.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/__init__.py index bf8818ad30..298a90b3dc 100644 --- a/githubkit/versions/ghec_v2026_03_10/models/__init__.py +++ b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/__init__.py @@ -9,7 +9,7 @@ from typing import TYPE_CHECKING -from githubkit.lazy_module import is_lazy_disabled +from githubkit.module_hooks.lazy_module import is_lazy_disabled if TYPE_CHECKING or is_lazy_disabled(): from .group_0000 import Root as Root diff --git a/githubkit/versions/v2026_03_10/models/group_0000.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0000.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0000.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0000.py diff --git a/githubkit/versions/v2026_03_10/models/group_0001.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0001.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0001.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0001.py diff --git a/githubkit/versions/v2026_03_10/models/group_0002.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0002.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0002.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0002.py diff --git a/githubkit/versions/v2026_03_10/models/group_0003.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0003.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0003.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0003.py diff --git a/githubkit/versions/v2026_03_10/models/group_0004.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0004.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0004.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0004.py diff --git a/githubkit/versions/v2026_03_10/models/group_0005.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0005.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0005.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0005.py diff --git a/githubkit/versions/v2026_03_10/models/group_0006.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0006.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0006.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0006.py diff --git a/githubkit/versions/v2026_03_10/models/group_0007.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0007.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0007.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0007.py diff --git a/githubkit/versions/v2026_03_10/models/group_0008.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0008.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0008.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0008.py diff --git a/githubkit/versions/v2026_03_10/models/group_0009.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0009.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0009.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0009.py diff --git a/githubkit/versions/v2026_03_10/models/group_0010.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0010.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0010.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0010.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0011.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0011.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0011.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0011.py diff --git a/githubkit/versions/v2026_03_10/models/group_0012.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0012.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0012.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0012.py diff --git a/githubkit/versions/v2026_03_10/models/group_0013.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0013.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0013.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0013.py diff --git a/githubkit/versions/v2026_03_10/models/group_0014.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0014.py similarity index 92% rename from githubkit/versions/v2026_03_10/models/group_0014.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0014.py index d347d5d9ad..120f59894b 100644 --- a/githubkit/versions/v2026_03_10/models/group_0014.py +++ b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0014.py @@ -37,7 +37,7 @@ class ValidationErrorPropErrorsItems(GitHubModel): message: Missing[str] = Field(default=UNSET) code: str = Field() index: Missing[int] = Field(default=UNSET) - value: Missing[Union[str, None, int, None, list[str], None]] = Field(default=UNSET) + value: Missing[Union[str, None, int, list[str]]] = Field(default=UNSET) model_rebuild(ValidationError) diff --git a/githubkit/versions/v2026_03_10/models/group_0015.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0015.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0015.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0015.py diff --git a/githubkit/versions/v2026_03_10/models/group_0016.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0016.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0016.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0016.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0017.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0017.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0017.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0017.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0018.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0018.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0018.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0018.py diff --git a/githubkit/versions/v2026_03_10/models/group_0019.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0019.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0019.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0019.py diff --git a/githubkit/versions/v2026_03_10/models/group_0020.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0020.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0020.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0020.py diff --git a/githubkit/versions/v2026_03_10/models/group_0021.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0021.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0021.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0021.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0022.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0022.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0022.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0022.py diff --git a/githubkit/versions/v2026_03_10/models/group_0023.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0023.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0023.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0023.py diff --git a/githubkit/versions/v2026_03_10/models/group_0024.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0024.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0024.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0024.py diff --git a/githubkit/versions/v2026_03_10/models/group_0025.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0025.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0025.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0025.py diff --git a/githubkit/versions/v2026_03_10/models/group_0026.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0026.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0026.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0026.py diff --git a/githubkit/versions/v2026_03_10/models/group_0027.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0027.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0027.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0027.py diff --git a/githubkit/versions/v2026_03_10/models/group_0028.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0028.py similarity index 100% rename from githubkit/versions/v2026_03_10/models/group_0028.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0028.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0029.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0029.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0029.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0029.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0030.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0030.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0030.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0030.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0031.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0031.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0031.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0031.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0032.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0032.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0032.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0032.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0033.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0033.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0033.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0033.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0034.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0034.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0034.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0034.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0035.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0035.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0035.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0035.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0036.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0036.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0036.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0036.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0037.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0037.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0037.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0037.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0038.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0038.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0038.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0038.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0039.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0039.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0039.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0039.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0040.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0040.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0040.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0040.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0041.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0041.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0041.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0041.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0042.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0042.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0042.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0042.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0043.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0043.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0043.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0043.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0044.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0044.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0044.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0044.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0045.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0045.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0045.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0045.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0046.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0046.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0046.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0046.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0047.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0047.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0047.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0047.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0048.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0048.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0048.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0048.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0049.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0049.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0049.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0049.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0050.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0050.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0050.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0050.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0051.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0051.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0051.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0051.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0052.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0052.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0052.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0052.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0053.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0053.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0053.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0053.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0054.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0054.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0054.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0054.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0055.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0055.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0055.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0055.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0056.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0056.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0056.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0056.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0057.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0057.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0057.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0057.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0058.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0058.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0058.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0058.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0059.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0059.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0059.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0059.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0060.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0060.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0060.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0060.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0061.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0061.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0061.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0061.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0062.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0062.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0062.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0062.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0063.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0063.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0063.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0063.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0064.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0064.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0064.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0064.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0065.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0065.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0065.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0065.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0066.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0066.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0066.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0066.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0067.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0067.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0067.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0067.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0068.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0068.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0068.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0068.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0069.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0069.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0069.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0069.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0070.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0070.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0070.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0070.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0071.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0071.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0071.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0071.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0072.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0072.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0072.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0072.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0073.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0073.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0073.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0073.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0074.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0074.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0074.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0074.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0075.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0075.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0075.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0075.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0076.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0076.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0076.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0076.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0077.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0077.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0077.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0077.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0078.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0078.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0078.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0078.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0079.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0079.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0079.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0079.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0080.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0080.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0080.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0080.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0081.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0081.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0081.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0081.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0082.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0082.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0082.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0082.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0083.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0083.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0083.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0083.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0084.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0084.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0084.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0084.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0085.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0085.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0085.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0085.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0086.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0086.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0086.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0086.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0087.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0087.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0087.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0087.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0088.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0088.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0088.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0088.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0089.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0089.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0089.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0089.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0090.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0090.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0090.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0090.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0091.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0091.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0091.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0091.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0092.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0092.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0092.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0092.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0093.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0093.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0093.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0093.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0094.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0094.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0094.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0094.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0095.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0095.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0095.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0095.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0096.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0096.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0096.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0096.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0097.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0097.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0097.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0097.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0098.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0098.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0098.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0098.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0099.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0099.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0099.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0099.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0100.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0100.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0100.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0100.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0101.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0101.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0101.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0101.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0102.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0102.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0102.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0102.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0103.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0103.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0103.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0103.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0104.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0104.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0104.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0104.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0105.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0105.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0105.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0105.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0106.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0106.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0106.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0106.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0107.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0107.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0107.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0107.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0108.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0108.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0108.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0108.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0109.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0109.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0109.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0109.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0110.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0110.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0110.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0110.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0111.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0111.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0111.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0111.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0112.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0112.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0112.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0112.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0113.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0113.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0113.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0113.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0114.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0114.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0114.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0114.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0115.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0115.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0115.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0115.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0116.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0116.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0116.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0116.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0117.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0117.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0117.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0117.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0118.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0118.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0118.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0118.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0119.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0119.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0119.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0119.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0120.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0120.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0120.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0120.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0121.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0121.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0121.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0121.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0122.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0122.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0122.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0122.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0123.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0123.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0123.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0123.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0124.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0124.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0124.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0124.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0125.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0125.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0125.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0125.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0126.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0126.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0126.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0126.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0127.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0127.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0127.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0127.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0128.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0128.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0128.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0128.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0129.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0129.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0129.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0129.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0130.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0130.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0130.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0130.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0131.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0131.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0131.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0131.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0132.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0132.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0132.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0132.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0133.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0133.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0133.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0133.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0134.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0134.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0134.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0134.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0135.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0135.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0135.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0135.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0136.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0136.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0136.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0136.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0137.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0137.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0137.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0137.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0138.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0138.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0138.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0138.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0139.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0139.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0139.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0139.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0140.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0140.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0140.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0140.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0141.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0141.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0141.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0141.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0142.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0142.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0142.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0142.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0143.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0143.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0143.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0143.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0144.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0144.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0144.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0144.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0145.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0145.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0145.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0145.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0146.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0146.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0146.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0146.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0147.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0147.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0147.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0147.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0148.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0148.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0148.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0148.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0149.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0149.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0149.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0149.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0150.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0150.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0150.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0150.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0151.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0151.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0151.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0151.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0152.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0152.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0152.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0152.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0153.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0153.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0153.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0153.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0154.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0154.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0154.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0154.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0155.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0155.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0155.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0155.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0156.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0156.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0156.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0156.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0157.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0157.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0157.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0157.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0158.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0158.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0158.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0158.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0159.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0159.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0159.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0159.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0160.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0160.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0160.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0160.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0161.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0161.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0161.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0161.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0162.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0162.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0162.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0162.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0163.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0163.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0163.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0163.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0164.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0164.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0164.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0164.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0165.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0165.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0165.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0165.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0166.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0166.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0166.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0166.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0167.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0167.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0167.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0167.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0168.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0168.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0168.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0168.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0169.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0169.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0169.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0169.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0170.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0170.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0170.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0170.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0171.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0171.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0171.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0171.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0172.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0172.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0172.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0172.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0173.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0173.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0173.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0173.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0174.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0174.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0174.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0174.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0175.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0175.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0175.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0175.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0176.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0176.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0176.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0176.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0177.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0177.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0177.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0177.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0178.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0178.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0178.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0178.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0179.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0179.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0179.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0179.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0180.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0180.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0180.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0180.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0181.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0181.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0181.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0181.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0182.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0182.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0182.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0182.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0183.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0183.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0183.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0183.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0184.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0184.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0184.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0184.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0185.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0185.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0185.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0185.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0186.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0186.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0186.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0186.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0187.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0187.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0187.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0187.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0188.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0188.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0188.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0188.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0189.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0189.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0189.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0189.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0190.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0190.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0190.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0190.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0191.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0191.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0191.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0191.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0192.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0192.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0192.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0192.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0193.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0193.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0193.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0193.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0194.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0194.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0194.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0194.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0195.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0195.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0195.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0195.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0196.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0196.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0196.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0196.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0197.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0197.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0197.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0197.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0198.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0198.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0198.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0198.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0199.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0199.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0199.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0199.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0200.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0200.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0200.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0200.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0201.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0201.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0201.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0201.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0202.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0202.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0202.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0202.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0203.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0203.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0203.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0203.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0204.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0204.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0204.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0204.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0205.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0205.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0205.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0205.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0206.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0206.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0206.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0206.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0207.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0207.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0207.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0207.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0208.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0208.py similarity index 94% rename from githubkit/versions/ghec_v2026_03_10/models/group_0208.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0208.py index 24c975ea0a..a258544c8e 100644 --- a/githubkit/versions/ghec_v2026_03_10/models/group_0208.py +++ b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0208.py @@ -59,9 +59,7 @@ class IssueComment(GitHubModel): title="author_association", description="How the author is associated with the repository.", ) - performed_via_github_app: Missing[Union[None, Integration, None]] = Field( - default=UNSET - ) + performed_via_github_app: Missing[Union[None, Integration]] = Field(default=UNSET) reactions: Missing[ReactionRollup] = Field(default=UNSET, title="Reaction Rollup") pin: Missing[Union[None, PinnedIssueComment]] = Field(default=UNSET) diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0209.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0209.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0209.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0209.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0210.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0210.py similarity index 97% rename from githubkit/versions/ghec_v2026_03_10/models/group_0210.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0210.py index a0bf95bce1..55e850bd91 100644 --- a/githubkit/versions/ghec_v2026_03_10/models/group_0210.py +++ b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0210.py @@ -79,9 +79,7 @@ class Issue(GitHubModel): repository: Missing[Repository] = Field( default=UNSET, title="Repository", description="A repository on GitHub." ) - performed_via_github_app: Missing[Union[None, Integration, None]] = Field( - default=UNSET - ) + performed_via_github_app: Missing[Union[None, Integration]] = Field(default=UNSET) author_association: Missing[ Literal[ "COLLABORATOR", diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0211.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0211.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0211.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0211.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0212.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0212.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0212.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0212.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0213.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0213.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0213.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0213.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0214.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0214.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0214.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0214.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0215.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0215.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0215.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0215.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0216.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0216.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0216.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0216.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0217.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0217.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0217.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0217.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0218.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0218.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0218.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0218.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0219.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0219.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0219.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0219.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0220.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0220.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0220.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0220.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0221.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0221.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0221.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0221.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0222.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0222.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0222.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0222.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0223.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0223.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0223.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0223.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0224.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0224.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0224.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0224.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0225.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0225.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0225.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0225.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0226.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0226.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0226.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0226.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0227.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0227.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0227.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0227.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0228.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0228.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0228.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0228.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0229.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0229.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0229.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0229.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0230.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0230.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0230.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0230.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0231.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0231.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0231.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0231.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0232.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0232.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0232.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0232.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0233.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0233.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0233.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0233.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0234.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0234.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0234.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0234.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0235.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0235.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0235.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0235.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0236.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0236.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0236.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0236.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0237.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0237.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0237.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0237.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0238.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0238.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0238.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0238.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0239.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0239.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0239.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0239.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0240.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0240.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0240.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0240.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0241.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0241.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0241.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0241.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0242.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0242.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0242.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0242.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0243.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0243.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0243.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0243.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0244.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0244.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0244.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0244.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0245.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0245.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0245.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0245.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0246.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0246.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0246.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0246.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0247.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0247.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0247.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0247.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0248.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0248.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0248.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0248.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0249.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0249.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0249.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0249.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0250.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0250.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0250.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0250.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0251.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0251.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0251.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0251.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0252.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0252.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0252.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0252.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0253.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0253.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0253.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0253.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0254.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0254.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0254.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0254.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0255.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0255.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0255.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0255.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0256.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0256.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0256.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0256.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0257.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0257.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0257.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0257.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0258.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0258.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0258.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0258.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0259.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0259.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0259.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0259.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0260.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0260.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0260.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0260.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0261.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0261.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0261.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0261.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0262.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0262.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0262.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0262.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0263.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0263.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0263.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0263.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0264.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0264.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0264.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0264.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0265.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0265.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0265.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0265.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0266.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0266.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0266.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0266.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0267.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0267.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0267.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0267.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0268.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0268.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0268.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0268.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0269.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0269.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0269.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0269.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0270.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0270.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0270.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0270.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0271.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0271.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0271.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0271.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0272.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0272.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0272.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0272.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0273.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0273.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0273.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0273.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0274.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0274.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0274.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0274.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0275.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0275.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0275.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0275.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0276.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0276.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0276.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0276.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0277.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0277.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0277.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0277.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0278.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0278.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0278.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0278.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0279.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0279.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0279.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0279.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0280.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0280.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0280.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0280.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0281.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0281.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0281.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0281.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0282.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0282.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0282.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0282.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0283.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0283.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0283.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0283.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0284.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0284.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0284.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0284.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0285.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0285.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0285.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0285.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0286.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0286.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0286.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0286.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0287.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0287.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0287.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0287.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0288.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0288.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0288.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0288.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0289.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0289.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0289.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0289.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0290.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0290.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0290.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0290.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0291.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0291.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0291.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0291.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0292.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0292.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0292.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0292.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0293.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0293.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0293.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0293.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0294.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0294.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0294.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0294.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0295.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0295.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0295.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0295.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0296.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0296.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0296.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0296.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0297.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0297.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0297.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0297.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0298.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0298.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0298.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0298.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0299.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0299.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0299.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0299.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0300.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0300.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0300.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0300.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0301.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0301.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0301.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0301.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0302.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0302.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0302.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0302.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0303.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0303.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0303.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0303.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0304.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0304.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0304.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0304.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0305.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0305.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0305.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0305.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0306.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0306.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0306.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0306.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0307.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0307.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0307.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0307.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0308.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0308.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0308.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0308.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0309.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0309.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0309.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0309.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0310.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0310.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0310.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0310.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0311.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0311.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0311.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0311.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0312.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0312.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0312.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0312.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0313.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0313.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0313.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0313.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0314.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0314.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0314.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0314.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0315.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0315.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0315.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0315.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0316.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0316.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0316.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0316.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0317.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0317.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0317.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0317.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0318.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0318.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0318.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0318.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0319.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0319.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0319.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0319.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0320.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0320.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0320.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0320.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0321.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0321.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0321.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0321.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0322.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0322.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0322.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0322.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0323.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0323.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0323.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0323.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0324.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0324.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0324.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0324.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0325.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0325.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0325.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0325.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0326.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0326.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0326.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0326.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0327.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0327.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0327.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0327.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0328.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0328.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0328.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0328.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0329.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0329.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0329.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0329.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0330.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0330.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0330.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0330.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0331.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0331.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0331.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0331.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0332.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0332.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0332.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0332.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0333.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0333.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0333.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0333.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0334.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0334.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0334.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0334.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0335.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0335.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0335.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0335.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0336.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0336.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0336.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0336.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0337.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0337.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0337.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0337.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0338.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0338.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0338.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0338.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0339.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0339.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0339.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0339.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0340.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0340.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0340.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0340.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0341.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0341.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0341.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0341.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0342.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0342.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0342.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0342.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0343.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0343.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0343.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0343.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0344.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0344.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0344.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0344.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0345.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0345.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0345.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0345.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0346.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0346.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0346.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0346.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0347.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0347.py similarity index 95% rename from githubkit/versions/ghec_v2026_03_10/models/group_0347.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0347.py index 95359f3748..986961f173 100644 --- a/githubkit/versions/ghec_v2026_03_10/models/group_0347.py +++ b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0347.py @@ -53,9 +53,7 @@ class Deployment(GitHubModel): default=UNSET, description="Specifies if the given environment is one that end-users directly interact with. Default: false.", ) - performed_via_github_app: Missing[Union[None, Integration, None]] = Field( - default=UNSET - ) + performed_via_github_app: Missing[Union[None, Integration]] = Field(default=UNSET) class DeploymentPropPayloadOneof0(ExtraGitHubModel): diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0348.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0348.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0348.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0348.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0349.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0349.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0349.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0349.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0350.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0350.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0350.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0350.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0351.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0351.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0351.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0351.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0352.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0352.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0352.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0352.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0353.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0353.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0353.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0353.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0354.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0354.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0354.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0354.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0355.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0355.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0355.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0355.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0356.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0356.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0356.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0356.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0357.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0357.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0357.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0357.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0358.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0358.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0358.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0358.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0359.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0359.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0359.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0359.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0360.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0360.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0360.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0360.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0361.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0361.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0361.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0361.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0362.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0362.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0362.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0362.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0363.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0363.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0363.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0363.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0364.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0364.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0364.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0364.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0365.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0365.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0365.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0365.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0366.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0366.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0366.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0366.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0367.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0367.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0367.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0367.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0368.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0368.py similarity index 94% rename from githubkit/versions/ghec_v2026_03_10/models/group_0368.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0368.py index 19eaea59f7..f16ebab022 100644 --- a/githubkit/versions/ghec_v2026_03_10/models/group_0368.py +++ b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0368.py @@ -47,9 +47,7 @@ class DeploymentSimple(GitHubModel): default=UNSET, description="Specifies if the given environment is one that end-users directly interact with. Default: false.", ) - performed_via_github_app: Missing[Union[None, Integration, None]] = Field( - default=UNSET - ) + performed_via_github_app: Missing[Union[None, Integration]] = Field(default=UNSET) model_rebuild(DeploymentSimple) diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0369.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0369.py similarity index 98% rename from githubkit/versions/ghec_v2026_03_10/models/group_0369.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0369.py index cd8ca7a5b1..2ede4e721b 100644 --- a/githubkit/versions/ghec_v2026_03_10/models/group_0369.py +++ b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0369.py @@ -58,7 +58,7 @@ class CheckRun(GitHubModel): output: CheckRunPropOutput = Field() name: str = Field(description="The name of the check.") check_suite: Union[CheckRunPropCheckSuite, None] = Field() - app: Union[None, Integration, None] = Field() + app: Union[None, Integration] = Field() pull_requests: list[PullRequestMinimal] = Field( description="Pull requests that are open with a `head_sha` or `head_branch` that matches the check. The returned pull requests do not necessarily indicate pull requests that triggered the check." ) diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0370.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0370.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0370.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0370.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0371.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0371.py similarity index 98% rename from githubkit/versions/ghec_v2026_03_10/models/group_0371.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0371.py index d5fd52f197..018150f802 100644 --- a/githubkit/versions/ghec_v2026_03_10/models/group_0371.py +++ b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0371.py @@ -62,7 +62,7 @@ class CheckSuite(GitHubModel): before: Union[str, None] = Field() after: Union[str, None] = Field() pull_requests: Union[list[PullRequestMinimal], None] = Field() - app: Union[None, Integration, None] = Field() + app: Union[None, Integration] = Field() repository: MinimalRepository = Field( title="Minimal Repository", description="Minimal Repository" ) diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0372.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0372.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0372.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0372.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0373.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0373.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0373.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0373.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0374.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0374.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0374.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0374.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0375.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0375.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0375.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0375.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0376.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0376.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0376.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0376.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0377.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0377.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0377.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0377.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0378.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0378.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0378.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0378.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0379.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0379.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0379.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0379.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0380.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0380.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0380.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0380.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0381.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0381.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0381.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0381.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0382.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0382.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0382.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0382.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0383.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0383.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0383.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0383.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0384.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0384.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0384.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0384.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0385.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0385.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0385.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0385.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0386.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0386.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0386.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0386.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0387.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0387.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0387.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0387.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0388.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0388.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0388.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0388.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0389.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0389.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0389.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0389.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0390.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0390.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0390.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0390.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0391.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0391.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0391.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0391.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0392.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0392.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0392.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0392.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0393.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0393.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0393.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0393.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0394.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0394.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0394.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0394.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0395.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0395.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0395.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0395.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0396.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0396.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0396.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0396.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0397.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0397.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0397.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0397.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0398.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0398.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0398.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0398.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0399.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0399.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0399.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0399.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0400.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0400.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0400.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0400.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0401.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0401.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0401.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0401.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0402.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0402.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0402.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0402.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0403.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0403.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0403.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0403.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0404.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0404.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0404.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0404.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0405.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0405.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0405.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0405.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0406.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0406.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0406.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0406.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0407.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0407.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0407.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0407.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0408.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0408.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0408.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0408.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0409.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0409.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0409.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0409.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0410.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0410.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0410.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0410.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0411.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0411.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0411.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0411.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0412.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0412.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0412.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0412.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0413.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0413.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0413.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0413.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0414.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0414.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0414.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0414.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0415.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0415.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0415.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0415.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0416.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0416.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0416.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0416.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0417.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0417.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0417.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0417.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0418.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0418.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0418.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0418.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0419.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0419.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0419.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0419.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0420.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0420.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0420.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0420.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0421.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0421.py similarity index 94% rename from githubkit/versions/ghec_v2026_03_10/models/group_0421.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0421.py index 4329e238bc..d886fb6755 100644 --- a/githubkit/versions/ghec_v2026_03_10/models/group_0421.py +++ b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0421.py @@ -56,9 +56,7 @@ class DeploymentStatus(GitHubModel): log_url: Missing[str] = Field( default=UNSET, description="The URL to associate with this status." ) - performed_via_github_app: Missing[Union[None, Integration, None]] = Field( - default=UNSET - ) + performed_via_github_app: Missing[Union[None, Integration]] = Field(default=UNSET) model_rebuild(DeploymentStatus) diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0422.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0422.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0422.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0422.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0423.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0423.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0423.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0423.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0424.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0424.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0424.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0424.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0425.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0425.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0425.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0425.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0426.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0426.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0426.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0426.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0427.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0427.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0427.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0427.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0428.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0428.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0428.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0428.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0429.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0429.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0429.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0429.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0430.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0430.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0430.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0430.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0431.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0431.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0431.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0431.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0432.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0432.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0432.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0432.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0433.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0433.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0433.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0433.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0434.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0434.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0434.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0434.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0435.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0435.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0435.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0435.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0436.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0436.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0436.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0436.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0437.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0437.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0437.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0437.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0438.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0438.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0438.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0438.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0439.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0439.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0439.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0439.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0440.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0440.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0440.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0440.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0441.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0441.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0441.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0441.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0442.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0442.py similarity index 97% rename from githubkit/versions/ghec_v2026_03_10/models/group_0442.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0442.py index a2d838831d..1b5368f29c 100644 --- a/githubkit/versions/ghec_v2026_03_10/models/group_0442.py +++ b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0442.py @@ -84,9 +84,7 @@ class IssueEvent(GitHubModel): description="How the author is associated with the repository.", ) lock_reason: Missing[Union[str, None]] = Field(default=UNSET) - performed_via_github_app: Missing[Union[None, Integration, None]] = Field( - default=UNSET - ) + performed_via_github_app: Missing[Union[None, Integration]] = Field(default=UNSET) class IssueEventLabel(GitHubModel): diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0443.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0443.py similarity index 94% rename from githubkit/versions/ghec_v2026_03_10/models/group_0443.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0443.py index 3ec22fb630..f62792ffa1 100644 --- a/githubkit/versions/ghec_v2026_03_10/models/group_0443.py +++ b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0443.py @@ -33,7 +33,7 @@ class LabeledIssueEvent(GitHubModel): commit_id: Union[str, None] = Field() commit_url: Union[str, None] = Field() created_at: str = Field() - performed_via_github_app: Union[None, Integration, None] = Field() + performed_via_github_app: Union[None, Integration] = Field() label: LabeledIssueEventPropLabel = Field() diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0444.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0444.py similarity index 94% rename from githubkit/versions/ghec_v2026_03_10/models/group_0444.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0444.py index 695ea4a4eb..f949ecf726 100644 --- a/githubkit/versions/ghec_v2026_03_10/models/group_0444.py +++ b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0444.py @@ -33,7 +33,7 @@ class UnlabeledIssueEvent(GitHubModel): commit_id: Union[str, None] = Field() commit_url: Union[str, None] = Field() created_at: str = Field() - performed_via_github_app: Union[None, Integration, None] = Field() + performed_via_github_app: Union[None, Integration] = Field() label: UnlabeledIssueEventPropLabel = Field() diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0445.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0445.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0445.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0445.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0446.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0446.py similarity index 93% rename from githubkit/versions/ghec_v2026_03_10/models/group_0446.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0446.py index d36e83286a..9fcb9db594 100644 --- a/githubkit/versions/ghec_v2026_03_10/models/group_0446.py +++ b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0446.py @@ -33,7 +33,7 @@ class UnassignedIssueEvent(GitHubModel): commit_id: Union[str, None] = Field() commit_url: Union[str, None] = Field() created_at: str = Field() - performed_via_github_app: Union[None, Integration, None] = Field() + performed_via_github_app: Union[None, Integration] = Field() assignee: SimpleUser = Field(title="Simple User", description="A GitHub user.") assigner: SimpleUser = Field(title="Simple User", description="A GitHub user.") diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0447.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0447.py similarity index 94% rename from githubkit/versions/ghec_v2026_03_10/models/group_0447.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0447.py index 734796d8a5..6f795ed55c 100644 --- a/githubkit/versions/ghec_v2026_03_10/models/group_0447.py +++ b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0447.py @@ -33,7 +33,7 @@ class MilestonedIssueEvent(GitHubModel): commit_id: Union[str, None] = Field() commit_url: Union[str, None] = Field() created_at: str = Field() - performed_via_github_app: Union[None, Integration, None] = Field() + performed_via_github_app: Union[None, Integration] = Field() milestone: MilestonedIssueEventPropMilestone = Field() diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0448.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0448.py similarity index 94% rename from githubkit/versions/ghec_v2026_03_10/models/group_0448.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0448.py index 1b03cd99a5..c9224cbb54 100644 --- a/githubkit/versions/ghec_v2026_03_10/models/group_0448.py +++ b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0448.py @@ -33,7 +33,7 @@ class DemilestonedIssueEvent(GitHubModel): commit_id: Union[str, None] = Field() commit_url: Union[str, None] = Field() created_at: str = Field() - performed_via_github_app: Union[None, Integration, None] = Field() + performed_via_github_app: Union[None, Integration] = Field() milestone: DemilestonedIssueEventPropMilestone = Field() diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0449.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0449.py similarity index 94% rename from githubkit/versions/ghec_v2026_03_10/models/group_0449.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0449.py index 234895caf4..c09adc19c9 100644 --- a/githubkit/versions/ghec_v2026_03_10/models/group_0449.py +++ b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0449.py @@ -33,7 +33,7 @@ class RenamedIssueEvent(GitHubModel): commit_id: Union[str, None] = Field() commit_url: Union[str, None] = Field() created_at: str = Field() - performed_via_github_app: Union[None, Integration, None] = Field() + performed_via_github_app: Union[None, Integration] = Field() rename: RenamedIssueEventPropRename = Field() diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0450.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0450.py similarity index 95% rename from githubkit/versions/ghec_v2026_03_10/models/group_0450.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0450.py index fde0f0f700..fae31646cd 100644 --- a/githubkit/versions/ghec_v2026_03_10/models/group_0450.py +++ b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0450.py @@ -36,7 +36,7 @@ class ReviewRequestedIssueEvent(GitHubModel): commit_id: Union[str, None] = Field() commit_url: Union[str, None] = Field() created_at: str = Field() - performed_via_github_app: Union[None, Integration, None] = Field() + performed_via_github_app: Union[None, Integration] = Field() review_requester: SimpleUser = Field( title="Simple User", description="A GitHub user." ) diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0451.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0451.py similarity index 95% rename from githubkit/versions/ghec_v2026_03_10/models/group_0451.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0451.py index 8b3e66e7ad..e53058cbd1 100644 --- a/githubkit/versions/ghec_v2026_03_10/models/group_0451.py +++ b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0451.py @@ -36,7 +36,7 @@ class ReviewRequestRemovedIssueEvent(GitHubModel): commit_id: Union[str, None] = Field() commit_url: Union[str, None] = Field() created_at: str = Field() - performed_via_github_app: Union[None, Integration, None] = Field() + performed_via_github_app: Union[None, Integration] = Field() review_requester: SimpleUser = Field( title="Simple User", description="A GitHub user." ) diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0452.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0452.py similarity index 95% rename from githubkit/versions/ghec_v2026_03_10/models/group_0452.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0452.py index bc686e09d6..cc4a94a56f 100644 --- a/githubkit/versions/ghec_v2026_03_10/models/group_0452.py +++ b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0452.py @@ -35,7 +35,7 @@ class ReviewDismissedIssueEvent(GitHubModel): commit_id: Union[str, None] = Field() commit_url: Union[str, None] = Field() created_at: str = Field() - performed_via_github_app: Union[None, Integration, None] = Field() + performed_via_github_app: Union[None, Integration] = Field() dismissed_review: ReviewDismissedIssueEventPropDismissedReview = Field() diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0453.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0453.py similarity index 93% rename from githubkit/versions/ghec_v2026_03_10/models/group_0453.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0453.py index e0130f1522..c47c1c3352 100644 --- a/githubkit/versions/ghec_v2026_03_10/models/group_0453.py +++ b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0453.py @@ -33,7 +33,7 @@ class LockedIssueEvent(GitHubModel): commit_id: Union[str, None] = Field() commit_url: Union[str, None] = Field() created_at: str = Field() - performed_via_github_app: Union[None, Integration, None] = Field() + performed_via_github_app: Union[None, Integration] = Field() lock_reason: Union[str, None] = Field() diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0454.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0454.py similarity index 95% rename from githubkit/versions/ghec_v2026_03_10/models/group_0454.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0454.py index cf2b6b5f8f..e3c6fb1be8 100644 --- a/githubkit/versions/ghec_v2026_03_10/models/group_0454.py +++ b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0454.py @@ -35,7 +35,7 @@ class AddedToProjectIssueEvent(GitHubModel): commit_id: Union[str, None] = Field() commit_url: Union[str, None] = Field() created_at: str = Field() - performed_via_github_app: Union[None, Integration, None] = Field() + performed_via_github_app: Union[None, Integration] = Field() project_card: Missing[AddedToProjectIssueEventPropProjectCard] = Field( default=UNSET ) diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0455.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0455.py similarity index 95% rename from githubkit/versions/ghec_v2026_03_10/models/group_0455.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0455.py index 5d2b15f176..04b216df30 100644 --- a/githubkit/versions/ghec_v2026_03_10/models/group_0455.py +++ b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0455.py @@ -35,7 +35,7 @@ class MovedColumnInProjectIssueEvent(GitHubModel): commit_id: Union[str, None] = Field() commit_url: Union[str, None] = Field() created_at: str = Field() - performed_via_github_app: Union[None, Integration, None] = Field() + performed_via_github_app: Union[None, Integration] = Field() project_card: Missing[MovedColumnInProjectIssueEventPropProjectCard] = Field( default=UNSET ) diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0456.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0456.py similarity index 95% rename from githubkit/versions/ghec_v2026_03_10/models/group_0456.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0456.py index 3bd6fbf406..d935784e81 100644 --- a/githubkit/versions/ghec_v2026_03_10/models/group_0456.py +++ b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0456.py @@ -35,7 +35,7 @@ class RemovedFromProjectIssueEvent(GitHubModel): commit_id: Union[str, None] = Field() commit_url: Union[str, None] = Field() created_at: str = Field() - performed_via_github_app: Union[None, Integration, None] = Field() + performed_via_github_app: Union[None, Integration] = Field() project_card: Missing[RemovedFromProjectIssueEventPropProjectCard] = Field( default=UNSET ) diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0457.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0457.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0457.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0457.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0458.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0458.py similarity index 94% rename from githubkit/versions/ghec_v2026_03_10/models/group_0458.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0458.py index e7e0dd279b..f7faa435e9 100644 --- a/githubkit/versions/ghec_v2026_03_10/models/group_0458.py +++ b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0458.py @@ -58,9 +58,7 @@ class TimelineCommentEvent(GitHubModel): title="author_association", description="How the author is associated with the repository.", ) - performed_via_github_app: Missing[Union[None, Integration, None]] = Field( - default=UNSET - ) + performed_via_github_app: Missing[Union[None, Integration]] = Field(default=UNSET) reactions: Missing[ReactionRollup] = Field(default=UNSET, title="Reaction Rollup") pin: Missing[Union[None, PinnedIssueComment]] = Field(default=UNSET) diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0459.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0459.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0459.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0459.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0460.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0460.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0460.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0460.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0461.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0461.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0461.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0461.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0462.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0462.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0462.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0462.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0463.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0463.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0463.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0463.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0464.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0464.py similarity index 93% rename from githubkit/versions/ghec_v2026_03_10/models/group_0464.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0464.py index c45a39f8c0..4c346d16a7 100644 --- a/githubkit/versions/ghec_v2026_03_10/models/group_0464.py +++ b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0464.py @@ -33,7 +33,7 @@ class TimelineAssignedIssueEvent(GitHubModel): commit_id: Union[str, None] = Field() commit_url: Union[str, None] = Field() created_at: str = Field() - performed_via_github_app: Union[None, Integration, None] = Field() + performed_via_github_app: Union[None, Integration] = Field() assignee: SimpleUser = Field(title="Simple User", description="A GitHub user.") diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0465.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0465.py similarity index 93% rename from githubkit/versions/ghec_v2026_03_10/models/group_0465.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0465.py index 420f91c260..1345ff8005 100644 --- a/githubkit/versions/ghec_v2026_03_10/models/group_0465.py +++ b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0465.py @@ -33,7 +33,7 @@ class TimelineUnassignedIssueEvent(GitHubModel): commit_id: Union[str, None] = Field() commit_url: Union[str, None] = Field() created_at: str = Field() - performed_via_github_app: Union[None, Integration, None] = Field() + performed_via_github_app: Union[None, Integration] = Field() assignee: SimpleUser = Field(title="Simple User", description="A GitHub user.") diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0466.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0466.py similarity index 93% rename from githubkit/versions/ghec_v2026_03_10/models/group_0466.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0466.py index 799278e566..2f31082e88 100644 --- a/githubkit/versions/ghec_v2026_03_10/models/group_0466.py +++ b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0466.py @@ -35,7 +35,7 @@ class StateChangeIssueEvent(GitHubModel): commit_id: Union[str, None] = Field() commit_url: Union[str, None] = Field() created_at: str = Field() - performed_via_github_app: Union[None, Integration, None] = Field() + performed_via_github_app: Union[None, Integration] = Field() state_reason: Missing[Union[str, None]] = Field(default=UNSET) diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0467.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0467.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0467.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0467.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0468.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0468.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0468.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0468.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0469.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0469.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0469.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0469.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0470.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0470.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0470.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0470.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0471.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0471.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0471.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0471.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0472.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0472.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0472.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0472.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0473.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0473.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0473.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0473.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0474.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0474.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0474.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0474.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0475.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0475.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0475.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0475.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0476.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0476.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0476.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0476.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0477.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0477.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0477.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0477.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0478.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0478.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0478.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0478.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0479.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0479.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0479.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0479.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0480.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0480.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0480.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0480.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0481.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0481.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0481.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0481.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0482.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0482.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0482.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0482.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0483.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0483.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0483.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0483.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0484.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0484.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0484.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0484.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0485.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0485.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0485.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0485.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0486.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0486.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0486.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0486.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0487.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0487.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0487.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0487.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0488.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0488.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0488.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0488.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0489.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0489.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0489.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0489.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0490.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0490.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0490.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0490.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0491.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0491.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0491.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0491.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0492.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0492.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0492.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0492.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0493.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0493.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0493.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0493.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0494.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0494.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0494.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0494.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0495.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0495.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0495.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0495.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0496.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0496.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0496.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0496.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0497.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0497.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0497.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0497.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0498.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0498.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0498.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0498.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0499.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0499.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0499.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0499.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0500.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0500.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0500.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0500.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0501.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0501.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0501.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0501.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0502.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0502.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0502.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0502.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0503.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0503.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0503.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0503.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0504.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0504.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0504.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0504.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0505.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0505.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0505.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0505.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0506.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0506.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0506.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0506.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0507.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0507.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0507.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0507.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0508.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0508.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0508.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0508.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0509.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0509.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0509.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0509.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0510.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0510.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0510.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0510.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0511.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0511.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0511.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0511.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0512.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0512.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0512.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0512.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0513.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0513.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0513.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0513.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0514.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0514.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0514.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0514.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0515.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0515.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0515.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0515.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0516.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0516.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0516.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0516.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0517.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0517.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0517.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0517.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0518.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0518.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0518.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0518.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0519.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0519.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0519.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0519.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0520.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0520.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0520.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0520.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0521.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0521.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0521.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0521.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0522.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0522.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0522.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0522.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0523.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0523.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0523.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0523.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0524.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0524.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0524.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0524.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0525.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0525.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0525.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0525.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0526.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0526.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0526.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0526.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0527.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0527.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0527.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0527.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0528.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0528.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0528.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0528.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0529.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0529.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0529.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0529.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0530.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0530.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0530.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0530.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0531.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0531.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0531.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0531.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0532.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0532.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0532.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0532.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0533.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0533.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0533.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0533.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0534.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0534.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0534.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0534.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0535.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0535.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0535.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0535.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0536.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0536.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0536.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0536.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0537.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0537.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0537.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0537.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0538.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0538.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0538.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0538.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0539.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0539.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0539.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0539.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0540.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0540.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0540.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0540.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0541.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0541.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0541.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0541.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0542.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0542.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0542.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0542.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0543.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0543.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0543.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0543.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0544.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0544.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0544.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0544.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0545.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0545.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0545.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0545.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0546.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0546.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0546.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0546.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0547.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0547.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0547.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0547.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0548.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0548.py similarity index 98% rename from githubkit/versions/ghec_v2026_03_10/models/group_0548.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0548.py index f430296542..39651d498e 100644 --- a/githubkit/versions/ghec_v2026_03_10/models/group_0548.py +++ b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0548.py @@ -94,9 +94,7 @@ class IssueSearchResultItem(GitHubModel): type: Missing[Union[IssueType, None]] = Field( default=UNSET, title="Issue Type", description="The type of issue." ) - performed_via_github_app: Missing[Union[None, Integration, None]] = Field( - default=UNSET - ) + performed_via_github_app: Missing[Union[None, Integration]] = Field(default=UNSET) pinned_comment: Missing[Union[None, IssueComment]] = Field(default=UNSET) reactions: Missing[ReactionRollup] = Field(default=UNSET, title="Reaction Rollup") diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0549.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0549.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0549.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0549.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0550.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0550.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0550.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0550.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0551.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0551.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0551.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0551.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0552.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0552.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0552.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0552.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0553.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0553.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0553.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0553.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0554.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0554.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0554.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0554.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0555.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0555.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0555.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0555.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0556.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0556.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0556.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0556.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0557.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0557.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0557.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0557.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0558.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0558.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0558.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0558.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0559.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0559.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0559.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0559.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0560.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0560.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0560.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0560.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0561.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0561.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0561.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0561.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0562.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0562.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0562.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0562.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0563.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0563.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0563.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0563.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0564.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0564.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0564.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0564.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0565.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0565.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0565.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0565.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0566.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0566.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0566.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0566.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0567.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0567.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0567.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0567.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0568.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0568.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0568.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0568.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0569.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0569.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0569.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0569.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0570.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0570.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0570.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0570.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0571.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0571.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0571.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0571.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0572.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0572.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0572.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0572.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0573.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0573.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0573.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0573.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0574.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0574.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0574.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0574.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0575.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0575.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0575.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0575.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0576.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0576.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0576.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0576.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0577.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0577.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0577.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0577.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0578.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0578.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0578.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0578.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0579.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0579.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0579.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0579.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0580.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0580.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0580.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0580.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0581.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0581.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0581.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0581.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0582.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0582.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0582.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0582.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0583.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0583.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0583.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0583.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0584.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0584.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0584.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0584.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0585.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0585.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0585.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0585.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0586.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0586.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0586.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0586.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0587.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0587.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0587.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0587.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0588.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0588.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0588.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0588.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0589.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0589.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0589.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0589.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0590.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0590.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0590.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0590.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0591.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0591.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0591.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0591.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0592.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0592.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0592.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0592.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0593.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0593.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0593.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0593.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0594.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0594.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0594.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0594.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0595.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0595.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0595.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0595.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0596.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0596.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0596.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0596.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0597.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0597.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0597.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0597.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0598.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0598.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0598.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0598.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0599.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0599.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0599.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0599.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0600.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0600.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0600.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0600.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0601.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0601.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0601.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0601.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0602.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0602.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0602.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0602.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0603.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0603.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0603.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0603.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0604.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0604.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0604.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0604.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0605.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0605.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0605.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0605.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0606.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0606.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0606.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0606.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0607.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0607.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0607.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0607.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0608.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0608.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0608.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0608.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0609.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0609.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0609.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0609.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0610.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0610.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0610.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0610.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0611.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0611.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0611.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0611.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0612.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0612.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0612.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0612.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0613.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0613.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0613.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0613.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0614.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0614.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0614.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0614.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0615.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0615.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0615.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0615.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0616.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0616.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0616.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0616.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0617.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0617.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0617.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0617.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0618.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0618.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0618.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0618.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0619.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0619.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0619.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0619.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0620.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0620.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0620.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0620.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0621.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0621.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0621.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0621.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0622.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0622.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0622.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0622.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0623.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0623.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0623.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0623.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0624.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0624.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0624.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0624.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0625.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0625.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0625.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0625.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0626.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0626.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0626.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0626.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0627.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0627.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0627.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0627.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0628.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0628.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0628.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0628.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0629.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0629.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0629.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0629.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0630.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0630.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0630.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0630.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0631.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0631.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0631.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0631.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0632.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0632.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0632.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0632.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0633.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0633.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0633.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0633.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0634.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0634.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0634.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0634.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0635.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0635.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0635.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0635.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0636.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0636.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0636.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0636.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0637.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0637.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0637.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0637.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0638.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0638.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0638.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0638.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0639.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0639.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0639.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0639.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0640.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0640.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0640.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0640.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0641.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0641.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0641.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0641.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0642.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0642.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0642.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0642.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0643.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0643.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0643.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0643.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0644.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0644.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0644.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0644.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0645.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0645.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0645.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0645.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0646.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0646.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0646.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0646.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0647.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0647.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0647.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0647.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0648.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0648.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0648.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0648.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0649.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0649.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0649.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0649.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0650.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0650.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0650.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0650.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0651.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0651.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0651.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0651.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0652.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0652.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0652.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0652.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0653.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0653.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0653.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0653.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0654.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0654.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0654.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0654.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0655.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0655.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0655.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0655.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0656.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0656.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0656.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0656.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0657.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0657.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0657.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0657.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0658.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0658.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0658.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0658.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0659.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0659.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0659.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0659.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0660.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0660.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0660.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0660.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0661.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0661.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0661.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0661.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0662.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0662.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0662.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0662.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0663.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0663.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0663.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0663.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0664.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0664.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0664.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0664.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0665.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0665.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0665.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0665.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0666.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0666.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0666.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0666.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0667.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0667.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0667.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0667.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0668.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0668.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0668.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0668.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0669.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0669.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0669.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0669.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0670.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0670.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0670.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0670.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0671.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0671.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0671.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0671.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0672.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0672.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0672.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0672.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0673.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0673.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0673.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0673.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0674.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0674.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0674.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0674.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0675.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0675.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0675.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0675.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0676.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0676.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0676.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0676.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0677.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0677.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0677.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0677.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0678.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0678.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0678.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0678.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0679.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0679.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0679.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0679.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0680.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0680.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0680.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0680.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0681.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0681.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0681.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0681.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0682.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0682.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0682.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0682.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0683.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0683.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0683.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0683.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0684.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0684.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0684.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0684.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0685.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0685.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0685.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0685.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0686.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0686.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0686.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0686.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0687.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0687.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0687.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0687.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0688.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0688.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0688.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0688.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0689.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0689.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0689.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0689.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0690.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0690.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0690.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0690.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0691.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0691.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0691.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0691.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0692.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0692.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0692.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0692.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0693.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0693.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0693.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0693.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0694.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0694.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0694.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0694.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0695.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0695.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0695.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0695.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0696.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0696.py similarity index 98% rename from githubkit/versions/ghec_v2026_03_10/models/group_0696.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0696.py index dadec1832e..ae8578245f 100644 --- a/githubkit/versions/ghec_v2026_03_10/models/group_0696.py +++ b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0696.py @@ -65,7 +65,7 @@ class WebhookForkPropForkee(GitHubModel): description="Whether to delete head branches when pull requests are merged", ) deployments_url: str = Field() - description: Union[Union[str, None], None] = Field() + description: Union[str, None] = Field() disabled: Missing[bool] = Field( default=UNSET, description="Returns whether or not this repository is disabled." ) @@ -89,7 +89,7 @@ class WebhookForkPropForkee(GitHubModel): default=True, description="Whether projects are enabled." ) has_wiki: bool = Field(default=True, description="Whether the wiki is enabled.") - homepage: Union[Union[str, None], None] = Field() + homepage: Union[str, None] = Field() hooks_url: str = Field() html_url: str = Field() id: int = Field(description="Unique identifier of the repository") diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0697.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0697.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0697.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0697.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0698.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0698.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0698.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0698.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0699.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0699.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0699.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0699.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0700.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0700.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0700.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0700.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0701.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0701.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0701.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0701.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0702.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0702.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0702.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0702.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0703.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0703.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0703.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0703.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0704.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0704.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0704.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0704.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0705.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0705.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0705.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0705.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0706.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0706.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0706.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0706.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0707.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0707.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0707.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0707.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0708.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0708.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0708.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0708.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0709.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0709.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0709.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0709.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0710.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0710.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0710.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0710.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0711.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0711.py similarity index 98% rename from githubkit/versions/ghec_v2026_03_10/models/group_0711.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0711.py index 7d3b043546..a2ada20b5c 100644 --- a/githubkit/versions/ghec_v2026_03_10/models/group_0711.py +++ b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0711.py @@ -48,7 +48,7 @@ class WebhookIssueCommentCreatedPropComment(GitHubModel): id: int = Field(description="Unique identifier of the issue comment") issue_url: str = Field() node_id: str = Field() - performed_via_github_app: Union[None, Integration, None] = Field() + performed_via_github_app: Union[None, Integration] = Field() reactions: WebhookIssueCommentCreatedPropCommentPropReactions = Field( title="Reactions" ) diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0712.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0712.py similarity index 97% rename from githubkit/versions/ghec_v2026_03_10/models/group_0712.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0712.py index f4afecda93..6b18330014 100644 --- a/githubkit/versions/ghec_v2026_03_10/models/group_0712.py +++ b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0712.py @@ -39,9 +39,9 @@ class WebhookIssueCommentCreatedPropIssue(GitHubModel): active_lock_reason: Union[ Literal["resolved", "off-topic", "too heated", "spam"], None ] = Field() - assignee: Union[ - Union[WebhookIssueCommentCreatedPropIssueAllof0PropAssignee, None], None - ] = Field(title="User") + assignee: Union[WebhookIssueCommentCreatedPropIssueAllof0PropAssignee, None] = ( + Field(title="User") + ) assignees: list[WebhookIssueCommentCreatedPropIssueMergedAssignees] = Field() author_association: Literal[ "COLLABORATOR", @@ -56,7 +56,7 @@ class WebhookIssueCommentCreatedPropIssue(GitHubModel): title="AuthorAssociation", description="How the author is associated with the repository.", ) - body: Union[Union[str, None], None] = Field(description="Contents of the issue") + body: Union[str, None] = Field(description="Contents of the issue") closed_at: Union[_dt.datetime, None] = Field() comments: int = Field() comments_url: str = Field() diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0713.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0713.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0713.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0713.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0714.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0714.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0714.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0714.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0715.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0715.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0715.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0715.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0716.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0716.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0716.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0716.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0717.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0717.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0717.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0717.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0718.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0718.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0718.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0718.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0719.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0719.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0719.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0719.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0720.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0720.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0720.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0720.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0721.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0721.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0721.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0721.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0722.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0722.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0722.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0722.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0723.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0723.py similarity index 97% rename from githubkit/versions/ghec_v2026_03_10/models/group_0723.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0723.py index 142292d52a..7d2495eb61 100644 --- a/githubkit/versions/ghec_v2026_03_10/models/group_0723.py +++ b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0723.py @@ -39,9 +39,9 @@ class WebhookIssueCommentDeletedPropIssue(GitHubModel): active_lock_reason: Union[ Literal["resolved", "off-topic", "too heated", "spam"], None ] = Field() - assignee: Union[ - Union[WebhookIssueCommentDeletedPropIssueAllof0PropAssignee, None], None - ] = Field(title="User") + assignee: Union[WebhookIssueCommentDeletedPropIssueAllof0PropAssignee, None] = ( + Field(title="User") + ) assignees: list[WebhookIssueCommentDeletedPropIssueMergedAssignees] = Field() author_association: Literal[ "COLLABORATOR", @@ -56,7 +56,7 @@ class WebhookIssueCommentDeletedPropIssue(GitHubModel): title="AuthorAssociation", description="How the author is associated with the repository.", ) - body: Union[Union[str, None], None] = Field(description="Contents of the issue") + body: Union[str, None] = Field(description="Contents of the issue") closed_at: Union[_dt.datetime, None] = Field() comments: int = Field() comments_url: str = Field() diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0724.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0724.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0724.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0724.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0725.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0725.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0725.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0725.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0726.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0726.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0726.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0726.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0727.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0727.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0727.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0727.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0728.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0728.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0728.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0728.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0729.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0729.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0729.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0729.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0730.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0730.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0730.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0730.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0731.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0731.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0731.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0731.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0732.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0732.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0732.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0732.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0733.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0733.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0733.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0733.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0734.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0734.py similarity index 97% rename from githubkit/versions/ghec_v2026_03_10/models/group_0734.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0734.py index f82be18b93..828c8621a7 100644 --- a/githubkit/versions/ghec_v2026_03_10/models/group_0734.py +++ b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0734.py @@ -39,9 +39,9 @@ class WebhookIssueCommentEditedPropIssue(GitHubModel): active_lock_reason: Union[ Literal["resolved", "off-topic", "too heated", "spam"], None ] = Field() - assignee: Union[ - Union[WebhookIssueCommentEditedPropIssueAllof0PropAssignee, None], None - ] = Field(title="User") + assignee: Union[WebhookIssueCommentEditedPropIssueAllof0PropAssignee, None] = Field( + title="User" + ) assignees: list[WebhookIssueCommentEditedPropIssueMergedAssignees] = Field() author_association: Literal[ "COLLABORATOR", @@ -56,7 +56,7 @@ class WebhookIssueCommentEditedPropIssue(GitHubModel): title="AuthorAssociation", description="How the author is associated with the repository.", ) - body: Union[Union[str, None], None] = Field(description="Contents of the issue") + body: Union[str, None] = Field(description="Contents of the issue") closed_at: Union[_dt.datetime, None] = Field() comments: int = Field() comments_url: str = Field() diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0735.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0735.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0735.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0735.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0736.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0736.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0736.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0736.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0737.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0737.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0737.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0737.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0738.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0738.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0738.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0738.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0739.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0739.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0739.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0739.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0740.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0740.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0740.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0740.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0741.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0741.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0741.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0741.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0742.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0742.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0742.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0742.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0743.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0743.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0743.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0743.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0744.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0744.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0744.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0744.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0745.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0745.py similarity index 97% rename from githubkit/versions/ghec_v2026_03_10/models/group_0745.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0745.py index 75de9099f6..bf9f3c6594 100644 --- a/githubkit/versions/ghec_v2026_03_10/models/group_0745.py +++ b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0745.py @@ -39,9 +39,9 @@ class WebhookIssueCommentPinnedPropIssue(GitHubModel): active_lock_reason: Union[ Literal["resolved", "off-topic", "too heated", "spam"], None ] = Field() - assignee: Union[ - Union[WebhookIssueCommentPinnedPropIssueAllof0PropAssignee, None], None - ] = Field(title="User") + assignee: Union[WebhookIssueCommentPinnedPropIssueAllof0PropAssignee, None] = Field( + title="User" + ) assignees: list[WebhookIssueCommentPinnedPropIssueMergedAssignees] = Field() author_association: Literal[ "COLLABORATOR", @@ -56,7 +56,7 @@ class WebhookIssueCommentPinnedPropIssue(GitHubModel): title="AuthorAssociation", description="How the author is associated with the repository.", ) - body: Union[Union[str, None], None] = Field(description="Contents of the issue") + body: Union[str, None] = Field(description="Contents of the issue") closed_at: Union[_dt.datetime, None] = Field() comments: int = Field() comments_url: str = Field() diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0746.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0746.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0746.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0746.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0747.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0747.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0747.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0747.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0748.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0748.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0748.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0748.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0749.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0749.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0749.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0749.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0750.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0750.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0750.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0750.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0751.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0751.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0751.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0751.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0752.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0752.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0752.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0752.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0753.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0753.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0753.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0753.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0754.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0754.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0754.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0754.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0755.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0755.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0755.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0755.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0756.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0756.py similarity index 97% rename from githubkit/versions/ghec_v2026_03_10/models/group_0756.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0756.py index b3ae5e5c30..37f1b7d08f 100644 --- a/githubkit/versions/ghec_v2026_03_10/models/group_0756.py +++ b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0756.py @@ -39,9 +39,9 @@ class WebhookIssueCommentUnpinnedPropIssue(GitHubModel): active_lock_reason: Union[ Literal["resolved", "off-topic", "too heated", "spam"], None ] = Field() - assignee: Union[ - Union[WebhookIssueCommentUnpinnedPropIssueAllof0PropAssignee, None], None - ] = Field(title="User") + assignee: Union[WebhookIssueCommentUnpinnedPropIssueAllof0PropAssignee, None] = ( + Field(title="User") + ) assignees: list[WebhookIssueCommentUnpinnedPropIssueMergedAssignees] = Field() author_association: Literal[ "COLLABORATOR", @@ -56,7 +56,7 @@ class WebhookIssueCommentUnpinnedPropIssue(GitHubModel): title="AuthorAssociation", description="How the author is associated with the repository.", ) - body: Union[Union[str, None], None] = Field(description="Contents of the issue") + body: Union[str, None] = Field(description="Contents of the issue") closed_at: Union[_dt.datetime, None] = Field() comments: int = Field() comments_url: str = Field() diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0757.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0757.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0757.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0757.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0758.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0758.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0758.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0758.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0759.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0759.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0759.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0759.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0760.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0760.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0760.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0760.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0761.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0761.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0761.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0761.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0762.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0762.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0762.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0762.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0763.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0763.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0763.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0763.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0764.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0764.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0764.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0764.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0765.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0765.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0765.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0765.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0766.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0766.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0766.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0766.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0767.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0767.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0767.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0767.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0768.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0768.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0768.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0768.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0769.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0769.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0769.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0769.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0770.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0770.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0770.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0770.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0771.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0771.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0771.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0771.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0772.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0772.py similarity index 99% rename from githubkit/versions/ghec_v2026_03_10/models/group_0772.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0772.py index f800d78367..418f8a63ff 100644 --- a/githubkit/versions/ghec_v2026_03_10/models/group_0772.py +++ b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0772.py @@ -54,7 +54,7 @@ class WebhookIssuesClosedPropIssue(GitHubModel): title="AuthorAssociation", description="How the author is associated with the repository.", ) - body: Union[Union[str, None], None] = Field(description="Contents of the issue") + body: Union[str, None] = Field(description="Contents of the issue") closed_at: Union[_dt.datetime, None] = Field() comments: int = Field() comments_url: str = Field() diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0773.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0773.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0773.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0773.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0774.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0774.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0774.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0774.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0775.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0775.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0775.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0775.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0776.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0776.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0776.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0776.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0777.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0777.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0777.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0777.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0778.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0778.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0778.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0778.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0779.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0779.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0779.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0779.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0780.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0780.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0780.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0780.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0781.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0781.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0781.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0781.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0782.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0782.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0782.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0782.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0783.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0783.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0783.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0783.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0784.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0784.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0784.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0784.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0785.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0785.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0785.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0785.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0786.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0786.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0786.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0786.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0787.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0787.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0787.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0787.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0788.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0788.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0788.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0788.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0789.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0789.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0789.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0789.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0790.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0790.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0790.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0790.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0791.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0791.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0791.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0791.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0792.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0792.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0792.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0792.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0793.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0793.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0793.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0793.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0794.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0794.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0794.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0794.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0795.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0795.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0795.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0795.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0796.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0796.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0796.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0796.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0797.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0797.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0797.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0797.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0798.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0798.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0798.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0798.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0799.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0799.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0799.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0799.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0800.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0800.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0800.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0800.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0801.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0801.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0801.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0801.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0802.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0802.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0802.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0802.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0803.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0803.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0803.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0803.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0804.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0804.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0804.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0804.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0805.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0805.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0805.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0805.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0806.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0806.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0806.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0806.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0807.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0807.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0807.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0807.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0808.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0808.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0808.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0808.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0809.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0809.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0809.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0809.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0810.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0810.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0810.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0810.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0811.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0811.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0811.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0811.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0812.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0812.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0812.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0812.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0813.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0813.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0813.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0813.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0814.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0814.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0814.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0814.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0815.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0815.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0815.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0815.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0816.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0816.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0816.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0816.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0817.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0817.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0817.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0817.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0818.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0818.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0818.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0818.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0819.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0819.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0819.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0819.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0820.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0820.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0820.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0820.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0821.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0821.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0821.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0821.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0822.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0822.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0822.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0822.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0823.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0823.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0823.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0823.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0824.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0824.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0824.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0824.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0825.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0825.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0825.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0825.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0826.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0826.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0826.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0826.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0827.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0827.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0827.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0827.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0828.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0828.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0828.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0828.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0829.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0829.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0829.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0829.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0830.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0830.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0830.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0830.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0831.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0831.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0831.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0831.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0832.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0832.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0832.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0832.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0833.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0833.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0833.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0833.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0834.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0834.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0834.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0834.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0835.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0835.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0835.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0835.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0836.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0836.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0836.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0836.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0837.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0837.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0837.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0837.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0838.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0838.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0838.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0838.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0839.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0839.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0839.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0839.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0840.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0840.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0840.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0840.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0841.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0841.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0841.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0841.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0842.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0842.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0842.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0842.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0843.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0843.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0843.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0843.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0844.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0844.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0844.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0844.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0845.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0845.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0845.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0845.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0846.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0846.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0846.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0846.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0847.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0847.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0847.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0847.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0848.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0848.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0848.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0848.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0849.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0849.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0849.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0849.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0850.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0850.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0850.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0850.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0851.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0851.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0851.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0851.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0852.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0852.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0852.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0852.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0853.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0853.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0853.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0853.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0854.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0854.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0854.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0854.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0855.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0855.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0855.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0855.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0856.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0856.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0856.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0856.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0857.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0857.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0857.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0857.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0858.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0858.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0858.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0858.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0859.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0859.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0859.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0859.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0860.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0860.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0860.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0860.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0861.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0861.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0861.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0861.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0862.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0862.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0862.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0862.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0863.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0863.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0863.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0863.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0864.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0864.py similarity index 98% rename from githubkit/versions/ghec_v2026_03_10/models/group_0864.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0864.py index a9d9af3afa..ff9b1a0053 100644 --- a/githubkit/versions/ghec_v2026_03_10/models/group_0864.py +++ b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0864.py @@ -69,7 +69,7 @@ class WebhookProjectCardMovedPropChangesPropColumnId(GitHubModel): class WebhookProjectCardMovedPropProjectCard(GitHubModel): """WebhookProjectCardMovedPropProjectCard""" - after_id: Union[Union[int, None], None] = Field() + after_id: Union[int, None] = Field() archived: bool = Field(description="Whether or not the card is archived") column_id: int = Field() column_url: str = Field() @@ -78,7 +78,7 @@ class WebhookProjectCardMovedPropProjectCard(GitHubModel): creator: Union[WebhookProjectCardMovedPropProjectCardMergedCreator, None] = Field() id: int = Field(description="The project card's ID") node_id: str = Field() - note: Union[Union[str, None], None] = Field() + note: Union[str, None] = Field() project_url: str = Field() updated_at: _dt.datetime = Field() url: str = Field() diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0865.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0865.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0865.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0865.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0866.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0866.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0866.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0866.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0867.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0867.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0867.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0867.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0868.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0868.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0868.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0868.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0869.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0869.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0869.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0869.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0870.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0870.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0870.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0870.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0871.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0871.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0871.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0871.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0872.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0872.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0872.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0872.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0873.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0873.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0873.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0873.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0874.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0874.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0874.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0874.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0875.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0875.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0875.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0875.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0876.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0876.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0876.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0876.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0877.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0877.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0877.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0877.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0878.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0878.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0878.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0878.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0879.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0879.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0879.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0879.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0880.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0880.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0880.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0880.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0881.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0881.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0881.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0881.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0882.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0882.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0882.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0882.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0883.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0883.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0883.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0883.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0884.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0884.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0884.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0884.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0885.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0885.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0885.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0885.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0886.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0886.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0886.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0886.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0887.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0887.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0887.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0887.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0888.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0888.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0888.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0888.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0889.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0889.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0889.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0889.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0890.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0890.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0890.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0890.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0891.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0891.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0891.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0891.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0892.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0892.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0892.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0892.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0893.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0893.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0893.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0893.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0894.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0894.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0894.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0894.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0895.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0895.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0895.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0895.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0896.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0896.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0896.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0896.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0897.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0897.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0897.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0897.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0898.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0898.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0898.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0898.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0899.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0899.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0899.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0899.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0900.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0900.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0900.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0900.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0901.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0901.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0901.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0901.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0902.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0902.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0902.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0902.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0903.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0903.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0903.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0903.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0904.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0904.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0904.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0904.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0905.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0905.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0905.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0905.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0906.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0906.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0906.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0906.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0907.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0907.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0907.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0907.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0908.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0908.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0908.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0908.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0909.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0909.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0909.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0909.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0910.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0910.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0910.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0910.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0911.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0911.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0911.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0911.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0912.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0912.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0912.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0912.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0913.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0913.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0913.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0913.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0914.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0914.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0914.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0914.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0915.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0915.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0915.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0915.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0916.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0916.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0916.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0916.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0917.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0917.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0917.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0917.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0918.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0918.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0918.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0918.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0919.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0919.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0919.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0919.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0920.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0920.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0920.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0920.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0921.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0921.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0921.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0921.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0922.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0922.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0922.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0922.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0923.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0923.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0923.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0923.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0924.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0924.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0924.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0924.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0925.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0925.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0925.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0925.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0926.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0926.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0926.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0926.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0927.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0927.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0927.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0927.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0928.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0928.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0928.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0928.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0929.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0929.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0929.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0929.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0930.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0930.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0930.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0930.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0931.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0931.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0931.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0931.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0932.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0932.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0932.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0932.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0933.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0933.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0933.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0933.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0934.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0934.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0934.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0934.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0935.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0935.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0935.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0935.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0936.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0936.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0936.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0936.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0937.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0937.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0937.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0937.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0938.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0938.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0938.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0938.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0939.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0939.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0939.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0939.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0940.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0940.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0940.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0940.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0941.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0941.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0941.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0941.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0942.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0942.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0942.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0942.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0943.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0943.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0943.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0943.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0944.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0944.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0944.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0944.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0945.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0945.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0945.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0945.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0946.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0946.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0946.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0946.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0947.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0947.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0947.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0947.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0948.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0948.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0948.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0948.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0949.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0949.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0949.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0949.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0950.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0950.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0950.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0950.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0951.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0951.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0951.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0951.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0952.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0952.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0952.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0952.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0953.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0953.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0953.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0953.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0954.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0954.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0954.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0954.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0955.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0955.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0955.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0955.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0956.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0956.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0956.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0956.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0957.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0957.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0957.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0957.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0958.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0958.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0958.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0958.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0959.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0959.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0959.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0959.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0960.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0960.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0960.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0960.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0961.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0961.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0961.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0961.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0962.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0962.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0962.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0962.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0963.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0963.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0963.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0963.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0964.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0964.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0964.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0964.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0965.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0965.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0965.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0965.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0966.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0966.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0966.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0966.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0967.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0967.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0967.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0967.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0968.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0968.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0968.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0968.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0969.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0969.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0969.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0969.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0970.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0970.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0970.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0970.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0971.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0971.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0971.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0971.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0972.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0972.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0972.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0972.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0973.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0973.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0973.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0973.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0974.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0974.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0974.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0974.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0975.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0975.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0975.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0975.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0976.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0976.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0976.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0976.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0977.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0977.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0977.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0977.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0978.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0978.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0978.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0978.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0979.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0979.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0979.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0979.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0980.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0980.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0980.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0980.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0981.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0981.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0981.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0981.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0982.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0982.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0982.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0982.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0983.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0983.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0983.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0983.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0984.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0984.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0984.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0984.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0985.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0985.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0985.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0985.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0986.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0986.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0986.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0986.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0987.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0987.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0987.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0987.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0988.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0988.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0988.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0988.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0989.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0989.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0989.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0989.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0990.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0990.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0990.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0990.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0991.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0991.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0991.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0991.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0992.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0992.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0992.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0992.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0993.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0993.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0993.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0993.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0994.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0994.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0994.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0994.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0995.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0995.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0995.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0995.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0996.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0996.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0996.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0996.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0997.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0997.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0997.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0997.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0998.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0998.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0998.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0998.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_0999.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0999.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_0999.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_0999.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1000.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1000.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1000.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1000.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1001.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1001.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1001.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1001.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1002.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1002.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1002.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1002.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1003.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1003.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1003.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1003.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1004.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1004.py similarity index 92% rename from githubkit/versions/ghec_v2026_03_10/models/group_1004.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1004.py index 3d28c82094..ae0459f095 100644 --- a/githubkit/versions/ghec_v2026_03_10/models/group_1004.py +++ b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1004.py @@ -83,28 +83,24 @@ class WebhookWorkflowJobCompletedPropWorkflowJob(GitHubModel): run_attempt: int = Field() run_id: int = Field() run_url: str = Field() - runner_group_id: Union[Union[int, None], None] = Field( + runner_group_id: Union[int, None] = Field( description="The ID of the runner group that is running this job. This will be `null` as long as `workflow_job[status]` is `queued`." ) - runner_group_name: Union[Union[str, None], None] = Field( + runner_group_name: Union[str, None] = Field( description="The name of the runner group that is running this job. This will be `null` as long as `workflow_job[status]` is `queued`." ) - runner_id: Union[Union[int, None], None] = Field( + runner_id: Union[int, None] = Field( description="The ID of the runner that is running this job. This will be `null` as long as `workflow_job[status]` is `queued`." ) - runner_name: Union[Union[str, None], None] = Field( + runner_name: Union[str, None] = Field( description="The name of the runner that is running this job. This will be `null` as long as `workflow_job[status]` is `queued`." ) started_at: str = Field() status: Literal["queued", "in_progress", "completed", "waiting"] = Field( description="The current status of the job. Can be `queued`, `in_progress`, `waiting`, or `completed`." ) - head_branch: Union[Union[str, None], None] = Field( - description="The name of the current branch." - ) - workflow_name: Union[Union[str, None], None] = Field( - description="The name of the workflow." - ) + head_branch: Union[str, None] = Field(description="The name of the current branch.") + workflow_name: Union[str, None] = Field(description="The name of the workflow.") steps: list[WebhookWorkflowJobCompletedPropWorkflowJobMergedSteps] = Field() url: str = Field() diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1005.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1005.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1005.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1005.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1006.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1006.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1006.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1006.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1007.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1007.py similarity index 89% rename from githubkit/versions/ghec_v2026_03_10/models/group_1007.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1007.py index 9ff34d2013..dc8bd54af3 100644 --- a/githubkit/versions/ghec_v2026_03_10/models/group_1007.py +++ b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1007.py @@ -61,7 +61,7 @@ class WebhookWorkflowJobInProgressPropWorkflowJob(GitHubModel): """WebhookWorkflowJobInProgressPropWorkflowJob""" check_run_url: str = Field() - completed_at: Union[Union[str, None], None] = Field() + completed_at: Union[str, None] = Field() conclusion: Union[Literal["success", "failure", "cancelled", "neutral"], None] = ( Field() ) @@ -77,28 +77,24 @@ class WebhookWorkflowJobInProgressPropWorkflowJob(GitHubModel): run_attempt: int = Field() run_id: int = Field() run_url: str = Field() - runner_group_id: Union[Union[int, None], None] = Field( + runner_group_id: Union[int, None] = Field( description="The ID of the runner group that is running this job. This will be `null` as long as `workflow_job[status]` is `queued`." ) - runner_group_name: Union[Union[str, None], None] = Field( + runner_group_name: Union[str, None] = Field( description="The name of the runner group that is running this job. This will be `null` as long as `workflow_job[status]` is `queued`." ) - runner_id: Union[Union[int, None], None] = Field( + runner_id: Union[int, None] = Field( description="The ID of the runner that is running this job. This will be `null` as long as `workflow_job[status]` is `queued`." ) - runner_name: Union[Union[str, None], None] = Field( + runner_name: Union[str, None] = Field( description="The name of the runner that is running this job. This will be `null` as long as `workflow_job[status]` is `queued`." ) started_at: str = Field() status: Literal["queued", "in_progress", "completed"] = Field( description="The current status of the job. Can be `queued`, `in_progress`, or `completed`." ) - head_branch: Union[Union[str, None], None] = Field( - description="The name of the current branch." - ) - workflow_name: Union[Union[str, None], None] = Field( - description="The name of the workflow." - ) + head_branch: Union[str, None] = Field(description="The name of the current branch.") + workflow_name: Union[str, None] = Field(description="The name of the workflow.") steps: list[WebhookWorkflowJobInProgressPropWorkflowJobMergedSteps] = Field() url: str = Field() @@ -106,13 +102,13 @@ class WebhookWorkflowJobInProgressPropWorkflowJob(GitHubModel): class WebhookWorkflowJobInProgressPropWorkflowJobMergedSteps(GitHubModel): """WebhookWorkflowJobInProgressPropWorkflowJobMergedSteps""" - completed_at: Union[Union[str, None], None] = Field() + completed_at: Union[str, None] = Field() conclusion: Union[Literal["failure", "skipped", "success", "cancelled"], None] = ( Field() ) name: str = Field() number: int = Field() - started_at: Union[Union[str, None], None] = Field() + started_at: Union[str, None] = Field() status: Literal["in_progress", "completed", "queued", "pending"] = Field() diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1008.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1008.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1008.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1008.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1009.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1009.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1009.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1009.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1010.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1010.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1010.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1010.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1011.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1011.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1011.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1011.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1012.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1012.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1012.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1012.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1013.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1013.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1013.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1013.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1014.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1014.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1014.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1014.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1015.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1015.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1015.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1015.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1016.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1016.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1016.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1016.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1017.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1017.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1017.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1017.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1018.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1018.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1018.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1018.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1019.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1019.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1019.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1019.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1020.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1020.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1020.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1020.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1021.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1021.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1021.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1021.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1022.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1022.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1022.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1022.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1023.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1023.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1023.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1023.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1024.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1024.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1024.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1024.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1025.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1025.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1025.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1025.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1026.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1026.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1026.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1026.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1027.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1027.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1027.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1027.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1028.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1028.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1028.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1028.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1029.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1029.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1029.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1029.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1030.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1030.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1030.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1030.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1031.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1031.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1031.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1031.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1032.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1032.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1032.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1032.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1033.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1033.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1033.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1033.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1034.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1034.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1034.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1034.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1035.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1035.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1035.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1035.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1036.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1036.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1036.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1036.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1037.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1037.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1037.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1037.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1038.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1038.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1038.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1038.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1039.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1039.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1039.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1039.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1040.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1040.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1040.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1040.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1041.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1041.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1041.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1041.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1042.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1042.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1042.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1042.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1043.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1043.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1043.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1043.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1044.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1044.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1044.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1044.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1045.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1045.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1045.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1045.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1046.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1046.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1046.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1046.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1047.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1047.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1047.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1047.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1048.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1048.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1048.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1048.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1049.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1049.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1049.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1049.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1050.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1050.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1050.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1050.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1051.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1051.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1051.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1051.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1052.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1052.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1052.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1052.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1053.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1053.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1053.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1053.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1054.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1054.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1054.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1054.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1055.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1055.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1055.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1055.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1056.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1056.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1056.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1056.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1057.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1057.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1057.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1057.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1058.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1058.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1058.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1058.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1059.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1059.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1059.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1059.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1060.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1060.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1060.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1060.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1061.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1061.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1061.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1061.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1062.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1062.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1062.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1062.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1063.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1063.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1063.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1063.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1064.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1064.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1064.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1064.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1065.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1065.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1065.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1065.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1066.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1066.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1066.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1066.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1067.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1067.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1067.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1067.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1068.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1068.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1068.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1068.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1069.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1069.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1069.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1069.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1070.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1070.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1070.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1070.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1071.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1071.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1071.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1071.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1072.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1072.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1072.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1072.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1073.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1073.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1073.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1073.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1074.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1074.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1074.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1074.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1075.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1075.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1075.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1075.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1076.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1076.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1076.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1076.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1077.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1077.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1077.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1077.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1078.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1078.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1078.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1078.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1079.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1079.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1079.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1079.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1080.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1080.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1080.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1080.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1081.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1081.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1081.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1081.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1082.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1082.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1082.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1082.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1083.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1083.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1083.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1083.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1084.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1084.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1084.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1084.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1085.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1085.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1085.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1085.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1086.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1086.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1086.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1086.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1087.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1087.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1087.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1087.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1088.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1088.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1088.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1088.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1089.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1089.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1089.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1089.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1090.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1090.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1090.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1090.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1091.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1091.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1091.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1091.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1092.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1092.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1092.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1092.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1093.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1093.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1093.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1093.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1094.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1094.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1094.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1094.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1095.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1095.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1095.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1095.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1096.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1096.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1096.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1096.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1097.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1097.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1097.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1097.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1098.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1098.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1098.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1098.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1099.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1099.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1099.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1099.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1100.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1100.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1100.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1100.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1101.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1101.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1101.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1101.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1102.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1102.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1102.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1102.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1103.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1103.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1103.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1103.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1104.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1104.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1104.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1104.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1105.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1105.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1105.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1105.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1106.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1106.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1106.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1106.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1107.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1107.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1107.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1107.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1108.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1108.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1108.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1108.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1109.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1109.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1109.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1109.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1110.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1110.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1110.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1110.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1111.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1111.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1111.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1111.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1112.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1112.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1112.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1112.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1113.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1113.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1113.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1113.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1114.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1114.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1114.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1114.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1115.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1115.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1115.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1115.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1116.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1116.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1116.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1116.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1117.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1117.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1117.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1117.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1118.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1118.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1118.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1118.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1119.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1119.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1119.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1119.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1120.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1120.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1120.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1120.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1121.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1121.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1121.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1121.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1122.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1122.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1122.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1122.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1123.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1123.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1123.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1123.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1124.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1124.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1124.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1124.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1125.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1125.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1125.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1125.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1126.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1126.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1126.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1126.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1127.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1127.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1127.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1127.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1128.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1128.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1128.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1128.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1129.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1129.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1129.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1129.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1130.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1130.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1130.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1130.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1131.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1131.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1131.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1131.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1132.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1132.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1132.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1132.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1133.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1133.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1133.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1133.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1134.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1134.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1134.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1134.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1135.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1135.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1135.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1135.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1136.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1136.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1136.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1136.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1137.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1137.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1137.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1137.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1138.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1138.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1138.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1138.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1139.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1139.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1139.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1139.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1140.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1140.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1140.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1140.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1141.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1141.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1141.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1141.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1142.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1142.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1142.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1142.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1143.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1143.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1143.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1143.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1144.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1144.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1144.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1144.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1145.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1145.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1145.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1145.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1146.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1146.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1146.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1146.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1147.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1147.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1147.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1147.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1148.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1148.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1148.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1148.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1149.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1149.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1149.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1149.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1150.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1150.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1150.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1150.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1151.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1151.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1151.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1151.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1152.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1152.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1152.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1152.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1153.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1153.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1153.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1153.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1154.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1154.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1154.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1154.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1155.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1155.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1155.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1155.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1156.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1156.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1156.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1156.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1157.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1157.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1157.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1157.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1158.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1158.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1158.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1158.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1159.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1159.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1159.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1159.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1160.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1160.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1160.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1160.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1161.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1161.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1161.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1161.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1162.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1162.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1162.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1162.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1163.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1163.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1163.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1163.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1164.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1164.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1164.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1164.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1165.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1165.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1165.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1165.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1166.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1166.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1166.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1166.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1167.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1167.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1167.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1167.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1168.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1168.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1168.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1168.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1169.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1169.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1169.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1169.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1170.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1170.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1170.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1170.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1171.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1171.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1171.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1171.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1172.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1172.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1172.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1172.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1173.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1173.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1173.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1173.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1174.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1174.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1174.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1174.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1175.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1175.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1175.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1175.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1176.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1176.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1176.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1176.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1177.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1177.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1177.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1177.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1178.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1178.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1178.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1178.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1179.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1179.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1179.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1179.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1180.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1180.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1180.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1180.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1181.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1181.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1181.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1181.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1182.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1182.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1182.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1182.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1183.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1183.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1183.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1183.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1184.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1184.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1184.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1184.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1185.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1185.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1185.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1185.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1186.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1186.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1186.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1186.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1187.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1187.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1187.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1187.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1188.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1188.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1188.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1188.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1189.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1189.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1189.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1189.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1190.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1190.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1190.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1190.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1191.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1191.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1191.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1191.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1192.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1192.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1192.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1192.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1193.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1193.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1193.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1193.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1194.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1194.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1194.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1194.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1195.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1195.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1195.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1195.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1196.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1196.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1196.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1196.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1197.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1197.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1197.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1197.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1198.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1198.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1198.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1198.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1199.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1199.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1199.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1199.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1200.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1200.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1200.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1200.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1201.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1201.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1201.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1201.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1202.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1202.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1202.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1202.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1203.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1203.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1203.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1203.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1204.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1204.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1204.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1204.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1205.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1205.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1205.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1205.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1206.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1206.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1206.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1206.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1207.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1207.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1207.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1207.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1208.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1208.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1208.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1208.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1209.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1209.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1209.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1209.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1210.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1210.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1210.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1210.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1211.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1211.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1211.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1211.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1212.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1212.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1212.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1212.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1213.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1213.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1213.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1213.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1214.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1214.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1214.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1214.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1215.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1215.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1215.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1215.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1216.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1216.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1216.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1216.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1217.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1217.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1217.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1217.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1218.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1218.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1218.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1218.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1219.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1219.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1219.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1219.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1220.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1220.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1220.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1220.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1221.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1221.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1221.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1221.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1222.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1222.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1222.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1222.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1223.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1223.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1223.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1223.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1224.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1224.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1224.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1224.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1225.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1225.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1225.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1225.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1226.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1226.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1226.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1226.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1227.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1227.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1227.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1227.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1228.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1228.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1228.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1228.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1229.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1229.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1229.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1229.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1230.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1230.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1230.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1230.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1231.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1231.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1231.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1231.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1232.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1232.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1232.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1232.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1233.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1233.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1233.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1233.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1234.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1234.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1234.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1234.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1235.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1235.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1235.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1235.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1236.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1236.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1236.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1236.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1237.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1237.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1237.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1237.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1238.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1238.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1238.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1238.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1239.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1239.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1239.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1239.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1240.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1240.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1240.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1240.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1241.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1241.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1241.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1241.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1242.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1242.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1242.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1242.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1243.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1243.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1243.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1243.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1244.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1244.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1244.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1244.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1245.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1245.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1245.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1245.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1246.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1246.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1246.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1246.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1247.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1247.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1247.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1247.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1248.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1248.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1248.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1248.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1249.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1249.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1249.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1249.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1250.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1250.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1250.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1250.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1251.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1251.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1251.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1251.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1252.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1252.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1252.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1252.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1253.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1253.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1253.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1253.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1254.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1254.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1254.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1254.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1255.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1255.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1255.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1255.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1256.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1256.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1256.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1256.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1257.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1257.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1257.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1257.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1258.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1258.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1258.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1258.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1259.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1259.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1259.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1259.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1260.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1260.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1260.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1260.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1261.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1261.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1261.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1261.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1262.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1262.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1262.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1262.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1263.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1263.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1263.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1263.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1264.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1264.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1264.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1264.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1265.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1265.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1265.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1265.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1266.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1266.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1266.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1266.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1267.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1267.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1267.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1267.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1268.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1268.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1268.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1268.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1269.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1269.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1269.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1269.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1270.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1270.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1270.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1270.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1271.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1271.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1271.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1271.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1272.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1272.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1272.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1272.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1273.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1273.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1273.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1273.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1274.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1274.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1274.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1274.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1275.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1275.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1275.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1275.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1276.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1276.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1276.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1276.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1277.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1277.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1277.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1277.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1278.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1278.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1278.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1278.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1279.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1279.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1279.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1279.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1280.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1280.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1280.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1280.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1281.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1281.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1281.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1281.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1282.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1282.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1282.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1282.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1283.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1283.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1283.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1283.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1284.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1284.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1284.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1284.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1285.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1285.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1285.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1285.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1286.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1286.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1286.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1286.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1287.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1287.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1287.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1287.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1288.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1288.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1288.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1288.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1289.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1289.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1289.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1289.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1290.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1290.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1290.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1290.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1291.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1291.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1291.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1291.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1292.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1292.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1292.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1292.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1293.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1293.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1293.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1293.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1294.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1294.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1294.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1294.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1295.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1295.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1295.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1295.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1296.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1296.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1296.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1296.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1297.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1297.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1297.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1297.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1298.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1298.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1298.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1298.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1299.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1299.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1299.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1299.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1300.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1300.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1300.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1300.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1301.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1301.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1301.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1301.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1302.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1302.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1302.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1302.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1303.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1303.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1303.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1303.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1304.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1304.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1304.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1304.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1305.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1305.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1305.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1305.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1306.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1306.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1306.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1306.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1307.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1307.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1307.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1307.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1308.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1308.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1308.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1308.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1309.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1309.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1309.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1309.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1310.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1310.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1310.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1310.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1311.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1311.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1311.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1311.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1312.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1312.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1312.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1312.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1313.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1313.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1313.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1313.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1314.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1314.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1314.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1314.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1315.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1315.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1315.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1315.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1316.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1316.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1316.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1316.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1317.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1317.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1317.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1317.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1318.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1318.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1318.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1318.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1319.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1319.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1319.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1319.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1320.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1320.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1320.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1320.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1321.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1321.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1321.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1321.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1322.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1322.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1322.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1322.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1323.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1323.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1323.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1323.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1324.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1324.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1324.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1324.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1325.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1325.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1325.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1325.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1326.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1326.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1326.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1326.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1327.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1327.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1327.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1327.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1328.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1328.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1328.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1328.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1329.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1329.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1329.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1329.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1330.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1330.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1330.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1330.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1331.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1331.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1331.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1331.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1332.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1332.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1332.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1332.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1333.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1333.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1333.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1333.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1334.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1334.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1334.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1334.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1335.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1335.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1335.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1335.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1336.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1336.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1336.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1336.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1337.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1337.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1337.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1337.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1338.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1338.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1338.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1338.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1339.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1339.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1339.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1339.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1340.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1340.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1340.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1340.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1341.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1341.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1341.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1341.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1342.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1342.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1342.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1342.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1343.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1343.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1343.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1343.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1344.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1344.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1344.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1344.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1345.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1345.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1345.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1345.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1346.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1346.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1346.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1346.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1347.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1347.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1347.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1347.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1348.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1348.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1348.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1348.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1349.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1349.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1349.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1349.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1350.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1350.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1350.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1350.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1351.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1351.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1351.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1351.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1352.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1352.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1352.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1352.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1353.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1353.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1353.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1353.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1354.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1354.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1354.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1354.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1355.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1355.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1355.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1355.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1356.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1356.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1356.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1356.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1357.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1357.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1357.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1357.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1358.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1358.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1358.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1358.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1359.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1359.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1359.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1359.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1360.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1360.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1360.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1360.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1361.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1361.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1361.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1361.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1362.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1362.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1362.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1362.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1363.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1363.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1363.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1363.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1364.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1364.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1364.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1364.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1365.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1365.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1365.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1365.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1366.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1366.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1366.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1366.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1367.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1367.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1367.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1367.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1368.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1368.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1368.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1368.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1369.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1369.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1369.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1369.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1370.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1370.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1370.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1370.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1371.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1371.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1371.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1371.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1372.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1372.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1372.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1372.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1373.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1373.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1373.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1373.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1374.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1374.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1374.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1374.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1375.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1375.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1375.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1375.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1376.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1376.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1376.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1376.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1377.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1377.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1377.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1377.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1378.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1378.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1378.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1378.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1379.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1379.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1379.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1379.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1380.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1380.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1380.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1380.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1381.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1381.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1381.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1381.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1382.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1382.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1382.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1382.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1383.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1383.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1383.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1383.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1384.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1384.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1384.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1384.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1385.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1385.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1385.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1385.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1386.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1386.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1386.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1386.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1387.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1387.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1387.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1387.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1388.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1388.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1388.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1388.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1389.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1389.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1389.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1389.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1390.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1390.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1390.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1390.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1391.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1391.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1391.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1391.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1392.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1392.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1392.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1392.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1393.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1393.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1393.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1393.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1394.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1394.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1394.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1394.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1395.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1395.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1395.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1395.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1396.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1396.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1396.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1396.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1397.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1397.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1397.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1397.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1398.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1398.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1398.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1398.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1399.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1399.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1399.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1399.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1400.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1400.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1400.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1400.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1401.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1401.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1401.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1401.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1402.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1402.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1402.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1402.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1403.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1403.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1403.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1403.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1404.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1404.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1404.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1404.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1405.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1405.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1405.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1405.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1406.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1406.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1406.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1406.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1407.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1407.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1407.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1407.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1408.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1408.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1408.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1408.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1409.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1409.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1409.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1409.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1410.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1410.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1410.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1410.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1411.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1411.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1411.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1411.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1412.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1412.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1412.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1412.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1413.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1413.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1413.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1413.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1414.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1414.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1414.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1414.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1415.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1415.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1415.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1415.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1416.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1416.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1416.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1416.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1417.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1417.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1417.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1417.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1418.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1418.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1418.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1418.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1419.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1419.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1419.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1419.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1420.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1420.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1420.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1420.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1421.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1421.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1421.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1421.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1422.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1422.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1422.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1422.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1423.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1423.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1423.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1423.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1424.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1424.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1424.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1424.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1425.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1425.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1425.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1425.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1426.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1426.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1426.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1426.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1427.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1427.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1427.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1427.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1428.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1428.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1428.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1428.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1429.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1429.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1429.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1429.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1430.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1430.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1430.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1430.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1431.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1431.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1431.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1431.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1432.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1432.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1432.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1432.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1433.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1433.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1433.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1433.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1434.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1434.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1434.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1434.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1435.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1435.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1435.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1435.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1436.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1436.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1436.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1436.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1437.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1437.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1437.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1437.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1438.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1438.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1438.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1438.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1439.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1439.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1439.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1439.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1440.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1440.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1440.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1440.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1441.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1441.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1441.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1441.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1442.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1442.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1442.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1442.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1443.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1443.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1443.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1443.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1444.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1444.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1444.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1444.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1445.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1445.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1445.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1445.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1446.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1446.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1446.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1446.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1447.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1447.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1447.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1447.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1448.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1448.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1448.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1448.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1449.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1449.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1449.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1449.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1450.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1450.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1450.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1450.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1451.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1451.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1451.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1451.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1452.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1452.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1452.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1452.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1453.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1453.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1453.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1453.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1454.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1454.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1454.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1454.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1455.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1455.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1455.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1455.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1456.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1456.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1456.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1456.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1457.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1457.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1457.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1457.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1458.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1458.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1458.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1458.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1459.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1459.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1459.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1459.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1460.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1460.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1460.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1460.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1461.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1461.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1461.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1461.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1462.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1462.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1462.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1462.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1463.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1463.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1463.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1463.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1464.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1464.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1464.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1464.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1465.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1465.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1465.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1465.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1466.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1466.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1466.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1466.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1467.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1467.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1467.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1467.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1468.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1468.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1468.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1468.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1469.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1469.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1469.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1469.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1470.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1470.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1470.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1470.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1471.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1471.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1471.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1471.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1472.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1472.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1472.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1472.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1473.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1473.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1473.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1473.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1474.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1474.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1474.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1474.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1475.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1475.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1475.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1475.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1476.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1476.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1476.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1476.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1477.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1477.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1477.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1477.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1478.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1478.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1478.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1478.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1479.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1479.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1479.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1479.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1480.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1480.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1480.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1480.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1481.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1481.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1481.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1481.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1482.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1482.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1482.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1482.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1483.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1483.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1483.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1483.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1484.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1484.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1484.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1484.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1485.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1485.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1485.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1485.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1486.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1486.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1486.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1486.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1487.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1487.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1487.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1487.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1488.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1488.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1488.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1488.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1489.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1489.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1489.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1489.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1490.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1490.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1490.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1490.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1491.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1491.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1491.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1491.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1492.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1492.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1492.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1492.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1493.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1493.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1493.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1493.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1494.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1494.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1494.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1494.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1495.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1495.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1495.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1495.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1496.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1496.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1496.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1496.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1497.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1497.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1497.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1497.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1498.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1498.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1498.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1498.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1499.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1499.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1499.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1499.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1500.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1500.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1500.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1500.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1501.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1501.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1501.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1501.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1502.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1502.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1502.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1502.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1503.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1503.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1503.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1503.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1504.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1504.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1504.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1504.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1505.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1505.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1505.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1505.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1506.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1506.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1506.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1506.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1507.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1507.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1507.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1507.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1508.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1508.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1508.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1508.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1509.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1509.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1509.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1509.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1510.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1510.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1510.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1510.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1511.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1511.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1511.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1511.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1512.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1512.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1512.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1512.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1513.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1513.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1513.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1513.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1514.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1514.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1514.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1514.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1515.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1515.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1515.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1515.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1516.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1516.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1516.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1516.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1517.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1517.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1517.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1517.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1518.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1518.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1518.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1518.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1519.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1519.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1519.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1519.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1520.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1520.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1520.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1520.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1521.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1521.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1521.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1521.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1522.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1522.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1522.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1522.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1523.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1523.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1523.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1523.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1524.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1524.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1524.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1524.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1525.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1525.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1525.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1525.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1526.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1526.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1526.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1526.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1527.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1527.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1527.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1527.py diff --git a/githubkit/versions/ghec_v2026_03_10/models/group_1528.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1528.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/models/group_1528.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/models/group_1528.py diff --git a/githubkit/versions/ghec_v2026_03_10/rest/__init__.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/rest/__init__.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/rest/__init__.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/rest/__init__.py diff --git a/githubkit/versions/ghec_v2026_03_10/rest/actions.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/rest/actions.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/rest/actions.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/rest/actions.py diff --git a/githubkit/versions/ghec_v2026_03_10/rest/activity.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/rest/activity.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/rest/activity.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/rest/activity.py diff --git a/githubkit/versions/ghec_v2026_03_10/rest/apps.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/rest/apps.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/rest/apps.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/rest/apps.py diff --git a/githubkit/versions/ghec_v2026_03_10/rest/billing.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/rest/billing.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/rest/billing.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/rest/billing.py diff --git a/githubkit/versions/ghec_v2026_03_10/rest/campaigns.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/rest/campaigns.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/rest/campaigns.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/rest/campaigns.py diff --git a/githubkit/versions/ghec_v2026_03_10/rest/checks.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/rest/checks.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/rest/checks.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/rest/checks.py diff --git a/githubkit/versions/ghec_v2026_03_10/rest/classroom.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/rest/classroom.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/rest/classroom.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/rest/classroom.py diff --git a/githubkit/versions/ghec_v2026_03_10/rest/code_scanning.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/rest/code_scanning.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/rest/code_scanning.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/rest/code_scanning.py diff --git a/githubkit/versions/ghec_v2026_03_10/rest/code_security.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/rest/code_security.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/rest/code_security.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/rest/code_security.py diff --git a/githubkit/versions/ghec_v2026_03_10/rest/codes_of_conduct.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/rest/codes_of_conduct.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/rest/codes_of_conduct.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/rest/codes_of_conduct.py diff --git a/githubkit/versions/ghec_v2026_03_10/rest/codespaces.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/rest/codespaces.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/rest/codespaces.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/rest/codespaces.py diff --git a/githubkit/versions/ghec_v2026_03_10/rest/copilot.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/rest/copilot.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/rest/copilot.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/rest/copilot.py diff --git a/githubkit/versions/ghec_v2026_03_10/rest/copilot_spaces.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/rest/copilot_spaces.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/rest/copilot_spaces.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/rest/copilot_spaces.py diff --git a/githubkit/versions/ghec_v2026_03_10/rest/credentials.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/rest/credentials.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/rest/credentials.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/rest/credentials.py diff --git a/githubkit/versions/ghec_v2026_03_10/rest/dependabot.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/rest/dependabot.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/rest/dependabot.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/rest/dependabot.py diff --git a/githubkit/versions/ghec_v2026_03_10/rest/dependency_graph.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/rest/dependency_graph.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/rest/dependency_graph.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/rest/dependency_graph.py diff --git a/githubkit/versions/ghec_v2026_03_10/rest/emojis.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/rest/emojis.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/rest/emojis.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/rest/emojis.py diff --git a/githubkit/versions/ghec_v2026_03_10/rest/enterprise_admin.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/rest/enterprise_admin.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/rest/enterprise_admin.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/rest/enterprise_admin.py diff --git a/githubkit/versions/ghec_v2026_03_10/rest/enterprise_team_memberships.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/rest/enterprise_team_memberships.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/rest/enterprise_team_memberships.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/rest/enterprise_team_memberships.py diff --git a/githubkit/versions/ghec_v2026_03_10/rest/enterprise_team_organizations.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/rest/enterprise_team_organizations.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/rest/enterprise_team_organizations.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/rest/enterprise_team_organizations.py diff --git a/githubkit/versions/ghec_v2026_03_10/rest/enterprise_teams.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/rest/enterprise_teams.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/rest/enterprise_teams.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/rest/enterprise_teams.py diff --git a/githubkit/versions/ghec_v2026_03_10/rest/gists.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/rest/gists.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/rest/gists.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/rest/gists.py diff --git a/githubkit/versions/ghec_v2026_03_10/rest/git.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/rest/git.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/rest/git.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/rest/git.py diff --git a/githubkit/versions/ghec_v2026_03_10/rest/gitignore.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/rest/gitignore.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/rest/gitignore.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/rest/gitignore.py diff --git a/githubkit/versions/ghec_v2026_03_10/rest/hosted_compute.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/rest/hosted_compute.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/rest/hosted_compute.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/rest/hosted_compute.py diff --git a/githubkit/versions/ghec_v2026_03_10/rest/interactions.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/rest/interactions.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/rest/interactions.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/rest/interactions.py diff --git a/githubkit/versions/ghec_v2026_03_10/rest/issues.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/rest/issues.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/rest/issues.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/rest/issues.py diff --git a/githubkit/versions/ghec_v2026_03_10/rest/licenses.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/rest/licenses.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/rest/licenses.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/rest/licenses.py diff --git a/githubkit/versions/ghec_v2026_03_10/rest/markdown.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/rest/markdown.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/rest/markdown.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/rest/markdown.py diff --git a/githubkit/versions/ghec_v2026_03_10/rest/meta.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/rest/meta.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/rest/meta.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/rest/meta.py diff --git a/githubkit/versions/ghec_v2026_03_10/rest/migrations.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/rest/migrations.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/rest/migrations.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/rest/migrations.py diff --git a/githubkit/versions/ghec_v2026_03_10/rest/oidc.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/rest/oidc.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/rest/oidc.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/rest/oidc.py diff --git a/githubkit/versions/ghec_v2026_03_10/rest/orgs.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/rest/orgs.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/rest/orgs.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/rest/orgs.py diff --git a/githubkit/versions/ghec_v2026_03_10/rest/packages.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/rest/packages.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/rest/packages.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/rest/packages.py diff --git a/githubkit/versions/ghec_v2026_03_10/rest/private_registries.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/rest/private_registries.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/rest/private_registries.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/rest/private_registries.py diff --git a/githubkit/versions/ghec_v2026_03_10/rest/projects.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/rest/projects.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/rest/projects.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/rest/projects.py diff --git a/githubkit/versions/ghec_v2026_03_10/rest/pulls.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/rest/pulls.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/rest/pulls.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/rest/pulls.py diff --git a/githubkit/versions/ghec_v2026_03_10/rest/rate_limit.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/rest/rate_limit.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/rest/rate_limit.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/rest/rate_limit.py diff --git a/githubkit/versions/ghec_v2026_03_10/rest/reactions.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/rest/reactions.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/rest/reactions.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/rest/reactions.py diff --git a/githubkit/versions/ghec_v2026_03_10/rest/repos.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/rest/repos.py similarity index 99% rename from githubkit/versions/ghec_v2026_03_10/rest/repos.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/rest/repos.py index 77b877260c..ef911ae18d 100644 --- a/githubkit/versions/ghec_v2026_03_10/rest/repos.py +++ b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/rest/repos.py @@ -16796,7 +16796,6 @@ def create_pages_site( ReposOwnerRepoPagesPostBodyAnyof0Type, None, ReposOwnerRepoPagesPostBodyAnyof1Type, - None, ], ) -> Response[Page, PageTypeForResponse]: ... @@ -16838,7 +16837,6 @@ def create_pages_site( ReposOwnerRepoPagesPostBodyAnyof0Type, None, ReposOwnerRepoPagesPostBodyAnyof1Type, - None, ] ] = UNSET, **kwargs, @@ -16881,7 +16879,6 @@ def create_pages_site( ReposOwnerRepoPagesPostBodyAnyof0, None, ReposOwnerRepoPagesPostBodyAnyof1, - None, ], json, ) @@ -16912,7 +16909,6 @@ async def async_create_pages_site( ReposOwnerRepoPagesPostBodyAnyof0Type, None, ReposOwnerRepoPagesPostBodyAnyof1Type, - None, ], ) -> Response[Page, PageTypeForResponse]: ... @@ -16954,7 +16950,6 @@ async def async_create_pages_site( ReposOwnerRepoPagesPostBodyAnyof0Type, None, ReposOwnerRepoPagesPostBodyAnyof1Type, - None, ] ] = UNSET, **kwargs, @@ -16997,7 +16992,6 @@ async def async_create_pages_site( ReposOwnerRepoPagesPostBodyAnyof0, None, ReposOwnerRepoPagesPostBodyAnyof1, - None, ], json, ) diff --git a/githubkit/versions/ghec_v2026_03_10/rest/scim.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/rest/scim.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/rest/scim.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/rest/scim.py diff --git a/githubkit/versions/ghec_v2026_03_10/rest/search.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/rest/search.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/rest/search.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/rest/search.py diff --git a/githubkit/versions/ghec_v2026_03_10/rest/secret_scanning.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/rest/secret_scanning.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/rest/secret_scanning.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/rest/secret_scanning.py diff --git a/githubkit/versions/ghec_v2026_03_10/rest/security_advisories.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/rest/security_advisories.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/rest/security_advisories.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/rest/security_advisories.py diff --git a/githubkit/versions/ghec_v2026_03_10/rest/server_statistics.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/rest/server_statistics.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/rest/server_statistics.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/rest/server_statistics.py diff --git a/githubkit/versions/ghec_v2026_03_10/rest/teams.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/rest/teams.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/rest/teams.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/rest/teams.py diff --git a/githubkit/versions/ghec_v2026_03_10/rest/users.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/rest/users.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/rest/users.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/rest/users.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/__init__.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/__init__.py similarity index 99% rename from githubkit/versions/ghec_v2026_03_10/types/__init__.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/__init__.py index f45aa75a62..556e627197 100644 --- a/githubkit/versions/ghec_v2026_03_10/types/__init__.py +++ b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/__init__.py @@ -9,7 +9,7 @@ from typing import TYPE_CHECKING -from githubkit.lazy_module import is_lazy_disabled +from githubkit.module_hooks.lazy_module import is_lazy_disabled if TYPE_CHECKING or is_lazy_disabled(): from .group_0000 import RootType as RootType diff --git a/githubkit/versions/v2026_03_10/types/group_0000.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0000.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0000.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0000.py diff --git a/githubkit/versions/v2026_03_10/types/group_0001.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0001.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0001.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0001.py diff --git a/githubkit/versions/v2026_03_10/types/group_0002.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0002.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0002.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0002.py diff --git a/githubkit/versions/v2026_03_10/types/group_0003.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0003.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0003.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0003.py diff --git a/githubkit/versions/v2026_03_10/types/group_0004.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0004.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0004.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0004.py diff --git a/githubkit/versions/v2026_03_10/types/group_0005.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0005.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0005.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0005.py diff --git a/githubkit/versions/v2026_03_10/types/group_0006.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0006.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0006.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0006.py diff --git a/githubkit/versions/v2026_03_10/types/group_0007.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0007.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0007.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0007.py diff --git a/githubkit/versions/v2026_03_10/types/group_0008.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0008.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0008.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0008.py diff --git a/githubkit/versions/v2026_03_10/types/group_0009.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0009.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0009.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0009.py diff --git a/githubkit/versions/v2026_03_10/types/group_0010.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0010.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0010.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0010.py diff --git a/githubkit/versions/v2026_03_10/types/group_0011.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0011.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0011.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0011.py diff --git a/githubkit/versions/v2026_03_10/types/group_0012.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0012.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0012.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0012.py diff --git a/githubkit/versions/v2026_03_10/types/group_0013.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0013.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0013.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0013.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0014.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0014.py similarity index 91% rename from githubkit/versions/ghec_v2026_03_10/types/group_0014.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0014.py index 5dca7785ad..34841d0229 100644 --- a/githubkit/versions/ghec_v2026_03_10/types/group_0014.py +++ b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0014.py @@ -43,7 +43,7 @@ class ValidationErrorPropErrorsItemsType(TypedDict): message: NotRequired[str] code: str index: NotRequired[int] - value: NotRequired[Union[str, None, int, None, list[str], None]] + value: NotRequired[Union[str, None, int, list[str]]] class ValidationErrorPropErrorsItemsTypeForResponse(TypedDict): @@ -54,7 +54,7 @@ class ValidationErrorPropErrorsItemsTypeForResponse(TypedDict): message: NotRequired[str] code: str index: NotRequired[int] - value: NotRequired[Union[str, None, int, None, list[str], None]] + value: NotRequired[Union[str, None, int, list[str]]] __all__ = ( diff --git a/githubkit/versions/v2026_03_10/types/group_0015.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0015.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0015.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0015.py diff --git a/githubkit/versions/v2026_03_10/types/group_0016.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0016.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0016.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0016.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0017.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0017.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0017.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0017.py diff --git a/githubkit/versions/v2026_03_10/types/group_0018.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0018.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0018.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0018.py diff --git a/githubkit/versions/v2026_03_10/types/group_0019.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0019.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0019.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0019.py diff --git a/githubkit/versions/v2026_03_10/types/group_0020.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0020.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0020.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0020.py diff --git a/githubkit/versions/v2026_03_10/types/group_0021.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0021.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0021.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0021.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0022.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0022.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0022.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0022.py diff --git a/githubkit/versions/v2026_03_10/types/group_0023.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0023.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0023.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0023.py diff --git a/githubkit/versions/v2026_03_10/types/group_0024.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0024.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0024.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0024.py diff --git a/githubkit/versions/v2026_03_10/types/group_0025.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0025.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0025.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0025.py diff --git a/githubkit/versions/v2026_03_10/types/group_0026.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0026.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0026.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0026.py diff --git a/githubkit/versions/v2026_03_10/types/group_0027.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0027.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0027.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0027.py diff --git a/githubkit/versions/v2026_03_10/types/group_0028.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0028.py similarity index 100% rename from githubkit/versions/v2026_03_10/types/group_0028.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0028.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0029.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0029.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0029.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0029.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0030.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0030.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0030.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0030.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0031.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0031.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0031.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0031.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0032.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0032.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0032.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0032.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0033.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0033.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0033.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0033.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0034.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0034.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0034.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0034.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0035.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0035.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0035.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0035.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0036.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0036.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0036.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0036.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0037.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0037.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0037.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0037.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0038.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0038.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0038.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0038.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0039.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0039.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0039.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0039.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0040.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0040.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0040.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0040.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0041.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0041.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0041.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0041.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0042.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0042.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0042.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0042.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0043.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0043.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0043.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0043.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0044.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0044.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0044.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0044.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0045.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0045.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0045.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0045.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0046.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0046.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0046.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0046.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0047.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0047.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0047.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0047.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0048.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0048.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0048.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0048.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0049.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0049.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0049.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0049.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0050.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0050.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0050.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0050.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0051.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0051.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0051.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0051.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0052.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0052.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0052.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0052.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0053.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0053.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0053.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0053.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0054.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0054.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0054.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0054.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0055.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0055.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0055.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0055.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0056.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0056.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0056.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0056.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0057.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0057.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0057.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0057.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0058.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0058.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0058.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0058.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0059.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0059.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0059.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0059.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0060.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0060.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0060.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0060.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0061.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0061.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0061.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0061.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0062.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0062.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0062.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0062.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0063.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0063.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0063.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0063.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0064.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0064.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0064.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0064.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0065.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0065.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0065.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0065.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0066.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0066.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0066.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0066.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0067.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0067.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0067.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0067.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0068.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0068.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0068.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0068.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0069.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0069.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0069.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0069.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0070.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0070.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0070.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0070.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0071.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0071.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0071.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0071.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0072.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0072.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0072.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0072.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0073.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0073.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0073.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0073.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0074.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0074.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0074.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0074.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0075.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0075.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0075.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0075.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0076.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0076.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0076.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0076.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0077.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0077.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0077.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0077.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0078.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0078.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0078.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0078.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0079.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0079.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0079.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0079.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0080.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0080.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0080.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0080.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0081.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0081.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0081.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0081.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0082.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0082.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0082.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0082.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0083.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0083.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0083.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0083.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0084.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0084.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0084.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0084.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0085.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0085.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0085.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0085.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0086.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0086.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0086.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0086.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0087.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0087.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0087.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0087.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0088.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0088.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0088.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0088.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0089.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0089.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0089.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0089.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0090.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0090.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0090.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0090.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0091.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0091.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0091.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0091.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0092.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0092.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0092.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0092.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0093.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0093.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0093.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0093.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0094.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0094.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0094.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0094.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0095.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0095.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0095.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0095.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0096.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0096.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0096.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0096.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0097.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0097.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0097.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0097.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0098.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0098.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0098.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0098.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0099.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0099.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0099.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0099.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0100.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0100.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0100.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0100.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0101.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0101.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0101.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0101.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0102.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0102.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0102.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0102.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0103.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0103.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0103.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0103.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0104.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0104.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0104.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0104.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0105.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0105.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0105.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0105.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0106.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0106.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0106.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0106.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0107.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0107.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0107.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0107.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0108.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0108.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0108.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0108.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0109.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0109.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0109.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0109.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0110.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0110.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0110.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0110.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0111.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0111.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0111.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0111.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0112.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0112.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0112.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0112.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0113.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0113.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0113.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0113.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0114.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0114.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0114.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0114.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0115.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0115.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0115.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0115.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0116.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0116.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0116.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0116.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0117.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0117.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0117.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0117.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0118.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0118.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0118.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0118.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0119.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0119.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0119.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0119.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0120.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0120.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0120.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0120.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0121.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0121.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0121.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0121.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0122.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0122.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0122.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0122.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0123.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0123.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0123.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0123.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0124.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0124.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0124.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0124.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0125.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0125.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0125.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0125.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0126.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0126.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0126.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0126.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0127.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0127.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0127.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0127.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0128.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0128.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0128.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0128.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0129.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0129.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0129.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0129.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0130.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0130.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0130.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0130.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0131.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0131.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0131.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0131.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0132.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0132.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0132.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0132.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0133.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0133.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0133.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0133.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0134.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0134.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0134.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0134.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0135.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0135.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0135.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0135.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0136.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0136.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0136.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0136.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0137.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0137.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0137.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0137.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0138.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0138.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0138.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0138.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0139.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0139.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0139.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0139.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0140.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0140.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0140.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0140.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0141.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0141.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0141.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0141.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0142.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0142.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0142.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0142.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0143.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0143.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0143.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0143.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0144.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0144.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0144.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0144.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0145.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0145.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0145.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0145.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0146.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0146.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0146.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0146.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0147.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0147.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0147.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0147.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0148.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0148.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0148.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0148.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0149.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0149.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0149.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0149.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0150.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0150.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0150.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0150.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0151.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0151.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0151.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0151.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0152.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0152.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0152.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0152.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0153.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0153.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0153.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0153.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0154.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0154.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0154.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0154.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0155.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0155.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0155.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0155.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0156.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0156.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0156.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0156.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0157.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0157.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0157.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0157.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0158.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0158.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0158.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0158.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0159.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0159.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0159.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0159.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0160.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0160.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0160.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0160.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0161.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0161.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0161.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0161.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0162.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0162.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0162.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0162.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0163.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0163.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0163.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0163.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0164.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0164.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0164.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0164.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0165.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0165.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0165.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0165.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0166.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0166.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0166.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0166.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0167.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0167.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0167.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0167.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0168.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0168.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0168.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0168.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0169.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0169.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0169.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0169.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0170.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0170.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0170.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0170.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0171.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0171.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0171.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0171.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0172.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0172.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0172.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0172.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0173.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0173.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0173.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0173.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0174.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0174.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0174.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0174.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0175.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0175.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0175.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0175.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0176.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0176.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0176.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0176.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0177.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0177.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0177.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0177.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0178.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0178.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0178.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0178.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0179.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0179.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0179.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0179.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0180.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0180.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0180.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0180.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0181.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0181.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0181.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0181.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0182.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0182.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0182.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0182.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0183.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0183.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0183.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0183.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0184.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0184.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0184.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0184.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0185.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0185.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0185.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0185.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0186.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0186.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0186.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0186.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0187.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0187.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0187.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0187.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0188.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0188.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0188.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0188.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0189.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0189.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0189.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0189.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0190.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0190.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0190.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0190.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0191.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0191.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0191.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0191.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0192.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0192.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0192.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0192.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0193.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0193.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0193.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0193.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0194.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0194.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0194.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0194.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0195.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0195.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0195.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0195.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0196.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0196.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0196.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0196.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0197.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0197.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0197.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0197.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0198.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0198.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0198.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0198.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0199.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0199.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0199.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0199.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0200.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0200.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0200.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0200.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0201.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0201.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0201.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0201.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0202.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0202.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0202.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0202.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0203.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0203.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0203.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0203.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0204.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0204.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0204.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0204.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0205.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0205.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0205.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0205.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0206.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0206.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0206.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0206.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0207.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0207.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0207.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0207.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0208.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0208.py similarity index 98% rename from githubkit/versions/ghec_v2026_03_10/types/group_0208.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0208.py index 3da32bc124..1075b5cea0 100644 --- a/githubkit/versions/ghec_v2026_03_10/types/group_0208.py +++ b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0208.py @@ -48,7 +48,7 @@ class IssueCommentType(TypedDict): "OWNER", ] ] - performed_via_github_app: NotRequired[Union[None, IntegrationType, None]] + performed_via_github_app: NotRequired[Union[None, IntegrationType]] reactions: NotRequired[ReactionRollupType] pin: NotRequired[Union[None, PinnedIssueCommentType]] @@ -82,7 +82,7 @@ class IssueCommentTypeForResponse(TypedDict): "OWNER", ] ] - performed_via_github_app: NotRequired[Union[None, IntegrationTypeForResponse, None]] + performed_via_github_app: NotRequired[Union[None, IntegrationTypeForResponse]] reactions: NotRequired[ReactionRollupTypeForResponse] pin: NotRequired[Union[None, PinnedIssueCommentTypeForResponse]] diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0209.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0209.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0209.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0209.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0210.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0210.py similarity index 99% rename from githubkit/versions/ghec_v2026_03_10/types/group_0210.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0210.py index 4f3e179847..18df987712 100644 --- a/githubkit/versions/ghec_v2026_03_10/types/group_0210.py +++ b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0210.py @@ -69,7 +69,7 @@ class IssueType(TypedDict): timeline_url: NotRequired[str] type: NotRequired[Union[IssueTypeType, None]] repository: NotRequired[RepositoryType] - performed_via_github_app: NotRequired[Union[None, IntegrationType, None]] + performed_via_github_app: NotRequired[Union[None, IntegrationType]] author_association: NotRequired[ Literal[ "COLLABORATOR", @@ -130,7 +130,7 @@ class IssueTypeForResponse(TypedDict): timeline_url: NotRequired[str] type: NotRequired[Union[IssueTypeTypeForResponse, None]] repository: NotRequired[RepositoryTypeForResponse] - performed_via_github_app: NotRequired[Union[None, IntegrationTypeForResponse, None]] + performed_via_github_app: NotRequired[Union[None, IntegrationTypeForResponse]] author_association: NotRequired[ Literal[ "COLLABORATOR", diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0211.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0211.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0211.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0211.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0212.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0212.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0212.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0212.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0213.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0213.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0213.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0213.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0214.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0214.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0214.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0214.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0215.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0215.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0215.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0215.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0216.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0216.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0216.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0216.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0217.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0217.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0217.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0217.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0218.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0218.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0218.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0218.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0219.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0219.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0219.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0219.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0220.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0220.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0220.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0220.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0221.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0221.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0221.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0221.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0222.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0222.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0222.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0222.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0223.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0223.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0223.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0223.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0224.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0224.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0224.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0224.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0225.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0225.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0225.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0225.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0226.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0226.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0226.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0226.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0227.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0227.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0227.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0227.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0228.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0228.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0228.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0228.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0229.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0229.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0229.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0229.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0230.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0230.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0230.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0230.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0231.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0231.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0231.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0231.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0232.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0232.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0232.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0232.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0233.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0233.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0233.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0233.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0234.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0234.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0234.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0234.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0235.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0235.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0235.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0235.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0236.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0236.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0236.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0236.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0237.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0237.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0237.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0237.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0238.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0238.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0238.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0238.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0239.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0239.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0239.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0239.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0240.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0240.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0240.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0240.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0241.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0241.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0241.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0241.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0242.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0242.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0242.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0242.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0243.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0243.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0243.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0243.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0244.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0244.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0244.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0244.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0245.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0245.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0245.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0245.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0246.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0246.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0246.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0246.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0247.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0247.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0247.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0247.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0248.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0248.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0248.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0248.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0249.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0249.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0249.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0249.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0250.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0250.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0250.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0250.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0251.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0251.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0251.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0251.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0252.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0252.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0252.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0252.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0253.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0253.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0253.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0253.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0254.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0254.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0254.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0254.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0255.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0255.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0255.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0255.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0256.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0256.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0256.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0256.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0257.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0257.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0257.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0257.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0258.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0258.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0258.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0258.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0259.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0259.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0259.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0259.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0260.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0260.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0260.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0260.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0261.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0261.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0261.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0261.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0262.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0262.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0262.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0262.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0263.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0263.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0263.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0263.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0264.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0264.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0264.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0264.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0265.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0265.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0265.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0265.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0266.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0266.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0266.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0266.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0267.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0267.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0267.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0267.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0268.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0268.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0268.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0268.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0269.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0269.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0269.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0269.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0270.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0270.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0270.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0270.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0271.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0271.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0271.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0271.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0272.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0272.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0272.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0272.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0273.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0273.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0273.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0273.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0274.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0274.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0274.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0274.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0275.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0275.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0275.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0275.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0276.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0276.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0276.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0276.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0277.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0277.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0277.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0277.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0278.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0278.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0278.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0278.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0279.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0279.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0279.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0279.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0280.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0280.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0280.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0280.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0281.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0281.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0281.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0281.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0282.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0282.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0282.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0282.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0283.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0283.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0283.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0283.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0284.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0284.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0284.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0284.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0285.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0285.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0285.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0285.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0286.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0286.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0286.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0286.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0287.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0287.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0287.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0287.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0288.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0288.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0288.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0288.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0289.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0289.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0289.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0289.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0290.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0290.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0290.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0290.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0291.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0291.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0291.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0291.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0292.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0292.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0292.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0292.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0293.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0293.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0293.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0293.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0294.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0294.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0294.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0294.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0295.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0295.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0295.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0295.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0296.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0296.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0296.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0296.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0297.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0297.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0297.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0297.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0298.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0298.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0298.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0298.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0299.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0299.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0299.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0299.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0300.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0300.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0300.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0300.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0301.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0301.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0301.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0301.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0302.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0302.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0302.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0302.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0303.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0303.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0303.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0303.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0304.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0304.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0304.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0304.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0305.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0305.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0305.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0305.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0306.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0306.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0306.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0306.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0307.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0307.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0307.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0307.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0308.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0308.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0308.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0308.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0309.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0309.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0309.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0309.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0310.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0310.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0310.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0310.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0311.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0311.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0311.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0311.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0312.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0312.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0312.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0312.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0313.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0313.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0313.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0313.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0314.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0314.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0314.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0314.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0315.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0315.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0315.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0315.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0316.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0316.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0316.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0316.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0317.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0317.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0317.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0317.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0318.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0318.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0318.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0318.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0319.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0319.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0319.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0319.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0320.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0320.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0320.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0320.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0321.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0321.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0321.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0321.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0322.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0322.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0322.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0322.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0323.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0323.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0323.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0323.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0324.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0324.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0324.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0324.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0325.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0325.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0325.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0325.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0326.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0326.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0326.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0326.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0327.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0327.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0327.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0327.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0328.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0328.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0328.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0328.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0329.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0329.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0329.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0329.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0330.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0330.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0330.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0330.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0331.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0331.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0331.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0331.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0332.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0332.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0332.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0332.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0333.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0333.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0333.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0333.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0334.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0334.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0334.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0334.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0335.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0335.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0335.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0335.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0336.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0336.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0336.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0336.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0337.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0337.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0337.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0337.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0338.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0338.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0338.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0338.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0339.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0339.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0339.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0339.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0340.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0340.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0340.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0340.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0341.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0341.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0341.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0341.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0342.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0342.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0342.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0342.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0343.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0343.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0343.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0343.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0344.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0344.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0344.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0344.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0345.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0345.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0345.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0345.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0346.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0346.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0346.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0346.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0347.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0347.py similarity index 98% rename from githubkit/versions/ghec_v2026_03_10/types/group_0347.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0347.py index ec9b47bfff..58cb672999 100644 --- a/githubkit/versions/ghec_v2026_03_10/types/group_0347.py +++ b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0347.py @@ -40,7 +40,7 @@ class DeploymentType(TypedDict): repository_url: str transient_environment: NotRequired[bool] production_environment: NotRequired[bool] - performed_via_github_app: NotRequired[Union[None, IntegrationType, None]] + performed_via_github_app: NotRequired[Union[None, IntegrationType]] class DeploymentTypeForResponse(TypedDict): @@ -66,7 +66,7 @@ class DeploymentTypeForResponse(TypedDict): repository_url: str transient_environment: NotRequired[bool] production_environment: NotRequired[bool] - performed_via_github_app: NotRequired[Union[None, IntegrationTypeForResponse, None]] + performed_via_github_app: NotRequired[Union[None, IntegrationTypeForResponse]] DeploymentPropPayloadOneof0Type: TypeAlias = dict[str, Any] diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0348.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0348.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0348.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0348.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0349.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0349.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0349.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0349.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0350.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0350.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0350.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0350.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0351.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0351.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0351.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0351.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0352.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0352.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0352.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0352.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0353.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0353.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0353.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0353.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0354.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0354.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0354.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0354.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0355.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0355.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0355.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0355.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0356.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0356.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0356.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0356.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0357.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0357.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0357.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0357.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0358.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0358.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0358.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0358.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0359.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0359.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0359.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0359.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0360.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0360.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0360.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0360.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0361.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0361.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0361.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0361.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0362.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0362.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0362.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0362.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0363.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0363.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0363.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0363.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0364.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0364.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0364.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0364.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0365.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0365.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0365.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0365.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0366.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0366.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0366.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0366.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0367.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0367.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0367.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0367.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0368.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0368.py similarity index 97% rename from githubkit/versions/ghec_v2026_03_10/types/group_0368.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0368.py index 5aa09ed91d..67b2d3310c 100644 --- a/githubkit/versions/ghec_v2026_03_10/types/group_0368.py +++ b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0368.py @@ -36,7 +36,7 @@ class DeploymentSimpleType(TypedDict): repository_url: str transient_environment: NotRequired[bool] production_environment: NotRequired[bool] - performed_via_github_app: NotRequired[Union[None, IntegrationType, None]] + performed_via_github_app: NotRequired[Union[None, IntegrationType]] class DeploymentSimpleTypeForResponse(TypedDict): @@ -59,7 +59,7 @@ class DeploymentSimpleTypeForResponse(TypedDict): repository_url: str transient_environment: NotRequired[bool] production_environment: NotRequired[bool] - performed_via_github_app: NotRequired[Union[None, IntegrationTypeForResponse, None]] + performed_via_github_app: NotRequired[Union[None, IntegrationTypeForResponse]] __all__ = ( diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0369.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0369.py similarity index 97% rename from githubkit/versions/ghec_v2026_03_10/types/group_0369.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0369.py index 3ea6dd1ab2..b604f28506 100644 --- a/githubkit/versions/ghec_v2026_03_10/types/group_0369.py +++ b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0369.py @@ -51,7 +51,7 @@ class CheckRunType(TypedDict): output: CheckRunPropOutputType name: str check_suite: Union[CheckRunPropCheckSuiteType, None] - app: Union[None, IntegrationType, None] + app: Union[None, IntegrationType] pull_requests: list[PullRequestMinimalType] deployment: NotRequired[DeploymentSimpleType] @@ -89,7 +89,7 @@ class CheckRunTypeForResponse(TypedDict): output: CheckRunPropOutputTypeForResponse name: str check_suite: Union[CheckRunPropCheckSuiteTypeForResponse, None] - app: Union[None, IntegrationTypeForResponse, None] + app: Union[None, IntegrationTypeForResponse] pull_requests: list[PullRequestMinimalTypeForResponse] deployment: NotRequired[DeploymentSimpleTypeForResponse] diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0370.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0370.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0370.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0370.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0371.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0371.py similarity index 97% rename from githubkit/versions/ghec_v2026_03_10/types/group_0371.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0371.py index 2e0470e3df..943598337e 100644 --- a/githubkit/versions/ghec_v2026_03_10/types/group_0371.py +++ b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0371.py @@ -53,7 +53,7 @@ class CheckSuiteType(TypedDict): before: Union[str, None] after: Union[str, None] pull_requests: Union[list[PullRequestMinimalType], None] - app: Union[None, IntegrationType, None] + app: Union[None, IntegrationType] repository: MinimalRepositoryType created_at: Union[_dt.datetime, None] updated_at: Union[_dt.datetime, None] @@ -98,7 +98,7 @@ class CheckSuiteTypeForResponse(TypedDict): before: Union[str, None] after: Union[str, None] pull_requests: Union[list[PullRequestMinimalTypeForResponse], None] - app: Union[None, IntegrationTypeForResponse, None] + app: Union[None, IntegrationTypeForResponse] repository: MinimalRepositoryTypeForResponse created_at: Union[str, None] updated_at: Union[str, None] diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0372.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0372.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0372.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0372.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0373.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0373.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0373.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0373.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0374.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0374.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0374.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0374.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0375.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0375.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0375.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0375.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0376.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0376.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0376.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0376.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0377.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0377.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0377.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0377.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0378.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0378.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0378.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0378.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0379.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0379.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0379.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0379.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0380.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0380.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0380.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0380.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0381.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0381.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0381.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0381.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0382.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0382.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0382.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0382.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0383.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0383.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0383.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0383.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0384.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0384.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0384.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0384.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0385.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0385.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0385.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0385.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0386.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0386.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0386.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0386.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0387.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0387.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0387.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0387.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0388.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0388.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0388.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0388.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0389.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0389.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0389.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0389.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0390.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0390.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0390.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0390.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0391.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0391.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0391.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0391.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0392.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0392.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0392.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0392.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0393.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0393.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0393.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0393.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0394.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0394.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0394.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0394.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0395.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0395.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0395.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0395.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0396.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0396.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0396.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0396.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0397.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0397.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0397.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0397.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0398.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0398.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0398.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0398.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0399.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0399.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0399.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0399.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0400.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0400.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0400.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0400.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0401.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0401.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0401.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0401.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0402.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0402.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0402.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0402.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0403.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0403.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0403.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0403.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0404.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0404.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0404.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0404.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0405.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0405.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0405.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0405.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0406.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0406.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0406.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0406.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0407.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0407.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0407.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0407.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0408.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0408.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0408.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0408.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0409.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0409.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0409.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0409.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0410.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0410.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0410.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0410.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0411.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0411.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0411.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0411.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0412.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0412.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0412.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0412.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0413.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0413.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0413.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0413.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0414.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0414.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0414.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0414.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0415.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0415.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0415.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0415.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0416.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0416.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0416.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0416.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0417.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0417.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0417.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0417.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0418.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0418.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0418.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0418.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0419.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0419.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0419.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0419.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0420.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0420.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0420.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0420.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0421.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0421.py similarity index 97% rename from githubkit/versions/ghec_v2026_03_10/types/group_0421.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0421.py index 61d78a0498..b659d7ac2a 100644 --- a/githubkit/versions/ghec_v2026_03_10/types/group_0421.py +++ b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0421.py @@ -39,7 +39,7 @@ class DeploymentStatusType(TypedDict): repository_url: str environment_url: NotRequired[str] log_url: NotRequired[str] - performed_via_github_app: NotRequired[Union[None, IntegrationType, None]] + performed_via_github_app: NotRequired[Union[None, IntegrationType]] class DeploymentStatusTypeForResponse(TypedDict): @@ -64,7 +64,7 @@ class DeploymentStatusTypeForResponse(TypedDict): repository_url: str environment_url: NotRequired[str] log_url: NotRequired[str] - performed_via_github_app: NotRequired[Union[None, IntegrationTypeForResponse, None]] + performed_via_github_app: NotRequired[Union[None, IntegrationTypeForResponse]] __all__ = ( diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0422.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0422.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0422.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0422.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0423.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0423.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0423.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0423.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0424.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0424.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0424.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0424.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0425.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0425.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0425.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0425.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0426.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0426.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0426.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0426.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0427.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0427.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0427.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0427.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0428.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0428.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0428.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0428.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0429.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0429.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0429.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0429.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0430.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0430.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0430.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0430.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0431.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0431.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0431.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0431.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0432.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0432.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0432.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0432.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0433.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0433.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0433.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0433.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0434.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0434.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0434.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0434.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0435.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0435.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0435.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0435.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0436.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0436.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0436.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0436.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0437.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0437.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0437.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0437.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0438.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0438.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0438.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0438.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0439.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0439.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0439.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0439.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0440.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0440.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0440.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0440.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0441.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0441.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0441.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0441.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0442.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0442.py similarity index 99% rename from githubkit/versions/ghec_v2026_03_10/types/group_0442.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0442.py index cafe57fcad..69c6ca0ec4 100644 --- a/githubkit/versions/ghec_v2026_03_10/types/group_0442.py +++ b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0442.py @@ -57,7 +57,7 @@ class IssueEventType(TypedDict): ] ] lock_reason: NotRequired[Union[str, None]] - performed_via_github_app: NotRequired[Union[None, IntegrationType, None]] + performed_via_github_app: NotRequired[Union[None, IntegrationType]] class IssueEventTypeForResponse(TypedDict): @@ -98,7 +98,7 @@ class IssueEventTypeForResponse(TypedDict): ] ] lock_reason: NotRequired[Union[str, None]] - performed_via_github_app: NotRequired[Union[None, IntegrationTypeForResponse, None]] + performed_via_github_app: NotRequired[Union[None, IntegrationTypeForResponse]] class IssueEventLabelType(TypedDict): diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0443.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0443.py similarity index 95% rename from githubkit/versions/ghec_v2026_03_10/types/group_0443.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0443.py index 5b9522f972..890c6fd308 100644 --- a/githubkit/versions/ghec_v2026_03_10/types/group_0443.py +++ b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0443.py @@ -30,7 +30,7 @@ class LabeledIssueEventType(TypedDict): commit_id: Union[str, None] commit_url: Union[str, None] created_at: str - performed_via_github_app: Union[None, IntegrationType, None] + performed_via_github_app: Union[None, IntegrationType] label: LabeledIssueEventPropLabelType @@ -48,7 +48,7 @@ class LabeledIssueEventTypeForResponse(TypedDict): commit_id: Union[str, None] commit_url: Union[str, None] created_at: str - performed_via_github_app: Union[None, IntegrationTypeForResponse, None] + performed_via_github_app: Union[None, IntegrationTypeForResponse] label: LabeledIssueEventPropLabelTypeForResponse diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0444.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0444.py similarity index 95% rename from githubkit/versions/ghec_v2026_03_10/types/group_0444.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0444.py index 607ed755a0..f5b8170bef 100644 --- a/githubkit/versions/ghec_v2026_03_10/types/group_0444.py +++ b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0444.py @@ -30,7 +30,7 @@ class UnlabeledIssueEventType(TypedDict): commit_id: Union[str, None] commit_url: Union[str, None] created_at: str - performed_via_github_app: Union[None, IntegrationType, None] + performed_via_github_app: Union[None, IntegrationType] label: UnlabeledIssueEventPropLabelType @@ -48,7 +48,7 @@ class UnlabeledIssueEventTypeForResponse(TypedDict): commit_id: Union[str, None] commit_url: Union[str, None] created_at: str - performed_via_github_app: Union[None, IntegrationTypeForResponse, None] + performed_via_github_app: Union[None, IntegrationTypeForResponse] label: UnlabeledIssueEventPropLabelTypeForResponse diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0445.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0445.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0445.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0445.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0446.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0446.py similarity index 94% rename from githubkit/versions/ghec_v2026_03_10/types/group_0446.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0446.py index 9f3572b6aa..4a42df9599 100644 --- a/githubkit/versions/ghec_v2026_03_10/types/group_0446.py +++ b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0446.py @@ -30,7 +30,7 @@ class UnassignedIssueEventType(TypedDict): commit_id: Union[str, None] commit_url: Union[str, None] created_at: str - performed_via_github_app: Union[None, IntegrationType, None] + performed_via_github_app: Union[None, IntegrationType] assignee: SimpleUserType assigner: SimpleUserType @@ -49,7 +49,7 @@ class UnassignedIssueEventTypeForResponse(TypedDict): commit_id: Union[str, None] commit_url: Union[str, None] created_at: str - performed_via_github_app: Union[None, IntegrationTypeForResponse, None] + performed_via_github_app: Union[None, IntegrationTypeForResponse] assignee: SimpleUserTypeForResponse assigner: SimpleUserTypeForResponse diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0447.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0447.py similarity index 95% rename from githubkit/versions/ghec_v2026_03_10/types/group_0447.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0447.py index 1a28663c59..1724338327 100644 --- a/githubkit/versions/ghec_v2026_03_10/types/group_0447.py +++ b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0447.py @@ -30,7 +30,7 @@ class MilestonedIssueEventType(TypedDict): commit_id: Union[str, None] commit_url: Union[str, None] created_at: str - performed_via_github_app: Union[None, IntegrationType, None] + performed_via_github_app: Union[None, IntegrationType] milestone: MilestonedIssueEventPropMilestoneType @@ -48,7 +48,7 @@ class MilestonedIssueEventTypeForResponse(TypedDict): commit_id: Union[str, None] commit_url: Union[str, None] created_at: str - performed_via_github_app: Union[None, IntegrationTypeForResponse, None] + performed_via_github_app: Union[None, IntegrationTypeForResponse] milestone: MilestonedIssueEventPropMilestoneTypeForResponse diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0448.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0448.py similarity index 95% rename from githubkit/versions/ghec_v2026_03_10/types/group_0448.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0448.py index 60ccecc3f7..b44670af28 100644 --- a/githubkit/versions/ghec_v2026_03_10/types/group_0448.py +++ b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0448.py @@ -30,7 +30,7 @@ class DemilestonedIssueEventType(TypedDict): commit_id: Union[str, None] commit_url: Union[str, None] created_at: str - performed_via_github_app: Union[None, IntegrationType, None] + performed_via_github_app: Union[None, IntegrationType] milestone: DemilestonedIssueEventPropMilestoneType @@ -48,7 +48,7 @@ class DemilestonedIssueEventTypeForResponse(TypedDict): commit_id: Union[str, None] commit_url: Union[str, None] created_at: str - performed_via_github_app: Union[None, IntegrationTypeForResponse, None] + performed_via_github_app: Union[None, IntegrationTypeForResponse] milestone: DemilestonedIssueEventPropMilestoneTypeForResponse diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0449.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0449.py similarity index 95% rename from githubkit/versions/ghec_v2026_03_10/types/group_0449.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0449.py index 94b63e682f..c39a91c014 100644 --- a/githubkit/versions/ghec_v2026_03_10/types/group_0449.py +++ b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0449.py @@ -30,7 +30,7 @@ class RenamedIssueEventType(TypedDict): commit_id: Union[str, None] commit_url: Union[str, None] created_at: str - performed_via_github_app: Union[None, IntegrationType, None] + performed_via_github_app: Union[None, IntegrationType] rename: RenamedIssueEventPropRenameType @@ -48,7 +48,7 @@ class RenamedIssueEventTypeForResponse(TypedDict): commit_id: Union[str, None] commit_url: Union[str, None] created_at: str - performed_via_github_app: Union[None, IntegrationTypeForResponse, None] + performed_via_github_app: Union[None, IntegrationTypeForResponse] rename: RenamedIssueEventPropRenameTypeForResponse diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0450.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0450.py similarity index 95% rename from githubkit/versions/ghec_v2026_03_10/types/group_0450.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0450.py index de1d8c5685..a91d70ee5f 100644 --- a/githubkit/versions/ghec_v2026_03_10/types/group_0450.py +++ b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0450.py @@ -31,7 +31,7 @@ class ReviewRequestedIssueEventType(TypedDict): commit_id: Union[str, None] commit_url: Union[str, None] created_at: str - performed_via_github_app: Union[None, IntegrationType, None] + performed_via_github_app: Union[None, IntegrationType] review_requester: SimpleUserType requested_team: NotRequired[TeamType] requested_reviewer: NotRequired[SimpleUserType] @@ -51,7 +51,7 @@ class ReviewRequestedIssueEventTypeForResponse(TypedDict): commit_id: Union[str, None] commit_url: Union[str, None] created_at: str - performed_via_github_app: Union[None, IntegrationTypeForResponse, None] + performed_via_github_app: Union[None, IntegrationTypeForResponse] review_requester: SimpleUserTypeForResponse requested_team: NotRequired[TeamTypeForResponse] requested_reviewer: NotRequired[SimpleUserTypeForResponse] diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0451.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0451.py similarity index 95% rename from githubkit/versions/ghec_v2026_03_10/types/group_0451.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0451.py index 7255642d65..5572dc99a9 100644 --- a/githubkit/versions/ghec_v2026_03_10/types/group_0451.py +++ b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0451.py @@ -31,7 +31,7 @@ class ReviewRequestRemovedIssueEventType(TypedDict): commit_id: Union[str, None] commit_url: Union[str, None] created_at: str - performed_via_github_app: Union[None, IntegrationType, None] + performed_via_github_app: Union[None, IntegrationType] review_requester: SimpleUserType requested_team: NotRequired[TeamType] requested_reviewer: NotRequired[SimpleUserType] @@ -51,7 +51,7 @@ class ReviewRequestRemovedIssueEventTypeForResponse(TypedDict): commit_id: Union[str, None] commit_url: Union[str, None] created_at: str - performed_via_github_app: Union[None, IntegrationTypeForResponse, None] + performed_via_github_app: Union[None, IntegrationTypeForResponse] review_requester: SimpleUserTypeForResponse requested_team: NotRequired[TeamTypeForResponse] requested_reviewer: NotRequired[SimpleUserTypeForResponse] diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0452.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0452.py similarity index 96% rename from githubkit/versions/ghec_v2026_03_10/types/group_0452.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0452.py index 60e83087f6..ca32726c75 100644 --- a/githubkit/versions/ghec_v2026_03_10/types/group_0452.py +++ b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0452.py @@ -30,7 +30,7 @@ class ReviewDismissedIssueEventType(TypedDict): commit_id: Union[str, None] commit_url: Union[str, None] created_at: str - performed_via_github_app: Union[None, IntegrationType, None] + performed_via_github_app: Union[None, IntegrationType] dismissed_review: ReviewDismissedIssueEventPropDismissedReviewType @@ -48,7 +48,7 @@ class ReviewDismissedIssueEventTypeForResponse(TypedDict): commit_id: Union[str, None] commit_url: Union[str, None] created_at: str - performed_via_github_app: Union[None, IntegrationTypeForResponse, None] + performed_via_github_app: Union[None, IntegrationTypeForResponse] dismissed_review: ReviewDismissedIssueEventPropDismissedReviewTypeForResponse diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0453.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0453.py similarity index 94% rename from githubkit/versions/ghec_v2026_03_10/types/group_0453.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0453.py index b64f7e5588..b4190fbe44 100644 --- a/githubkit/versions/ghec_v2026_03_10/types/group_0453.py +++ b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0453.py @@ -30,7 +30,7 @@ class LockedIssueEventType(TypedDict): commit_id: Union[str, None] commit_url: Union[str, None] created_at: str - performed_via_github_app: Union[None, IntegrationType, None] + performed_via_github_app: Union[None, IntegrationType] lock_reason: Union[str, None] @@ -48,7 +48,7 @@ class LockedIssueEventTypeForResponse(TypedDict): commit_id: Union[str, None] commit_url: Union[str, None] created_at: str - performed_via_github_app: Union[None, IntegrationTypeForResponse, None] + performed_via_github_app: Union[None, IntegrationTypeForResponse] lock_reason: Union[str, None] diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0454.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0454.py similarity index 96% rename from githubkit/versions/ghec_v2026_03_10/types/group_0454.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0454.py index 1a7ae01706..5b4b16803e 100644 --- a/githubkit/versions/ghec_v2026_03_10/types/group_0454.py +++ b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0454.py @@ -30,7 +30,7 @@ class AddedToProjectIssueEventType(TypedDict): commit_id: Union[str, None] commit_url: Union[str, None] created_at: str - performed_via_github_app: Union[None, IntegrationType, None] + performed_via_github_app: Union[None, IntegrationType] project_card: NotRequired[AddedToProjectIssueEventPropProjectCardType] @@ -48,7 +48,7 @@ class AddedToProjectIssueEventTypeForResponse(TypedDict): commit_id: Union[str, None] commit_url: Union[str, None] created_at: str - performed_via_github_app: Union[None, IntegrationTypeForResponse, None] + performed_via_github_app: Union[None, IntegrationTypeForResponse] project_card: NotRequired[AddedToProjectIssueEventPropProjectCardTypeForResponse] diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0455.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0455.py similarity index 96% rename from githubkit/versions/ghec_v2026_03_10/types/group_0455.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0455.py index 1e0cd3854f..89fc05a616 100644 --- a/githubkit/versions/ghec_v2026_03_10/types/group_0455.py +++ b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0455.py @@ -30,7 +30,7 @@ class MovedColumnInProjectIssueEventType(TypedDict): commit_id: Union[str, None] commit_url: Union[str, None] created_at: str - performed_via_github_app: Union[None, IntegrationType, None] + performed_via_github_app: Union[None, IntegrationType] project_card: NotRequired[MovedColumnInProjectIssueEventPropProjectCardType] @@ -48,7 +48,7 @@ class MovedColumnInProjectIssueEventTypeForResponse(TypedDict): commit_id: Union[str, None] commit_url: Union[str, None] created_at: str - performed_via_github_app: Union[None, IntegrationTypeForResponse, None] + performed_via_github_app: Union[None, IntegrationTypeForResponse] project_card: NotRequired[ MovedColumnInProjectIssueEventPropProjectCardTypeForResponse ] diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0456.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0456.py similarity index 96% rename from githubkit/versions/ghec_v2026_03_10/types/group_0456.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0456.py index d713e771b0..d8507cc4c6 100644 --- a/githubkit/versions/ghec_v2026_03_10/types/group_0456.py +++ b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0456.py @@ -30,7 +30,7 @@ class RemovedFromProjectIssueEventType(TypedDict): commit_id: Union[str, None] commit_url: Union[str, None] created_at: str - performed_via_github_app: Union[None, IntegrationType, None] + performed_via_github_app: Union[None, IntegrationType] project_card: NotRequired[RemovedFromProjectIssueEventPropProjectCardType] @@ -48,7 +48,7 @@ class RemovedFromProjectIssueEventTypeForResponse(TypedDict): commit_id: Union[str, None] commit_url: Union[str, None] created_at: str - performed_via_github_app: Union[None, IntegrationTypeForResponse, None] + performed_via_github_app: Union[None, IntegrationTypeForResponse] project_card: NotRequired[ RemovedFromProjectIssueEventPropProjectCardTypeForResponse ] diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0457.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0457.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0457.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0457.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0458.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0458.py similarity index 98% rename from githubkit/versions/ghec_v2026_03_10/types/group_0458.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0458.py index 36c0a4f8ad..f2d3f10a26 100644 --- a/githubkit/versions/ghec_v2026_03_10/types/group_0458.py +++ b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0458.py @@ -48,7 +48,7 @@ class TimelineCommentEventType(TypedDict): "NONE", "OWNER", ] - performed_via_github_app: NotRequired[Union[None, IntegrationType, None]] + performed_via_github_app: NotRequired[Union[None, IntegrationType]] reactions: NotRequired[ReactionRollupType] pin: NotRequired[Union[None, PinnedIssueCommentType]] @@ -82,7 +82,7 @@ class TimelineCommentEventTypeForResponse(TypedDict): "NONE", "OWNER", ] - performed_via_github_app: NotRequired[Union[None, IntegrationTypeForResponse, None]] + performed_via_github_app: NotRequired[Union[None, IntegrationTypeForResponse]] reactions: NotRequired[ReactionRollupTypeForResponse] pin: NotRequired[Union[None, PinnedIssueCommentTypeForResponse]] diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0459.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0459.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0459.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0459.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0460.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0460.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0460.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0460.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0461.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0461.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0461.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0461.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0462.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0462.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0462.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0462.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0463.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0463.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0463.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0463.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0464.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0464.py similarity index 94% rename from githubkit/versions/ghec_v2026_03_10/types/group_0464.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0464.py index cdf3fbdf4f..effa45ad0a 100644 --- a/githubkit/versions/ghec_v2026_03_10/types/group_0464.py +++ b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0464.py @@ -30,7 +30,7 @@ class TimelineAssignedIssueEventType(TypedDict): commit_id: Union[str, None] commit_url: Union[str, None] created_at: str - performed_via_github_app: Union[None, IntegrationType, None] + performed_via_github_app: Union[None, IntegrationType] assignee: SimpleUserType @@ -48,7 +48,7 @@ class TimelineAssignedIssueEventTypeForResponse(TypedDict): commit_id: Union[str, None] commit_url: Union[str, None] created_at: str - performed_via_github_app: Union[None, IntegrationTypeForResponse, None] + performed_via_github_app: Union[None, IntegrationTypeForResponse] assignee: SimpleUserTypeForResponse diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0465.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0465.py similarity index 94% rename from githubkit/versions/ghec_v2026_03_10/types/group_0465.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0465.py index d35d38d156..c807facca3 100644 --- a/githubkit/versions/ghec_v2026_03_10/types/group_0465.py +++ b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0465.py @@ -30,7 +30,7 @@ class TimelineUnassignedIssueEventType(TypedDict): commit_id: Union[str, None] commit_url: Union[str, None] created_at: str - performed_via_github_app: Union[None, IntegrationType, None] + performed_via_github_app: Union[None, IntegrationType] assignee: SimpleUserType @@ -48,7 +48,7 @@ class TimelineUnassignedIssueEventTypeForResponse(TypedDict): commit_id: Union[str, None] commit_url: Union[str, None] created_at: str - performed_via_github_app: Union[None, IntegrationTypeForResponse, None] + performed_via_github_app: Union[None, IntegrationTypeForResponse] assignee: SimpleUserTypeForResponse diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0466.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0466.py similarity index 94% rename from githubkit/versions/ghec_v2026_03_10/types/group_0466.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0466.py index 8cd6db3e2f..6acc686d25 100644 --- a/githubkit/versions/ghec_v2026_03_10/types/group_0466.py +++ b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0466.py @@ -30,7 +30,7 @@ class StateChangeIssueEventType(TypedDict): commit_id: Union[str, None] commit_url: Union[str, None] created_at: str - performed_via_github_app: Union[None, IntegrationType, None] + performed_via_github_app: Union[None, IntegrationType] state_reason: NotRequired[Union[str, None]] @@ -48,7 +48,7 @@ class StateChangeIssueEventTypeForResponse(TypedDict): commit_id: Union[str, None] commit_url: Union[str, None] created_at: str - performed_via_github_app: Union[None, IntegrationTypeForResponse, None] + performed_via_github_app: Union[None, IntegrationTypeForResponse] state_reason: NotRequired[Union[str, None]] diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0467.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0467.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0467.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0467.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0468.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0468.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0468.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0468.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0469.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0469.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0469.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0469.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0470.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0470.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0470.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0470.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0471.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0471.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0471.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0471.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0472.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0472.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0472.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0472.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0473.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0473.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0473.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0473.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0474.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0474.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0474.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0474.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0475.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0475.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0475.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0475.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0476.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0476.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0476.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0476.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0477.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0477.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0477.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0477.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0478.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0478.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0478.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0478.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0479.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0479.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0479.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0479.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0480.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0480.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0480.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0480.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0481.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0481.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0481.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0481.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0482.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0482.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0482.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0482.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0483.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0483.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0483.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0483.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0484.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0484.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0484.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0484.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0485.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0485.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0485.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0485.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0486.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0486.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0486.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0486.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0487.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0487.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0487.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0487.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0488.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0488.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0488.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0488.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0489.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0489.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0489.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0489.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0490.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0490.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0490.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0490.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0491.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0491.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0491.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0491.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0492.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0492.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0492.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0492.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0493.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0493.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0493.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0493.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0494.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0494.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0494.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0494.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0495.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0495.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0495.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0495.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0496.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0496.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0496.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0496.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0497.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0497.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0497.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0497.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0498.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0498.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0498.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0498.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0499.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0499.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0499.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0499.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0500.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0500.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0500.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0500.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0501.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0501.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0501.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0501.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0502.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0502.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0502.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0502.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0503.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0503.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0503.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0503.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0504.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0504.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0504.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0504.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0505.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0505.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0505.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0505.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0506.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0506.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0506.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0506.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0507.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0507.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0507.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0507.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0508.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0508.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0508.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0508.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0509.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0509.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0509.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0509.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0510.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0510.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0510.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0510.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0511.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0511.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0511.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0511.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0512.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0512.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0512.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0512.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0513.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0513.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0513.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0513.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0514.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0514.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0514.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0514.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0515.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0515.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0515.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0515.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0516.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0516.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0516.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0516.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0517.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0517.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0517.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0517.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0518.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0518.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0518.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0518.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0519.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0519.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0519.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0519.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0520.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0520.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0520.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0520.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0521.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0521.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0521.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0521.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0522.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0522.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0522.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0522.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0523.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0523.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0523.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0523.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0524.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0524.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0524.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0524.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0525.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0525.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0525.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0525.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0526.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0526.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0526.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0526.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0527.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0527.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0527.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0527.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0528.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0528.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0528.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0528.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0529.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0529.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0529.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0529.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0530.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0530.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0530.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0530.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0531.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0531.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0531.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0531.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0532.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0532.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0532.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0532.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0533.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0533.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0533.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0533.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0534.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0534.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0534.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0534.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0535.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0535.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0535.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0535.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0536.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0536.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0536.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0536.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0537.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0537.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0537.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0537.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0538.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0538.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0538.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0538.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0539.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0539.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0539.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0539.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0540.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0540.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0540.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0540.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0541.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0541.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0541.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0541.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0542.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0542.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0542.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0542.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0543.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0543.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0543.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0543.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0544.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0544.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0544.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0544.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0545.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0545.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0545.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0545.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0546.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0546.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0546.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0546.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0547.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0547.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0547.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0547.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0548.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0548.py similarity index 99% rename from githubkit/versions/ghec_v2026_03_10/types/group_0548.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0548.py index 1489225e56..5b397b14fe 100644 --- a/githubkit/versions/ghec_v2026_03_10/types/group_0548.py +++ b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0548.py @@ -84,7 +84,7 @@ class IssueSearchResultItemType(TypedDict): body_text: NotRequired[str] timeline_url: NotRequired[str] type: NotRequired[Union[IssueTypeType, None]] - performed_via_github_app: NotRequired[Union[None, IntegrationType, None]] + performed_via_github_app: NotRequired[Union[None, IntegrationType]] pinned_comment: NotRequired[Union[None, IssueCommentType]] reactions: NotRequired[ReactionRollupType] @@ -140,7 +140,7 @@ class IssueSearchResultItemTypeForResponse(TypedDict): body_text: NotRequired[str] timeline_url: NotRequired[str] type: NotRequired[Union[IssueTypeTypeForResponse, None]] - performed_via_github_app: NotRequired[Union[None, IntegrationTypeForResponse, None]] + performed_via_github_app: NotRequired[Union[None, IntegrationTypeForResponse]] pinned_comment: NotRequired[Union[None, IssueCommentTypeForResponse]] reactions: NotRequired[ReactionRollupTypeForResponse] diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0549.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0549.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0549.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0549.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0550.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0550.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0550.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0550.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0551.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0551.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0551.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0551.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0552.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0552.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0552.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0552.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0553.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0553.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0553.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0553.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0554.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0554.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0554.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0554.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0555.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0555.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0555.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0555.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0556.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0556.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0556.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0556.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0557.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0557.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0557.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0557.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0558.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0558.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0558.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0558.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0559.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0559.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0559.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0559.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0560.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0560.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0560.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0560.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0561.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0561.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0561.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0561.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0562.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0562.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0562.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0562.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0563.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0563.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0563.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0563.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0564.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0564.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0564.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0564.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0565.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0565.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0565.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0565.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0566.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0566.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0566.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0566.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0567.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0567.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0567.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0567.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0568.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0568.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0568.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0568.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0569.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0569.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0569.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0569.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0570.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0570.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0570.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0570.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0571.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0571.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0571.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0571.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0572.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0572.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0572.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0572.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0573.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0573.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0573.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0573.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0574.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0574.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0574.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0574.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0575.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0575.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0575.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0575.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0576.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0576.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0576.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0576.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0577.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0577.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0577.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0577.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0578.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0578.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0578.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0578.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0579.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0579.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0579.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0579.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0580.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0580.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0580.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0580.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0581.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0581.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0581.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0581.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0582.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0582.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0582.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0582.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0583.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0583.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0583.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0583.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0584.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0584.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0584.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0584.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0585.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0585.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0585.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0585.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0586.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0586.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0586.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0586.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0587.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0587.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0587.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0587.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0588.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0588.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0588.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0588.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0589.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0589.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0589.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0589.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0590.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0590.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0590.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0590.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0591.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0591.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0591.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0591.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0592.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0592.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0592.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0592.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0593.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0593.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0593.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0593.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0594.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0594.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0594.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0594.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0595.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0595.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0595.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0595.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0596.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0596.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0596.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0596.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0597.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0597.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0597.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0597.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0598.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0598.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0598.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0598.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0599.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0599.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0599.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0599.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0600.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0600.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0600.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0600.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0601.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0601.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0601.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0601.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0602.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0602.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0602.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0602.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0603.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0603.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0603.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0603.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0604.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0604.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0604.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0604.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0605.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0605.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0605.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0605.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0606.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0606.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0606.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0606.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0607.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0607.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0607.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0607.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0608.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0608.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0608.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0608.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0609.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0609.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0609.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0609.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0610.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0610.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0610.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0610.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0611.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0611.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0611.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0611.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0612.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0612.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0612.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0612.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0613.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0613.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0613.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0613.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0614.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0614.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0614.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0614.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0615.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0615.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0615.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0615.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0616.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0616.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0616.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0616.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0617.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0617.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0617.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0617.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0618.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0618.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0618.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0618.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0619.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0619.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0619.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0619.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0620.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0620.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0620.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0620.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0621.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0621.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0621.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0621.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0622.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0622.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0622.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0622.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0623.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0623.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0623.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0623.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0624.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0624.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0624.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0624.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0625.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0625.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0625.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0625.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0626.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0626.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0626.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0626.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0627.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0627.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0627.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0627.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0628.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0628.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0628.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0628.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0629.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0629.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0629.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0629.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0630.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0630.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0630.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0630.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0631.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0631.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0631.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0631.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0632.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0632.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0632.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0632.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0633.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0633.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0633.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0633.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0634.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0634.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0634.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0634.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0635.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0635.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0635.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0635.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0636.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0636.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0636.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0636.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0637.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0637.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0637.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0637.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0638.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0638.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0638.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0638.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0639.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0639.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0639.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0639.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0640.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0640.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0640.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0640.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0641.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0641.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0641.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0641.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0642.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0642.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0642.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0642.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0643.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0643.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0643.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0643.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0644.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0644.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0644.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0644.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0645.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0645.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0645.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0645.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0646.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0646.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0646.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0646.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0647.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0647.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0647.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0647.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0648.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0648.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0648.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0648.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0649.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0649.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0649.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0649.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0650.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0650.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0650.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0650.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0651.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0651.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0651.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0651.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0652.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0652.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0652.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0652.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0653.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0653.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0653.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0653.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0654.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0654.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0654.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0654.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0655.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0655.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0655.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0655.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0656.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0656.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0656.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0656.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0657.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0657.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0657.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0657.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0658.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0658.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0658.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0658.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0659.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0659.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0659.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0659.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0660.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0660.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0660.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0660.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0661.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0661.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0661.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0661.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0662.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0662.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0662.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0662.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0663.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0663.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0663.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0663.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0664.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0664.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0664.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0664.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0665.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0665.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0665.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0665.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0666.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0666.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0666.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0666.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0667.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0667.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0667.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0667.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0668.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0668.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0668.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0668.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0669.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0669.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0669.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0669.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0670.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0670.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0670.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0670.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0671.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0671.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0671.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0671.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0672.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0672.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0672.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0672.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0673.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0673.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0673.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0673.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0674.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0674.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0674.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0674.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0675.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0675.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0675.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0675.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0676.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0676.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0676.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0676.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0677.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0677.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0677.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0677.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0678.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0678.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0678.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0678.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0679.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0679.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0679.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0679.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0680.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0680.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0680.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0680.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0681.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0681.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0681.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0681.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0682.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0682.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0682.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0682.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0683.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0683.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0683.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0683.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0684.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0684.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0684.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0684.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0685.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0685.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0685.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0685.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0686.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0686.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0686.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0686.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0687.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0687.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0687.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0687.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0688.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0688.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0688.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0688.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0689.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0689.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0689.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0689.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0690.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0690.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0690.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0690.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0691.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0691.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0691.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0691.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0692.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0692.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0692.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0692.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0693.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0693.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0693.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0693.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0694.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0694.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0694.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0694.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0695.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0695.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0695.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0695.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0696.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0696.py similarity index 97% rename from githubkit/versions/ghec_v2026_03_10/types/group_0696.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0696.py index 2ced67a994..d6caf3ee4a 100644 --- a/githubkit/versions/ghec_v2026_03_10/types/group_0696.py +++ b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0696.py @@ -48,7 +48,7 @@ class WebhookForkPropForkeeType(TypedDict): default_branch: str delete_branch_on_merge: NotRequired[bool] deployments_url: str - description: Union[Union[str, None], None] + description: Union[str, None] disabled: NotRequired[bool] downloads_url: str events_url: str @@ -66,7 +66,7 @@ class WebhookForkPropForkeeType(TypedDict): has_pages: bool has_projects: bool has_wiki: bool - homepage: Union[Union[str, None], None] + homepage: Union[str, None] hooks_url: str html_url: str id: int @@ -147,7 +147,7 @@ class WebhookForkPropForkeeTypeForResponse(TypedDict): default_branch: str delete_branch_on_merge: NotRequired[bool] deployments_url: str - description: Union[Union[str, None], None] + description: Union[str, None] disabled: NotRequired[bool] downloads_url: str events_url: str @@ -165,7 +165,7 @@ class WebhookForkPropForkeeTypeForResponse(TypedDict): has_pages: bool has_projects: bool has_wiki: bool - homepage: Union[Union[str, None], None] + homepage: Union[str, None] hooks_url: str html_url: str id: int diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0697.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0697.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0697.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0697.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0698.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0698.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0698.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0698.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0699.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0699.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0699.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0699.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0700.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0700.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0700.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0700.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0701.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0701.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0701.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0701.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0702.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0702.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0702.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0702.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0703.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0703.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0703.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0703.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0704.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0704.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0704.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0704.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0705.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0705.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0705.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0705.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0706.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0706.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0706.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0706.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0707.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0707.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0707.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0707.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0708.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0708.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0708.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0708.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0709.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0709.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0709.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0709.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0710.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0710.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0710.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0710.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0711.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0711.py similarity index 98% rename from githubkit/versions/ghec_v2026_03_10/types/group_0711.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0711.py index 5d01818e73..0a74e07dd8 100644 --- a/githubkit/versions/ghec_v2026_03_10/types/group_0711.py +++ b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0711.py @@ -40,7 +40,7 @@ class WebhookIssueCommentCreatedPropCommentType(TypedDict): id: int issue_url: str node_id: str - performed_via_github_app: Union[None, IntegrationType, None] + performed_via_github_app: Union[None, IntegrationType] reactions: WebhookIssueCommentCreatedPropCommentPropReactionsType updated_at: _dt.datetime url: str @@ -71,7 +71,7 @@ class WebhookIssueCommentCreatedPropCommentTypeForResponse(TypedDict): id: int issue_url: str node_id: str - performed_via_github_app: Union[None, IntegrationTypeForResponse, None] + performed_via_github_app: Union[None, IntegrationTypeForResponse] reactions: WebhookIssueCommentCreatedPropCommentPropReactionsTypeForResponse updated_at: str url: str diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0712.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0712.py similarity index 96% rename from githubkit/versions/ghec_v2026_03_10/types/group_0712.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0712.py index 15d763133d..9eb9cf5372 100644 --- a/githubkit/versions/ghec_v2026_03_10/types/group_0712.py +++ b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0712.py @@ -48,9 +48,7 @@ class WebhookIssueCommentCreatedPropIssueType(TypedDict): active_lock_reason: Union[ Literal["resolved", "off-topic", "too heated", "spam"], None ] - assignee: Union[ - Union[WebhookIssueCommentCreatedPropIssueAllof0PropAssigneeType, None], None - ] + assignee: Union[WebhookIssueCommentCreatedPropIssueAllof0PropAssigneeType, None] assignees: list[WebhookIssueCommentCreatedPropIssueMergedAssigneesType] author_association: Literal[ "COLLABORATOR", @@ -62,7 +60,7 @@ class WebhookIssueCommentCreatedPropIssueType(TypedDict): "NONE", "OWNER", ] - body: Union[Union[str, None], None] + body: Union[str, None] closed_at: Union[_dt.datetime, None] comments: int comments_url: str @@ -108,10 +106,7 @@ class WebhookIssueCommentCreatedPropIssueTypeForResponse(TypedDict): Literal["resolved", "off-topic", "too heated", "spam"], None ] assignee: Union[ - Union[ - WebhookIssueCommentCreatedPropIssueAllof0PropAssigneeTypeForResponse, None - ], - None, + WebhookIssueCommentCreatedPropIssueAllof0PropAssigneeTypeForResponse, None ] assignees: list[WebhookIssueCommentCreatedPropIssueMergedAssigneesTypeForResponse] author_association: Literal[ @@ -124,7 +119,7 @@ class WebhookIssueCommentCreatedPropIssueTypeForResponse(TypedDict): "NONE", "OWNER", ] - body: Union[Union[str, None], None] + body: Union[str, None] closed_at: Union[str, None] comments: int comments_url: str diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0713.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0713.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0713.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0713.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0714.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0714.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0714.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0714.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0715.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0715.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0715.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0715.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0716.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0716.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0716.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0716.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0717.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0717.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0717.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0717.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0718.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0718.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0718.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0718.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0719.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0719.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0719.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0719.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0720.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0720.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0720.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0720.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0721.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0721.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0721.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0721.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0722.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0722.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0722.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0722.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0723.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0723.py similarity index 96% rename from githubkit/versions/ghec_v2026_03_10/types/group_0723.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0723.py index ba65355a8c..7f1a85f816 100644 --- a/githubkit/versions/ghec_v2026_03_10/types/group_0723.py +++ b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0723.py @@ -48,9 +48,7 @@ class WebhookIssueCommentDeletedPropIssueType(TypedDict): active_lock_reason: Union[ Literal["resolved", "off-topic", "too heated", "spam"], None ] - assignee: Union[ - Union[WebhookIssueCommentDeletedPropIssueAllof0PropAssigneeType, None], None - ] + assignee: Union[WebhookIssueCommentDeletedPropIssueAllof0PropAssigneeType, None] assignees: list[WebhookIssueCommentDeletedPropIssueMergedAssigneesType] author_association: Literal[ "COLLABORATOR", @@ -62,7 +60,7 @@ class WebhookIssueCommentDeletedPropIssueType(TypedDict): "NONE", "OWNER", ] - body: Union[Union[str, None], None] + body: Union[str, None] closed_at: Union[_dt.datetime, None] comments: int comments_url: str @@ -108,10 +106,7 @@ class WebhookIssueCommentDeletedPropIssueTypeForResponse(TypedDict): Literal["resolved", "off-topic", "too heated", "spam"], None ] assignee: Union[ - Union[ - WebhookIssueCommentDeletedPropIssueAllof0PropAssigneeTypeForResponse, None - ], - None, + WebhookIssueCommentDeletedPropIssueAllof0PropAssigneeTypeForResponse, None ] assignees: list[WebhookIssueCommentDeletedPropIssueMergedAssigneesTypeForResponse] author_association: Literal[ @@ -124,7 +119,7 @@ class WebhookIssueCommentDeletedPropIssueTypeForResponse(TypedDict): "NONE", "OWNER", ] - body: Union[Union[str, None], None] + body: Union[str, None] closed_at: Union[str, None] comments: int comments_url: str diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0724.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0724.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0724.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0724.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0725.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0725.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0725.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0725.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0726.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0726.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0726.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0726.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0727.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0727.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0727.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0727.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0728.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0728.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0728.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0728.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0729.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0729.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0729.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0729.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0730.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0730.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0730.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0730.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0731.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0731.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0731.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0731.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0732.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0732.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0732.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0732.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0733.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0733.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0733.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0733.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0734.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0734.py similarity index 96% rename from githubkit/versions/ghec_v2026_03_10/types/group_0734.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0734.py index 0fb1cb131e..30f86413f1 100644 --- a/githubkit/versions/ghec_v2026_03_10/types/group_0734.py +++ b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0734.py @@ -48,9 +48,7 @@ class WebhookIssueCommentEditedPropIssueType(TypedDict): active_lock_reason: Union[ Literal["resolved", "off-topic", "too heated", "spam"], None ] - assignee: Union[ - Union[WebhookIssueCommentEditedPropIssueAllof0PropAssigneeType, None], None - ] + assignee: Union[WebhookIssueCommentEditedPropIssueAllof0PropAssigneeType, None] assignees: list[WebhookIssueCommentEditedPropIssueMergedAssigneesType] author_association: Literal[ "COLLABORATOR", @@ -62,7 +60,7 @@ class WebhookIssueCommentEditedPropIssueType(TypedDict): "NONE", "OWNER", ] - body: Union[Union[str, None], None] + body: Union[str, None] closed_at: Union[_dt.datetime, None] comments: int comments_url: str @@ -108,10 +106,7 @@ class WebhookIssueCommentEditedPropIssueTypeForResponse(TypedDict): Literal["resolved", "off-topic", "too heated", "spam"], None ] assignee: Union[ - Union[ - WebhookIssueCommentEditedPropIssueAllof0PropAssigneeTypeForResponse, None - ], - None, + WebhookIssueCommentEditedPropIssueAllof0PropAssigneeTypeForResponse, None ] assignees: list[WebhookIssueCommentEditedPropIssueMergedAssigneesTypeForResponse] author_association: Literal[ @@ -124,7 +119,7 @@ class WebhookIssueCommentEditedPropIssueTypeForResponse(TypedDict): "NONE", "OWNER", ] - body: Union[Union[str, None], None] + body: Union[str, None] closed_at: Union[str, None] comments: int comments_url: str diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0735.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0735.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0735.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0735.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0736.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0736.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0736.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0736.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0737.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0737.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0737.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0737.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0738.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0738.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0738.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0738.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0739.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0739.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0739.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0739.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0740.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0740.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0740.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0740.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0741.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0741.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0741.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0741.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0742.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0742.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0742.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0742.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0743.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0743.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0743.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0743.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0744.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0744.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0744.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0744.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0745.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0745.py similarity index 96% rename from githubkit/versions/ghec_v2026_03_10/types/group_0745.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0745.py index 12138462df..110ee6275c 100644 --- a/githubkit/versions/ghec_v2026_03_10/types/group_0745.py +++ b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0745.py @@ -48,9 +48,7 @@ class WebhookIssueCommentPinnedPropIssueType(TypedDict): active_lock_reason: Union[ Literal["resolved", "off-topic", "too heated", "spam"], None ] - assignee: Union[ - Union[WebhookIssueCommentPinnedPropIssueAllof0PropAssigneeType, None], None - ] + assignee: Union[WebhookIssueCommentPinnedPropIssueAllof0PropAssigneeType, None] assignees: list[WebhookIssueCommentPinnedPropIssueMergedAssigneesType] author_association: Literal[ "COLLABORATOR", @@ -62,7 +60,7 @@ class WebhookIssueCommentPinnedPropIssueType(TypedDict): "NONE", "OWNER", ] - body: Union[Union[str, None], None] + body: Union[str, None] closed_at: Union[_dt.datetime, None] comments: int comments_url: str @@ -108,10 +106,7 @@ class WebhookIssueCommentPinnedPropIssueTypeForResponse(TypedDict): Literal["resolved", "off-topic", "too heated", "spam"], None ] assignee: Union[ - Union[ - WebhookIssueCommentPinnedPropIssueAllof0PropAssigneeTypeForResponse, None - ], - None, + WebhookIssueCommentPinnedPropIssueAllof0PropAssigneeTypeForResponse, None ] assignees: list[WebhookIssueCommentPinnedPropIssueMergedAssigneesTypeForResponse] author_association: Literal[ @@ -124,7 +119,7 @@ class WebhookIssueCommentPinnedPropIssueTypeForResponse(TypedDict): "NONE", "OWNER", ] - body: Union[Union[str, None], None] + body: Union[str, None] closed_at: Union[str, None] comments: int comments_url: str diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0746.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0746.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0746.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0746.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0747.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0747.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0747.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0747.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0748.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0748.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0748.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0748.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0749.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0749.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0749.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0749.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0750.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0750.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0750.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0750.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0751.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0751.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0751.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0751.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0752.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0752.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0752.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0752.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0753.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0753.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0753.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0753.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0754.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0754.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0754.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0754.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0755.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0755.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0755.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0755.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0756.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0756.py similarity index 96% rename from githubkit/versions/ghec_v2026_03_10/types/group_0756.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0756.py index 45dd4ce678..b666c4379d 100644 --- a/githubkit/versions/ghec_v2026_03_10/types/group_0756.py +++ b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0756.py @@ -48,9 +48,7 @@ class WebhookIssueCommentUnpinnedPropIssueType(TypedDict): active_lock_reason: Union[ Literal["resolved", "off-topic", "too heated", "spam"], None ] - assignee: Union[ - Union[WebhookIssueCommentUnpinnedPropIssueAllof0PropAssigneeType, None], None - ] + assignee: Union[WebhookIssueCommentUnpinnedPropIssueAllof0PropAssigneeType, None] assignees: list[WebhookIssueCommentUnpinnedPropIssueMergedAssigneesType] author_association: Literal[ "COLLABORATOR", @@ -62,7 +60,7 @@ class WebhookIssueCommentUnpinnedPropIssueType(TypedDict): "NONE", "OWNER", ] - body: Union[Union[str, None], None] + body: Union[str, None] closed_at: Union[_dt.datetime, None] comments: int comments_url: str @@ -108,10 +106,7 @@ class WebhookIssueCommentUnpinnedPropIssueTypeForResponse(TypedDict): Literal["resolved", "off-topic", "too heated", "spam"], None ] assignee: Union[ - Union[ - WebhookIssueCommentUnpinnedPropIssueAllof0PropAssigneeTypeForResponse, None - ], - None, + WebhookIssueCommentUnpinnedPropIssueAllof0PropAssigneeTypeForResponse, None ] assignees: list[WebhookIssueCommentUnpinnedPropIssueMergedAssigneesTypeForResponse] author_association: Literal[ @@ -124,7 +119,7 @@ class WebhookIssueCommentUnpinnedPropIssueTypeForResponse(TypedDict): "NONE", "OWNER", ] - body: Union[Union[str, None], None] + body: Union[str, None] closed_at: Union[str, None] comments: int comments_url: str diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0757.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0757.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0757.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0757.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0758.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0758.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0758.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0758.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0759.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0759.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0759.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0759.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0760.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0760.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0760.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0760.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0761.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0761.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0761.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0761.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0762.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0762.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0762.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0762.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0763.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0763.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0763.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0763.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0764.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0764.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0764.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0764.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0765.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0765.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0765.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0765.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0766.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0766.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0766.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0766.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0767.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0767.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0767.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0767.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0768.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0768.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0768.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0768.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0769.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0769.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0769.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0769.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0770.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0770.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0770.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0770.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0771.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0771.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0771.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0771.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0772.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0772.py similarity index 99% rename from githubkit/versions/ghec_v2026_03_10/types/group_0772.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0772.py index b72cb24645..37765d76df 100644 --- a/githubkit/versions/ghec_v2026_03_10/types/group_0772.py +++ b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0772.py @@ -58,7 +58,7 @@ class WebhookIssuesClosedPropIssueType(TypedDict): "NONE", "OWNER", ] - body: Union[Union[str, None], None] + body: Union[str, None] closed_at: Union[_dt.datetime, None] comments: int comments_url: str @@ -117,7 +117,7 @@ class WebhookIssuesClosedPropIssueTypeForResponse(TypedDict): "NONE", "OWNER", ] - body: Union[Union[str, None], None] + body: Union[str, None] closed_at: Union[str, None] comments: int comments_url: str diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0773.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0773.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0773.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0773.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0774.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0774.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0774.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0774.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0775.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0775.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0775.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0775.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0776.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0776.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0776.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0776.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0777.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0777.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0777.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0777.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0778.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0778.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0778.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0778.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0779.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0779.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0779.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0779.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0780.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0780.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0780.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0780.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0781.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0781.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0781.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0781.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0782.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0782.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0782.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0782.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0783.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0783.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0783.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0783.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0784.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0784.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0784.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0784.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0785.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0785.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0785.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0785.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0786.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0786.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0786.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0786.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0787.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0787.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0787.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0787.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0788.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0788.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0788.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0788.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0789.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0789.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0789.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0789.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0790.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0790.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0790.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0790.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0791.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0791.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0791.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0791.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0792.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0792.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0792.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0792.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0793.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0793.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0793.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0793.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0794.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0794.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0794.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0794.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0795.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0795.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0795.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0795.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0796.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0796.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0796.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0796.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0797.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0797.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0797.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0797.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0798.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0798.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0798.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0798.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0799.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0799.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0799.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0799.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0800.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0800.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0800.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0800.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0801.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0801.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0801.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0801.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0802.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0802.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0802.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0802.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0803.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0803.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0803.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0803.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0804.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0804.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0804.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0804.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0805.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0805.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0805.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0805.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0806.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0806.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0806.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0806.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0807.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0807.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0807.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0807.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0808.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0808.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0808.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0808.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0809.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0809.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0809.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0809.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0810.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0810.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0810.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0810.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0811.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0811.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0811.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0811.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0812.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0812.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0812.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0812.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0813.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0813.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0813.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0813.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0814.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0814.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0814.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0814.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0815.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0815.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0815.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0815.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0816.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0816.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0816.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0816.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0817.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0817.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0817.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0817.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0818.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0818.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0818.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0818.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0819.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0819.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0819.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0819.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0820.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0820.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0820.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0820.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0821.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0821.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0821.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0821.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0822.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0822.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0822.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0822.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0823.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0823.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0823.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0823.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0824.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0824.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0824.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0824.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0825.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0825.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0825.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0825.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0826.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0826.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0826.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0826.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0827.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0827.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0827.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0827.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0828.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0828.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0828.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0828.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0829.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0829.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0829.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0829.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0830.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0830.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0830.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0830.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0831.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0831.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0831.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0831.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0832.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0832.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0832.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0832.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0833.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0833.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0833.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0833.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0834.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0834.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0834.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0834.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0835.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0835.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0835.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0835.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0836.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0836.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0836.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0836.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0837.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0837.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0837.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0837.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0838.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0838.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0838.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0838.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0839.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0839.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0839.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0839.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0840.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0840.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0840.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0840.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0841.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0841.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0841.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0841.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0842.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0842.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0842.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0842.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0843.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0843.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0843.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0843.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0844.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0844.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0844.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0844.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0845.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0845.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0845.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0845.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0846.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0846.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0846.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0846.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0847.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0847.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0847.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0847.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0848.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0848.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0848.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0848.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0849.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0849.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0849.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0849.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0850.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0850.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0850.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0850.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0851.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0851.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0851.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0851.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0852.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0852.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0852.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0852.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0853.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0853.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0853.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0853.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0854.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0854.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0854.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0854.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0855.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0855.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0855.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0855.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0856.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0856.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0856.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0856.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0857.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0857.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0857.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0857.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0858.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0858.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0858.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0858.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0859.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0859.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0859.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0859.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0860.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0860.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0860.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0860.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0861.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0861.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0861.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0861.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0862.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0862.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0862.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0862.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0863.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0863.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0863.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0863.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0864.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0864.py similarity index 97% rename from githubkit/versions/ghec_v2026_03_10/types/group_0864.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0864.py index a550db934a..48d37e09af 100644 --- a/githubkit/versions/ghec_v2026_03_10/types/group_0864.py +++ b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0864.py @@ -76,7 +76,7 @@ class WebhookProjectCardMovedPropChangesPropColumnIdTypeForResponse(TypedDict): class WebhookProjectCardMovedPropProjectCardType(TypedDict): """WebhookProjectCardMovedPropProjectCard""" - after_id: Union[Union[int, None], None] + after_id: Union[int, None] archived: bool column_id: int column_url: str @@ -85,7 +85,7 @@ class WebhookProjectCardMovedPropProjectCardType(TypedDict): creator: Union[WebhookProjectCardMovedPropProjectCardMergedCreatorType, None] id: int node_id: str - note: Union[Union[str, None], None] + note: Union[str, None] project_url: str updated_at: _dt.datetime url: str @@ -94,7 +94,7 @@ class WebhookProjectCardMovedPropProjectCardType(TypedDict): class WebhookProjectCardMovedPropProjectCardTypeForResponse(TypedDict): """WebhookProjectCardMovedPropProjectCard""" - after_id: Union[Union[int, None], None] + after_id: Union[int, None] archived: bool column_id: int column_url: str @@ -105,7 +105,7 @@ class WebhookProjectCardMovedPropProjectCardTypeForResponse(TypedDict): ] id: int node_id: str - note: Union[Union[str, None], None] + note: Union[str, None] project_url: str updated_at: str url: str diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0865.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0865.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0865.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0865.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0866.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0866.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0866.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0866.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0867.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0867.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0867.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0867.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0868.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0868.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0868.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0868.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0869.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0869.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0869.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0869.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0870.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0870.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0870.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0870.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0871.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0871.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0871.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0871.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0872.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0872.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0872.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0872.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0873.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0873.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0873.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0873.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0874.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0874.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0874.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0874.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0875.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0875.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0875.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0875.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0876.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0876.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0876.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0876.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0877.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0877.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0877.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0877.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0878.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0878.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0878.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0878.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0879.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0879.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0879.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0879.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0880.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0880.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0880.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0880.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0881.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0881.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0881.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0881.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0882.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0882.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0882.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0882.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0883.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0883.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0883.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0883.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0884.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0884.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0884.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0884.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0885.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0885.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0885.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0885.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0886.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0886.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0886.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0886.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0887.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0887.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0887.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0887.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0888.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0888.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0888.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0888.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0889.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0889.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0889.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0889.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0890.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0890.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0890.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0890.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0891.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0891.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0891.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0891.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0892.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0892.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0892.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0892.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0893.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0893.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0893.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0893.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0894.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0894.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0894.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0894.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0895.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0895.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0895.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0895.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0896.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0896.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0896.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0896.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0897.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0897.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0897.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0897.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0898.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0898.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0898.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0898.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0899.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0899.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0899.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0899.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0900.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0900.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0900.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0900.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0901.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0901.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0901.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0901.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0902.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0902.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0902.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0902.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0903.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0903.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0903.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0903.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0904.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0904.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0904.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0904.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0905.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0905.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0905.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0905.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0906.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0906.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0906.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0906.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0907.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0907.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0907.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0907.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0908.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0908.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0908.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0908.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0909.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0909.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0909.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0909.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0910.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0910.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0910.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0910.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0911.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0911.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0911.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0911.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0912.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0912.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0912.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0912.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0913.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0913.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0913.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0913.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0914.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0914.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0914.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0914.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0915.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0915.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0915.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0915.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0916.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0916.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0916.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0916.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0917.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0917.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0917.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0917.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0918.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0918.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0918.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0918.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0919.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0919.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0919.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0919.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0920.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0920.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0920.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0920.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0921.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0921.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0921.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0921.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0922.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0922.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0922.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0922.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0923.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0923.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0923.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0923.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0924.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0924.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0924.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0924.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0925.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0925.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0925.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0925.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0926.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0926.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0926.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0926.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0927.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0927.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0927.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0927.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0928.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0928.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0928.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0928.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0929.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0929.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0929.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0929.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0930.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0930.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0930.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0930.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0931.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0931.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0931.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0931.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0932.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0932.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0932.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0932.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0933.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0933.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0933.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0933.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0934.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0934.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0934.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0934.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0935.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0935.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0935.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0935.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0936.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0936.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0936.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0936.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0937.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0937.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0937.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0937.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0938.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0938.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0938.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0938.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0939.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0939.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0939.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0939.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0940.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0940.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0940.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0940.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0941.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0941.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0941.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0941.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0942.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0942.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0942.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0942.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0943.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0943.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0943.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0943.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0944.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0944.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0944.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0944.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0945.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0945.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0945.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0945.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0946.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0946.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0946.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0946.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0947.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0947.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0947.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0947.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0948.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0948.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0948.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0948.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0949.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0949.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0949.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0949.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0950.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0950.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0950.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0950.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0951.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0951.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0951.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0951.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0952.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0952.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0952.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0952.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0953.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0953.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0953.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0953.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0954.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0954.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0954.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0954.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0955.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0955.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0955.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0955.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0956.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0956.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0956.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0956.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0957.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0957.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0957.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0957.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0958.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0958.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0958.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0958.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0959.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0959.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0959.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0959.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0960.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0960.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0960.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0960.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0961.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0961.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0961.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0961.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0962.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0962.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0962.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0962.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0963.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0963.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0963.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0963.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0964.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0964.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0964.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0964.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0965.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0965.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0965.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0965.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0966.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0966.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0966.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0966.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0967.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0967.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0967.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0967.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0968.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0968.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0968.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0968.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0969.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0969.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0969.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0969.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0970.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0970.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0970.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0970.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0971.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0971.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0971.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0971.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0972.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0972.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0972.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0972.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0973.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0973.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0973.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0973.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0974.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0974.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0974.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0974.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0975.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0975.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0975.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0975.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0976.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0976.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0976.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0976.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0977.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0977.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0977.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0977.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0978.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0978.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0978.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0978.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0979.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0979.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0979.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0979.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0980.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0980.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0980.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0980.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0981.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0981.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0981.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0981.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0982.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0982.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0982.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0982.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0983.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0983.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0983.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0983.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0984.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0984.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0984.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0984.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0985.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0985.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0985.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0985.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0986.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0986.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0986.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0986.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0987.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0987.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0987.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0987.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0988.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0988.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0988.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0988.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0989.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0989.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0989.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0989.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0990.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0990.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0990.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0990.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0991.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0991.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0991.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0991.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0992.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0992.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0992.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0992.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0993.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0993.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0993.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0993.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0994.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0994.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0994.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0994.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0995.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0995.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0995.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0995.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0996.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0996.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0996.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0996.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0997.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0997.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0997.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0997.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0998.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0998.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0998.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0998.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_0999.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0999.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_0999.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_0999.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1000.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1000.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1000.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1000.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1001.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1001.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1001.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1001.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1002.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1002.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1002.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1002.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1003.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1003.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1003.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1003.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1004.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1004.py similarity index 88% rename from githubkit/versions/ghec_v2026_03_10/types/group_1004.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1004.py index 8c5c98a2f8..19edaf3d5b 100644 --- a/githubkit/versions/ghec_v2026_03_10/types/group_1004.py +++ b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1004.py @@ -73,14 +73,14 @@ class WebhookWorkflowJobCompletedPropWorkflowJobType(TypedDict): run_attempt: int run_id: int run_url: str - runner_group_id: Union[Union[int, None], None] - runner_group_name: Union[Union[str, None], None] - runner_id: Union[Union[int, None], None] - runner_name: Union[Union[str, None], None] + runner_group_id: Union[int, None] + runner_group_name: Union[str, None] + runner_id: Union[int, None] + runner_name: Union[str, None] started_at: str status: Literal["queued", "in_progress", "completed", "waiting"] - head_branch: Union[Union[str, None], None] - workflow_name: Union[Union[str, None], None] + head_branch: Union[str, None] + workflow_name: Union[str, None] steps: list[WebhookWorkflowJobCompletedPropWorkflowJobMergedStepsType] url: str @@ -109,14 +109,14 @@ class WebhookWorkflowJobCompletedPropWorkflowJobTypeForResponse(TypedDict): run_attempt: int run_id: int run_url: str - runner_group_id: Union[Union[int, None], None] - runner_group_name: Union[Union[str, None], None] - runner_id: Union[Union[int, None], None] - runner_name: Union[Union[str, None], None] + runner_group_id: Union[int, None] + runner_group_name: Union[str, None] + runner_id: Union[int, None] + runner_name: Union[str, None] started_at: str status: Literal["queued", "in_progress", "completed", "waiting"] - head_branch: Union[Union[str, None], None] - workflow_name: Union[Union[str, None], None] + head_branch: Union[str, None] + workflow_name: Union[str, None] steps: list[WebhookWorkflowJobCompletedPropWorkflowJobMergedStepsTypeForResponse] url: str diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1005.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1005.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1005.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1005.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1006.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1006.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1006.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1006.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1007.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1007.py similarity index 82% rename from githubkit/versions/ghec_v2026_03_10/types/group_1007.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1007.py index a20e352335..0ff1d65445 100644 --- a/githubkit/versions/ghec_v2026_03_10/types/group_1007.py +++ b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1007.py @@ -53,7 +53,7 @@ class WebhookWorkflowJobInProgressPropWorkflowJobType(TypedDict): """WebhookWorkflowJobInProgressPropWorkflowJob""" check_run_url: str - completed_at: Union[Union[str, None], None] + completed_at: Union[str, None] conclusion: Union[Literal["success", "failure", "cancelled", "neutral"], None] created_at: str head_sha: str @@ -65,14 +65,14 @@ class WebhookWorkflowJobInProgressPropWorkflowJobType(TypedDict): run_attempt: int run_id: int run_url: str - runner_group_id: Union[Union[int, None], None] - runner_group_name: Union[Union[str, None], None] - runner_id: Union[Union[int, None], None] - runner_name: Union[Union[str, None], None] + runner_group_id: Union[int, None] + runner_group_name: Union[str, None] + runner_id: Union[int, None] + runner_name: Union[str, None] started_at: str status: Literal["queued", "in_progress", "completed"] - head_branch: Union[Union[str, None], None] - workflow_name: Union[Union[str, None], None] + head_branch: Union[str, None] + workflow_name: Union[str, None] steps: list[WebhookWorkflowJobInProgressPropWorkflowJobMergedStepsType] url: str @@ -81,7 +81,7 @@ class WebhookWorkflowJobInProgressPropWorkflowJobTypeForResponse(TypedDict): """WebhookWorkflowJobInProgressPropWorkflowJob""" check_run_url: str - completed_at: Union[Union[str, None], None] + completed_at: Union[str, None] conclusion: Union[Literal["success", "failure", "cancelled", "neutral"], None] created_at: str head_sha: str @@ -93,14 +93,14 @@ class WebhookWorkflowJobInProgressPropWorkflowJobTypeForResponse(TypedDict): run_attempt: int run_id: int run_url: str - runner_group_id: Union[Union[int, None], None] - runner_group_name: Union[Union[str, None], None] - runner_id: Union[Union[int, None], None] - runner_name: Union[Union[str, None], None] + runner_group_id: Union[int, None] + runner_group_name: Union[str, None] + runner_id: Union[int, None] + runner_name: Union[str, None] started_at: str status: Literal["queued", "in_progress", "completed"] - head_branch: Union[Union[str, None], None] - workflow_name: Union[Union[str, None], None] + head_branch: Union[str, None] + workflow_name: Union[str, None] steps: list[WebhookWorkflowJobInProgressPropWorkflowJobMergedStepsTypeForResponse] url: str @@ -108,22 +108,22 @@ class WebhookWorkflowJobInProgressPropWorkflowJobTypeForResponse(TypedDict): class WebhookWorkflowJobInProgressPropWorkflowJobMergedStepsType(TypedDict): """WebhookWorkflowJobInProgressPropWorkflowJobMergedSteps""" - completed_at: Union[Union[str, None], None] + completed_at: Union[str, None] conclusion: Union[Literal["failure", "skipped", "success", "cancelled"], None] name: str number: int - started_at: Union[Union[str, None], None] + started_at: Union[str, None] status: Literal["in_progress", "completed", "queued", "pending"] class WebhookWorkflowJobInProgressPropWorkflowJobMergedStepsTypeForResponse(TypedDict): """WebhookWorkflowJobInProgressPropWorkflowJobMergedSteps""" - completed_at: Union[Union[str, None], None] + completed_at: Union[str, None] conclusion: Union[Literal["failure", "skipped", "success", "cancelled"], None] name: str number: int - started_at: Union[Union[str, None], None] + started_at: Union[str, None] status: Literal["in_progress", "completed", "queued", "pending"] diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1008.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1008.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1008.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1008.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1009.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1009.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1009.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1009.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1010.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1010.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1010.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1010.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1011.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1011.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1011.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1011.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1012.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1012.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1012.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1012.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1013.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1013.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1013.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1013.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1014.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1014.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1014.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1014.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1015.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1015.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1015.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1015.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1016.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1016.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1016.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1016.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1017.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1017.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1017.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1017.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1018.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1018.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1018.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1018.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1019.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1019.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1019.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1019.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1020.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1020.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1020.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1020.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1021.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1021.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1021.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1021.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1022.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1022.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1022.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1022.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1023.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1023.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1023.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1023.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1024.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1024.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1024.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1024.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1025.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1025.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1025.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1025.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1026.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1026.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1026.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1026.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1027.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1027.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1027.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1027.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1028.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1028.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1028.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1028.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1029.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1029.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1029.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1029.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1030.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1030.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1030.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1030.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1031.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1031.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1031.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1031.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1032.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1032.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1032.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1032.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1033.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1033.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1033.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1033.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1034.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1034.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1034.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1034.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1035.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1035.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1035.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1035.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1036.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1036.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1036.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1036.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1037.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1037.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1037.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1037.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1038.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1038.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1038.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1038.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1039.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1039.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1039.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1039.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1040.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1040.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1040.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1040.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1041.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1041.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1041.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1041.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1042.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1042.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1042.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1042.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1043.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1043.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1043.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1043.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1044.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1044.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1044.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1044.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1045.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1045.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1045.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1045.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1046.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1046.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1046.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1046.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1047.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1047.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1047.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1047.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1048.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1048.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1048.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1048.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1049.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1049.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1049.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1049.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1050.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1050.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1050.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1050.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1051.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1051.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1051.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1051.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1052.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1052.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1052.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1052.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1053.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1053.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1053.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1053.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1054.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1054.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1054.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1054.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1055.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1055.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1055.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1055.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1056.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1056.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1056.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1056.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1057.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1057.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1057.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1057.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1058.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1058.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1058.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1058.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1059.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1059.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1059.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1059.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1060.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1060.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1060.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1060.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1061.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1061.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1061.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1061.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1062.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1062.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1062.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1062.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1063.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1063.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1063.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1063.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1064.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1064.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1064.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1064.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1065.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1065.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1065.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1065.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1066.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1066.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1066.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1066.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1067.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1067.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1067.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1067.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1068.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1068.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1068.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1068.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1069.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1069.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1069.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1069.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1070.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1070.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1070.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1070.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1071.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1071.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1071.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1071.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1072.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1072.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1072.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1072.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1073.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1073.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1073.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1073.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1074.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1074.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1074.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1074.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1075.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1075.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1075.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1075.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1076.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1076.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1076.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1076.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1077.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1077.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1077.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1077.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1078.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1078.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1078.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1078.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1079.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1079.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1079.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1079.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1080.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1080.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1080.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1080.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1081.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1081.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1081.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1081.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1082.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1082.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1082.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1082.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1083.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1083.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1083.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1083.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1084.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1084.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1084.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1084.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1085.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1085.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1085.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1085.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1086.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1086.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1086.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1086.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1087.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1087.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1087.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1087.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1088.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1088.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1088.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1088.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1089.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1089.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1089.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1089.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1090.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1090.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1090.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1090.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1091.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1091.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1091.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1091.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1092.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1092.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1092.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1092.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1093.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1093.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1093.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1093.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1094.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1094.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1094.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1094.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1095.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1095.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1095.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1095.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1096.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1096.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1096.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1096.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1097.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1097.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1097.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1097.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1098.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1098.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1098.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1098.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1099.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1099.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1099.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1099.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1100.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1100.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1100.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1100.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1101.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1101.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1101.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1101.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1102.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1102.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1102.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1102.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1103.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1103.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1103.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1103.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1104.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1104.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1104.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1104.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1105.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1105.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1105.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1105.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1106.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1106.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1106.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1106.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1107.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1107.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1107.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1107.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1108.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1108.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1108.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1108.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1109.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1109.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1109.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1109.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1110.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1110.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1110.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1110.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1111.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1111.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1111.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1111.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1112.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1112.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1112.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1112.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1113.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1113.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1113.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1113.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1114.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1114.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1114.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1114.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1115.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1115.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1115.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1115.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1116.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1116.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1116.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1116.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1117.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1117.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1117.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1117.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1118.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1118.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1118.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1118.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1119.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1119.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1119.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1119.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1120.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1120.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1120.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1120.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1121.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1121.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1121.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1121.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1122.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1122.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1122.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1122.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1123.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1123.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1123.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1123.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1124.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1124.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1124.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1124.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1125.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1125.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1125.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1125.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1126.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1126.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1126.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1126.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1127.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1127.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1127.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1127.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1128.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1128.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1128.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1128.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1129.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1129.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1129.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1129.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1130.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1130.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1130.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1130.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1131.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1131.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1131.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1131.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1132.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1132.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1132.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1132.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1133.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1133.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1133.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1133.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1134.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1134.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1134.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1134.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1135.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1135.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1135.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1135.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1136.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1136.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1136.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1136.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1137.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1137.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1137.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1137.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1138.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1138.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1138.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1138.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1139.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1139.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1139.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1139.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1140.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1140.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1140.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1140.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1141.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1141.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1141.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1141.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1142.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1142.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1142.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1142.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1143.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1143.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1143.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1143.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1144.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1144.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1144.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1144.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1145.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1145.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1145.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1145.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1146.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1146.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1146.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1146.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1147.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1147.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1147.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1147.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1148.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1148.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1148.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1148.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1149.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1149.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1149.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1149.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1150.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1150.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1150.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1150.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1151.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1151.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1151.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1151.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1152.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1152.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1152.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1152.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1153.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1153.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1153.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1153.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1154.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1154.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1154.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1154.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1155.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1155.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1155.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1155.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1156.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1156.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1156.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1156.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1157.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1157.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1157.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1157.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1158.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1158.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1158.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1158.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1159.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1159.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1159.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1159.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1160.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1160.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1160.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1160.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1161.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1161.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1161.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1161.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1162.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1162.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1162.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1162.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1163.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1163.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1163.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1163.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1164.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1164.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1164.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1164.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1165.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1165.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1165.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1165.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1166.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1166.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1166.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1166.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1167.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1167.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1167.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1167.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1168.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1168.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1168.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1168.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1169.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1169.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1169.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1169.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1170.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1170.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1170.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1170.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1171.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1171.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1171.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1171.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1172.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1172.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1172.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1172.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1173.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1173.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1173.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1173.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1174.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1174.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1174.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1174.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1175.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1175.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1175.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1175.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1176.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1176.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1176.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1176.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1177.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1177.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1177.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1177.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1178.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1178.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1178.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1178.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1179.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1179.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1179.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1179.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1180.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1180.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1180.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1180.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1181.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1181.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1181.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1181.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1182.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1182.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1182.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1182.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1183.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1183.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1183.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1183.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1184.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1184.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1184.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1184.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1185.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1185.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1185.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1185.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1186.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1186.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1186.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1186.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1187.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1187.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1187.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1187.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1188.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1188.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1188.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1188.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1189.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1189.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1189.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1189.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1190.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1190.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1190.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1190.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1191.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1191.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1191.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1191.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1192.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1192.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1192.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1192.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1193.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1193.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1193.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1193.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1194.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1194.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1194.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1194.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1195.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1195.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1195.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1195.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1196.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1196.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1196.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1196.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1197.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1197.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1197.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1197.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1198.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1198.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1198.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1198.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1199.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1199.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1199.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1199.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1200.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1200.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1200.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1200.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1201.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1201.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1201.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1201.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1202.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1202.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1202.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1202.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1203.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1203.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1203.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1203.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1204.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1204.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1204.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1204.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1205.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1205.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1205.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1205.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1206.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1206.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1206.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1206.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1207.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1207.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1207.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1207.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1208.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1208.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1208.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1208.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1209.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1209.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1209.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1209.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1210.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1210.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1210.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1210.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1211.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1211.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1211.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1211.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1212.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1212.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1212.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1212.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1213.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1213.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1213.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1213.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1214.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1214.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1214.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1214.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1215.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1215.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1215.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1215.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1216.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1216.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1216.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1216.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1217.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1217.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1217.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1217.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1218.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1218.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1218.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1218.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1219.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1219.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1219.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1219.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1220.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1220.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1220.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1220.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1221.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1221.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1221.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1221.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1222.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1222.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1222.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1222.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1223.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1223.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1223.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1223.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1224.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1224.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1224.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1224.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1225.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1225.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1225.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1225.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1226.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1226.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1226.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1226.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1227.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1227.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1227.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1227.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1228.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1228.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1228.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1228.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1229.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1229.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1229.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1229.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1230.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1230.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1230.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1230.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1231.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1231.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1231.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1231.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1232.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1232.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1232.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1232.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1233.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1233.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1233.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1233.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1234.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1234.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1234.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1234.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1235.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1235.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1235.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1235.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1236.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1236.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1236.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1236.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1237.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1237.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1237.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1237.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1238.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1238.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1238.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1238.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1239.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1239.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1239.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1239.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1240.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1240.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1240.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1240.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1241.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1241.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1241.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1241.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1242.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1242.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1242.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1242.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1243.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1243.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1243.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1243.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1244.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1244.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1244.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1244.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1245.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1245.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1245.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1245.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1246.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1246.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1246.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1246.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1247.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1247.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1247.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1247.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1248.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1248.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1248.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1248.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1249.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1249.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1249.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1249.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1250.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1250.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1250.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1250.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1251.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1251.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1251.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1251.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1252.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1252.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1252.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1252.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1253.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1253.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1253.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1253.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1254.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1254.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1254.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1254.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1255.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1255.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1255.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1255.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1256.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1256.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1256.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1256.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1257.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1257.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1257.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1257.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1258.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1258.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1258.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1258.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1259.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1259.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1259.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1259.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1260.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1260.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1260.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1260.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1261.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1261.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1261.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1261.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1262.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1262.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1262.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1262.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1263.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1263.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1263.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1263.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1264.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1264.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1264.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1264.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1265.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1265.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1265.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1265.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1266.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1266.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1266.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1266.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1267.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1267.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1267.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1267.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1268.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1268.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1268.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1268.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1269.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1269.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1269.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1269.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1270.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1270.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1270.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1270.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1271.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1271.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1271.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1271.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1272.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1272.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1272.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1272.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1273.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1273.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1273.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1273.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1274.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1274.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1274.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1274.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1275.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1275.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1275.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1275.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1276.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1276.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1276.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1276.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1277.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1277.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1277.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1277.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1278.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1278.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1278.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1278.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1279.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1279.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1279.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1279.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1280.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1280.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1280.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1280.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1281.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1281.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1281.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1281.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1282.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1282.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1282.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1282.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1283.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1283.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1283.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1283.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1284.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1284.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1284.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1284.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1285.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1285.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1285.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1285.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1286.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1286.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1286.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1286.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1287.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1287.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1287.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1287.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1288.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1288.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1288.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1288.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1289.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1289.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1289.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1289.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1290.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1290.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1290.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1290.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1291.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1291.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1291.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1291.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1292.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1292.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1292.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1292.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1293.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1293.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1293.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1293.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1294.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1294.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1294.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1294.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1295.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1295.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1295.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1295.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1296.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1296.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1296.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1296.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1297.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1297.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1297.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1297.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1298.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1298.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1298.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1298.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1299.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1299.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1299.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1299.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1300.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1300.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1300.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1300.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1301.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1301.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1301.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1301.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1302.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1302.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1302.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1302.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1303.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1303.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1303.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1303.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1304.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1304.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1304.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1304.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1305.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1305.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1305.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1305.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1306.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1306.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1306.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1306.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1307.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1307.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1307.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1307.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1308.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1308.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1308.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1308.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1309.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1309.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1309.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1309.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1310.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1310.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1310.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1310.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1311.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1311.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1311.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1311.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1312.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1312.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1312.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1312.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1313.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1313.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1313.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1313.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1314.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1314.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1314.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1314.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1315.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1315.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1315.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1315.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1316.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1316.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1316.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1316.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1317.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1317.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1317.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1317.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1318.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1318.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1318.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1318.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1319.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1319.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1319.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1319.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1320.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1320.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1320.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1320.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1321.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1321.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1321.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1321.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1322.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1322.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1322.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1322.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1323.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1323.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1323.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1323.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1324.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1324.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1324.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1324.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1325.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1325.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1325.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1325.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1326.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1326.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1326.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1326.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1327.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1327.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1327.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1327.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1328.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1328.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1328.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1328.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1329.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1329.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1329.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1329.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1330.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1330.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1330.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1330.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1331.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1331.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1331.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1331.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1332.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1332.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1332.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1332.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1333.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1333.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1333.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1333.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1334.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1334.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1334.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1334.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1335.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1335.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1335.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1335.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1336.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1336.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1336.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1336.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1337.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1337.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1337.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1337.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1338.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1338.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1338.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1338.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1339.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1339.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1339.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1339.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1340.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1340.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1340.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1340.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1341.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1341.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1341.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1341.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1342.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1342.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1342.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1342.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1343.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1343.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1343.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1343.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1344.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1344.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1344.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1344.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1345.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1345.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1345.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1345.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1346.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1346.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1346.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1346.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1347.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1347.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1347.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1347.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1348.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1348.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1348.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1348.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1349.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1349.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1349.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1349.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1350.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1350.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1350.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1350.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1351.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1351.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1351.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1351.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1352.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1352.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1352.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1352.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1353.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1353.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1353.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1353.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1354.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1354.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1354.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1354.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1355.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1355.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1355.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1355.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1356.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1356.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1356.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1356.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1357.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1357.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1357.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1357.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1358.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1358.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1358.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1358.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1359.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1359.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1359.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1359.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1360.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1360.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1360.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1360.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1361.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1361.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1361.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1361.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1362.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1362.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1362.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1362.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1363.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1363.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1363.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1363.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1364.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1364.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1364.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1364.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1365.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1365.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1365.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1365.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1366.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1366.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1366.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1366.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1367.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1367.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1367.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1367.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1368.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1368.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1368.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1368.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1369.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1369.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1369.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1369.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1370.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1370.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1370.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1370.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1371.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1371.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1371.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1371.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1372.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1372.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1372.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1372.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1373.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1373.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1373.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1373.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1374.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1374.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1374.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1374.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1375.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1375.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1375.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1375.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1376.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1376.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1376.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1376.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1377.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1377.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1377.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1377.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1378.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1378.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1378.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1378.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1379.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1379.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1379.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1379.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1380.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1380.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1380.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1380.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1381.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1381.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1381.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1381.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1382.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1382.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1382.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1382.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1383.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1383.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1383.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1383.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1384.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1384.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1384.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1384.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1385.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1385.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1385.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1385.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1386.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1386.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1386.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1386.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1387.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1387.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1387.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1387.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1388.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1388.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1388.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1388.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1389.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1389.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1389.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1389.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1390.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1390.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1390.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1390.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1391.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1391.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1391.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1391.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1392.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1392.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1392.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1392.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1393.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1393.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1393.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1393.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1394.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1394.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1394.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1394.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1395.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1395.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1395.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1395.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1396.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1396.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1396.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1396.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1397.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1397.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1397.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1397.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1398.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1398.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1398.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1398.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1399.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1399.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1399.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1399.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1400.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1400.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1400.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1400.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1401.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1401.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1401.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1401.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1402.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1402.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1402.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1402.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1403.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1403.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1403.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1403.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1404.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1404.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1404.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1404.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1405.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1405.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1405.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1405.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1406.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1406.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1406.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1406.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1407.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1407.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1407.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1407.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1408.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1408.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1408.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1408.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1409.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1409.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1409.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1409.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1410.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1410.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1410.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1410.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1411.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1411.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1411.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1411.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1412.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1412.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1412.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1412.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1413.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1413.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1413.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1413.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1414.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1414.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1414.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1414.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1415.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1415.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1415.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1415.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1416.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1416.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1416.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1416.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1417.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1417.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1417.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1417.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1418.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1418.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1418.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1418.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1419.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1419.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1419.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1419.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1420.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1420.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1420.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1420.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1421.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1421.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1421.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1421.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1422.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1422.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1422.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1422.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1423.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1423.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1423.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1423.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1424.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1424.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1424.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1424.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1425.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1425.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1425.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1425.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1426.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1426.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1426.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1426.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1427.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1427.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1427.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1427.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1428.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1428.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1428.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1428.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1429.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1429.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1429.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1429.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1430.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1430.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1430.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1430.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1431.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1431.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1431.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1431.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1432.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1432.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1432.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1432.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1433.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1433.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1433.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1433.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1434.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1434.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1434.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1434.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1435.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1435.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1435.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1435.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1436.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1436.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1436.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1436.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1437.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1437.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1437.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1437.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1438.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1438.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1438.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1438.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1439.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1439.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1439.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1439.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1440.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1440.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1440.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1440.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1441.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1441.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1441.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1441.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1442.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1442.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1442.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1442.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1443.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1443.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1443.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1443.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1444.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1444.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1444.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1444.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1445.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1445.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1445.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1445.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1446.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1446.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1446.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1446.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1447.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1447.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1447.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1447.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1448.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1448.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1448.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1448.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1449.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1449.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1449.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1449.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1450.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1450.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1450.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1450.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1451.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1451.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1451.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1451.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1452.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1452.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1452.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1452.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1453.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1453.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1453.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1453.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1454.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1454.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1454.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1454.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1455.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1455.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1455.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1455.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1456.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1456.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1456.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1456.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1457.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1457.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1457.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1457.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1458.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1458.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1458.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1458.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1459.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1459.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1459.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1459.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1460.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1460.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1460.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1460.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1461.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1461.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1461.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1461.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1462.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1462.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1462.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1462.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1463.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1463.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1463.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1463.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1464.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1464.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1464.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1464.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1465.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1465.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1465.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1465.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1466.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1466.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1466.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1466.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1467.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1467.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1467.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1467.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1468.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1468.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1468.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1468.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1469.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1469.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1469.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1469.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1470.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1470.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1470.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1470.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1471.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1471.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1471.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1471.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1472.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1472.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1472.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1472.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1473.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1473.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1473.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1473.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1474.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1474.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1474.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1474.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1475.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1475.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1475.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1475.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1476.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1476.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1476.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1476.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1477.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1477.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1477.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1477.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1478.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1478.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1478.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1478.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1479.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1479.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1479.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1479.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1480.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1480.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1480.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1480.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1481.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1481.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1481.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1481.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1482.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1482.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1482.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1482.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1483.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1483.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1483.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1483.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1484.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1484.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1484.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1484.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1485.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1485.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1485.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1485.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1486.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1486.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1486.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1486.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1487.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1487.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1487.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1487.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1488.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1488.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1488.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1488.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1489.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1489.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1489.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1489.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1490.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1490.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1490.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1490.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1491.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1491.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1491.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1491.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1492.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1492.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1492.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1492.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1493.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1493.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1493.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1493.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1494.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1494.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1494.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1494.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1495.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1495.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1495.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1495.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1496.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1496.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1496.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1496.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1497.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1497.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1497.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1497.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1498.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1498.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1498.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1498.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1499.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1499.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1499.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1499.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1500.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1500.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1500.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1500.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1501.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1501.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1501.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1501.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1502.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1502.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1502.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1502.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1503.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1503.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1503.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1503.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1504.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1504.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1504.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1504.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1505.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1505.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1505.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1505.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1506.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1506.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1506.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1506.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1507.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1507.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1507.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1507.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1508.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1508.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1508.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1508.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1509.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1509.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1509.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1509.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1510.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1510.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1510.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1510.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1511.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1511.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1511.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1511.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1512.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1512.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1512.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1512.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1513.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1513.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1513.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1513.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1514.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1514.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1514.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1514.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1515.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1515.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1515.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1515.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1516.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1516.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1516.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1516.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1517.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1517.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1517.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1517.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1518.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1518.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1518.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1518.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1519.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1519.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1519.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1519.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1520.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1520.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1520.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1520.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1521.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1521.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1521.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1521.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1522.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1522.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1522.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1522.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1523.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1523.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1523.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1523.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1524.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1524.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1524.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1524.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1525.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1525.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1525.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1525.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1526.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1526.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1526.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1526.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1527.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1527.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1527.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1527.py diff --git a/githubkit/versions/ghec_v2026_03_10/types/group_1528.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1528.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/types/group_1528.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/types/group_1528.py diff --git a/githubkit/versions/ghec_v2022_11_28/webhooks/__init__.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/webhooks/__init__.py similarity index 99% rename from githubkit/versions/ghec_v2022_11_28/webhooks/__init__.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/webhooks/__init__.py index 29d8cb0857..4da24586d8 100644 --- a/githubkit/versions/ghec_v2022_11_28/webhooks/__init__.py +++ b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/webhooks/__init__.py @@ -9,7 +9,7 @@ from typing import TYPE_CHECKING -from githubkit.lazy_module import is_lazy_disabled +from githubkit.module_hooks.lazy_module import is_lazy_disabled if TYPE_CHECKING or is_lazy_disabled(): from ._namespace import VALID_EVENT_NAMES as VALID_EVENT_NAMES diff --git a/githubkit/versions/ghec_v2026_03_10/webhooks/_namespace.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/webhooks/_namespace.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/webhooks/_namespace.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/webhooks/_namespace.py diff --git a/githubkit/versions/ghec_v2026_03_10/webhooks/_types.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/webhooks/_types.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/webhooks/_types.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/webhooks/_types.py diff --git a/githubkit/versions/v2026_03_10/webhooks/branch_protection_configuration.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/webhooks/branch_protection_configuration.py similarity index 100% rename from githubkit/versions/v2026_03_10/webhooks/branch_protection_configuration.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/webhooks/branch_protection_configuration.py diff --git a/githubkit/versions/v2026_03_10/webhooks/branch_protection_rule.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/webhooks/branch_protection_rule.py similarity index 100% rename from githubkit/versions/v2026_03_10/webhooks/branch_protection_rule.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/webhooks/branch_protection_rule.py diff --git a/githubkit/versions/v2026_03_10/webhooks/check_run.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/webhooks/check_run.py similarity index 100% rename from githubkit/versions/v2026_03_10/webhooks/check_run.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/webhooks/check_run.py diff --git a/githubkit/versions/v2026_03_10/webhooks/check_suite.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/webhooks/check_suite.py similarity index 100% rename from githubkit/versions/v2026_03_10/webhooks/check_suite.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/webhooks/check_suite.py diff --git a/githubkit/versions/v2026_03_10/webhooks/code_scanning_alert.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/webhooks/code_scanning_alert.py similarity index 100% rename from githubkit/versions/v2026_03_10/webhooks/code_scanning_alert.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/webhooks/code_scanning_alert.py diff --git a/githubkit/versions/v2026_03_10/webhooks/commit_comment.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/webhooks/commit_comment.py similarity index 100% rename from githubkit/versions/v2026_03_10/webhooks/commit_comment.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/webhooks/commit_comment.py diff --git a/githubkit/versions/v2026_03_10/webhooks/create.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/webhooks/create.py similarity index 100% rename from githubkit/versions/v2026_03_10/webhooks/create.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/webhooks/create.py diff --git a/githubkit/versions/v2026_03_10/webhooks/custom_property.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/webhooks/custom_property.py similarity index 100% rename from githubkit/versions/v2026_03_10/webhooks/custom_property.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/webhooks/custom_property.py diff --git a/githubkit/versions/v2026_03_10/webhooks/custom_property_values.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/webhooks/custom_property_values.py similarity index 100% rename from githubkit/versions/v2026_03_10/webhooks/custom_property_values.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/webhooks/custom_property_values.py diff --git a/githubkit/versions/v2026_03_10/webhooks/delete.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/webhooks/delete.py similarity index 100% rename from githubkit/versions/v2026_03_10/webhooks/delete.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/webhooks/delete.py diff --git a/githubkit/versions/v2026_03_10/webhooks/dependabot_alert.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/webhooks/dependabot_alert.py similarity index 100% rename from githubkit/versions/v2026_03_10/webhooks/dependabot_alert.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/webhooks/dependabot_alert.py diff --git a/githubkit/versions/v2026_03_10/webhooks/deploy_key.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/webhooks/deploy_key.py similarity index 100% rename from githubkit/versions/v2026_03_10/webhooks/deploy_key.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/webhooks/deploy_key.py diff --git a/githubkit/versions/v2026_03_10/webhooks/deployment.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/webhooks/deployment.py similarity index 100% rename from githubkit/versions/v2026_03_10/webhooks/deployment.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/webhooks/deployment.py diff --git a/githubkit/versions/v2026_03_10/webhooks/deployment_protection_rule.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/webhooks/deployment_protection_rule.py similarity index 100% rename from githubkit/versions/v2026_03_10/webhooks/deployment_protection_rule.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/webhooks/deployment_protection_rule.py diff --git a/githubkit/versions/v2026_03_10/webhooks/deployment_review.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/webhooks/deployment_review.py similarity index 100% rename from githubkit/versions/v2026_03_10/webhooks/deployment_review.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/webhooks/deployment_review.py diff --git a/githubkit/versions/v2026_03_10/webhooks/deployment_status.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/webhooks/deployment_status.py similarity index 100% rename from githubkit/versions/v2026_03_10/webhooks/deployment_status.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/webhooks/deployment_status.py diff --git a/githubkit/versions/v2026_03_10/webhooks/discussion.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/webhooks/discussion.py similarity index 100% rename from githubkit/versions/v2026_03_10/webhooks/discussion.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/webhooks/discussion.py diff --git a/githubkit/versions/v2026_03_10/webhooks/discussion_comment.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/webhooks/discussion_comment.py similarity index 100% rename from githubkit/versions/v2026_03_10/webhooks/discussion_comment.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/webhooks/discussion_comment.py diff --git a/githubkit/versions/ghec_v2026_03_10/webhooks/dismissal_request_code_scanning.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/webhooks/dismissal_request_code_scanning.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/webhooks/dismissal_request_code_scanning.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/webhooks/dismissal_request_code_scanning.py diff --git a/githubkit/versions/ghec_v2026_03_10/webhooks/dismissal_request_dependabot.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/webhooks/dismissal_request_dependabot.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/webhooks/dismissal_request_dependabot.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/webhooks/dismissal_request_dependabot.py diff --git a/githubkit/versions/ghec_v2026_03_10/webhooks/dismissal_request_secret_scanning.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/webhooks/dismissal_request_secret_scanning.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/webhooks/dismissal_request_secret_scanning.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/webhooks/dismissal_request_secret_scanning.py diff --git a/githubkit/versions/ghec_v2026_03_10/webhooks/exemption_request_push_ruleset.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/webhooks/exemption_request_push_ruleset.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/webhooks/exemption_request_push_ruleset.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/webhooks/exemption_request_push_ruleset.py diff --git a/githubkit/versions/ghec_v2026_03_10/webhooks/exemption_request_secret_scanning.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/webhooks/exemption_request_secret_scanning.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/webhooks/exemption_request_secret_scanning.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/webhooks/exemption_request_secret_scanning.py diff --git a/githubkit/versions/v2026_03_10/webhooks/fork.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/webhooks/fork.py similarity index 100% rename from githubkit/versions/v2026_03_10/webhooks/fork.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/webhooks/fork.py diff --git a/githubkit/versions/v2026_03_10/webhooks/github_app_authorization.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/webhooks/github_app_authorization.py similarity index 100% rename from githubkit/versions/v2026_03_10/webhooks/github_app_authorization.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/webhooks/github_app_authorization.py diff --git a/githubkit/versions/v2026_03_10/webhooks/gollum.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/webhooks/gollum.py similarity index 100% rename from githubkit/versions/v2026_03_10/webhooks/gollum.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/webhooks/gollum.py diff --git a/githubkit/versions/v2026_03_10/webhooks/installation.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/webhooks/installation.py similarity index 100% rename from githubkit/versions/v2026_03_10/webhooks/installation.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/webhooks/installation.py diff --git a/githubkit/versions/v2026_03_10/webhooks/installation_repositories.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/webhooks/installation_repositories.py similarity index 100% rename from githubkit/versions/v2026_03_10/webhooks/installation_repositories.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/webhooks/installation_repositories.py diff --git a/githubkit/versions/v2026_03_10/webhooks/installation_target.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/webhooks/installation_target.py similarity index 100% rename from githubkit/versions/v2026_03_10/webhooks/installation_target.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/webhooks/installation_target.py diff --git a/githubkit/versions/v2026_03_10/webhooks/issue_comment.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/webhooks/issue_comment.py similarity index 100% rename from githubkit/versions/v2026_03_10/webhooks/issue_comment.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/webhooks/issue_comment.py diff --git a/githubkit/versions/v2026_03_10/webhooks/issue_dependencies.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/webhooks/issue_dependencies.py similarity index 100% rename from githubkit/versions/v2026_03_10/webhooks/issue_dependencies.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/webhooks/issue_dependencies.py diff --git a/githubkit/versions/v2026_03_10/webhooks/issues.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/webhooks/issues.py similarity index 100% rename from githubkit/versions/v2026_03_10/webhooks/issues.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/webhooks/issues.py diff --git a/githubkit/versions/v2026_03_10/webhooks/label.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/webhooks/label.py similarity index 100% rename from githubkit/versions/v2026_03_10/webhooks/label.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/webhooks/label.py diff --git a/githubkit/versions/v2026_03_10/webhooks/marketplace_purchase.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/webhooks/marketplace_purchase.py similarity index 100% rename from githubkit/versions/v2026_03_10/webhooks/marketplace_purchase.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/webhooks/marketplace_purchase.py diff --git a/githubkit/versions/v2026_03_10/webhooks/member.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/webhooks/member.py similarity index 100% rename from githubkit/versions/v2026_03_10/webhooks/member.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/webhooks/member.py diff --git a/githubkit/versions/v2026_03_10/webhooks/membership.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/webhooks/membership.py similarity index 100% rename from githubkit/versions/v2026_03_10/webhooks/membership.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/webhooks/membership.py diff --git a/githubkit/versions/v2026_03_10/webhooks/merge_group.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/webhooks/merge_group.py similarity index 100% rename from githubkit/versions/v2026_03_10/webhooks/merge_group.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/webhooks/merge_group.py diff --git a/githubkit/versions/v2026_03_10/webhooks/meta.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/webhooks/meta.py similarity index 100% rename from githubkit/versions/v2026_03_10/webhooks/meta.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/webhooks/meta.py diff --git a/githubkit/versions/v2026_03_10/webhooks/milestone.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/webhooks/milestone.py similarity index 100% rename from githubkit/versions/v2026_03_10/webhooks/milestone.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/webhooks/milestone.py diff --git a/githubkit/versions/v2026_03_10/webhooks/org_block.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/webhooks/org_block.py similarity index 100% rename from githubkit/versions/v2026_03_10/webhooks/org_block.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/webhooks/org_block.py diff --git a/githubkit/versions/v2026_03_10/webhooks/organization.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/webhooks/organization.py similarity index 100% rename from githubkit/versions/v2026_03_10/webhooks/organization.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/webhooks/organization.py diff --git a/githubkit/versions/ghec_v2026_03_10/webhooks/organization_custom_property.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/webhooks/organization_custom_property.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/webhooks/organization_custom_property.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/webhooks/organization_custom_property.py diff --git a/githubkit/versions/ghec_v2026_03_10/webhooks/organization_custom_property_values.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/webhooks/organization_custom_property_values.py similarity index 100% rename from githubkit/versions/ghec_v2026_03_10/webhooks/organization_custom_property_values.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/webhooks/organization_custom_property_values.py diff --git a/githubkit/versions/v2026_03_10/webhooks/package.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/webhooks/package.py similarity index 100% rename from githubkit/versions/v2026_03_10/webhooks/package.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/webhooks/package.py diff --git a/githubkit/versions/v2026_03_10/webhooks/page_build.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/webhooks/page_build.py similarity index 100% rename from githubkit/versions/v2026_03_10/webhooks/page_build.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/webhooks/page_build.py diff --git a/githubkit/versions/v2026_03_10/webhooks/personal_access_token_request.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/webhooks/personal_access_token_request.py similarity index 100% rename from githubkit/versions/v2026_03_10/webhooks/personal_access_token_request.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/webhooks/personal_access_token_request.py diff --git a/githubkit/versions/v2026_03_10/webhooks/ping.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/webhooks/ping.py similarity index 100% rename from githubkit/versions/v2026_03_10/webhooks/ping.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/webhooks/ping.py diff --git a/githubkit/versions/v2026_03_10/webhooks/project.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/webhooks/project.py similarity index 100% rename from githubkit/versions/v2026_03_10/webhooks/project.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/webhooks/project.py diff --git a/githubkit/versions/v2026_03_10/webhooks/project_card.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/webhooks/project_card.py similarity index 100% rename from githubkit/versions/v2026_03_10/webhooks/project_card.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/webhooks/project_card.py diff --git a/githubkit/versions/v2026_03_10/webhooks/project_column.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/webhooks/project_column.py similarity index 100% rename from githubkit/versions/v2026_03_10/webhooks/project_column.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/webhooks/project_column.py diff --git a/githubkit/versions/v2026_03_10/webhooks/projects_v2.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/webhooks/projects_v2.py similarity index 100% rename from githubkit/versions/v2026_03_10/webhooks/projects_v2.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/webhooks/projects_v2.py diff --git a/githubkit/versions/v2026_03_10/webhooks/projects_v2_item.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/webhooks/projects_v2_item.py similarity index 100% rename from githubkit/versions/v2026_03_10/webhooks/projects_v2_item.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/webhooks/projects_v2_item.py diff --git a/githubkit/versions/v2026_03_10/webhooks/projects_v2_status_update.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/webhooks/projects_v2_status_update.py similarity index 100% rename from githubkit/versions/v2026_03_10/webhooks/projects_v2_status_update.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/webhooks/projects_v2_status_update.py diff --git a/githubkit/versions/v2026_03_10/webhooks/public.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/webhooks/public.py similarity index 100% rename from githubkit/versions/v2026_03_10/webhooks/public.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/webhooks/public.py diff --git a/githubkit/versions/v2026_03_10/webhooks/pull_request.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/webhooks/pull_request.py similarity index 100% rename from githubkit/versions/v2026_03_10/webhooks/pull_request.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/webhooks/pull_request.py diff --git a/githubkit/versions/v2026_03_10/webhooks/pull_request_review.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/webhooks/pull_request_review.py similarity index 100% rename from githubkit/versions/v2026_03_10/webhooks/pull_request_review.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/webhooks/pull_request_review.py diff --git a/githubkit/versions/v2026_03_10/webhooks/pull_request_review_comment.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/webhooks/pull_request_review_comment.py similarity index 100% rename from githubkit/versions/v2026_03_10/webhooks/pull_request_review_comment.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/webhooks/pull_request_review_comment.py diff --git a/githubkit/versions/v2026_03_10/webhooks/pull_request_review_thread.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/webhooks/pull_request_review_thread.py similarity index 100% rename from githubkit/versions/v2026_03_10/webhooks/pull_request_review_thread.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/webhooks/pull_request_review_thread.py diff --git a/githubkit/versions/v2026_03_10/webhooks/push.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/webhooks/push.py similarity index 100% rename from githubkit/versions/v2026_03_10/webhooks/push.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/webhooks/push.py diff --git a/githubkit/versions/v2026_03_10/webhooks/registry_package.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/webhooks/registry_package.py similarity index 100% rename from githubkit/versions/v2026_03_10/webhooks/registry_package.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/webhooks/registry_package.py diff --git a/githubkit/versions/v2026_03_10/webhooks/release.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/webhooks/release.py similarity index 100% rename from githubkit/versions/v2026_03_10/webhooks/release.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/webhooks/release.py diff --git a/githubkit/versions/v2026_03_10/webhooks/repository.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/webhooks/repository.py similarity index 100% rename from githubkit/versions/v2026_03_10/webhooks/repository.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/webhooks/repository.py diff --git a/githubkit/versions/v2026_03_10/webhooks/repository_advisory.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/webhooks/repository_advisory.py similarity index 100% rename from githubkit/versions/v2026_03_10/webhooks/repository_advisory.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/webhooks/repository_advisory.py diff --git a/githubkit/versions/v2026_03_10/webhooks/repository_dispatch.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/webhooks/repository_dispatch.py similarity index 100% rename from githubkit/versions/v2026_03_10/webhooks/repository_dispatch.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/webhooks/repository_dispatch.py diff --git a/githubkit/versions/v2026_03_10/webhooks/repository_import.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/webhooks/repository_import.py similarity index 100% rename from githubkit/versions/v2026_03_10/webhooks/repository_import.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/webhooks/repository_import.py diff --git a/githubkit/versions/v2026_03_10/webhooks/repository_ruleset.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/webhooks/repository_ruleset.py similarity index 100% rename from githubkit/versions/v2026_03_10/webhooks/repository_ruleset.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/webhooks/repository_ruleset.py diff --git a/githubkit/versions/v2026_03_10/webhooks/repository_vulnerability_alert.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/webhooks/repository_vulnerability_alert.py similarity index 100% rename from githubkit/versions/v2026_03_10/webhooks/repository_vulnerability_alert.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/webhooks/repository_vulnerability_alert.py diff --git a/githubkit/versions/v2026_03_10/webhooks/secret_scanning_alert.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/webhooks/secret_scanning_alert.py similarity index 100% rename from githubkit/versions/v2026_03_10/webhooks/secret_scanning_alert.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/webhooks/secret_scanning_alert.py diff --git a/githubkit/versions/v2026_03_10/webhooks/secret_scanning_alert_location.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/webhooks/secret_scanning_alert_location.py similarity index 100% rename from githubkit/versions/v2026_03_10/webhooks/secret_scanning_alert_location.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/webhooks/secret_scanning_alert_location.py diff --git a/githubkit/versions/v2026_03_10/webhooks/secret_scanning_scan.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/webhooks/secret_scanning_scan.py similarity index 100% rename from githubkit/versions/v2026_03_10/webhooks/secret_scanning_scan.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/webhooks/secret_scanning_scan.py diff --git a/githubkit/versions/v2026_03_10/webhooks/security_advisory.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/webhooks/security_advisory.py similarity index 100% rename from githubkit/versions/v2026_03_10/webhooks/security_advisory.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/webhooks/security_advisory.py diff --git a/githubkit/versions/v2026_03_10/webhooks/security_and_analysis.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/webhooks/security_and_analysis.py similarity index 100% rename from githubkit/versions/v2026_03_10/webhooks/security_and_analysis.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/webhooks/security_and_analysis.py diff --git a/githubkit/versions/v2026_03_10/webhooks/sponsorship.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/webhooks/sponsorship.py similarity index 100% rename from githubkit/versions/v2026_03_10/webhooks/sponsorship.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/webhooks/sponsorship.py diff --git a/githubkit/versions/v2026_03_10/webhooks/star.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/webhooks/star.py similarity index 100% rename from githubkit/versions/v2026_03_10/webhooks/star.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/webhooks/star.py diff --git a/githubkit/versions/v2026_03_10/webhooks/status.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/webhooks/status.py similarity index 100% rename from githubkit/versions/v2026_03_10/webhooks/status.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/webhooks/status.py diff --git a/githubkit/versions/v2026_03_10/webhooks/sub_issues.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/webhooks/sub_issues.py similarity index 100% rename from githubkit/versions/v2026_03_10/webhooks/sub_issues.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/webhooks/sub_issues.py diff --git a/githubkit/versions/v2026_03_10/webhooks/team.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/webhooks/team.py similarity index 100% rename from githubkit/versions/v2026_03_10/webhooks/team.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/webhooks/team.py diff --git a/githubkit/versions/v2026_03_10/webhooks/team_add.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/webhooks/team_add.py similarity index 100% rename from githubkit/versions/v2026_03_10/webhooks/team_add.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/webhooks/team_add.py diff --git a/githubkit/versions/v2026_03_10/webhooks/watch.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/webhooks/watch.py similarity index 100% rename from githubkit/versions/v2026_03_10/webhooks/watch.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/webhooks/watch.py diff --git a/githubkit/versions/v2026_03_10/webhooks/workflow_dispatch.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/webhooks/workflow_dispatch.py similarity index 100% rename from githubkit/versions/v2026_03_10/webhooks/workflow_dispatch.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/webhooks/workflow_dispatch.py diff --git a/githubkit/versions/v2026_03_10/webhooks/workflow_job.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/webhooks/workflow_job.py similarity index 100% rename from githubkit/versions/v2026_03_10/webhooks/workflow_job.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/webhooks/workflow_job.py diff --git a/githubkit/versions/v2026_03_10/webhooks/workflow_run.py b/packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/webhooks/workflow_run.py similarity index 100% rename from githubkit/versions/v2026_03_10/webhooks/workflow_run.py rename to packages/githubkit-schemas-ghec-2026-03-10/githubkit_schemas/ghec_v2026_03_10/webhooks/workflow_run.py diff --git a/packages/githubkit-schemas-ghec-2026-03-10/pyproject.toml b/packages/githubkit-schemas-ghec-2026-03-10/pyproject.toml new file mode 100644 index 0000000000..48b29fef00 --- /dev/null +++ b/packages/githubkit-schemas-ghec-2026-03-10/pyproject.toml @@ -0,0 +1,32 @@ +[project] +name = "GitHubKit-schemas-ghec-2026-03-10" +version = "26.5.7" +description = "GitHub Schemas for GitHubKit" +authors = [{ name = "yanyongyu", email = "yyy@yyydl.top" }] +license = "MIT" +readme = "README.md" +keywords = ["github", "octokit"] +requires-python = ">=3.9, <4.0" +dependencies = ["githubkit-schemas ==26.5.7"] + +[project.optional-dependencies] + +[project.urls] +Homepage = "https://github.com/yanyongyu/githubkit" +Repository = "https://github.com/yanyongyu/githubkit" +Documentation = "https://github.com/yanyongyu/githubkit" +"Bug Tracker" = "https://github.com/yanyongyu/githubkit/issues" + +[tool.uv] +required-version = ">=0.8.0" + +[tool.uv.sources] +githubkit-schemas = { workspace = true } + +[tool.uv.build-backend] +module-root = "" +module-name = "githubkit_schemas.ghec_v2026_03_10" + +[build-system] +requires = ["uv_build >=0.8.3, <0.10.0"] +build-backend = "uv_build" diff --git a/packages/githubkit-schemas/README.md b/packages/githubkit-schemas/README.md new file mode 100644 index 0000000000..3282a443fd --- /dev/null +++ b/packages/githubkit-schemas/README.md @@ -0,0 +1,57 @@ + +
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Documentation | + Report Bug | + GitHub Docs +
+ +This package provides the models and GitHub schemas for GitHubKit. It is installed as a dependency of GitHubKit by default, so you don't need to install it separately. + +When GitHub schemas are updated, this package will be updated accordingly. You can also lock the version of this package using a dependency manager like `uv` to ensure that your project is using a specific version of the schemas. + +## Getting Started + +For more, see the [documentation](https://yanyongyu.github.io/githubkit). diff --git a/packages/githubkit-schemas/githubkit_schemas/core/__init__.py b/packages/githubkit-schemas/githubkit_schemas/core/__init__.py new file mode 100644 index 0000000000..835d937822 --- /dev/null +++ b/packages/githubkit-schemas/githubkit_schemas/core/__init__.py @@ -0,0 +1,22 @@ +"""DO NOT EDIT THIS FILE! + +This file is automatically @generated by githubkit using the follow command: + +bash ./scripts/run-codegen.sh + +See https://github.com/github/rest-api-description for more information. +""" + +from typing import Literal + +VERSIONS = { + "2022-11-28": "v2022_11_28", + "ghec-2022-11-28": "ghec_v2022_11_28", + "2026-03-10": "v2026_03_10", + "ghec-2026-03-10": "ghec_v2026_03_10", +} +LATEST_VERSION = "2026-03-10" +VERSION_TYPE = Literal["2022-11-28", "ghec-2022-11-28", "2026-03-10", "ghec-2026-03-10"] + +from .rest import RestVersionSwitcher as RestVersionSwitcher +from .webhooks import WebhooksVersionSwitcher as WebhooksVersionSwitcher diff --git a/githubkit/versions/rest.py b/packages/githubkit-schemas/githubkit_schemas/core/rest.py similarity index 86% rename from githubkit/versions/rest.py rename to packages/githubkit-schemas/githubkit_schemas/core/rest.py index 835b0d99c0..0afbf0781d 100644 --- a/githubkit/versions/rest.py +++ b/packages/githubkit-schemas/githubkit_schemas/core/rest.py @@ -27,12 +27,20 @@ from . import LATEST_VERSION, VERSION_TYPE, VERSIONS if TYPE_CHECKING: - from githubkit import GitHubCore, Response + from githubkit_schemas.ghec_v2022_11_28.rest import ( + RestNamespace as GhecV20221128RestNamespace, + ) + from githubkit_schemas.ghec_v2026_03_10.rest import ( + RestNamespace as GhecV20260310RestNamespace, + ) + from githubkit_schemas.v2022_11_28.rest import ( + RestNamespace as V20221128RestNamespace, + ) + from githubkit_schemas.v2026_03_10.rest import ( + RestNamespace as V20260310RestNamespace, + ) - from .ghec_v2022_11_28.rest import RestNamespace as GhecV20221128RestNamespace - from .ghec_v2026_03_10.rest import RestNamespace as GhecV20260310RestNamespace - from .v2022_11_28.rest import RestNamespace as V20221128RestNamespace - from .v2026_03_10.rest import RestNamespace as V20260310RestNamespace + from githubkit import GitHubCore, Response CP = ParamSpec("CP") @@ -127,7 +135,7 @@ def __call__(self, version: VERSION_TYPE = LATEST_VERSION) -> Any: cache = self._cached_namespaces.setdefault(g, {}) if version in cache: return cache[version] - module = importlib.import_module(f".{VERSIONS[version]}.rest", __package__) + module = importlib.import_module(f"githubkit_schemas.{VERSIONS[version]}.rest") namespace = module.RestNamespace(g) cache[version] = namespace return namespace diff --git a/githubkit/versions/webhooks.py b/packages/githubkit-schemas/githubkit_schemas/core/webhooks.py similarity index 100% rename from githubkit/versions/webhooks.py rename to packages/githubkit-schemas/githubkit_schemas/core/webhooks.py diff --git a/githubkit/versions/v2026_03_10/__init__.py b/packages/githubkit-schemas/githubkit_schemas/latest/__init__.py similarity index 100% rename from githubkit/versions/v2026_03_10/__init__.py rename to packages/githubkit-schemas/githubkit_schemas/latest/__init__.py diff --git a/githubkit/versions/latest/models.py b/packages/githubkit-schemas/githubkit_schemas/latest/models.py similarity index 99% rename from githubkit/versions/latest/models.py rename to packages/githubkit-schemas/githubkit_schemas/latest/models.py index 99215f02b9..6424f79c84 100644 --- a/githubkit/versions/latest/models.py +++ b/packages/githubkit-schemas/githubkit_schemas/latest/models.py @@ -9,7 +9,7 @@ from typing import TYPE_CHECKING -from githubkit.lazy_module import is_lazy_disabled +from githubkit.module_hooks.lazy_module import is_lazy_disabled if TYPE_CHECKING or is_lazy_disabled(): from githubkit.versions.v2026_03_10.models import ( diff --git a/githubkit/versions/latest/types.py b/packages/githubkit-schemas/githubkit_schemas/latest/types.py similarity index 99% rename from githubkit/versions/latest/types.py rename to packages/githubkit-schemas/githubkit_schemas/latest/types.py index d4eddd30bc..b1235d8ff0 100644 --- a/githubkit/versions/latest/types.py +++ b/packages/githubkit-schemas/githubkit_schemas/latest/types.py @@ -9,7 +9,7 @@ from typing import TYPE_CHECKING -from githubkit.lazy_module import is_lazy_disabled +from githubkit.module_hooks.lazy_module import is_lazy_disabled if TYPE_CHECKING or is_lazy_disabled(): from githubkit.versions.v2026_03_10.types import ( diff --git a/githubkit/versions/latest/webhooks.py b/packages/githubkit-schemas/githubkit_schemas/latest/webhooks.py similarity index 99% rename from githubkit/versions/latest/webhooks.py rename to packages/githubkit-schemas/githubkit_schemas/latest/webhooks.py index 16585126ff..c198a11c93 100644 --- a/githubkit/versions/latest/webhooks.py +++ b/packages/githubkit-schemas/githubkit_schemas/latest/webhooks.py @@ -9,7 +9,7 @@ from typing import TYPE_CHECKING -from githubkit.lazy_module import is_lazy_disabled +from githubkit.module_hooks.lazy_module import is_lazy_disabled if TYPE_CHECKING or is_lazy_disabled(): from githubkit.versions.v2026_03_10.webhooks import ( diff --git a/githubkit/versions/versions.lock b/packages/githubkit-schemas/githubkit_schemas/versions.lock similarity index 100% rename from githubkit/versions/versions.lock rename to packages/githubkit-schemas/githubkit_schemas/versions.lock diff --git a/packages/githubkit-schemas/pyproject.toml b/packages/githubkit-schemas/pyproject.toml new file mode 100644 index 0000000000..c27109347c --- /dev/null +++ b/packages/githubkit-schemas/pyproject.toml @@ -0,0 +1,57 @@ +[project] +name = "GitHubKit-schemas" +version = "26.5.7" +description = "GitHub Schemas for GitHubKit" +authors = [{ name = "yanyongyu", email = "yyy@yyydl.top" }] +license = "MIT" +readme = "README.md" +keywords = ["github", "octokit"] +requires-python = ">=3.9, <4.0" +dependencies = ["githubkit >=0.16.0", "githubkit-schemas-2026-03-10 ==26.5.7"] + +[project.optional-dependencies] +v2022-11-28 = ["githubkit-schemas-2022-11-28 ==26.5.7"] +v2026-03-10 = ["githubkit-schemas-2026-03-10 ==26.5.7"] +ghec-v2022-11-28 = ["githubkit-schemas-ghec-2022-11-28 ==26.5.7"] +ghec-v2026-03-10 = ["githubkit-schemas-ghec-2026-03-10 ==26.5.7"] +ghec = ["githubkit-schemas-ghec-2026-03-10 ==26.5.7"] + +all-gh = [ + "githubkit-schemas-2022-11-28 ==26.5.7", + "githubkit-schemas-2026-03-10 ==26.5.7", +] +all-ghec = [ + "githubkit-schemas-ghec-2022-11-28 ==26.5.7", + "githubkit-schemas-ghec-2026-03-10 ==26.5.7", +] +all = [ + "githubkit-schemas-2022-11-28 ==26.5.7", + "githubkit-schemas-2026-03-10 ==26.5.7", + "githubkit-schemas-ghec-2022-11-28 ==26.5.7", + "githubkit-schemas-ghec-2026-03-10 ==26.5.7", +] + +[project.urls] +Homepage = "https://github.com/yanyongyu/githubkit" +Repository = "https://github.com/yanyongyu/githubkit" +Documentation = "https://github.com/yanyongyu/githubkit" +"Bug Tracker" = "https://github.com/yanyongyu/githubkit/issues" + +[tool.uv] +required-version = ">=0.8.0" + +[tool.uv.sources] +githubkit = { workspace = true } +githubkit-schemas-2022-11-28 = { workspace = true } +githubkit-schemas-2026-03-10 = { workspace = true } +githubkit-schemas-ghec-2022-11-28 = { workspace = true } +githubkit-schemas-ghec-2026-03-10 = { workspace = true } + +[tool.uv.build-backend] +module-root = "" +module-name = "githubkit_schemas" +namespace = true + +[build-system] +requires = ["uv_build >=0.8.3, <0.10.0"] +build-backend = "uv_build" diff --git a/pyproject.toml b/pyproject.toml index 32b60a8679..2afb0c6ad3 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "GitHubKit" -version = "0.15.5" +version = "0.16.0.dev0" description = "GitHub SDK for Python" authors = [{ name = "yanyongyu", email = "yyy@yyydl.top" }] license = "MIT" @@ -13,14 +13,16 @@ dependencies = [ "hishel >=0.0.21, <=0.2.0", "typing-extensions >=4.11.0, <5.0.0", "pydantic >=1.9.1, <3.0.0, !=2.5.0, !=2.5.1", + "githubkit-schemas >=26.5.7", ] [project.optional-dependencies] jwt = ["PyJWT[crypto] >=2.4.0, <3.0.0"] auth-app = ["PyJWT[crypto] >=2.4.0, <3.0.0"] -auth-oauth-device = [] # backward compatibility +auth-oauth-device = [] # backward compatibility auth = ["PyJWT[crypto] >=2.4.0, <3.0.0"] -all = ["PyJWT[crypto] >=2.4.0, <3.0.0"] +all-schemas = ["githubkit-schemas[all] >=26.5.7"] +all = ["PyJWT[crypto] >=2.4.0, <3.0.0", "githubkit-schemas[all] >=26.5.7"] [project.urls] Homepage = "https://github.com/yanyongyu/githubkit" @@ -66,6 +68,12 @@ pydantic-v2 = ["pydantic >=2.0.0, <3.0.0"] required-version = ">=0.8.0" conflicts = [[{ group = "pydantic-v1" }, { group = "pydantic-v2" }]] +[tool.uv.sources] +githubkit-schemas = { workspace = true } + +[tool.uv.workspace] +members = ["packages/*"] + [tool.uv.build-backend] module-root = "" @@ -131,8 +139,12 @@ ignore = [ ] [tool.ruff.lint.per-file-ignores] -"githubkit/rest/**" = ["E501", "PYI016", "TID"] -"githubkit/versions/**" = ["E501", "PYI016", "TID"] +"packages/githubkit-schemas-**/**" = ["E501", "PYI016", "TID"] +"packages/githubkit-schemas/githubkit_schemas/latest/**" = [ + "E501", + "PYI016", + "TID", +] [tool.ruff.lint.isort] force-sort-within-sections = true diff --git a/tests/test_rest/test_call.py b/tests/test_rest/test_call.py index c358a94a0d..f859370c83 100644 --- a/tests/test_rest/test_call.py +++ b/tests/test_rest/test_call.py @@ -1,11 +1,11 @@ from functools import partial +from githubkit_schemas.core import LATEST_VERSION +from githubkit_schemas.latest.models import FullRepository, Issue import httpx import pytest from githubkit import GitHub -from githubkit.versions import LATEST_VERSION -from githubkit.versions.latest.models import FullRepository, Issue from tests.utils import get_mock_github OWNER = "yanyongyu" diff --git a/tests/test_unit_test/test_event_hooks.py b/tests/test_unit_test/test_event_hooks.py index 49916ae107..46191edf85 100644 --- a/tests/test_unit_test/test_event_hooks.py +++ b/tests/test_unit_test/test_event_hooks.py @@ -1,11 +1,11 @@ import json from pathlib import Path +from githubkit_schemas.latest.models import FullRepository import httpx import pytest from githubkit import GitHub -from githubkit.versions.latest.models import FullRepository FAKE_RESPONSE = json.loads((Path(__file__).parent / "fake_response.json").read_text()) diff --git a/tests/test_unit_test/test_mock_transport.py b/tests/test_unit_test/test_mock_transport.py index d25da62828..2b802a7903 100644 --- a/tests/test_unit_test/test_mock_transport.py +++ b/tests/test_unit_test/test_mock_transport.py @@ -1,11 +1,11 @@ import json from pathlib import Path +from githubkit_schemas.latest.models import FullRepository import httpx import pytest from githubkit import GitHub -from githubkit.versions.latest.models import FullRepository FAKE_RESPONSE = json.loads((Path(__file__).parent / "fake_response.json").read_text()) diff --git a/tests/test_unit_test/test_unit_test.py b/tests/test_unit_test/test_unit_test.py index 24e9e0b0ae..06509d60c9 100644 --- a/tests/test_unit_test/test_unit_test.py +++ b/tests/test_unit_test/test_unit_test.py @@ -2,6 +2,7 @@ from pathlib import Path from typing import Any, TypeVar, Union +from githubkit_schemas.latest.models import FullRepository import httpx import pytest @@ -9,7 +10,6 @@ from githubkit.response import Response from githubkit.typing import UnsetType, URLTypes from githubkit.utils import UNSET -from githubkit.versions.latest.models import FullRepository T = TypeVar("T") diff --git a/tests/test_webhooks/test_parse.py b/tests/test_webhooks/test_parse.py index 3bcd9c1214..4ce7d9dd73 100644 --- a/tests/test_webhooks/test_parse.py +++ b/tests/test_webhooks/test_parse.py @@ -2,12 +2,12 @@ from pathlib import Path from typing import Any +from githubkit_schemas.core import LATEST_VERSION +from githubkit_schemas.latest.models import WebhookPullRequestOpened, WebhookPush +from githubkit_schemas.latest.webhooks import EventNameType import pytest from githubkit import GitHub, GitHubModel -from githubkit.versions import LATEST_VERSION -from githubkit.versions.latest.models import WebhookPullRequestOpened, WebhookPush -from githubkit.versions.latest.webhooks import EventNameType from githubkit.webhooks import ( parse, parse_obj, diff --git a/uv.lock b/uv.lock index fe6c174700..161e13d18d 100644 --- a/uv.lock +++ b/uv.lock @@ -3,13 +3,24 @@ revision = 3 requires-python = ">=3.9, <4.0" resolution-markers = [ "python_full_version >= '3.10'", - "python_full_version < '3.10'", + "python_full_version > '3.9' and python_full_version < '3.10'", + "python_full_version <= '3.9'", ] conflicts = [[ { package = "githubkit", group = "pydantic-v1" }, { package = "githubkit", group = "pydantic-v2" }, ]] +[manifest] +members = [ + "githubkit", + "githubkit-schemas", + "githubkit-schemas-2022-11-28", + "githubkit-schemas-2026-03-10", + "githubkit-schemas-ghec-2022-11-28", + "githubkit-schemas-ghec-2026-03-10", +] + [[package]] name = "annotated-types" version = "0.7.0" @@ -24,7 +35,8 @@ name = "anyio" version = "4.12.1" source = { registry = "https://pypi.org/simple" } resolution-markers = [ - "python_full_version < '3.10'", + "python_full_version > '3.9' and python_full_version < '3.10'", + "python_full_version <= '3.9'", ] dependencies = [ { name = "exceptiongroup", marker = "python_full_version < '3.10' or (extra == 'group-9-githubkit-pydantic-v1' and extra == 'group-9-githubkit-pydantic-v2')" }, @@ -89,7 +101,8 @@ name = "backrefs" version = "6.2" source = { registry = "https://pypi.org/simple" } resolution-markers = [ - "python_full_version < '3.10'", + "python_full_version > '3.9' and python_full_version < '3.10'", + "python_full_version <= '3.9'", ] sdist = { url = "https://files.pythonhosted.org/packages/4e/a6/e325ec73b638d3ede4421b5445d4a0b8b219481826cc079d510100af356c/backrefs-6.2.tar.gz", hash = "sha256:f44ff4d48808b243b6c0cdc6231e22195c32f77046018141556c66f8bab72a49", size = 7012303, upload-time = "2026-02-16T19:10:15.828Z" } wheels = [ @@ -226,7 +239,8 @@ name = "cfgv" version = "3.4.0" source = { registry = "https://pypi.org/simple" } resolution-markers = [ - "python_full_version < '3.10'", + "python_full_version > '3.9' and python_full_version < '3.10'", + "python_full_version <= '3.9'", ] sdist = { url = "https://files.pythonhosted.org/packages/11/74/539e56497d9bd1d484fd863dd69cbbfa653cd2aa27abfe35653494d85e94/cfgv-3.4.0.tar.gz", hash = "sha256:e52591d4c5f5dead8e0f673fb16db7949d2cfb3f7da4582893288f0ded8fe560", size = 7114, upload-time = "2023-08-12T20:38:17.776Z" } wheels = [ @@ -371,7 +385,8 @@ name = "click" version = "8.1.8" source = { registry = "https://pypi.org/simple" } resolution-markers = [ - "python_full_version < '3.10'", + "python_full_version > '3.9' and python_full_version < '3.10'", + "python_full_version <= '3.9'", ] dependencies = [ { name = "colorama", marker = "(python_full_version < '3.10' and sys_platform == 'win32') or (python_full_version >= '3.10' and extra == 'group-9-githubkit-pydantic-v1' and extra == 'group-9-githubkit-pydantic-v2') or (sys_platform != 'win32' and extra == 'group-9-githubkit-pydantic-v1' and extra == 'group-9-githubkit-pydantic-v2')" }, @@ -410,7 +425,8 @@ name = "coverage" version = "7.10.7" source = { registry = "https://pypi.org/simple" } resolution-markers = [ - "python_full_version < '3.10'", + "python_full_version > '3.9' and python_full_version < '3.10'", + "python_full_version <= '3.9'", ] sdist = { url = "https://files.pythonhosted.org/packages/51/26/d22c300112504f5f9a9fd2297ce33c35f3d353e4aeb987c8419453b2a7c2/coverage-7.10.7.tar.gz", hash = "sha256:f4ab143ab113be368a3e9b795f9cd7906c5ef407d6173fe9675a902e1fffc239", size = 827704, upload-time = "2025-09-21T20:03:56.815Z" } wheels = [ @@ -664,9 +680,12 @@ wheels = [ name = "cryptography" version = "47.0.0" source = { registry = "https://pypi.org/simple" } +resolution-markers = [ + "python_full_version <= '3.9'", +] dependencies = [ - { name = "cffi", marker = "platform_python_implementation != 'PyPy' or (extra == 'group-9-githubkit-pydantic-v1' and extra == 'group-9-githubkit-pydantic-v2')" }, - { name = "typing-extensions", marker = "python_full_version < '3.11' or (extra == 'group-9-githubkit-pydantic-v1' and extra == 'group-9-githubkit-pydantic-v2')" }, + { name = "cffi", marker = "(python_full_version <= '3.9' and platform_python_implementation != 'PyPy') or (python_full_version > '3.9' and extra == 'group-9-githubkit-pydantic-v1' and extra == 'group-9-githubkit-pydantic-v2') or (platform_python_implementation == 'PyPy' and extra == 'group-9-githubkit-pydantic-v1' and extra == 'group-9-githubkit-pydantic-v2')" }, + { name = "typing-extensions", marker = "python_full_version <= '3.9' or (extra == 'group-9-githubkit-pydantic-v1' and extra == 'group-9-githubkit-pydantic-v2')" }, ] sdist = { url = "https://files.pythonhosted.org/packages/ef/b2/7ffa7fe8207a8c42147ffe70c3e360b228160c1d85dc3faff16aaa3244c0/cryptography-47.0.0.tar.gz", hash = "sha256:9f8e55fe4e63613a5e1cc5819030f27b97742d720203a087802ce4ce9ceb52bb", size = 830863, upload-time = "2026-04-24T19:54:57.056Z" } wheels = [ @@ -720,6 +739,70 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/ab/9c/51f28c3550276bcf35660703ba0ab829a90b88be8cd98a71ef23c2413913/cryptography-47.0.0-pp311-pypy311_pp73-win_amd64.whl", hash = "sha256:cffbba3392df0fa8629bb7f43454ee2925059ee158e23c54620b9063912b86c8", size = 3698916, upload-time = "2026-04-24T19:54:49.782Z" }, ] +[[package]] +name = "cryptography" +version = "48.0.0" +source = { registry = "https://pypi.org/simple" } +resolution-markers = [ + "python_full_version >= '3.10'", + "python_full_version > '3.9' and python_full_version < '3.10'", +] +dependencies = [ + { name = "cffi", marker = "(python_full_version > '3.9' and platform_python_implementation != 'PyPy') or (python_full_version <= '3.9' and extra == 'group-9-githubkit-pydantic-v1' and extra == 'group-9-githubkit-pydantic-v2') or (platform_python_implementation == 'PyPy' and extra == 'group-9-githubkit-pydantic-v1' and extra == 'group-9-githubkit-pydantic-v2')" }, + { name = "typing-extensions", marker = "(python_full_version > '3.9' and python_full_version < '3.11') or (python_full_version <= '3.9' and extra == 'group-9-githubkit-pydantic-v1' and extra == 'group-9-githubkit-pydantic-v2') or (python_full_version >= '3.11' and extra == 'group-9-githubkit-pydantic-v1' and extra == 'group-9-githubkit-pydantic-v2')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/9f/a9/db8f313fdcd85d767d4973515e1db101f9c71f95fced83233de224673757/cryptography-48.0.0.tar.gz", hash = "sha256:5c3932f4436d1cccb036cb0eaef46e6e2db91035166f1ad6505c3c9d5a635920", size = 832984, upload-time = "2026-05-04T22:59:38.133Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/df/3d/01f6dd9190170a5a241e0e98c2d04be3664a9e6f5b9b872cde63aff1c3dd/cryptography-48.0.0-cp311-abi3-macosx_10_9_universal2.whl", hash = "sha256:0c558d2cdffd8f4bbb30fc7134c74d2ca9a476f830bb053074498fbc86f41ed6", size = 8001587, upload-time = "2026-05-04T22:57:36.803Z" }, + { url = "https://files.pythonhosted.org/packages/b2/6e/e90527eef33f309beb811cf7c982c3aeffcce8e3edb178baa4ca3ae4a6fa/cryptography-48.0.0-cp311-abi3-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:f5333311663ea94f75dd408665686aaf426563556bb5283554a3539177e03b8c", size = 4690433, upload-time = "2026-05-04T22:57:40.373Z" }, + { url = "https://files.pythonhosted.org/packages/90/04/673510ed51ddff56575f306cf1617d80411ee76831ccd3097599140efdfe/cryptography-48.0.0-cp311-abi3-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:7995ef305d7165c3f11ae07f2517e5a4f1d5c18da1376a0a9ed496336b69e5f3", size = 4710620, upload-time = "2026-05-04T22:57:42.935Z" }, + { url = "https://files.pythonhosted.org/packages/14/d5/e9c4ef932c8d800490c34d8bd589d64a31d5890e27ec9e9ad532be893294/cryptography-48.0.0-cp311-abi3-manylinux_2_28_aarch64.whl", hash = "sha256:40ba1f85eaa6959837b1d51c9767e230e14612eea4ef110ee8854ada22da1bf5", size = 4696283, upload-time = "2026-05-04T22:57:45.294Z" }, + { url = "https://files.pythonhosted.org/packages/0c/29/174b9dfb60b12d59ecfc6cfa04bc88c21b42a54f01b8aae09bb6e51e4c7f/cryptography-48.0.0-cp311-abi3-manylinux_2_28_ppc64le.whl", hash = "sha256:369a6348999f94bbd53435c894377b20ab95f25a9065c283570e70150d8abc3c", size = 5296573, upload-time = "2026-05-04T22:57:47.933Z" }, + { url = "https://files.pythonhosted.org/packages/95/38/0d29a6fd7d0d1373f0c0c88a04ba20e359b257753ac497564cd660fc1d55/cryptography-48.0.0-cp311-abi3-manylinux_2_28_x86_64.whl", hash = "sha256:a0e692c683f4df67815a2d258b324e66f4738bd7a96a218c826dce4f4bd05d8f", size = 4743677, upload-time = "2026-05-04T22:57:50.067Z" }, + { url = "https://files.pythonhosted.org/packages/30/be/eef653013d5c63b6a490529e0316f9ac14a37602965d4903efed1399f32b/cryptography-48.0.0-cp311-abi3-manylinux_2_31_armv7l.whl", hash = "sha256:18349bbc56f4743c8b12dc32e2bccb2cf83ee8b69a3bba74ef8ae857e26b3d25", size = 4330808, upload-time = "2026-05-04T22:57:52.301Z" }, + { url = "https://files.pythonhosted.org/packages/84/9e/500463e87abb7a0a0f9f256ec21123ecde0a7b5541a15e840ea54551fd81/cryptography-48.0.0-cp311-abi3-manylinux_2_34_aarch64.whl", hash = "sha256:7e8eac43dfca5c4cccc6dad9a80504436fca53bb9bc3100a2386d730fbe6b602", size = 4695941, upload-time = "2026-05-04T22:57:54.603Z" }, + { url = "https://files.pythonhosted.org/packages/e3/dc/7303087450c2ec9e7fbb750e17c2abfbc658f23cbd0e54009509b7cc4091/cryptography-48.0.0-cp311-abi3-manylinux_2_34_ppc64le.whl", hash = "sha256:9ccdac7d40688ecb5a3b4a604b8a88c8002e3442d6c60aead1db2a89a041560c", size = 5252579, upload-time = "2026-05-04T22:57:57.207Z" }, + { url = "https://files.pythonhosted.org/packages/d0/c0/7101d3b7215edcdc90c45da544961fd8ed2d6448f77577460fa75a8443f7/cryptography-48.0.0-cp311-abi3-manylinux_2_34_x86_64.whl", hash = "sha256:bd72e68b06bb1e96913f97dd4901119bc17f39d4586a5adf2d3e47bc2b9d58b5", size = 4743326, upload-time = "2026-05-04T22:57:59.535Z" }, + { url = "https://files.pythonhosted.org/packages/ac/d8/5b833bad13016f562ab9d063d68199a4bd121d18458e439515601d3357ec/cryptography-48.0.0-cp311-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:59baa2cb386c4f0b9905bd6eb4c2a79a69a128408fd31d32ca4d7102d4156321", size = 4826672, upload-time = "2026-05-04T22:58:01.996Z" }, + { url = "https://files.pythonhosted.org/packages/98/e1/7074eb8bf3c135558c73fc2bcf0f5633f912e6fb87e868a55c454080ef09/cryptography-48.0.0-cp311-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:9249e3cd978541d665967ac2cb2787fd6a62bddf1e75b3e347a594d7dacf4f74", size = 4972574, upload-time = "2026-05-04T22:58:03.968Z" }, + { url = "https://files.pythonhosted.org/packages/04/70/e5a1b41d325f797f39427aa44ef8baf0be500065ab6d8e10369d850d4a4f/cryptography-48.0.0-cp311-abi3-win32.whl", hash = "sha256:9c459db21422be75e2809370b829a87eb37f74cd785fc4aa9ea1e5f43b47cda4", size = 3294868, upload-time = "2026-05-04T22:58:06.467Z" }, + { url = "https://files.pythonhosted.org/packages/f4/ac/8ac51b4a5fc5932eb7ee5c517ba7dc8cd834f0048962b6b352f00f41ebf9/cryptography-48.0.0-cp311-abi3-win_amd64.whl", hash = "sha256:5b012212e08b8dd5edc78ef54da83dd9892fd9105323b3993eff6bea65dc21d7", size = 3817107, upload-time = "2026-05-04T22:58:08.845Z" }, + { url = "https://files.pythonhosted.org/packages/6b/84/70e3feea9feea87fd7cbe77efb2712ae1e3e6edf10749dc6e95f4e60e455/cryptography-48.0.0-cp314-cp314t-macosx_10_9_universal2.whl", hash = "sha256:3cb07a3ed6431663cd321ea8a000a1314c74211f823e4177fefa2255e057d1ec", size = 7986556, upload-time = "2026-05-04T22:58:11.172Z" }, + { url = "https://files.pythonhosted.org/packages/89/6e/18e07a618bb5442ba10cf4df16e99c071365528aa570dfcb8c02e25a303b/cryptography-48.0.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:8c7378637d7d88016fa6791c159f698b3d3eed28ebf844ac36b9dc04a14dae18", size = 4684776, upload-time = "2026-05-04T22:58:13.712Z" }, + { url = "https://files.pythonhosted.org/packages/be/6a/4ea3b4c6c6759794d5ee2103c304a5076dc4b19ae1f9fe47dba439e159e9/cryptography-48.0.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:cc90c0b39b2e3c65ef52c804b72e3c58f8a04ab2a1871272798e5f9572c17d20", size = 4698121, upload-time = "2026-05-04T22:58:16.448Z" }, + { url = "https://files.pythonhosted.org/packages/2f/59/6ff6ad6cae03bb887da2a5860b2c9805f8dac969ef01ce563336c49bd1d1/cryptography-48.0.0-cp314-cp314t-manylinux_2_28_aarch64.whl", hash = "sha256:76341972e1eff8b4bea859f09c0d3e64b96ce931b084f9b9b7db8ef364c30eff", size = 4690042, upload-time = "2026-05-04T22:58:18.544Z" }, + { url = "https://files.pythonhosted.org/packages/ca/b4/fc334ed8cfd705aca282fe4d8f5ae64a8e0f74932e9feecb344610cf6e4d/cryptography-48.0.0-cp314-cp314t-manylinux_2_28_ppc64le.whl", hash = "sha256:55b7718303bf06a5753dcdccf2f3945cf18ad7bffde41b61226e4db31ab89a9c", size = 5282526, upload-time = "2026-05-04T22:58:20.75Z" }, + { url = "https://files.pythonhosted.org/packages/11/08/9f8c5386cc4cd90d8255c7cdd0f5baf459a08502a09de30dc51f553d38dc/cryptography-48.0.0-cp314-cp314t-manylinux_2_28_x86_64.whl", hash = "sha256:a64697c641c7b1b2178e573cbc31c7c6684cd56883a478d75143dbb7118036db", size = 4733116, upload-time = "2026-05-04T22:58:23.627Z" }, + { url = "https://files.pythonhosted.org/packages/b8/77/99307d7574045699f8805aa500fa0fb83422d115b5400a064ddd306d7750/cryptography-48.0.0-cp314-cp314t-manylinux_2_31_armv7l.whl", hash = "sha256:561215ea3879cb1cbbf272867e2efda62476f240fb58c64de6b393ae19246741", size = 4316030, upload-time = "2026-05-04T22:58:25.581Z" }, + { url = "https://files.pythonhosted.org/packages/fd/36/a608b98337af3cb2aff4818e406649d30572b7031918b04c87d979495348/cryptography-48.0.0-cp314-cp314t-manylinux_2_34_aarch64.whl", hash = "sha256:ad64688338ed4bc1a6618076ba75fd7194a5f1797ac60b47afe926285adb3166", size = 4689640, upload-time = "2026-05-04T22:58:27.747Z" }, + { url = "https://files.pythonhosted.org/packages/dd/a6/825010a291b4438aecc1f568bc428189fc1175515223632477c07dc0a6df/cryptography-48.0.0-cp314-cp314t-manylinux_2_34_ppc64le.whl", hash = "sha256:906cbf0670286c6e0044156bc7d4af9cbb0ef6db9f73e52c3ec56ba6bdde5336", size = 5237657, upload-time = "2026-05-04T22:58:29.848Z" }, + { url = "https://files.pythonhosted.org/packages/b9/09/4e76a09b4caa29aad535ddc806f5d4c5d01885bd978bd984fbc6ca032cae/cryptography-48.0.0-cp314-cp314t-manylinux_2_34_x86_64.whl", hash = "sha256:ea8990436d914540a40ab24b6a77c0969695ed52f4a4874c5137ccf7045a7057", size = 4732362, upload-time = "2026-05-04T22:58:32.009Z" }, + { url = "https://files.pythonhosted.org/packages/18/78/444fa04a77d0cb95f417dda20d450e13c56ba8e5220fc892a1658f44f882/cryptography-48.0.0-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:c18684a7f0cc9a3cb60328f496b8e3372def7c5d2df39ac267878b05565aaaae", size = 4819580, upload-time = "2026-05-04T22:58:34.254Z" }, + { url = "https://files.pythonhosted.org/packages/38/85/ea67067c70a1fd4be2c63d35eeed82658023021affccc7b17705f8527dd2/cryptography-48.0.0-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:9be5aafa5736574f8f15f262adc81b2a9869e2cfe9014d52a44633905b40d52c", size = 4963283, upload-time = "2026-05-04T22:58:36.376Z" }, + { url = "https://files.pythonhosted.org/packages/75/54/cc6d0f3deac3e81c7f847e8a189a12b6cdd65059b43dad25d4316abd849a/cryptography-48.0.0-cp314-cp314t-win32.whl", hash = "sha256:c17dfe85494deaeddc5ce251aebd1d60bbe6afc8b62071bb0b469431a000124f", size = 3270954, upload-time = "2026-05-04T22:58:38.791Z" }, + { url = "https://files.pythonhosted.org/packages/49/67/cc947e288c0758a4e5473d1dcb743037ab7785541265a969240b8885441a/cryptography-48.0.0-cp314-cp314t-win_amd64.whl", hash = "sha256:27241b1dc9962e056062a8eef1991d02c3a24569c95975bd2322a8a52c6e5e12", size = 3797313, upload-time = "2026-05-04T22:58:40.746Z" }, + { url = "https://files.pythonhosted.org/packages/f2/63/61d4a4e1c6b6bab6ce1e213cd36a24c415d90e76d78c5eb8577c5541d2e8/cryptography-48.0.0-cp39-abi3-macosx_10_9_universal2.whl", hash = "sha256:58d00498e8933e4a194f3076aee1b4a97dfec1a6da444535755822fe5d8b0b86", size = 7983482, upload-time = "2026-05-04T22:58:43.769Z" }, + { url = "https://files.pythonhosted.org/packages/d5/ac/f5b5995b87770c693e2596559ffafe195b4033a57f14a82268a2842953f3/cryptography-48.0.0-cp39-abi3-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:614d0949f4790582d2cc25553abd09dd723025f0c0e7c67376a1d77196743d6e", size = 4683266, upload-time = "2026-05-04T22:58:46.064Z" }, + { url = "https://files.pythonhosted.org/packages/ec/c6/8b14f67e18338fbc4adb76f66c001f5c3610b3e2d1837f268f47a347dbbb/cryptography-48.0.0-cp39-abi3-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:7ce4bfae76319a532a2dc68f82cc32f5676ee792a983187dac07183690e5c66f", size = 4696228, upload-time = "2026-05-04T22:58:48.22Z" }, + { url = "https://files.pythonhosted.org/packages/ea/73/f808fbae9514bd91b47875b003f13e284c8c6bdfd904b7944e803937eec1/cryptography-48.0.0-cp39-abi3-manylinux_2_28_aarch64.whl", hash = "sha256:2eb992bbd4661238c5a397594c83f5b4dc2bc5b848c365c8f991b6780efcc5c7", size = 4689097, upload-time = "2026-05-04T22:58:50.9Z" }, + { url = "https://files.pythonhosted.org/packages/93/01/d86632d7d28db8ae83221995752eeb6639ffb374c2d22955648cf8d52797/cryptography-48.0.0-cp39-abi3-manylinux_2_28_ppc64le.whl", hash = "sha256:22a5cb272895dce158b2cacdfdc3debd299019659f42947dbdac6f32d68fe832", size = 5283582, upload-time = "2026-05-04T22:58:53.017Z" }, + { url = "https://files.pythonhosted.org/packages/02/e1/50edc7a50334807cc4791fc4a0ce7468b4a1416d9138eab358bfc9a3d70b/cryptography-48.0.0-cp39-abi3-manylinux_2_28_x86_64.whl", hash = "sha256:2b4d59804e8408e2fea7d1fbaf218e5ec984325221db76e6a241a9abd6cdd95c", size = 4730479, upload-time = "2026-05-04T22:58:55.611Z" }, + { url = "https://files.pythonhosted.org/packages/6f/af/99a582b1b1641ff5911ac559beb45097cf79efd4ead4657f578ef1af2d47/cryptography-48.0.0-cp39-abi3-manylinux_2_31_armv7l.whl", hash = "sha256:984a20b0f62a26f48a3396c72e4bc34c66e356d356bf370053066b3b6d54634a", size = 4326481, upload-time = "2026-05-04T22:58:57.607Z" }, + { url = "https://files.pythonhosted.org/packages/90/ee/89aa26a06ef0a7d7611788ffd571a7c50e368cc6a4d5eef8b4884e866edb/cryptography-48.0.0-cp39-abi3-manylinux_2_34_aarch64.whl", hash = "sha256:5a5ed8fde7a1d09376ca0b40e68cd59c69fe23b1f9768bd5824f54681626032a", size = 4688713, upload-time = "2026-05-04T22:59:00.077Z" }, + { url = "https://files.pythonhosted.org/packages/70/ba/bcb1b0bb7a33d4c7c0c4d4c7874b4a62ae4f56113a5f4baefa362dfb1f0f/cryptography-48.0.0-cp39-abi3-manylinux_2_34_ppc64le.whl", hash = "sha256:8cd666227ef7af430aa5914a9910e0ddd703e75f039cef0825cd0da71b6b711a", size = 5238165, upload-time = "2026-05-04T22:59:02.317Z" }, + { url = "https://files.pythonhosted.org/packages/c9/70/ca4003b1ce5ca3dc3186ada51908c8a9b9ff7d5cab83cc0d43ee14ec144f/cryptography-48.0.0-cp39-abi3-manylinux_2_34_x86_64.whl", hash = "sha256:9071196d81abc88b3516ac8cdfad32e2b66dd4a5393a8e68a961e9161ddc6239", size = 4729947, upload-time = "2026-05-04T22:59:05.255Z" }, + { url = "https://files.pythonhosted.org/packages/44/a0/4ec7cf774207905aef1a8d11c3750d5a1db805eb380ee4e16df317870128/cryptography-48.0.0-cp39-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:1e2d54c8be6152856a36f0882ab231e70f8ec7f14e93cf87db8a2ed056bf160c", size = 4822059, upload-time = "2026-05-04T22:59:07.802Z" }, + { url = "https://files.pythonhosted.org/packages/1e/75/a2e55f99c16fcac7b5d6c1eb19ad8e00799854d6be5ca845f9259eae1681/cryptography-48.0.0-cp39-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:a5da777e32ffed6f85a7b2b3f7c5cbc88c146bfcd0a1d7baf5fcc6c52ee35dd4", size = 4960575, upload-time = "2026-05-04T22:59:09.851Z" }, + { url = "https://files.pythonhosted.org/packages/b8/23/6e6f32143ab5d8b36ca848a502c4bcd477ae75b9e1677e3530d669062578/cryptography-48.0.0-cp39-abi3-win32.whl", hash = "sha256:77a2ccbbe917f6710e05ba9adaa25fb5075620bf3ea6fb751997875aff4ae4bd", size = 3279117, upload-time = "2026-05-04T22:59:12.019Z" }, + { url = "https://files.pythonhosted.org/packages/9d/9a/0fea98a70cf1749d41d738836f6349d97945f7c89433a259a6c2642eefeb/cryptography-48.0.0-cp39-abi3-win_amd64.whl", hash = "sha256:16cd65b9330583e4619939b3a3843eec1e6e789744bb01e7c7e2e62e33c239c8", size = 3792100, upload-time = "2026-05-04T22:59:14.884Z" }, + { url = "https://files.pythonhosted.org/packages/be/d2/024b5e06be9d44cb021fb0e1a03d34d63989cf56a0fe62f3dfbab695b9b4/cryptography-48.0.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl", hash = "sha256:84cf79f0dc8b36ac5da873481716e87aef31fcfa0444f9e1d8b4b2cece142855", size = 3950391, upload-time = "2026-05-04T22:59:17.415Z" }, + { url = "https://files.pythonhosted.org/packages/bc/17/3861e17c56fa0fd37491a14a8673fdb77c57fc5693cafe745ea8b06dba75/cryptography-48.0.0-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:fdfef35d751d510fcef5252703621574364fec16418c4a1e5e1055248401054b", size = 4637126, upload-time = "2026-05-04T22:59:20.197Z" }, + { url = "https://files.pythonhosted.org/packages/f0/0a/7e226dbff530f21480727eb764973a7bff2b912f8e15cd4f129e71b56d1d/cryptography-48.0.0-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:0890f502ddf7d9c6426129c3f49f5c0a39278ed7cd6322c8755ffca6ee675a13", size = 4667270, upload-time = "2026-05-04T22:59:22.647Z" }, + { url = "https://files.pythonhosted.org/packages/3b/f2/5a72274ca9f1b2a8b44a662ee0bf1b435909deb473d6f97bcd035bcdbc71/cryptography-48.0.0-pp311-pypy311_pp73-manylinux_2_34_aarch64.whl", hash = "sha256:ecde28a596bead48b0cfd2a1b4416c3d43074c2d785e3a398d7ec1fc4d0f7fbb", size = 4636797, upload-time = "2026-05-04T22:59:24.912Z" }, + { url = "https://files.pythonhosted.org/packages/b4/e1/48cedb2fe63626e91ded1edad159e2a4fb8b6906c4425eb7749673077ce7/cryptography-48.0.0-pp311-pypy311_pp73-manylinux_2_34_x86_64.whl", hash = "sha256:4defde8685ae324a9eb9d818717e93b4638ef67070ac9bc15b8ca85f63048355", size = 4666800, upload-time = "2026-05-04T22:59:27.474Z" }, + { url = "https://files.pythonhosted.org/packages/a2/ca/7e8365deec19afb2b2c7be7c1c0aa8f99633b54e90c570999acda93260fc/cryptography-48.0.0-pp311-pypy311_pp73-win_amd64.whl", hash = "sha256:db63bf618e5dea46c07de12e900fe1cdd2541e6dc9dbae772a70b7d4d4765f6a", size = 3739536, upload-time = "2026-05-04T22:59:29.61Z" }, +] + [[package]] name = "distlib" version = "0.4.0" @@ -755,7 +838,8 @@ name = "filelock" version = "3.19.1" source = { registry = "https://pypi.org/simple" } resolution-markers = [ - "python_full_version < '3.10'", + "python_full_version > '3.9' and python_full_version < '3.10'", + "python_full_version <= '3.9'", ] sdist = { url = "https://files.pythonhosted.org/packages/40/bb/0ab3e58d22305b6f5440629d20683af28959bf793d98d11950e305c1c326/filelock-3.19.1.tar.gz", hash = "sha256:66eda1888b0171c998b35be2bcc0f6d75c388a7ce20c3f3f37aa8e96c2dddf58", size = 17687, upload-time = "2025-08-14T16:56:03.016Z" } wheels = [ @@ -800,22 +884,27 @@ wheels = [ [[package]] name = "githubkit" -version = "0.15.5" +version = "0.16.0.dev0" source = { editable = "." } dependencies = [ { name = "anyio", version = "4.12.1", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10' or (extra == 'group-9-githubkit-pydantic-v1' and extra == 'group-9-githubkit-pydantic-v2')" }, { name = "anyio", version = "4.13.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.10' or (extra == 'group-9-githubkit-pydantic-v1' and extra == 'group-9-githubkit-pydantic-v2')" }, + { name = "githubkit-schemas" }, { name = "hishel" }, { name = "httpx" }, { name = "pydantic", version = "1.10.26", source = { registry = "https://pypi.org/simple" }, marker = "extra == 'group-9-githubkit-pydantic-v1'" }, - { name = "pydantic", version = "2.13.3", source = { registry = "https://pypi.org/simple" }, marker = "extra == 'group-9-githubkit-pydantic-v2' or extra != 'group-9-githubkit-pydantic-v1'" }, + { name = "pydantic", version = "2.13.4", source = { registry = "https://pypi.org/simple" }, marker = "extra == 'group-9-githubkit-pydantic-v2' or extra != 'group-9-githubkit-pydantic-v1'" }, { name = "typing-extensions" }, ] [package.optional-dependencies] all = [ + { name = "githubkit-schemas", extra = ["all"] }, { name = "pyjwt", extra = ["crypto"] }, ] +all-schemas = [ + { name = "githubkit-schemas", extra = ["all"] }, +] auth = [ { name = "pyjwt", extra = ["crypto"] }, ] @@ -869,7 +958,7 @@ pydantic-v1 = [ { name = "pydantic", version = "1.10.26", source = { registry = "https://pypi.org/simple" } }, ] pydantic-v2 = [ - { name = "pydantic", version = "2.13.3", source = { registry = "https://pypi.org/simple" } }, + { name = "pydantic", version = "2.13.4", source = { registry = "https://pypi.org/simple" } }, ] test = [ { name = "coverage-conditional-plugin" }, @@ -887,6 +976,9 @@ thirdparty = [ [package.metadata] requires-dist = [ { name = "anyio", specifier = ">=3.6.1,<5.0.0" }, + { name = "githubkit-schemas", editable = "packages/githubkit-schemas" }, + { name = "githubkit-schemas", extras = ["all"], marker = "extra == 'all'", editable = "packages/githubkit-schemas" }, + { name = "githubkit-schemas", extras = ["all"], marker = "extra == 'all-schemas'", editable = "packages/githubkit-schemas" }, { name = "hishel", specifier = ">=0.0.21,<=0.2.0" }, { name = "httpx", specifier = ">=0.23.0,<1.0.0" }, { name = "pydantic", specifier = ">=1.9.1,!=2.5.0,!=2.5.1,<3.0.0" }, @@ -896,7 +988,7 @@ requires-dist = [ { name = "pyjwt", extras = ["crypto"], marker = "extra == 'jwt'", specifier = ">=2.4.0,<3.0.0" }, { name = "typing-extensions", specifier = ">=4.11.0,<5.0.0" }, ] -provides-extras = ["jwt", "auth-app", "auth-oauth-device", "auth", "all"] +provides-extras = ["jwt", "auth-app", "auth-oauth-device", "auth", "all-schemas", "all"] [package.metadata.requires-dev] codegen = [ @@ -942,17 +1034,121 @@ test = [ ] thirdparty = [{ name = "redis", specifier = ">=5.2.0,<8.0.0" }] +[[package]] +name = "githubkit-schemas" +version = "26.5.7" +source = { editable = "packages/githubkit-schemas" } +dependencies = [ + { name = "githubkit" }, + { name = "githubkit-schemas-2026-03-10" }, +] + +[package.optional-dependencies] +all = [ + { name = "githubkit-schemas-2022-11-28" }, + { name = "githubkit-schemas-2026-03-10" }, + { name = "githubkit-schemas-ghec-2022-11-28" }, + { name = "githubkit-schemas-ghec-2026-03-10" }, +] +all-gh = [ + { name = "githubkit-schemas-2022-11-28" }, + { name = "githubkit-schemas-2026-03-10" }, +] +all-ghec = [ + { name = "githubkit-schemas-ghec-2022-11-28" }, + { name = "githubkit-schemas-ghec-2026-03-10" }, +] +ghec = [ + { name = "githubkit-schemas-ghec-2026-03-10" }, +] +ghec-v2022-11-28 = [ + { name = "githubkit-schemas-ghec-2022-11-28" }, +] +ghec-v2026-03-10 = [ + { name = "githubkit-schemas-ghec-2026-03-10" }, +] +v2022-11-28 = [ + { name = "githubkit-schemas-2022-11-28" }, +] +v2026-03-10 = [ + { name = "githubkit-schemas-2026-03-10" }, +] + +[package.metadata] +requires-dist = [ + { name = "githubkit", editable = "." }, + { name = "githubkit-schemas-2022-11-28", marker = "extra == 'all'", editable = "packages/githubkit-schemas-2022-11-28" }, + { name = "githubkit-schemas-2022-11-28", marker = "extra == 'all-gh'", editable = "packages/githubkit-schemas-2022-11-28" }, + { name = "githubkit-schemas-2022-11-28", marker = "extra == 'v2022-11-28'", editable = "packages/githubkit-schemas-2022-11-28" }, + { name = "githubkit-schemas-2026-03-10", editable = "packages/githubkit-schemas-2026-03-10" }, + { name = "githubkit-schemas-2026-03-10", marker = "extra == 'all'", editable = "packages/githubkit-schemas-2026-03-10" }, + { name = "githubkit-schemas-2026-03-10", marker = "extra == 'all-gh'", editable = "packages/githubkit-schemas-2026-03-10" }, + { name = "githubkit-schemas-2026-03-10", marker = "extra == 'v2026-03-10'", editable = "packages/githubkit-schemas-2026-03-10" }, + { name = "githubkit-schemas-ghec-2022-11-28", marker = "extra == 'all'", editable = "packages/githubkit-schemas-ghec-2022-11-28" }, + { name = "githubkit-schemas-ghec-2022-11-28", marker = "extra == 'all-ghec'", editable = "packages/githubkit-schemas-ghec-2022-11-28" }, + { name = "githubkit-schemas-ghec-2022-11-28", marker = "extra == 'ghec-v2022-11-28'", editable = "packages/githubkit-schemas-ghec-2022-11-28" }, + { name = "githubkit-schemas-ghec-2026-03-10", marker = "extra == 'all'", editable = "packages/githubkit-schemas-ghec-2026-03-10" }, + { name = "githubkit-schemas-ghec-2026-03-10", marker = "extra == 'all-ghec'", editable = "packages/githubkit-schemas-ghec-2026-03-10" }, + { name = "githubkit-schemas-ghec-2026-03-10", marker = "extra == 'ghec'", editable = "packages/githubkit-schemas-ghec-2026-03-10" }, + { name = "githubkit-schemas-ghec-2026-03-10", marker = "extra == 'ghec-v2026-03-10'", editable = "packages/githubkit-schemas-ghec-2026-03-10" }, +] +provides-extras = ["v2022-11-28", "v2026-03-10", "ghec-v2022-11-28", "ghec-v2026-03-10", "ghec", "all-gh", "all-ghec", "all"] + +[[package]] +name = "githubkit-schemas-2022-11-28" +version = "26.5.7" +source = { editable = "packages/githubkit-schemas-2022-11-28" } +dependencies = [ + { name = "githubkit-schemas" }, +] + +[package.metadata] +requires-dist = [{ name = "githubkit-schemas", editable = "packages/githubkit-schemas" }] + +[[package]] +name = "githubkit-schemas-2026-03-10" +version = "26.5.7" +source = { editable = "packages/githubkit-schemas-2026-03-10" } +dependencies = [ + { name = "githubkit-schemas" }, +] + +[package.metadata] +requires-dist = [{ name = "githubkit-schemas", editable = "packages/githubkit-schemas" }] + +[[package]] +name = "githubkit-schemas-ghec-2022-11-28" +version = "26.5.7" +source = { editable = "packages/githubkit-schemas-ghec-2022-11-28" } +dependencies = [ + { name = "githubkit-schemas" }, +] + +[package.metadata] +requires-dist = [{ name = "githubkit-schemas", editable = "packages/githubkit-schemas" }] + +[[package]] +name = "githubkit-schemas-ghec-2026-03-10" +version = "26.5.7" +source = { editable = "packages/githubkit-schemas-ghec-2026-03-10" } +dependencies = [ + { name = "githubkit-schemas" }, +] + +[package.metadata] +requires-dist = [{ name = "githubkit-schemas", editable = "packages/githubkit-schemas" }] + [[package]] name = "gitpython" -version = "3.1.49" +version = "3.1.50" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "gitdb" }, { name = "typing-extensions", marker = "python_full_version < '3.10' or (extra == 'group-9-githubkit-pydantic-v1' and extra == 'group-9-githubkit-pydantic-v2')" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/e1/63/210aaa302d6a0a78daa67c5c15bbac2cad361722841278b0209b6da20855/gitpython-3.1.49.tar.gz", hash = "sha256:42f9399c9eb33fc581014bedd76049dfbaf6375aa2a5754575966387280315e1", size = 219367, upload-time = "2026-04-29T00:31:20.478Z" } +sdist = { url = "https://files.pythonhosted.org/packages/33/f6/354ae6491228b5eb40e10d89c4d13c651fe1cf7556e35ebdded50cff57ce/gitpython-3.1.50.tar.gz", hash = "sha256:80da2d12504d52e1f998772dc5baf6e553f8d2fcfe1fcc226c9d9a2ee3372dcc", size = 219798, upload-time = "2026-05-06T04:01:26.571Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/fd/6f/b842bfa6f21d6f87c57f9abf7194225e55279d96d869775e19e9f7236fc5/gitpython-3.1.49-py3-none-any.whl", hash = "sha256:024b0422d7f84d15cd794844e029ffebd4c5d42a7eb9b936b458697ef550a02c", size = 212190, upload-time = "2026-04-29T00:31:18.412Z" }, + { url = "https://files.pythonhosted.org/packages/20/7a/1c6e3562dfd8950adbb11ffbc65d21e7c89d01a6e4f137fa981056de25c5/gitpython-3.1.50-py3-none-any.whl", hash = "sha256:d352abe2908d07355014abdd21ddf798c2a961469239afec4962e9da884858f9", size = 212507, upload-time = "2026-05-06T04:01:23.799Z" }, ] [[package]] @@ -1015,7 +1211,8 @@ name = "identify" version = "2.6.15" source = { registry = "https://pypi.org/simple" } resolution-markers = [ - "python_full_version < '3.10'", + "python_full_version > '3.9' and python_full_version < '3.10'", + "python_full_version <= '3.9'", ] sdist = { url = "https://files.pythonhosted.org/packages/ff/e7/685de97986c916a6d93b3876139e00eef26ad5bbbd61925d670ae8013449/identify-2.6.15.tar.gz", hash = "sha256:e4f4864b96c6557ef2a1e1c951771838f4edc9df3a72ec7118b338801b11c7bf", size = 99311, upload-time = "2025-10-02T17:43:40.631Z" } wheels = [ @@ -1060,7 +1257,8 @@ name = "iniconfig" version = "2.1.0" source = { registry = "https://pypi.org/simple" } resolution-markers = [ - "python_full_version < '3.10'", + "python_full_version > '3.9' and python_full_version < '3.10'", + "python_full_version <= '3.9'", ] sdist = { url = "https://files.pythonhosted.org/packages/f2/97/ebf4da567aa6827c909642694d71c9fcf53e5b504f2d96afea02718862f3/iniconfig-2.1.0.tar.gz", hash = "sha256:3abbd2e30b36733fee78f9c7f7308f2d0050e88f0087fd25c2645f63c773e1c7", size = 4793, upload-time = "2025-03-19T20:09:59.721Z" } wheels = [ @@ -1096,7 +1294,8 @@ name = "jsonpointer" version = "3.0.0" source = { registry = "https://pypi.org/simple" } resolution-markers = [ - "python_full_version < '3.10'", + "python_full_version > '3.9' and python_full_version < '3.10'", + "python_full_version <= '3.9'", ] sdist = { url = "https://files.pythonhosted.org/packages/6a/0a/eebeb1fa92507ea94016a2a790b93c2ae41a7e18778f85471dc54475ed25/jsonpointer-3.0.0.tar.gz", hash = "sha256:2b2d729f2091522d61c3b31f82e11870f60b68f43fbc705cb76bf4b832af59ef", size = 9114, upload-time = "2024-06-10T19:24:42.462Z" } wheels = [ @@ -1120,7 +1319,8 @@ name = "markdown" version = "3.9" source = { registry = "https://pypi.org/simple" } resolution-markers = [ - "python_full_version < '3.10'", + "python_full_version > '3.9' and python_full_version < '3.10'", + "python_full_version <= '3.9'", ] dependencies = [ { name = "importlib-metadata", marker = "python_full_version < '3.10' or (extra == 'group-9-githubkit-pydantic-v1' and extra == 'group-9-githubkit-pydantic-v2')" }, @@ -1310,7 +1510,8 @@ name = "mkdocs-git-revision-date-localized-plugin" version = "1.5.0" source = { registry = "https://pypi.org/simple" } resolution-markers = [ - "python_full_version < '3.10'", + "python_full_version > '3.9' and python_full_version < '3.10'", + "python_full_version <= '3.9'", ] dependencies = [ { name = "babel", marker = "python_full_version < '3.10' or (extra == 'group-9-githubkit-pydantic-v1' and extra == 'group-9-githubkit-pydantic-v2')" }, @@ -1483,7 +1684,7 @@ version = "0.5.1" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "pydantic", version = "1.10.26", source = { registry = "https://pypi.org/simple" }, marker = "extra == 'group-9-githubkit-pydantic-v1'" }, - { name = "pydantic", version = "2.13.3", source = { registry = "https://pypi.org/simple" }, marker = "extra == 'group-9-githubkit-pydantic-v2' or extra != 'group-9-githubkit-pydantic-v1'" }, + { name = "pydantic", version = "2.13.4", source = { registry = "https://pypi.org/simple" }, marker = "extra == 'group-9-githubkit-pydantic-v2' or extra != 'group-9-githubkit-pydantic-v1'" }, ] sdist = { url = "https://files.pythonhosted.org/packages/02/2e/58d83848dd1a79cb92ed8e63f6ba901ca282c5f09d04af9423ec26c56fd7/openapi_pydantic-0.5.1.tar.gz", hash = "sha256:ff6835af6bde7a459fb93eb93bb92b8749b754fc6e51b2f1590a19dc3005ee0d", size = 60892, upload-time = "2025-01-08T19:29:27.083Z" } wheels = [ @@ -1522,7 +1723,8 @@ name = "platformdirs" version = "4.4.0" source = { registry = "https://pypi.org/simple" } resolution-markers = [ - "python_full_version < '3.10'", + "python_full_version > '3.9' and python_full_version < '3.10'", + "python_full_version <= '3.9'", ] sdist = { url = "https://files.pythonhosted.org/packages/23/e8/21db9c9987b0e728855bd57bff6984f67952bea55d6f75e055c46b5383e8/platformdirs-4.4.0.tar.gz", hash = "sha256:ca753cf4d81dc309bc67b0ea38fd15dc97bc30ce419a7f58d13eb3bf14c4febf", size = 21634, upload-time = "2025-08-26T14:32:04.268Z" } wheels = [ @@ -1555,7 +1757,8 @@ name = "pre-commit" version = "4.3.0" source = { registry = "https://pypi.org/simple" } resolution-markers = [ - "python_full_version < '3.10'", + "python_full_version > '3.9' and python_full_version < '3.10'", + "python_full_version <= '3.9'", ] dependencies = [ { name = "cfgv", version = "3.4.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10' or (extra == 'group-9-githubkit-pydantic-v1' and extra == 'group-9-githubkit-pydantic-v2')" }, @@ -1605,7 +1808,8 @@ name = "pycparser" version = "2.23" source = { registry = "https://pypi.org/simple" } resolution-markers = [ - "python_full_version < '3.10'", + "python_full_version > '3.9' and python_full_version < '3.10'", + "python_full_version <= '3.9'", ] sdist = { url = "https://files.pythonhosted.org/packages/fe/cf/d2d3b9f5699fb1e4615c8e32ff220203e43b248e1dfcc6736ad9057731ca/pycparser-2.23.tar.gz", hash = "sha256:78816d4f24add8f10a06d6f05b4d424ad9e96cfebf68a4ddc99c65c0720d00c2", size = 173734, upload-time = "2025-09-09T13:23:47.91Z" } wheels = [ @@ -1630,7 +1834,8 @@ version = "1.10.26" source = { registry = "https://pypi.org/simple" } resolution-markers = [ "python_full_version >= '3.10'", - "python_full_version < '3.10'", + "python_full_version > '3.9' and python_full_version < '3.10'", + "python_full_version <= '3.9'", ] dependencies = [ { name = "typing-extensions", marker = "extra == 'group-9-githubkit-pydantic-v1'" }, @@ -1672,11 +1877,12 @@ wheels = [ [[package]] name = "pydantic" -version = "2.13.3" +version = "2.13.4" source = { registry = "https://pypi.org/simple" } resolution-markers = [ "python_full_version >= '3.10'", - "python_full_version < '3.10'", + "python_full_version > '3.9' and python_full_version < '3.10'", + "python_full_version <= '3.9'", ] dependencies = [ { name = "annotated-types", marker = "extra == 'group-9-githubkit-pydantic-v2' or extra != 'group-9-githubkit-pydantic-v1'" }, @@ -1684,139 +1890,139 @@ dependencies = [ { name = "typing-extensions", marker = "extra == 'group-9-githubkit-pydantic-v2' or extra != 'group-9-githubkit-pydantic-v1'" }, { name = "typing-inspection", marker = "extra == 'group-9-githubkit-pydantic-v2' or extra != 'group-9-githubkit-pydantic-v1'" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/d9/e4/40d09941a2cebcb20609b86a559817d5b9291c49dd6f8c87e5feffbe703a/pydantic-2.13.3.tar.gz", hash = "sha256:af09e9d1d09f4e7fe37145c1f577e1d61ceb9a41924bf0094a36506285d0a84d", size = 844068, upload-time = "2026-04-20T14:46:43.632Z" } +sdist = { url = "https://files.pythonhosted.org/packages/18/a5/b60d21ac674192f8ab0ba4e9fd860690f9b4a6e51ca5df118733b487d8d6/pydantic-2.13.4.tar.gz", hash = "sha256:c40756b57adaa8b1efeeced5c196f3f3b7c435f90e84ea7f443901bec8099ef6", size = 844775, upload-time = "2026-05-06T13:43:05.343Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/f3/0a/fd7d723f8f8153418fb40cf9c940e82004fce7e987026b08a68a36dd3fe7/pydantic-2.13.3-py3-none-any.whl", hash = "sha256:6db14ac8dfc9a1e57f87ea2c0de670c251240f43cb0c30a5130e9720dc612927", size = 471981, upload-time = "2026-04-20T14:46:41.402Z" }, + { url = "https://files.pythonhosted.org/packages/fd/7b/122376b1fd3c62c1ed9dc80c931ace4844b3c55407b6fb2d199377c9736f/pydantic-2.13.4-py3-none-any.whl", hash = "sha256:45a282cde31d808236fd7ea9d919b128653c8b38b393d1c4ab335c62924d9aba", size = 472262, upload-time = "2026-05-06T13:43:02.641Z" }, ] [[package]] name = "pydantic-core" -version = "2.46.3" +version = "2.46.4" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "typing-extensions", marker = "extra == 'group-9-githubkit-pydantic-v2' or extra != 'group-9-githubkit-pydantic-v1'" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/2a/ef/f7abb56c49382a246fd2ce9c799691e3c3e7175ec74b14d99e798bcddb1a/pydantic_core-2.46.3.tar.gz", hash = "sha256:41c178f65b8c29807239d47e6050262eb6bf84eb695e41101e62e38df4a5bc2c", size = 471412, upload-time = "2026-04-20T14:40:56.672Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/22/98/b50eb9a411e87483b5c65dba4fa430a06bac4234d3403a40e5a9905ebcd0/pydantic_core-2.46.3-cp310-cp310-macosx_10_12_x86_64.whl", hash = "sha256:1da3786b8018e60349680720158cc19161cc3b4bdd815beb0a321cd5ce1ad5b1", size = 2108971, upload-time = "2026-04-20T14:43:51.945Z" }, - { url = "https://files.pythonhosted.org/packages/08/4b/f364b9d161718ff2217160a4b5d41ce38de60aed91c3689ebffa1c939d23/pydantic_core-2.46.3-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:cc0988cb29d21bf4a9d5cf2ef970b5c0e38d8d8e107a493278c05dc6c1dda69f", size = 1949588, upload-time = "2026-04-20T14:44:10.386Z" }, - { url = "https://files.pythonhosted.org/packages/8f/8b/30bd03ee83b2f5e29f5ba8e647ab3c456bf56f2ec72fdbcc0215484a0854/pydantic_core-2.46.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:27f9067c3bfadd04c55484b89c0d267981b2f3512850f6f66e1e74204a4e4ce3", size = 1975986, upload-time = "2026-04-20T14:43:57.106Z" }, - { url = "https://files.pythonhosted.org/packages/3c/54/13ccf954d84ec275d5d023d5786e4aa48840bc9f161f2838dc98e1153518/pydantic_core-2.46.3-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:a642ac886ecf6402d9882d10c405dcf4b902abeb2972cd5fb4a48c83cd59279a", size = 2055830, upload-time = "2026-04-20T14:44:15.499Z" }, - { url = "https://files.pythonhosted.org/packages/be/0e/65f38125e660fdbd72aa858e7dfae893645cfa0e7b13d333e174a367cd23/pydantic_core-2.46.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:79f561438481f28681584b89e2effb22855e2179880314bcddbf5968e935e807", size = 2222340, upload-time = "2026-04-20T14:41:51.353Z" }, - { url = "https://files.pythonhosted.org/packages/d1/88/f3ab7739efe0e7e80777dbb84c59eb98518e3f57ea433206194c2e425272/pydantic_core-2.46.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:57a973eae4665352a47cf1a99b4ee864620f2fe663a217d7a8da68a1f3a5bfda", size = 2280727, upload-time = "2026-04-20T14:41:30.461Z" }, - { url = "https://files.pythonhosted.org/packages/2a/6d/c228219080817bec4982f9531cadb18da6aaa770fdeb114f49c237ac2c9f/pydantic_core-2.46.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:83d002b97072a53ea150d63e0a3adfae5670cef5aa8a6e490240e482d3b22e57", size = 2092158, upload-time = "2026-04-20T14:44:07.305Z" }, - { url = "https://files.pythonhosted.org/packages/0f/b1/525a16711e7c6d61635fac3b0bd54600b5c5d9f60c6fc5aaab26b64a2297/pydantic_core-2.46.3-cp310-cp310-manylinux_2_31_riscv64.whl", hash = "sha256:b40ddd51e7c44b28cfaef746c9d3c506d658885e0a46f9eeef2ee815cbf8e045", size = 2116626, upload-time = "2026-04-20T14:42:34.118Z" }, - { url = "https://files.pythonhosted.org/packages/ef/7c/17d30673351439a6951bf54f564cf2443ab00ae264ec9df00e2efd710eb5/pydantic_core-2.46.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:ac5ec7fb9b87f04ee839af2d53bcadea57ded7d229719f56c0ed895bff987943", size = 2160691, upload-time = "2026-04-20T14:41:14.023Z" }, - { url = "https://files.pythonhosted.org/packages/86/66/af8adbcbc0886ead7f1a116606a534d75a307e71e6e08226000d51b880d2/pydantic_core-2.46.3-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:a3b11c812f61b3129c4905781a2601dfdfdea5fe1e6c1cfb696b55d14e9c054f", size = 2182543, upload-time = "2026-04-20T14:40:48.886Z" }, - { url = "https://files.pythonhosted.org/packages/b0/37/6de71e0f54c54a4190010f57deb749e1ddf75c568ada3b1320b70067f121/pydantic_core-2.46.3-cp310-cp310-musllinux_1_1_armv7l.whl", hash = "sha256:1108da631e602e5b3c38d6d04fe5bb3bfa54349e6918e3ca6cf570b2e2b2f9d4", size = 2324513, upload-time = "2026-04-20T14:42:36.121Z" }, - { url = "https://files.pythonhosted.org/packages/51/b1/9fc74ce94f603d5ef59ff258ca9c2c8fb902fb548d340a96f77f4d1c3b7f/pydantic_core-2.46.3-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:de885175515bcfa98ae618c1df7a072f13d179f81376c8007112af20567fd08a", size = 2361853, upload-time = "2026-04-20T14:43:24.886Z" }, - { url = "https://files.pythonhosted.org/packages/40/d0/4c652fc592db35f100279ee751d5a145aca1b9a7984b9684ba7c1b5b0535/pydantic_core-2.46.3-cp310-cp310-win32.whl", hash = "sha256:d11058e3201527d41bc6b545c79187c9e4bf85e15a236a6007f0e991518882b7", size = 1980465, upload-time = "2026-04-20T14:44:46.239Z" }, - { url = "https://files.pythonhosted.org/packages/27/b8/a920453c38afbe1f355e1ea0b0d94a0a3e0b0879d32d793108755fa171d5/pydantic_core-2.46.3-cp310-cp310-win_amd64.whl", hash = "sha256:3612edf65c8ea67ac13616c4d23af12faef1ae435a8a93e5934c2a0cbbdd1fd6", size = 2073884, upload-time = "2026-04-20T14:43:01.201Z" }, - { url = "https://files.pythonhosted.org/packages/22/a2/1ba90a83e85a3f94c796b184f3efde9c72f2830dcda493eea8d59ba78e6d/pydantic_core-2.46.3-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:ab124d49d0459b2373ecf54118a45c28a1e6d4192a533fbc915e70f556feb8e5", size = 2106740, upload-time = "2026-04-20T14:41:20.932Z" }, - { url = "https://files.pythonhosted.org/packages/b6/f6/99ae893c89a0b9d3daec9f95487aa676709aa83f67643b3f0abaf4ab628a/pydantic_core-2.46.3-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:cca67d52a5c7a16aed2b3999e719c4bcf644074eac304a5d3d62dd70ae7d4b2c", size = 1948293, upload-time = "2026-04-20T14:43:42.115Z" }, - { url = "https://files.pythonhosted.org/packages/3e/b8/2e8e636dc9e3f16c2e16bf0849e24be82c5ee82c603c65fc0326666328fc/pydantic_core-2.46.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5c024e08c0ba23e6fd68c771a521e9d6a792f2ebb0fa734296b36394dc30390e", size = 1973222, upload-time = "2026-04-20T14:41:57.841Z" }, - { url = "https://files.pythonhosted.org/packages/34/36/0e730beec4d83c5306f417afbd82ff237d9a21e83c5edf675f31ed84c1fe/pydantic_core-2.46.3-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:6645ce7eec4928e29a1e3b3d5c946621d105d3e79f0c9cddf07c2a9770949287", size = 2053852, upload-time = "2026-04-20T14:40:43.077Z" }, - { url = "https://files.pythonhosted.org/packages/4b/f0/3071131f47e39136a17814576e0fada9168569f7f8c0e6ac4d1ede6a4958/pydantic_core-2.46.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a712c7118e6c5ea96562f7b488435172abb94a3c53c22c9efc1412264a45cbbe", size = 2221134, upload-time = "2026-04-20T14:43:03.349Z" }, - { url = "https://files.pythonhosted.org/packages/2f/a9/a2dc023eec5aa4b02a467874bad32e2446957d2adcab14e107eab502e978/pydantic_core-2.46.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:69a868ef3ff206343579021c40faf3b1edc64b1cc508ff243a28b0a514ccb050", size = 2279785, upload-time = "2026-04-20T14:41:19.285Z" }, - { url = "https://files.pythonhosted.org/packages/0a/44/93f489d16fb63fbd41c670441536541f6e8cfa1e5a69f40bc9c5d30d8c90/pydantic_core-2.46.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cc7e8c32db809aa0f6ea1d6869ebc8518a65d5150fdfad8bcae6a49ae32a22e2", size = 2089404, upload-time = "2026-04-20T14:43:10.108Z" }, - { url = "https://files.pythonhosted.org/packages/2a/78/8692e3aa72b2d004f7a5d937f1dfdc8552ba26caf0bec75f342c40f00dec/pydantic_core-2.46.3-cp311-cp311-manylinux_2_31_riscv64.whl", hash = "sha256:3481bd1341dc85779ee506bc8e1196a277ace359d89d28588a9468c3ecbe63fa", size = 2114898, upload-time = "2026-04-20T14:44:51.475Z" }, - { url = "https://files.pythonhosted.org/packages/6a/62/e83133f2e7832532060175cebf1f13748f4c7e7e7165cdd1f611f174494b/pydantic_core-2.46.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:8690eba565c6d68ffd3a8655525cbdd5246510b44a637ee2c6c03a7ebfe64d3c", size = 2157856, upload-time = "2026-04-20T14:43:46.64Z" }, - { url = "https://files.pythonhosted.org/packages/6d/ec/6a500e3ad7718ee50583fae79c8651f5d37e3abce1fa9ae177ae65842c53/pydantic_core-2.46.3-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:4de88889d7e88d50d40ee5b39d5dac0bcaef9ba91f7e536ac064e6b2834ecccf", size = 2180168, upload-time = "2026-04-20T14:42:00.302Z" }, - { url = "https://files.pythonhosted.org/packages/d8/53/8267811054b1aa7fc1dc7ded93812372ef79a839f5e23558136a6afbfde1/pydantic_core-2.46.3-cp311-cp311-musllinux_1_1_armv7l.whl", hash = "sha256:e480080975c1ef7f780b8f99ed72337e7cc5efea2e518a20a692e8e7b278eb8b", size = 2322885, upload-time = "2026-04-20T14:41:05.253Z" }, - { url = "https://files.pythonhosted.org/packages/c8/c1/1c0acdb3aa0856ddc4ecc55214578f896f2de16f400cf51627eb3c26c1c4/pydantic_core-2.46.3-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:de3a5c376f8cd94da9a1b8fd3dd1c16c7a7b216ed31dc8ce9fd7a22bf13b836e", size = 2360328, upload-time = "2026-04-20T14:41:43.991Z" }, - { url = "https://files.pythonhosted.org/packages/f0/d0/ef39cd0f4a926814f360e71c1adeab48ad214d9727e4deb48eedfb5bce1a/pydantic_core-2.46.3-cp311-cp311-win32.whl", hash = "sha256:fc331a5314ffddd5385b9ee9d0d2fee0b13c27e0e02dad71b1ae5d6561f51eeb", size = 1979464, upload-time = "2026-04-20T14:43:12.215Z" }, - { url = "https://files.pythonhosted.org/packages/18/9c/f41951b0d858e343f1cf09398b2a7b3014013799744f2c4a8ad6a3eec4f2/pydantic_core-2.46.3-cp311-cp311-win_amd64.whl", hash = "sha256:b5b9c6cf08a8a5e502698f5e153056d12c34b8fb30317e0c5fd06f45162a6346", size = 2070837, upload-time = "2026-04-20T14:41:47.707Z" }, - { url = "https://files.pythonhosted.org/packages/9f/1e/264a17cd582f6ed50950d4d03dd5fefd84e570e238afe1cb3e25cf238769/pydantic_core-2.46.3-cp311-cp311-win_arm64.whl", hash = "sha256:5dfd51cf457482f04ec49491811a2b8fd5b843b64b11eecd2d7a1ee596ea78a6", size = 2053647, upload-time = "2026-04-20T14:42:27.535Z" }, - { url = "https://files.pythonhosted.org/packages/4b/cb/5b47425556ecc1f3fe18ed2a0083188aa46e1dd812b06e406475b3a5d536/pydantic_core-2.46.3-cp312-cp312-macosx_10_12_x86_64.whl", hash = "sha256:b11b59b3eee90a80a36701ddb4576d9ae31f93f05cb9e277ceaa09e6bf074a67", size = 2101946, upload-time = "2026-04-20T14:40:52.581Z" }, - { url = "https://files.pythonhosted.org/packages/a1/4f/2fb62c2267cae99b815bbf4a7b9283812c88ca3153ef29f7707200f1d4e5/pydantic_core-2.46.3-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:af8653713055ea18a3abc1537fe2ebc42f5b0bbb768d1eb79fd74eb47c0ac089", size = 1951612, upload-time = "2026-04-20T14:42:42.996Z" }, - { url = "https://files.pythonhosted.org/packages/50/6e/b7348fd30d6556d132cddd5bd79f37f96f2601fe0608afac4f5fb01ec0b3/pydantic_core-2.46.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:75a519dab6d63c514f3a81053e5266c549679e4aa88f6ec57f2b7b854aceb1b0", size = 1977027, upload-time = "2026-04-20T14:42:02.001Z" }, - { url = "https://files.pythonhosted.org/packages/82/11/31d60ee2b45540d3fb0b29302a393dbc01cd771c473f5b5147bcd353e593/pydantic_core-2.46.3-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:a6cd87cb1575b1ad05ba98894c5b5c96411ef678fa2f6ed2576607095b8d9789", size = 2063008, upload-time = "2026-04-20T14:44:17.952Z" }, - { url = "https://files.pythonhosted.org/packages/8a/db/3a9d1957181b59258f44a2300ab0f0be9d1e12d662a4f57bb31250455c52/pydantic_core-2.46.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f80a55484b8d843c8ada81ebf70a682f3f00a3d40e378c06cf17ecb44d280d7d", size = 2233082, upload-time = "2026-04-20T14:40:57.934Z" }, - { url = "https://files.pythonhosted.org/packages/9c/e1/3277c38792aeb5cfb18c2f0c5785a221d9ff4e149abbe1184d53d5f72273/pydantic_core-2.46.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3861f1731b90c50a3266316b9044f5c9b405eecb8e299b0a7120596334e4fe9c", size = 2304615, upload-time = "2026-04-20T14:42:12.584Z" }, - { url = "https://files.pythonhosted.org/packages/5e/d5/e3d9717c9eba10855325650afd2a9cba8e607321697f18953af9d562da2f/pydantic_core-2.46.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fb528e295ed31570ac3dcc9bfdd6e0150bc11ce6168ac87a8082055cf1a67395", size = 2094380, upload-time = "2026-04-20T14:43:05.522Z" }, - { url = "https://files.pythonhosted.org/packages/a1/20/abac35dedcbfd66c6f0b03e4e3564511771d6c9b7ede10a362d03e110d9b/pydantic_core-2.46.3-cp312-cp312-manylinux_2_31_riscv64.whl", hash = "sha256:367508faa4973b992b271ba1494acaab36eb7e8739d1e47be5035fb1ea225396", size = 2135429, upload-time = "2026-04-20T14:41:55.549Z" }, - { url = "https://files.pythonhosted.org/packages/6c/a5/41bfd1df69afad71b5cf0535055bccc73022715ad362edbc124bc1e021d7/pydantic_core-2.46.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:5ad3c826fe523e4becf4fe39baa44286cff85ef137c729a2c5e269afbfd0905d", size = 2174582, upload-time = "2026-04-20T14:41:45.96Z" }, - { url = "https://files.pythonhosted.org/packages/79/65/38d86ea056b29b2b10734eb23329b7a7672ca604df4f2b6e9c02d4ee22fe/pydantic_core-2.46.3-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:ec638c5d194ef8af27db69f16c954a09797c0dc25015ad6123eb2c73a4d271ca", size = 2187533, upload-time = "2026-04-20T14:40:55.367Z" }, - { url = "https://files.pythonhosted.org/packages/b6/55/a1129141678a2026badc539ad1dee0a71d06f54c2f06a4bd68c030ac781b/pydantic_core-2.46.3-cp312-cp312-musllinux_1_1_armv7l.whl", hash = "sha256:28ed528c45446062ee66edb1d33df5d88828ae167de76e773a3c7f64bd14e976", size = 2332985, upload-time = "2026-04-20T14:44:13.05Z" }, - { url = "https://files.pythonhosted.org/packages/d7/60/cb26f4077719f709e54819f4e8e1d43f4091f94e285eb6bd21e1190a7b7c/pydantic_core-2.46.3-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:aed19d0c783886d5bd86d80ae5030006b45e28464218747dcf83dabfdd092c7b", size = 2373670, upload-time = "2026-04-20T14:41:53.421Z" }, - { url = "https://files.pythonhosted.org/packages/6b/7e/c3f21882bdf1d8d086876f81b5e296206c69c6082551d776895de7801fa0/pydantic_core-2.46.3-cp312-cp312-win32.whl", hash = "sha256:06d5d8820cbbdb4147578c1fe7ffcd5b83f34508cb9f9ab76e807be7db6ff0a4", size = 1966722, upload-time = "2026-04-20T14:44:30.588Z" }, - { url = "https://files.pythonhosted.org/packages/57/be/6b5e757b859013ebfbd7adba02f23b428f37c86dcbf78b5bb0b4ffd36e99/pydantic_core-2.46.3-cp312-cp312-win_amd64.whl", hash = "sha256:c3212fda0ee959c1dd04c60b601ec31097aaa893573a3a1abd0a47bcac2968c1", size = 2072970, upload-time = "2026-04-20T14:42:54.248Z" }, - { url = "https://files.pythonhosted.org/packages/bf/f8/a989b21cc75e9a32d24192ef700eea606521221a89faa40c919ce884f2b1/pydantic_core-2.46.3-cp312-cp312-win_arm64.whl", hash = "sha256:f1f8338dd7a7f31761f1f1a3c47503a9a3b34eea3c8b01fa6ee96408affb5e72", size = 2035963, upload-time = "2026-04-20T14:44:20.4Z" }, - { url = "https://files.pythonhosted.org/packages/9b/3c/9b5e8eb9821936d065439c3b0fb1490ffa64163bfe7e1595985a47896073/pydantic_core-2.46.3-cp313-cp313-macosx_10_12_x86_64.whl", hash = "sha256:12bc98de041458b80c86c56b24df1d23832f3e166cbaff011f25d187f5c62c37", size = 2102109, upload-time = "2026-04-20T14:41:24.219Z" }, - { url = "https://files.pythonhosted.org/packages/91/97/1c41d1f5a19f241d8069f1e249853bcce378cdb76eec8ab636d7bc426280/pydantic_core-2.46.3-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:85348b8f89d2c3508b65b16c3c33a4da22b8215138d8b996912bb1532868885f", size = 1951820, upload-time = "2026-04-20T14:42:14.236Z" }, - { url = "https://files.pythonhosted.org/packages/30/b4/d03a7ae14571bc2b6b3c7b122441154720619afe9a336fa3a95434df5e2f/pydantic_core-2.46.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1105677a6df914b1fb71a81b96c8cce7726857e1717d86001f29be06a25ee6f8", size = 1977785, upload-time = "2026-04-20T14:42:31.648Z" }, - { url = "https://files.pythonhosted.org/packages/ae/0c/4086f808834b59e3c8f1aa26df8f4b6d998cdcf354a143d18ef41529d1fe/pydantic_core-2.46.3-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:87082cd65669a33adeba5470769e9704c7cf026cc30afb9cc77fd865578ebaad", size = 2062761, upload-time = "2026-04-20T14:40:37.093Z" }, - { url = "https://files.pythonhosted.org/packages/fa/71/a649be5a5064c2df0db06e0a512c2281134ed2fcc981f52a657936a7527c/pydantic_core-2.46.3-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:60e5f66e12c4f5212d08522963380eaaeac5ebd795826cfd19b2dfb0c7a52b9c", size = 2232989, upload-time = "2026-04-20T14:42:59.254Z" }, - { url = "https://files.pythonhosted.org/packages/a2/84/7756e75763e810b3a710f4724441d1ecc5883b94aacb07ca71c5fb5cfb69/pydantic_core-2.46.3-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b6cdf19bf84128d5e7c37e8a73a0c5c10d51103a650ac585d42dd6ae233f2b7f", size = 2303975, upload-time = "2026-04-20T14:41:32.287Z" }, - { url = "https://files.pythonhosted.org/packages/6c/35/68a762e0c1e31f35fa0dac733cbd9f5b118042853698de9509c8e5bf128b/pydantic_core-2.46.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:031bb17f4885a43773c8c763089499f242aee2ea85cf17154168775dccdecf35", size = 2095325, upload-time = "2026-04-20T14:42:47.685Z" }, - { url = "https://files.pythonhosted.org/packages/77/bf/1bf8c9a8e91836c926eae5e3e51dce009bf495a60ca56060689d3df3f340/pydantic_core-2.46.3-cp313-cp313-manylinux_2_31_riscv64.whl", hash = "sha256:bcf2a8b2982a6673693eae7348ef3d8cf3979c1d63b54fca7c397a635cc68687", size = 2133368, upload-time = "2026-04-20T14:41:22.766Z" }, - { url = "https://files.pythonhosted.org/packages/e5/50/87d818d6bab915984995157ceb2380f5aac4e563dddbed6b56f0ed057aba/pydantic_core-2.46.3-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:28e8cf2f52d72ced402a137145923a762cbb5081e48b34312f7a0c8f55928ec3", size = 2173908, upload-time = "2026-04-20T14:42:52.044Z" }, - { url = "https://files.pythonhosted.org/packages/91/88/a311fb306d0bd6185db41fa14ae888fb81d0baf648a761ae760d30819d33/pydantic_core-2.46.3-cp313-cp313-musllinux_1_1_aarch64.whl", hash = "sha256:17eaface65d9fc5abb940003020309c1bf7a211f5f608d7870297c367e6f9022", size = 2186422, upload-time = "2026-04-20T14:43:29.55Z" }, - { url = "https://files.pythonhosted.org/packages/8f/79/28fd0d81508525ab2054fef7c77a638c8b5b0afcbbaeee493cf7c3fef7e1/pydantic_core-2.46.3-cp313-cp313-musllinux_1_1_armv7l.whl", hash = "sha256:93fd339f23408a07e98950a89644f92c54d8729719a40b30c0a30bb9ebc55d23", size = 2332709, upload-time = "2026-04-20T14:42:16.134Z" }, - { url = "https://files.pythonhosted.org/packages/b3/21/795bf5fe5c0f379308b8ef19c50dedab2e7711dbc8d0c2acf08f1c7daa05/pydantic_core-2.46.3-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:23cbdb3aaa74dfe0837975dbf69b469753bbde8eacace524519ffdb6b6e89eb7", size = 2372428, upload-time = "2026-04-20T14:41:10.974Z" }, - { url = "https://files.pythonhosted.org/packages/45/b3/ed14c659cbe7605e3ef063077680a64680aec81eb1a04763a05190d49b7f/pydantic_core-2.46.3-cp313-cp313-win32.whl", hash = "sha256:610eda2e3838f401105e6326ca304f5da1e15393ae25dacae5c5c63f2c275b13", size = 1965601, upload-time = "2026-04-20T14:41:42.128Z" }, - { url = "https://files.pythonhosted.org/packages/ef/bb/adb70d9a762ddd002d723fbf1bd492244d37da41e3af7b74ad212609027e/pydantic_core-2.46.3-cp313-cp313-win_amd64.whl", hash = "sha256:68cc7866ed863db34351294187f9b729964c371ba33e31c26f478471c52e1ed0", size = 2071517, upload-time = "2026-04-20T14:43:36.096Z" }, - { url = "https://files.pythonhosted.org/packages/52/eb/66faefabebfe68bd7788339c9c9127231e680b11906368c67ce112fdb47f/pydantic_core-2.46.3-cp313-cp313-win_arm64.whl", hash = "sha256:f64b5537ac62b231572879cd08ec05600308636a5d63bcbdb15063a466977bec", size = 2035802, upload-time = "2026-04-20T14:43:38.507Z" }, - { url = "https://files.pythonhosted.org/packages/7f/db/a7bcb4940183fda36022cd18ba8dd12f2dff40740ec7b58ce7457befa416/pydantic_core-2.46.3-cp314-cp314-macosx_10_12_x86_64.whl", hash = "sha256:afa3aa644f74e290cdede48a7b0bee37d1c35e71b05105f6b340d484af536d9b", size = 2097614, upload-time = "2026-04-20T14:44:38.374Z" }, - { url = "https://files.pythonhosted.org/packages/24/35/e4066358a22e3e99519db370494c7528f5a2aa1367370e80e27e20283543/pydantic_core-2.46.3-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:ced3310e51aa425f7f77da8bbbb5212616655bedbe82c70944320bc1dbe5e018", size = 1951896, upload-time = "2026-04-20T14:40:53.996Z" }, - { url = "https://files.pythonhosted.org/packages/87/92/37cf4049d1636996e4b888c05a501f40a43ff218983a551d57f9d5e14f0d/pydantic_core-2.46.3-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e29908922ce9da1a30b4da490bd1d3d82c01dcfdf864d2a74aacee674d0bfa34", size = 1979314, upload-time = "2026-04-20T14:41:49.446Z" }, - { url = "https://files.pythonhosted.org/packages/d8/36/9ff4d676dfbdfb2d591cf43f3d90ded01e15b1404fd101180ed2d62a2fd3/pydantic_core-2.46.3-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0c9ff69140423eea8ed2d5477df3ba037f671f5e897d206d921bc9fdc39613e7", size = 2056133, upload-time = "2026-04-20T14:42:23.574Z" }, - { url = "https://files.pythonhosted.org/packages/bc/f0/405b442a4d7ba855b06eec8b2bf9c617d43b8432d099dfdc7bf999293495/pydantic_core-2.46.3-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b675ab0a0d5b1c8fdb81195dc5bcefea3f3c240871cdd7ff9a2de8aa50772eb2", size = 2228726, upload-time = "2026-04-20T14:44:22.816Z" }, - { url = "https://files.pythonhosted.org/packages/e7/f8/65cd92dd5a0bd89ba277a98ecbfaf6fc36bbd3300973c7a4b826d6ab1391/pydantic_core-2.46.3-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:0087084960f209a9a4af50ecd1fb063d9ad3658c07bb81a7a53f452dacbfb2ba", size = 2301214, upload-time = "2026-04-20T14:44:48.792Z" }, - { url = "https://files.pythonhosted.org/packages/fd/86/ef96a4c6e79e7a2d0410826a68fbc0eccc0fd44aa733be199d5fcac3bb87/pydantic_core-2.46.3-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ed42e6cc8e1b0e2b9b96e2276bad70ae625d10d6d524aed0c93de974ae029f9f", size = 2099927, upload-time = "2026-04-20T14:41:40.196Z" }, - { url = "https://files.pythonhosted.org/packages/6d/53/269caf30e0096e0a8a8f929d1982a27b3879872cca2d917d17c2f9fdf4fe/pydantic_core-2.46.3-cp314-cp314-manylinux_2_31_riscv64.whl", hash = "sha256:f1771ce258afb3e4201e67d154edbbae712a76a6081079fe247c2f53c6322c22", size = 2128789, upload-time = "2026-04-20T14:41:15.868Z" }, - { url = "https://files.pythonhosted.org/packages/00/b0/1a6d9b6a587e118482910c244a1c5acf4d192604174132efd12bf0ac486f/pydantic_core-2.46.3-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:a7610b6a5242a6c736d8ad47fd5fff87fcfe8f833b281b1c409c3d6835d9227f", size = 2173815, upload-time = "2026-04-20T14:44:25.152Z" }, - { url = "https://files.pythonhosted.org/packages/87/56/e7e00d4041a7e62b5a40815590114db3b535bf3ca0bf4dca9f16cef25246/pydantic_core-2.46.3-cp314-cp314-musllinux_1_1_aarch64.whl", hash = "sha256:ff5e7783bcc5476e1db448bf268f11cb257b1c276d3e89f00b5727be86dd0127", size = 2181608, upload-time = "2026-04-20T14:41:28.933Z" }, - { url = "https://files.pythonhosted.org/packages/e8/22/4bd23c3d41f7c185d60808a1de83c76cf5aeabf792f6c636a55c3b1ec7f9/pydantic_core-2.46.3-cp314-cp314-musllinux_1_1_armv7l.whl", hash = "sha256:9d2e32edcc143bc01e95300671915d9ca052d4f745aa0a49c48d4803f8a85f2c", size = 2326968, upload-time = "2026-04-20T14:42:03.962Z" }, - { url = "https://files.pythonhosted.org/packages/24/ac/66cd45129e3915e5ade3b292cb3bc7fd537f58f8f8dbdaba6170f7cabb74/pydantic_core-2.46.3-cp314-cp314-musllinux_1_1_x86_64.whl", hash = "sha256:6e42d83d1c6b87fa56b521479cff237e626a292f3b31b6345c15a99121b454c1", size = 2369842, upload-time = "2026-04-20T14:41:35.52Z" }, - { url = "https://files.pythonhosted.org/packages/a2/51/dd4248abb84113615473aa20d5545b7c4cd73c8644003b5259686f93996c/pydantic_core-2.46.3-cp314-cp314-win32.whl", hash = "sha256:07bc6d2a28c3adb4f7c6ae46aa4f2d2929af127f587ed44057af50bf1ce0f505", size = 1959661, upload-time = "2026-04-20T14:41:00.042Z" }, - { url = "https://files.pythonhosted.org/packages/20/eb/59980e5f1ae54a3b86372bd9f0fa373ea2d402e8cdcd3459334430f91e91/pydantic_core-2.46.3-cp314-cp314-win_amd64.whl", hash = "sha256:8940562319bc621da30714617e6a7eaa6b98c84e8c685bcdc02d7ed5e7c7c44e", size = 2071686, upload-time = "2026-04-20T14:43:16.471Z" }, - { url = "https://files.pythonhosted.org/packages/8c/db/1cf77e5247047dfee34bc01fa9bca134854f528c8eb053e144298893d370/pydantic_core-2.46.3-cp314-cp314-win_arm64.whl", hash = "sha256:5dcbbcf4d22210ced8f837c96db941bdb078f419543472aca5d9a0bb7cddc7df", size = 2026907, upload-time = "2026-04-20T14:43:31.732Z" }, - { url = "https://files.pythonhosted.org/packages/57/c0/b3df9f6a543276eadba0a48487b082ca1f201745329d97dbfa287034a230/pydantic_core-2.46.3-cp314-cp314t-macosx_10_12_x86_64.whl", hash = "sha256:d0fe3dce1e836e418f912c1ad91c73357d03e556a4d286f441bf34fed2dbeecf", size = 2095047, upload-time = "2026-04-20T14:42:37.982Z" }, - { url = "https://files.pythonhosted.org/packages/66/57/886a938073b97556c168fd99e1a7305bb363cd30a6d2c76086bf0587b32a/pydantic_core-2.46.3-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:9ce92e58abc722dac1bf835a6798a60b294e48eb0e625ec9fd994b932ac5feee", size = 1934329, upload-time = "2026-04-20T14:43:49.655Z" }, - { url = "https://files.pythonhosted.org/packages/0b/7c/b42eaa5c34b13b07ecb51da21761297a9b8eb43044c864a035999998f328/pydantic_core-2.46.3-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a03e6467f0f5ab796a486146d1b887b2dc5e5f9b3288898c1b1c3ad974e53e4a", size = 1974847, upload-time = "2026-04-20T14:42:10.737Z" }, - { url = "https://files.pythonhosted.org/packages/e6/9b/92b42db6543e7de4f99ae977101a2967b63122d4b6cf7773812da2d7d5b5/pydantic_core-2.46.3-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:2798b6ba041b9d70acfb9071a2ea13c8456dd1e6a5555798e41ba7b0790e329c", size = 2041742, upload-time = "2026-04-20T14:40:44.262Z" }, - { url = "https://files.pythonhosted.org/packages/0f/19/46fbe1efabb5aa2834b43b9454e70f9a83ad9c338c1291e48bdc4fecf167/pydantic_core-2.46.3-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:9be3e221bdc6d69abf294dcf7aff6af19c31a5cdcc8f0aa3b14be29df4bd03b1", size = 2236235, upload-time = "2026-04-20T14:41:27.307Z" }, - { url = "https://files.pythonhosted.org/packages/77/da/b3f95bc009ad60ec53120f5d16c6faa8cabdbe8a20d83849a1f2b8728148/pydantic_core-2.46.3-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f13936129ce841f2a5ddf6f126fea3c43cd128807b5a59588c37cf10178c2e64", size = 2282633, upload-time = "2026-04-20T14:44:33.271Z" }, - { url = "https://files.pythonhosted.org/packages/cc/6e/401336117722e28f32fb8220df676769d28ebdf08f2f4469646d404c43a3/pydantic_core-2.46.3-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:28b5f2ef03416facccb1c6ef744c69793175fd27e44ef15669201601cf423acb", size = 2109679, upload-time = "2026-04-20T14:44:41.065Z" }, - { url = "https://files.pythonhosted.org/packages/fc/53/b289f9bc8756a32fe718c46f55afaeaf8d489ee18d1a1e7be1db73f42cc4/pydantic_core-2.46.3-cp314-cp314t-manylinux_2_31_riscv64.whl", hash = "sha256:830d1247d77ad23852314f069e9d7ddafeec5f684baf9d7e7065ed46a049c4e6", size = 2108342, upload-time = "2026-04-20T14:42:50.144Z" }, - { url = "https://files.pythonhosted.org/packages/10/5b/8292fc7c1f9111f1b2b7c1b0dcf1179edcd014fc3ea4517499f50b829d71/pydantic_core-2.46.3-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:d0793c90c1a3c74966e7975eaef3ed30ebdff3260a0f815a62a22adc17e4c01c", size = 2157208, upload-time = "2026-04-20T14:42:08.133Z" }, - { url = "https://files.pythonhosted.org/packages/2b/9e/f80044e9ec07580f057a89fc131f78dda7a58751ddf52bbe05eaf31db50f/pydantic_core-2.46.3-cp314-cp314t-musllinux_1_1_aarch64.whl", hash = "sha256:d2d0aead851b66f5245ec0c4fb2612ef457f8bbafefdf65a2bf9d6bac6140f47", size = 2167237, upload-time = "2026-04-20T14:42:25.412Z" }, - { url = "https://files.pythonhosted.org/packages/f8/84/6781a1b037f3b96be9227edbd1101f6d3946746056231bf4ac48cdff1a8d/pydantic_core-2.46.3-cp314-cp314t-musllinux_1_1_armv7l.whl", hash = "sha256:2f40e4246676beb31c5ce77c38a55ca4e465c6b38d11ea1bd935420568e0b1ab", size = 2312540, upload-time = "2026-04-20T14:40:40.313Z" }, - { url = "https://files.pythonhosted.org/packages/3e/db/19c0839feeb728e7df03255581f198dfdf1c2aeb1e174a8420b63c5252e5/pydantic_core-2.46.3-cp314-cp314t-musllinux_1_1_x86_64.whl", hash = "sha256:cf489cf8986c543939aeee17a09c04d6ffb43bfef8ca16fcbcc5cfdcbed24dba", size = 2369556, upload-time = "2026-04-20T14:41:09.427Z" }, - { url = "https://files.pythonhosted.org/packages/e0/15/3228774cb7cd45f5f721ddf1b2242747f4eb834d0c491f0c02d606f09fed/pydantic_core-2.46.3-cp314-cp314t-win32.whl", hash = "sha256:ffe0883b56cfc05798bf994164d2b2ff03efe2d22022a2bb080f3b626176dd56", size = 1949756, upload-time = "2026-04-20T14:41:25.717Z" }, - { url = "https://files.pythonhosted.org/packages/b8/2a/c79cf53fd91e5a87e30d481809f52f9a60dd221e39de66455cf04deaad37/pydantic_core-2.46.3-cp314-cp314t-win_amd64.whl", hash = "sha256:706d9d0ce9cf4593d07270d8e9f53b161f90c57d315aeec4fb4fd7a8b10240d8", size = 2051305, upload-time = "2026-04-20T14:43:18.627Z" }, - { url = "https://files.pythonhosted.org/packages/0b/db/d8182a7f1d9343a032265aae186eb063fe26ca4c40f256b21e8da4498e89/pydantic_core-2.46.3-cp314-cp314t-win_arm64.whl", hash = "sha256:77706aeb41df6a76568434701e0917da10692da28cb69d5fb6919ce5fdb07374", size = 2026310, upload-time = "2026-04-20T14:41:01.778Z" }, - { url = "https://files.pythonhosted.org/packages/31/75/c1ee7cb5b2277fe1f95837a58fb692eeda7162494fc1ddccb5f23be1d7f6/pydantic_core-2.46.3-cp39-cp39-macosx_10_12_x86_64.whl", hash = "sha256:fa3eb7c2995aa443687a825bc30395c8521b7c6ec201966e55debfd1128bcceb", size = 2112012, upload-time = "2026-04-20T14:44:35.697Z" }, - { url = "https://files.pythonhosted.org/packages/6b/da/fb883281703dc5f4d68cdc648c503c46c8af5726f428013178d657c75181/pydantic_core-2.46.3-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:3d08782c4045f90724b44c95d35ebec0d67edb8a957a2ac81d5a8e4b8a200495", size = 1953006, upload-time = "2026-04-20T14:43:33.878Z" }, - { url = "https://files.pythonhosted.org/packages/92/47/5d7d7d04204920771086d768ca51306e34b63a31ad80a5f82c9d38dea568/pydantic_core-2.46.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:831eb19aa789a97356979e94c981e5667759301fb708d1c0d5adf1bc0098b873", size = 1980050, upload-time = "2026-04-20T14:41:03.154Z" }, - { url = "https://files.pythonhosted.org/packages/e0/e9/1c52019dd95babcff1bffe40022e8541c0447b8e4a44596a979c7309fa0c/pydantic_core-2.46.3-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:4335e87c7afa436a0dfa899e138d57a72f8aad542e2cf19c36fb428461caabd0", size = 2057165, upload-time = "2026-04-20T14:43:44.507Z" }, - { url = "https://files.pythonhosted.org/packages/6f/0e/e0aac1f35baf80ff8f35d4fa58d85dce248324a764d950460cf5c0569758/pydantic_core-2.46.3-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:99421e7684a60f7f3550a1d159ade5fdff1954baedb6bdd407cba6a307c9f27d", size = 2225133, upload-time = "2026-04-20T14:41:07.334Z" }, - { url = "https://files.pythonhosted.org/packages/d5/df/8eb296b9661574ef26e990856991615c1e1fb1744a10b896bff684a3c99a/pydantic_core-2.46.3-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:dd81f6907932ebac3abbe41378dac64b2380db1287e2aa64d8d88f78d170f51a", size = 2282409, upload-time = "2026-04-20T14:43:07.567Z" }, - { url = "https://files.pythonhosted.org/packages/d2/07/888c53b769be71072a1dbd741ec25160579d789ef276fd5bd2045a07b09a/pydantic_core-2.46.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9f247596366f4221af52beddd65af1218797771d6989bc891a0b86ccaa019168", size = 2095775, upload-time = "2026-04-20T14:42:21.586Z" }, - { url = "https://files.pythonhosted.org/packages/8a/19/6c32bdb93362b899bf92ac42c824898ab93dd8a23f339cbf5c5098ef61a6/pydantic_core-2.46.3-cp39-cp39-manylinux_2_31_riscv64.whl", hash = "sha256:6dff8cc884679df229ebc6d8eb2321ea6f8e091bc7d4886d4dc2e0e71452843c", size = 2118999, upload-time = "2026-04-20T14:44:43.791Z" }, - { url = "https://files.pythonhosted.org/packages/6b/c6/31d926d003f59a032ff61b62990e378f0fb985aa9d77fd448a6140f7eb5f/pydantic_core-2.46.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:68ef2f623dda6d5a9067ac014e406c020c780b2a358930a7e5c1b73702900720", size = 2162368, upload-time = "2026-04-20T14:41:12.529Z" }, - { url = "https://files.pythonhosted.org/packages/4f/a1/48d669051947845ff54f5b7cb6254ccafb23aa284184de6f273145d0e45b/pydantic_core-2.46.3-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:d56bdb4af1767cc15b0386b3c581fdfe659bb9ee4a4f776e92c1cd9d074000d6", size = 2184786, upload-time = "2026-04-20T14:42:40.235Z" }, - { url = "https://files.pythonhosted.org/packages/08/ff/a722cade3d4bd8ed6433a8e84eddf2f993b5fb4a47cade269289cfb4cc0c/pydantic_core-2.46.3-cp39-cp39-musllinux_1_1_armv7l.whl", hash = "sha256:91249bcb7c165c2fb2a2f852dbc5c91636e2e218e75d96dfdd517e4078e173dd", size = 2325626, upload-time = "2026-04-20T14:41:37.73Z" }, - { url = "https://files.pythonhosted.org/packages/ad/8a/238e33805d6f3691bcce8739db7d0376a2388e1b3f2c8db2128f6683fc78/pydantic_core-2.46.3-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:4b068543bdb707f5d935dab765d99227aa2545ef2820935f2e5dd801795c7dbd", size = 2363286, upload-time = "2026-04-20T14:42:29.385Z" }, - { url = "https://files.pythonhosted.org/packages/ad/2e/ab044f4431798a565242d5e8e48d080faa931f45e3d30df62e4f501d9bb0/pydantic_core-2.46.3-cp39-cp39-win32.whl", hash = "sha256:dcda6583921c05a40533f982321532f2d8db29326c7b95c4026941fa5074bd79", size = 1981660, upload-time = "2026-04-20T14:43:54.525Z" }, - { url = "https://files.pythonhosted.org/packages/d0/2c/13855786276f51fe86915c0533f4fc14e1d5421726ba8ad57caa09eb18ec/pydantic_core-2.46.3-cp39-cp39-win_amd64.whl", hash = "sha256:a35cc284c8dd7edae8a31533713b4d2467dfe7c4f1b5587dd4031f28f90d1d13", size = 2078793, upload-time = "2026-04-20T14:42:17.87Z" }, - { url = "https://files.pythonhosted.org/packages/66/7f/03dbad45cd3aa9083fbc93c210ae8b005af67e4136a14186950a747c6874/pydantic_core-2.46.3-graalpy311-graalpy242_311_native-macosx_10_12_x86_64.whl", hash = "sha256:9715525891ed524a0a1eb6d053c74d4d4ad5017677fb00af0b7c2644a31bae46", size = 2105683, upload-time = "2026-04-20T14:42:19.779Z" }, - { url = "https://files.pythonhosted.org/packages/26/22/4dc186ac8ea6b257e9855031f51b62a9637beac4d68ac06bee02f046f836/pydantic_core-2.46.3-graalpy311-graalpy242_311_native-macosx_11_0_arm64.whl", hash = "sha256:9d2f400712a99a013aff420ef1eb9be077f8189a36c1e3ef87660b4e1088a874", size = 1940052, upload-time = "2026-04-20T14:43:59.274Z" }, - { url = "https://files.pythonhosted.org/packages/0d/ca/d376391a5aff1f2e8188960d7873543608130a870961c2b6b5236627c116/pydantic_core-2.46.3-graalpy311-graalpy242_311_native-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bd2aab0e2e9dc2daf36bd2686c982535d5e7b1d930a1344a7bb6e82baab42a76", size = 1988172, upload-time = "2026-04-20T14:41:17.469Z" }, - { url = "https://files.pythonhosted.org/packages/0e/6b/523b9f85c23788755d6ab949329de692a2e3a584bc6beb67fef5e035aa9d/pydantic_core-2.46.3-graalpy311-graalpy242_311_native-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4e9d76736da5f362fabfeea6a69b13b7f2be405c6d6966f06b2f6bfff7e64531", size = 2128596, upload-time = "2026-04-20T14:40:41.707Z" }, - { url = "https://files.pythonhosted.org/packages/34/42/f426db557e8ab2791bc7562052299944a118655496fbff99914e564c0a94/pydantic_core-2.46.3-graalpy312-graalpy250_312_native-macosx_10_12_x86_64.whl", hash = "sha256:b12dd51f1187c2eb489af8e20f880362db98e954b54ab792fa5d92e8bcc6b803", size = 2091877, upload-time = "2026-04-20T14:43:27.091Z" }, - { url = "https://files.pythonhosted.org/packages/5c/4f/86a832a9d14df58e663bfdf4627dc00d3317c2bd583c4fb23390b0f04b8e/pydantic_core-2.46.3-graalpy312-graalpy250_312_native-macosx_11_0_arm64.whl", hash = "sha256:f00a0961b125f1a47af7bcc17f00782e12f4cd056f83416006b30111d941dfa3", size = 1932428, upload-time = "2026-04-20T14:40:45.781Z" }, - { url = "https://files.pythonhosted.org/packages/11/1a/fe857968954d93fb78e0d4b6df5c988c74c4aaa67181c60be7cfe327c0ca/pydantic_core-2.46.3-graalpy312-graalpy250_312_native-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:57697d7c056aca4bbb680200f96563e841a6386ac1129370a0102592f4dddff5", size = 1997550, upload-time = "2026-04-20T14:44:02.425Z" }, - { url = "https://files.pythonhosted.org/packages/17/eb/9d89ad2d9b0ba8cd65393d434471621b98912abb10fbe1df08e480ba57b5/pydantic_core-2.46.3-graalpy312-graalpy250_312_native-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fd35aa21299def8db7ef4fe5c4ff862941a9a158ca7b63d61e66fe67d30416b4", size = 2137657, upload-time = "2026-04-20T14:42:45.149Z" }, - { url = "https://files.pythonhosted.org/packages/1f/da/99d40830684f81dec901cac521b5b91c095394cc1084b9433393cde1c2df/pydantic_core-2.46.3-pp311-pypy311_pp73-macosx_10_12_x86_64.whl", hash = "sha256:13afdd885f3d71280cf286b13b310ee0f7ccfefd1dbbb661514a474b726e2f25", size = 2107973, upload-time = "2026-04-20T14:42:06.175Z" }, - { url = "https://files.pythonhosted.org/packages/99/a5/87024121818d75bbb2a98ddbaf638e40e7a18b5e0f5492c9ca4b1b316107/pydantic_core-2.46.3-pp311-pypy311_pp73-macosx_11_0_arm64.whl", hash = "sha256:f91c0aff3e3ee0928edd1232c57f643a7a003e6edf1860bc3afcdc749cb513f3", size = 1947191, upload-time = "2026-04-20T14:43:14.319Z" }, - { url = "https://files.pythonhosted.org/packages/60/62/0c1acfe10945b83a6a59d19fbaa92f48825381509e5701b855c08f13db76/pydantic_core-2.46.3-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6529d1d128321a58d30afcc97b49e98836542f68dd41b33c2e972bb9e5290536", size = 2123791, upload-time = "2026-04-20T14:43:22.766Z" }, - { url = "https://files.pythonhosted.org/packages/75/3e/3b2393b4c8f44285561dc30b00cf307a56a2eff7c483a824db3b8221ca51/pydantic_core-2.46.3-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:975c267cff4f7e7272eacbe50f6cc03ca9a3da4c4fbd66fffd89c94c1e311aa1", size = 2153197, upload-time = "2026-04-20T14:44:27.932Z" }, - { url = "https://files.pythonhosted.org/packages/ba/75/5af02fb35505051eee727c061f2881c555ab4f8ddb2d42da715a42c9731b/pydantic_core-2.46.3-pp311-pypy311_pp73-musllinux_1_1_aarch64.whl", hash = "sha256:2b8e4f2bbdf71415c544b4b1138b8060db7b6611bc927e8064c769f64bed651c", size = 2181073, upload-time = "2026-04-20T14:43:20.729Z" }, - { url = "https://files.pythonhosted.org/packages/10/92/7e0e1bd9ca3c68305db037560ca2876f89b2647deb2f8b6319005de37505/pydantic_core-2.46.3-pp311-pypy311_pp73-musllinux_1_1_armv7l.whl", hash = "sha256:e61ea8e9fff9606d09178f577ff8ccdd7206ff73d6552bcec18e1033c4254b85", size = 2315886, upload-time = "2026-04-20T14:44:04.826Z" }, - { url = "https://files.pythonhosted.org/packages/b8/d8/101655f27eaf3e44558ead736b2795d12500598beed4683f279396fa186e/pydantic_core-2.46.3-pp311-pypy311_pp73-musllinux_1_1_x86_64.whl", hash = "sha256:b504bda01bafc69b6d3c7a0c7f039dcf60f47fab70e06fe23f57b5c75bdc82b8", size = 2360528, upload-time = "2026-04-20T14:40:47.431Z" }, - { url = "https://files.pythonhosted.org/packages/07/0f/1c34a74c8d07136f0d729ffe5e1fdab04fbdaa7684f61a92f92511a84a15/pydantic_core-2.46.3-pp311-pypy311_pp73-win_amd64.whl", hash = "sha256:b00b76f7142fc60c762ce579bd29c8fa44aaa56592dd3c54fab3928d0d4ca6ff", size = 2184144, upload-time = "2026-04-20T14:42:57Z" }, +sdist = { url = "https://files.pythonhosted.org/packages/9d/56/921726b776ace8d8f5db44c4ef961006580d91dc52b803c489fafd1aa249/pydantic_core-2.46.4.tar.gz", hash = "sha256:62f875393d7f270851f20523dd2e29f082bcc82292d66db2b64ea71f64b6e1c1", size = 471464, upload-time = "2026-05-06T13:37:06.98Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/e7/08/f1ba952f1c8ae5581c70fa9c6da89f247b83e3dd8c09c035d5d7931fc23d/pydantic_core-2.46.4-cp310-cp310-macosx_10_12_x86_64.whl", hash = "sha256:a396dcc17e5a0b164dbe026896245a4fa9ff402edca1dff0be3d53a517f74de4", size = 2113146, upload-time = "2026-05-06T13:37:36.537Z" }, + { url = "https://files.pythonhosted.org/packages/56/c6/65f646c7ff09bd257f660434adb45c4dfcbbcebcc030562fecf6f5bf887d/pydantic_core-2.46.4-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:da4b951fe36dc7c3a1ccb4e3cd1747c3542b8c9ceede8fc86cae054e764485f5", size = 1949769, upload-time = "2026-05-06T13:37:46.365Z" }, + { url = "https://files.pythonhosted.org/packages/64/ba/bfb1d928fd5b49e1258935ff104ae356e9fd89384a55bf9f847e9193ad40/pydantic_core-2.46.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bb63e0198ca18aad131c089b9204c23079c3afa95487e561f4c522d519e55aba", size = 1974958, upload-time = "2026-05-06T13:37:28.611Z" }, + { url = "https://files.pythonhosted.org/packages/4e/74/76223bfb117b64af743c9b6670d1364516f5c0604f96b48f3272f6af6cc6/pydantic_core-2.46.4-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:f47286a97f0bc9b8859519809077b91b2cefe4ae47fcbf5e466a009c1c5d742b", size = 2042118, upload-time = "2026-05-06T13:36:55.216Z" }, + { url = "https://files.pythonhosted.org/packages/cb/7b/848732968bc8f48f3187542f08358b9d842db564147b256669426ebb1652/pydantic_core-2.46.4-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:905a0ed8ea6f2d61c1738835f99b699348d7857379083e5fc497fa0c967a407c", size = 2222876, upload-time = "2026-05-06T13:38:25.455Z" }, + { url = "https://files.pythonhosted.org/packages/b5/2f/e90b63ee2e14bd8d3db8f705a6d75d64e6ee1b7c2c8833747ce706e1e0ce/pydantic_core-2.46.4-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:ea793e075b70290d89d8142074262885d3f7da19634845135751bd6344f73b50", size = 2286703, upload-time = "2026-05-06T13:37:53.304Z" }, + { url = "https://files.pythonhosted.org/packages/ba/1e/acc4d70f88a0a277e4a1fa77ebb985ceabaf900430f875bf9338e11c9420/pydantic_core-2.46.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:395aebd9183f9d112f569aeb5b2214d1a10a33bec8456447f7fbdfa51d38d4cd", size = 2092042, upload-time = "2026-05-06T13:38:46.981Z" }, + { url = "https://files.pythonhosted.org/packages/a9/da/0a422b57bf8504102bf3c4ccea9c41bab5a5cee6a54650acf8faf67f5a24/pydantic_core-2.46.4-cp310-cp310-manylinux_2_31_riscv64.whl", hash = "sha256:b078afbc25f3a1436c7a1d2cd3e322497ee99615ba97c563566fdf46aff1ee01", size = 2117231, upload-time = "2026-05-06T13:39:23.146Z" }, + { url = "https://files.pythonhosted.org/packages/bd/2a/2ac13c3af305843e23c5078c53d135656b3f05a2fd78cb7bbbb12e97b473/pydantic_core-2.46.4-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:f747929cf940cddb5b3668a390056ddd5ba2e5010615ea2dcf4f9c4f3ab8791d", size = 2168388, upload-time = "2026-05-06T13:40:08.06Z" }, + { url = "https://files.pythonhosted.org/packages/72/04/2beacf7e1607e93eefe4aed1b4709f079b905fb77530179d4f7c71745f22/pydantic_core-2.46.4-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:daa27d92c36f24388fe3ad306b174781c747627f134452e4f128ea00ce1fe8c4", size = 2184769, upload-time = "2026-05-06T13:38:13.901Z" }, + { url = "https://files.pythonhosted.org/packages/9e/29/d2b9fd9f539133548eaf622c06a4ce176cb46ac59f32d0359c4abc0de047/pydantic_core-2.46.4-cp310-cp310-musllinux_1_1_armv7l.whl", hash = "sha256:19e51f073cd3df251856a8a4189fbdf1de4012c3ebacfb1884f94f1eb406079f", size = 2319312, upload-time = "2026-05-06T13:39:08.24Z" }, + { url = "https://files.pythonhosted.org/packages/7c/af/0f7a5b85fec6075bea96e3ef9187de38fccced0de92c1e7feda8d5cc7bb9/pydantic_core-2.46.4-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:c1747f85cee84c26985853c6f3d9bd3e75da5212912443fa111c113b9c246f39", size = 2361817, upload-time = "2026-05-06T13:38:43.2Z" }, + { url = "https://files.pythonhosted.org/packages/25/a4/73363fec545fd3ec025490bdda2743c56d0dd5b6266b1a53bbe9e4265375/pydantic_core-2.46.4-cp310-cp310-win32.whl", hash = "sha256:2f84c03c8607173d16b5a854ec68a2f9079ae03237a54fb506d13af47e1d018d", size = 1987085, upload-time = "2026-05-06T13:39:25.497Z" }, + { url = "https://files.pythonhosted.org/packages/01/aa/62f082da2c91fac1c234bc9ee0066257ce83f0604abd72e4c9d5991f2d84/pydantic_core-2.46.4-cp310-cp310-win_amd64.whl", hash = "sha256:8358a950c8909158e3df31538a7e4edc2d7265a7c54b47f0864d9e5bae9dcebf", size = 2074311, upload-time = "2026-05-06T13:39:59.922Z" }, + { url = "https://files.pythonhosted.org/packages/5c/fa/6d7708d2cfc1a832acb6aeb0cd16e801902df8a0f583bb3b4b527fde022e/pydantic_core-2.46.4-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:0e96592440881c74a213e5ad528e2b24d3d4f940de2766bed9010ab1d9e51594", size = 2111872, upload-time = "2026-05-06T13:40:27.596Z" }, + { url = "https://files.pythonhosted.org/packages/ae/6f/aa064a3e74b5745afbdf250594f38e7ead05e2d651bcb35994b9417a0d4d/pydantic_core-2.46.4-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:e0d65b8c354be7fb5f720c3caa8bc940bc2d20ce749c8e06135f07f8ed95dd7c", size = 1948255, upload-time = "2026-05-06T13:39:12.574Z" }, + { url = "https://files.pythonhosted.org/packages/43/3a/41114a9f7569b84b4d84e7a018c57c56347dac30c0d4a872946ec4e36c46/pydantic_core-2.46.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7bfb192b3f4b9e8a89b6277b6ce787564f62cfd272055f6e685726b111dc7826", size = 1972827, upload-time = "2026-05-06T13:38:19.841Z" }, + { url = "https://files.pythonhosted.org/packages/ef/25/1ab42e8048fe551934d9884e8d64daa7e990ad386f310a15981aeb6a5b08/pydantic_core-2.46.4-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:9037063db01f09b09e237c282b6792bd4da634b5402c4e7f0c61effed7701a04", size = 2041051, upload-time = "2026-05-06T13:38:10.447Z" }, + { url = "https://files.pythonhosted.org/packages/94/c2/1a934597ddf08da410385b3b7aae91956a5a76c635effef456074fad7e88/pydantic_core-2.46.4-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:fc010ab034c8c7452522748bf937df58020d256ccae0874463d1f4d01758af8e", size = 2221314, upload-time = "2026-05-06T13:40:13.089Z" }, + { url = "https://files.pythonhosted.org/packages/02/6d/9e8ad178c9c4df27ad3c8f25d1fe2a7ab0d2ba0559fad4aee5d3d1f16771/pydantic_core-2.46.4-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:8c5dac79fa1614d1e06ca695109c6105923bd9c7d1d6c918d4e637b7e6b32fd3", size = 2285146, upload-time = "2026-05-06T13:38:59.224Z" }, + { url = "https://files.pythonhosted.org/packages/80/50/540cd3aeefc041beb111125c4bff779831a2111fc6b15a9138cda277d32c/pydantic_core-2.46.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f9fa868638bf362d3d138ea55829cefb3d5f4b0d7f142234382a15e2485dbec4", size = 2089685, upload-time = "2026-05-06T13:38:17.762Z" }, + { url = "https://files.pythonhosted.org/packages/6b/a4/b440ad35f05f6a38f89fa0f149accb3f0e02be94ca5e15f3c449a61b4bc9/pydantic_core-2.46.4-cp311-cp311-manylinux_2_31_riscv64.whl", hash = "sha256:17299feefe090f2caa5b8e37222bb5f663e4935a8bfa6931d4102e5df1a9f398", size = 2115420, upload-time = "2026-05-06T13:37:58.195Z" }, + { url = "https://files.pythonhosted.org/packages/99/61/de4f55db8dfd57bfdfa9a12ec90fe1b57c4f41062f7ca86f08586b3e0ac0/pydantic_core-2.46.4-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:4c63ebc82684aa89d9a3bcbd13d515b3be44250dc68dd3bd81526c1cb31286c3", size = 2165122, upload-time = "2026-05-06T13:37:01.167Z" }, + { url = "https://files.pythonhosted.org/packages/f7/52/7c529d7bdb2d1068bd52f51fe32572c8301f9a4febf1948f10639f1436f5/pydantic_core-2.46.4-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:aaa2a54443eff1950ba5ddc6b6ccda0d9c84a364276a62f969bdf2a390650848", size = 2182573, upload-time = "2026-05-06T13:38:45.04Z" }, + { url = "https://files.pythonhosted.org/packages/37/b3/7c40325848ba78247f2812dcf9c7274e38cd801820ca6dd9fe63bcfb0eb4/pydantic_core-2.46.4-cp311-cp311-musllinux_1_1_armv7l.whl", hash = "sha256:18e5ceec2ab67e6d5f1a9085e5a24c9c4e2ac4545730bfe668680bca05e555f3", size = 2317139, upload-time = "2026-05-06T13:37:15.539Z" }, + { url = "https://files.pythonhosted.org/packages/d9/37/f913f81a657c865b75da6c0dbed79876073c2a43b5bd9edbe8da785e4d49/pydantic_core-2.46.4-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:a0f62d0a58f4e7da165457e995725421e0064f2255d8eccebc49f41bbc23b109", size = 2360433, upload-time = "2026-05-06T13:37:30.099Z" }, + { url = "https://files.pythonhosted.org/packages/c4/67/6acaa1be2567f9256b056d8477158cac7240813956ce86e49deae8e173b4/pydantic_core-2.46.4-cp311-cp311-win32.whl", hash = "sha256:041bde0a48fd37cf71cab1c9d56d3e8625a3793fef1f7dd232b3ff37e978ecda", size = 1985513, upload-time = "2026-05-06T13:38:15.669Z" }, + { url = "https://files.pythonhosted.org/packages/aa/e6/c505f83dfeda9a2e5c995cfd872949e4d05e12f7feb3dca72f633daefa94/pydantic_core-2.46.4-cp311-cp311-win_amd64.whl", hash = "sha256:6f2eeda33a839975441c86a4119e1383c50b47faf0cbb5176985565c6bb02c33", size = 2071114, upload-time = "2026-05-06T13:40:35.416Z" }, + { url = "https://files.pythonhosted.org/packages/0f/da/7a263a96d965d9d0df5e8de8a475f33495451117035b09acb110288c381f/pydantic_core-2.46.4-cp311-cp311-win_arm64.whl", hash = "sha256:14f4c5d6db102bd796a627bbb3a17b4cf4574b9ae861d8b7c9a9661c6dd3362d", size = 2044298, upload-time = "2026-05-06T13:38:29.754Z" }, + { url = "https://files.pythonhosted.org/packages/ce/8c/af022f0af448d7747c5154288d46b5f2bc5f17366eaa0e23e9aa04d59f3b/pydantic_core-2.46.4-cp312-cp312-macosx_10_12_x86_64.whl", hash = "sha256:3245406455a5d98187ec35530fd772b1d799b26667980872c8d4614991e2c4a2", size = 2106158, upload-time = "2026-05-06T13:38:57.215Z" }, + { url = "https://files.pythonhosted.org/packages/19/95/6195171e385007300f0f5574592e467c568becce2d937a0b6804f218bc49/pydantic_core-2.46.4-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:962ccbab7b642487b1d8b7df90ef677e03134cf1fd8880bf698649b22a69371f", size = 1951724, upload-time = "2026-05-06T13:37:02.697Z" }, + { url = "https://files.pythonhosted.org/packages/8e/bc/f47d1ff9cbb1620e1b5b697eef06010035735f07820180e74178226b27b3/pydantic_core-2.46.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8233f2947cf85404441fd7e0085f53b10c93e0ee78611099b5c7237e36aacbf7", size = 1975742, upload-time = "2026-05-06T13:37:09.448Z" }, + { url = "https://files.pythonhosted.org/packages/5b/11/9b9a5b0306345664a2da6410877af6e8082481b5884b3ddd78d47c6013ce/pydantic_core-2.46.4-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:3a233125ac121aa3ffba9a2b59edfc4a985a76092dc8279586ab4b71390875e7", size = 2052418, upload-time = "2026-05-06T13:37:38.234Z" }, + { url = "https://files.pythonhosted.org/packages/f1/b7/a65fec226f5d78fc39f4a13c4cc0c768c22b113438f60c14adc9d2865038/pydantic_core-2.46.4-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:5b712b53160b79a5850310b912a5ef8e57e56947c8ad690c227f5c9d7e561712", size = 2232274, upload-time = "2026-05-06T13:38:27.753Z" }, + { url = "https://files.pythonhosted.org/packages/68/f0/92039db98b907ef49269a8271f67db9cb78ae2fc68062ef7e4e77adb5f61/pydantic_core-2.46.4-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9401557acd873c3a7f3eb9383edef8ac4968f9510e340f4808d427e75667e7b4", size = 2309940, upload-time = "2026-05-06T13:38:05.353Z" }, + { url = "https://files.pythonhosted.org/packages/5f/97/2aab507d3d00ca626e8e57c1eac6a79e4e5fbcc63eb99733ff55d1717f65/pydantic_core-2.46.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:926c9541b14b12b1681dca8a0b75feb510b06c6341b70a8e500c2fdcff837cce", size = 2094516, upload-time = "2026-05-06T13:39:10.577Z" }, + { url = "https://files.pythonhosted.org/packages/22/37/a8aca44d40d737dde2bc05b3c6c07dff0de07ce6f82e9f3167aeaf4d5dea/pydantic_core-2.46.4-cp312-cp312-manylinux_2_31_riscv64.whl", hash = "sha256:56cb4851bcaf3d117eddcef4fe66afd750a50274b0da8e22be256d10e5611987", size = 2136854, upload-time = "2026-05-06T13:40:22.59Z" }, + { url = "https://files.pythonhosted.org/packages/24/99/fcef1b79238c06a8cbec70819ac722ba76e02bc8ada9b0fd66eba40da01b/pydantic_core-2.46.4-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:c68fcd102d71ea85c5b2dfac3f4f8476eff42a9e078fd5faefff6d145063536b", size = 2180306, upload-time = "2026-05-06T13:40:10.666Z" }, + { url = "https://files.pythonhosted.org/packages/ae/6c/fc44000918855b42779d007ae63b0532794739027b2f417321cddbc44f6a/pydantic_core-2.46.4-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:b2f69dec1725e79a012d920df1707de5caf7ed5e08f3be4435e25803efc47458", size = 2190044, upload-time = "2026-05-06T13:40:43.231Z" }, + { url = "https://files.pythonhosted.org/packages/6b/65/d9cadc9f1920d7a127ad2edba16c1db7916e59719285cd6c94600b0080ba/pydantic_core-2.46.4-cp312-cp312-musllinux_1_1_armv7l.whl", hash = "sha256:8d0820e8192167f80d88d64038e609c31452eeca865b4e1d9950a27a4609b00b", size = 2329133, upload-time = "2026-05-06T13:39:57.365Z" }, + { url = "https://files.pythonhosted.org/packages/d0/cf/c873d91679f3a30bcf5e7ac280ce5573483e72295307685120d0d5ad3416/pydantic_core-2.46.4-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:fbdb89b3e1c94a30cc5edfce477c6e6a5dc4d8f84665b455c27582f211a1c72c", size = 2374464, upload-time = "2026-05-06T13:38:06.976Z" }, + { url = "https://files.pythonhosted.org/packages/47/bd/6f2fc8188f31bf10590f1e98e7b306336161fac930a8c514cd7bd828c7dc/pydantic_core-2.46.4-cp312-cp312-win32.whl", hash = "sha256:9aa768456404a8bf48a4406685ac2bec8e72b62c69313734fa3b73cf33b3a894", size = 1974823, upload-time = "2026-05-06T13:40:47.985Z" }, + { url = "https://files.pythonhosted.org/packages/40/8c/985c1d41ea1107c2534abd9870e4ed5c8e7669b5c308297835c001e7a1c4/pydantic_core-2.46.4-cp312-cp312-win_amd64.whl", hash = "sha256:e9c26f834c65f5752f3f06cb08cb86a913ceb7274d0db6e267808a708b46bc89", size = 2072919, upload-time = "2026-05-06T13:39:21.153Z" }, + { url = "https://files.pythonhosted.org/packages/c4/ba/f463d006e0c47373ca7ec5e1a261c59dc01ef4d62b2657af925fb0deee3a/pydantic_core-2.46.4-cp312-cp312-win_arm64.whl", hash = "sha256:4fc73cb559bdb54b1134a706a2802a4cddd27a0633f5abb7e53056268751ac6a", size = 2027604, upload-time = "2026-05-06T13:39:03.753Z" }, + { url = "https://files.pythonhosted.org/packages/51/a2/5d30b469c5267a17b39dec53208222f76a8d351dfac4af661888c5aee77d/pydantic_core-2.46.4-cp313-cp313-macosx_10_12_x86_64.whl", hash = "sha256:5d5902252db0d3cedf8d4a1bc68f70eeb430f7e4c7104c8c476753519b423008", size = 2106306, upload-time = "2026-05-06T13:37:48.029Z" }, + { url = "https://files.pythonhosted.org/packages/c1/81/4fa520eaffa8bd7d1525e644cd6d39e7d60b1592bc5b516693c7340b50f1/pydantic_core-2.46.4-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:c94f0688e7b8d0a67abf40e57a7eaaecd17cc9586706a31b76c031f63df052b4", size = 1951906, upload-time = "2026-05-06T13:37:17.012Z" }, + { url = "https://files.pythonhosted.org/packages/03/d5/fd02da45b659668b05923b17ba3a0100a0a3d5541e3bd8fcc4ecb711309e/pydantic_core-2.46.4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f027324c56cd5406ca49c124b0db10e56c69064fec039acc571c29020cc87c76", size = 1976802, upload-time = "2026-05-06T13:37:35.113Z" }, + { url = "https://files.pythonhosted.org/packages/21/f2/95727e1368be3d3ed485eaab7adbd7dda408f33f7a36e8b48e0144002b91/pydantic_core-2.46.4-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:e739fee756ba1010f8bcccb534252e85a35fe45ae92c295a06059ce58b74ccd3", size = 2052446, upload-time = "2026-05-06T13:37:12.313Z" }, + { url = "https://files.pythonhosted.org/packages/9c/86/5d99feea3f77c7234b8718075b23db11532773c1a0dbd9b9490215dc2eeb/pydantic_core-2.46.4-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:9d56801be94b86a9da183e5f3766e6310752b99ff647e38b09a9500d88e46e76", size = 2232757, upload-time = "2026-05-06T13:39:01.149Z" }, + { url = "https://files.pythonhosted.org/packages/d2/3a/508ac615935ef7588cf6d9e9b91309fdc2da751af865e02a9098de88258c/pydantic_core-2.46.4-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2412e734dcb48da14d4e4006b82b46b74f2518b8a26ee7e58c6844a6cd6d03c4", size = 2309275, upload-time = "2026-05-06T13:37:41.406Z" }, + { url = "https://files.pythonhosted.org/packages/07/f8/41db9de19d7987d6b04715a02b3b40aea467000275d9d758ffaa31af7d50/pydantic_core-2.46.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9551187363ffc0de2a00b2e47c25aeaeb1020b69b668762966df15fc5659dd5a", size = 2094467, upload-time = "2026-05-06T13:39:18.847Z" }, + { url = "https://files.pythonhosted.org/packages/2c/e2/f35033184cb11d0052daf4416e8e10a502ea2ac006fc4f459aee872727d1/pydantic_core-2.46.4-cp313-cp313-manylinux_2_31_riscv64.whl", hash = "sha256:0186750b482eefa11d7f435892b09c5c606193ef3375bcf94aa00ae6bfb66262", size = 2134417, upload-time = "2026-05-06T13:40:17.944Z" }, + { url = "https://files.pythonhosted.org/packages/7e/7b/6ceeb1cc90e193862f444ebe373d8fdf613f0a82572dde03fb10734c6c71/pydantic_core-2.46.4-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:5855698a4856556d86e8e6cd8434bc3ac0314ee8e12089ae0e143f64c6256e4e", size = 2179782, upload-time = "2026-05-06T13:40:32.618Z" }, + { url = "https://files.pythonhosted.org/packages/5a/f2/c8d7773ede6af08036423a00ae0ceffce266c3c52a096c435d68c896083f/pydantic_core-2.46.4-cp313-cp313-musllinux_1_1_aarch64.whl", hash = "sha256:cbaf13819775b7f769bf4a1f066cb6df7a28d4480081a589828ef190226881cd", size = 2188782, upload-time = "2026-05-06T13:36:51.018Z" }, + { url = "https://files.pythonhosted.org/packages/59/31/0c864784e31f09f05cdd87606f08923b9c9e7f6e51dd27f20f62f975ce9f/pydantic_core-2.46.4-cp313-cp313-musllinux_1_1_armv7l.whl", hash = "sha256:633147d34cf4550417f12e2b1a0383973bdf5cdfde212cb09e9a581cf10820be", size = 2328334, upload-time = "2026-05-06T13:40:37.764Z" }, + { url = "https://files.pythonhosted.org/packages/c2/eb/4f6c8a41efa30baa755590f4141abf3a8c370fab610915733e74134a7270/pydantic_core-2.46.4-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:82cf5301172168103724d49a1444d3378cb20cdee30b116a1bd6031236298a5d", size = 2372986, upload-time = "2026-05-06T13:39:34.152Z" }, + { url = "https://files.pythonhosted.org/packages/5b/24/b375a480d53113860c299764bfe9f349a3dc9108b3adc0d7f0d786492ebf/pydantic_core-2.46.4-cp313-cp313-win32.whl", hash = "sha256:9fa8ae11da9e2b3126c6426f147e0fba88d96d65921799bb30c6abd1cb2c97fb", size = 1973693, upload-time = "2026-05-06T13:37:55.072Z" }, + { url = "https://files.pythonhosted.org/packages/7e/e8/cff247591966f2d22ec8c003cd7587e27b7ba7b81ab2fb888e3ab75dc285/pydantic_core-2.46.4-cp313-cp313-win_amd64.whl", hash = "sha256:6b3ace8194b0e5204818c92802dcdca7fc6d88aabbb799d7c795540d9cd6d292", size = 2071819, upload-time = "2026-05-06T13:38:49.139Z" }, + { url = "https://files.pythonhosted.org/packages/c6/1a/f4aee670d5670e9e148e0c82c7db98d780be566c6e6a97ee8035528ca0b3/pydantic_core-2.46.4-cp313-cp313-win_arm64.whl", hash = "sha256:184c081504d17f1c1066e430e117142b2c77d9448a97f7b65c6ac9fd9aee238d", size = 2027411, upload-time = "2026-05-06T13:40:45.796Z" }, + { url = "https://files.pythonhosted.org/packages/8d/74/228a26ddad29c6672b805d9fd78e8d251cd04004fa7eed0e622096cd0250/pydantic_core-2.46.4-cp314-cp314-macosx_10_12_x86_64.whl", hash = "sha256:428e04521a40150c85216fc8b85e8d39fece235a9cf5e383761238c7fa9b96fb", size = 2102079, upload-time = "2026-05-06T13:38:41.019Z" }, + { url = "https://files.pythonhosted.org/packages/ad/1f/8970b150a4b4365623ae00fc88603491f763c627311ae8031e3111356d6e/pydantic_core-2.46.4-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:23ace664830ee0bfe014a0c7bc248b1f7f25ed7ad103852c317624a1083af462", size = 1952179, upload-time = "2026-05-06T13:36:59.812Z" }, + { url = "https://files.pythonhosted.org/packages/95/30/5211a831ae054928054b2f79731661087a2bc5c01e825c672b3a4a8f1b3e/pydantic_core-2.46.4-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ce5c1d2a8b27468f433ca974829c44060b8097eedc39933e3c206a90ee49c4a9", size = 1978926, upload-time = "2026-05-06T13:37:39.933Z" }, + { url = "https://files.pythonhosted.org/packages/57/e9/689668733b1eb67adeef047db3c2e8788fcf65a7fd9c9e2b46b7744fe245/pydantic_core-2.46.4-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:7283d57845ecf5a163403eb0702dfc220cc4fbdd18919cb5ccea4f95ee1cdab4", size = 2046785, upload-time = "2026-05-06T13:38:01.995Z" }, + { url = "https://files.pythonhosted.org/packages/60/d9/6715260422ff50a2109878fd24d948a6c3446bb2664f34ee78cd972b3acd/pydantic_core-2.46.4-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:8daafc69c93ee8a0204506a3b6b30f586ef54028f52aeeeb5c4cfc5184fd5914", size = 2228733, upload-time = "2026-05-06T13:40:50.371Z" }, + { url = "https://files.pythonhosted.org/packages/18/ae/fdb2f64316afca925640f8e70bb1a564b0ec2721c1389e25b8eb4bf9a299/pydantic_core-2.46.4-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:cd2213145bcc2ba85884d0ac63d222fece9209678f77b9b4d76f054c561adb28", size = 2307534, upload-time = "2026-05-06T13:37:21.531Z" }, + { url = "https://files.pythonhosted.org/packages/89/1d/8eff589b45bb8190a9d12c49cfad0f176a5cbd1534908a6b5125e2886239/pydantic_core-2.46.4-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7a5f930472650a82629163023e630d160863fce524c616f4e5186e5de9d9a49b", size = 2099732, upload-time = "2026-05-06T13:39:31.942Z" }, + { url = "https://files.pythonhosted.org/packages/06/d5/ee5a3366637fee41dee51a1fc91562dcf12ddbc68fda34e6b253da2324bb/pydantic_core-2.46.4-cp314-cp314-manylinux_2_31_riscv64.whl", hash = "sha256:c1b3f518abeca3aa13c712fd202306e145abf59a18b094a6bafb2d2bbf59192c", size = 2129627, upload-time = "2026-05-06T13:37:25.033Z" }, + { url = "https://files.pythonhosted.org/packages/94/33/2414be571d2c6a6c4d08be21f9292b6d3fdb08949a97b6dfe985017821db/pydantic_core-2.46.4-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:1a7dd0b3ee80d90150e3495a3a13ac34dbcbfd4f012996a6a1d8900e91b5c0fb", size = 2179141, upload-time = "2026-05-06T13:37:14.046Z" }, + { url = "https://files.pythonhosted.org/packages/7b/79/7daa95be995be0eecc4cf75064cb33f9bbbfe3fe0158caf2f0d4a996a5c7/pydantic_core-2.46.4-cp314-cp314-musllinux_1_1_aarch64.whl", hash = "sha256:3fb702cd90b0446a3a1c5e470bfa0dd23c0233b676a9099ddcc964fa6ca13898", size = 2184325, upload-time = "2026-05-06T13:36:53.615Z" }, + { url = "https://files.pythonhosted.org/packages/9f/cb/d0a382f5c0de8a222dc61c65348e0ce831b1f68e0a018450d31c2cace3a5/pydantic_core-2.46.4-cp314-cp314-musllinux_1_1_armv7l.whl", hash = "sha256:b8458003118a712e66286df6a707db01c52c0f52f7db8e4a38f0da1d3b94fc4e", size = 2323990, upload-time = "2026-05-06T13:40:29.971Z" }, + { url = "https://files.pythonhosted.org/packages/05/db/d9ba624cc4a5aced1598e88c04fdbd8310c8a69b9d38b9a3d39ce3a61ed7/pydantic_core-2.46.4-cp314-cp314-musllinux_1_1_x86_64.whl", hash = "sha256:372429a130e469c9cd698925ce5fc50940b7a1336b0d82038e63d5bbc4edc519", size = 2369978, upload-time = "2026-05-06T13:37:23.027Z" }, + { url = "https://files.pythonhosted.org/packages/f2/20/d15df15ba918c423461905802bfd2981c3af0bfa0e40d05e13edbfa48bc3/pydantic_core-2.46.4-cp314-cp314-win32.whl", hash = "sha256:85bb3611ff1802f3ee7fdd7dbff26b56f343fb432d57a4728fdd49b6ef35e2f4", size = 1966354, upload-time = "2026-05-06T13:38:03.499Z" }, + { url = "https://files.pythonhosted.org/packages/fc/b6/6b8de4c0a7d7ab3004c439c80c5c1e0a3e8d78bbae19379b01960383d9e5/pydantic_core-2.46.4-cp314-cp314-win_amd64.whl", hash = "sha256:811ff8e9c313ab425368bcbb36e5c4ebd7108c2bbf4e4089cfbb0b01eff63fac", size = 2072238, upload-time = "2026-05-06T13:39:40.807Z" }, + { url = "https://files.pythonhosted.org/packages/32/36/51eb763beec1f4cf59b1db243a7dcc39cbb41230f050a09b9d69faaf0a48/pydantic_core-2.46.4-cp314-cp314-win_arm64.whl", hash = "sha256:bfec22eab3c8cc2ceec0248aec886624116dc079afa027ecc8ad4a7e62010f8a", size = 2018251, upload-time = "2026-05-06T13:37:26.72Z" }, + { url = "https://files.pythonhosted.org/packages/e8/91/855af51d625b23aa987116a19e231d2aaef9c4a415273ddc189b79a45fee/pydantic_core-2.46.4-cp314-cp314t-macosx_10_12_x86_64.whl", hash = "sha256:af8244b2bef6aaad6d92cda81372de7f8c8d36c9f0c3ea36e827c60e7d9467a0", size = 2099593, upload-time = "2026-05-06T13:39:47.682Z" }, + { url = "https://files.pythonhosted.org/packages/fb/1b/8784a54c65edb5f49f0a14d6977cf1b209bba85a4c77445b255c2de58ab3/pydantic_core-2.46.4-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:5a4330cdbc57162e4b3aa303f588ba752257694c9c9be3e7ebb11b4aca659b5d", size = 1935226, upload-time = "2026-05-06T13:40:40.428Z" }, + { url = "https://files.pythonhosted.org/packages/e8/e7/1955d28d1afc56dd4b3ad7cc0cf39df1b9852964cf16e5d13912756d6d6b/pydantic_core-2.46.4-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:29c61fc04a3d840155ff08e475a04809278972fe6aef51e2720554e96367e34b", size = 1974605, upload-time = "2026-05-06T13:37:32.029Z" }, + { url = "https://files.pythonhosted.org/packages/93/e2/3fedbf0ba7a22850e6e9fd78117f1c0f10f950182344d8a6c535d468fdd8/pydantic_core-2.46.4-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:c50f2528cf200c5eed56faf3f4e22fcd5f38c157a8b78576e6ba3168ec35f000", size = 2030777, upload-time = "2026-05-06T13:38:55.239Z" }, + { url = "https://files.pythonhosted.org/packages/f8/61/46be275fcaaba0b4f5b9669dd852267ce1ff616592dccf7a7845588df091/pydantic_core-2.46.4-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:0cbe8b01f948de4286c74cdd6c667aceb38f5c1e26f0693b3983d9d74887c65e", size = 2236641, upload-time = "2026-05-06T13:37:08.096Z" }, + { url = "https://files.pythonhosted.org/packages/60/db/12e93e46a8bac9988be3c016860f83293daea8c716c029c9ace279036f2f/pydantic_core-2.46.4-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:617d7e2ca7dcb8c5cf6bcb8c59b8832c94b36196bbf1cbd1bfb56ed341905edd", size = 2286404, upload-time = "2026-05-06T13:40:20.221Z" }, + { url = "https://files.pythonhosted.org/packages/e2/4a/4d8b19008f38d31c53b8219cfedc2e3d5de5fe99d90076b7e767de29274f/pydantic_core-2.46.4-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7027560ee92211647d0d34e3f7cd6f50da56399d26a9c8ad0da286d3869a53f3", size = 2109219, upload-time = "2026-05-06T13:38:12.153Z" }, + { url = "https://files.pythonhosted.org/packages/88/70/3cbc40978fefb7bb09c6708d40d4ad1a5d70fd7213c3d17f971de868ec1f/pydantic_core-2.46.4-cp314-cp314t-manylinux_2_31_riscv64.whl", hash = "sha256:f99626688942fb746e545232e7726926f3be91b5975f8b55327665fafda991c7", size = 2110594, upload-time = "2026-05-06T13:40:02.971Z" }, + { url = "https://files.pythonhosted.org/packages/9d/20/b8d36736216e29491125531685b2f9e61aa5b4b2599893f8268551da3338/pydantic_core-2.46.4-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:fc3e9034a63de20e15e8ade85358bc6efc614008cab72898b4b4952bea0509ff", size = 2159542, upload-time = "2026-05-06T13:39:27.506Z" }, + { url = "https://files.pythonhosted.org/packages/1d/a2/367df868eb584dacf6bf82a389272406d7178e301c4ac82545ab98bc2dd9/pydantic_core-2.46.4-cp314-cp314t-musllinux_1_1_aarch64.whl", hash = "sha256:97e7cf2be5c77b7d1a9713a05605d49460d02c6078d38d8bef3cbe323c548424", size = 2168146, upload-time = "2026-05-06T13:38:31.93Z" }, + { url = "https://files.pythonhosted.org/packages/c1/b8/4460f77f7e201893f649a29ab355dddd3beee8a97bcb1a320db414f9a06e/pydantic_core-2.46.4-cp314-cp314t-musllinux_1_1_armv7l.whl", hash = "sha256:3bf92c5d0e00fefaab325a4d27828fe6b6e2a21848686b5b60d2d9eeb09d76c6", size = 2306309, upload-time = "2026-05-06T13:37:44.717Z" }, + { url = "https://files.pythonhosted.org/packages/64/c4/be2639293acd87dc8ddbcec41a73cee9b2ebf996fe6d892a1a74e88ad3f7/pydantic_core-2.46.4-cp314-cp314t-musllinux_1_1_x86_64.whl", hash = "sha256:3ecbc122d18468d06ca279dc26a8c2e2d5acb10943bb35e36ae92096dc3b5565", size = 2369736, upload-time = "2026-05-06T13:37:05.645Z" }, + { url = "https://files.pythonhosted.org/packages/30/a6/9f9f380dbb301f67023bf8f707aaa75daadf84f7152d95c410fd7e81d994/pydantic_core-2.46.4-cp314-cp314t-win32.whl", hash = "sha256:e846ae7835bf0703ae43f534ab79a867146dadd59dc9ca5c8b53d5c8f7c9ef02", size = 1955575, upload-time = "2026-05-06T13:38:51.116Z" }, + { url = "https://files.pythonhosted.org/packages/40/1f/f1eb9eb350e795d1af8586289746f5c5677d16043040d63710e22abc43c9/pydantic_core-2.46.4-cp314-cp314t-win_amd64.whl", hash = "sha256:2108ba5c1c1eca18030634489dc544844144ee36357f2f9f780b93e7ddbb44b5", size = 2051624, upload-time = "2026-05-06T13:38:21.672Z" }, + { url = "https://files.pythonhosted.org/packages/f6/d2/42dd53d0a85c27606f316d3aa5d2869c4e8470a5ed6dec30e4a1abe19192/pydantic_core-2.46.4-cp314-cp314t-win_arm64.whl", hash = "sha256:4fcbe087dbc2068af7eda3aa87634eba216dbda64d1ae73c8684b621d33f6596", size = 2017325, upload-time = "2026-05-06T13:40:52.723Z" }, + { url = "https://files.pythonhosted.org/packages/5d/00/13a0c039569d1e583779ee1b8d7df6bfe275a0db83fcae14f01d6856c16e/pydantic_core-2.46.4-cp39-cp39-macosx_10_12_x86_64.whl", hash = "sha256:fd8b3d9fd264be37976686c7f65cd52a83f5e84f4bfd2adf9c1d469676bbb6ae", size = 2115337, upload-time = "2026-05-06T13:38:37.741Z" }, + { url = "https://files.pythonhosted.org/packages/41/60/e70fa1ee03e243bdfd4b1fddf1e1f2a8fba681df3034b51b9376c0fb5bf5/pydantic_core-2.46.4-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:9f444c499b3eefd3a92e348059471ea0c3a6e303d9c1cec09fa748fd9f895201", size = 1957976, upload-time = "2026-05-06T13:37:33.478Z" }, + { url = "https://files.pythonhosted.org/packages/11/9a/78fb5f2ea849f767ea802de8b4e8f5a0c4a48ddbe4bc66bd19ac2f55a01c/pydantic_core-2.46.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3447661d99f75a3683a4cf5c87da72f2161964611864dbbeac7fbb118bb4bfc0", size = 1979390, upload-time = "2026-05-06T13:36:52.419Z" }, + { url = "https://files.pythonhosted.org/packages/f5/7d/3acfdcd000bad9735de0430a88355948469781f62cb841fd63e8a307e80e/pydantic_core-2.46.4-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:8b9bab013d1c7a79d3501ff86d0bc9c31bf587db4551677b96bec07df78c6b15", size = 2043263, upload-time = "2026-05-06T13:39:54.798Z" }, + { url = "https://files.pythonhosted.org/packages/35/60/1325e5a8d7f9697416481c7f7c1c304738d6b961a7fd1ea0f054ce0f14fb/pydantic_core-2.46.4-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d995260fdf4e1db774581b4900e0f832abe3c7c84996726bbc161b19c8f29e76", size = 2225708, upload-time = "2026-05-06T13:40:24.887Z" }, + { url = "https://files.pythonhosted.org/packages/6a/b0/9ec8c38f33b26db0b612cb7fd165bb0a370773710432a2a74fa31287b430/pydantic_core-2.46.4-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f13a646d65d09fbf1bc6b3a9635d30095c8e7e5cc419ff35ecc563c5fd04cd49", size = 2288494, upload-time = "2026-05-06T13:38:00.091Z" }, + { url = "https://files.pythonhosted.org/packages/65/05/497446a9586d1b2d24ee25ebe208beb15388f1875d783e1e014055d150ac/pydantic_core-2.46.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:432c179df7874eeb73307aad2df0755e1ae0efa61ff0ea89b93e194411ae3928", size = 2095629, upload-time = "2026-05-06T13:38:23.632Z" }, + { url = "https://files.pythonhosted.org/packages/93/d9/cd5fa98f9d94f9294c15459396c8a2383c164469e679ac178d6d42cfee6b/pydantic_core-2.46.4-cp39-cp39-manylinux_2_31_riscv64.whl", hash = "sha256:e68b7a074f65a2fd746c52a7ce6142ab7006074ac269ace0c25cd8ba171f8066", size = 2119309, upload-time = "2026-05-06T13:39:50.144Z" }, + { url = "https://files.pythonhosted.org/packages/20/1b/64cec655451ddbf3976df5dc9706b240df4fdaebdeebeadd4f59a8dab926/pydantic_core-2.46.4-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:4a05d69cba51d852c5c3e92758653245a50c0b646ced0cf05bd793ed592839d6", size = 2170216, upload-time = "2026-05-06T13:39:14.561Z" }, + { url = "https://files.pythonhosted.org/packages/2a/21/fe9f039138c9ea3be10ccdb6ec490acb54dcbef5a5e96dbdf1411f82b929/pydantic_core-2.46.4-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:228ee9bae8bef5b1e97ec58302f80357c37199e0d0a99174e138d28e6957b9d9", size = 2186726, upload-time = "2026-05-06T13:37:51.597Z" }, + { url = "https://files.pythonhosted.org/packages/44/cb/19ca0da64821d1aefcef65f253aa9ecbdd0dde360f607d0f9b3d95db2b4e/pydantic_core-2.46.4-cp39-cp39-musllinux_1_1_armv7l.whl", hash = "sha256:10e17cbb10a330363733efc4d7c4d0dd827ac0909b8f6a6542298fed1ea62f29", size = 2320400, upload-time = "2026-05-06T13:39:36.29Z" }, + { url = "https://files.pythonhosted.org/packages/cd/14/fe3fbf6e845bf2080dc2f282d75085ddf79d037b35634ecde68f33c217b4/pydantic_core-2.46.4-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:91a06d2e259ecfbd8c901d70c3c507900458498142b3026a296b7de4d1322cc9", size = 2363318, upload-time = "2026-05-06T13:38:53.039Z" }, + { url = "https://files.pythonhosted.org/packages/62/88/60b110889507a426eecf626f7536566cb290ada71147eff49b6e2724ca62/pydantic_core-2.46.4-cp39-cp39-win32.whl", hash = "sha256:d80ee3d731373b24cebbc10d689ca4ee1875caf0d5703a245db18efd4dd37fc1", size = 1988880, upload-time = "2026-05-06T13:39:16.572Z" }, + { url = "https://files.pythonhosted.org/packages/0b/d6/8ede2f98f17e1e4e127d37be0eced4eee931a511c62cd68af50e1b25bfa9/pydantic_core-2.46.4-cp39-cp39-win_amd64.whl", hash = "sha256:3be77f45df024d789a672ae34f8b06fb346c4f9f46ea714956660ea4862e89ac", size = 2079257, upload-time = "2026-05-06T13:39:38.498Z" }, + { url = "https://files.pythonhosted.org/packages/ee/a4/73995fd4ebbb46ba0ee51e6fa049b8f02c40daebb762208feda8a6b7894d/pydantic_core-2.46.4-graalpy311-graalpy242_311_native-macosx_10_12_x86_64.whl", hash = "sha256:14d4edf427bdcf950a8a02d7cb44a08614388dd6e1bdcbf4f67504fa7887da9c", size = 2111589, upload-time = "2026-05-06T13:37:10.817Z" }, + { url = "https://files.pythonhosted.org/packages/fb/7f/f37d3a5e8bfcc2e403f5c57a730f2d815693fb42119e8ea48b3789335af1/pydantic_core-2.46.4-graalpy311-graalpy242_311_native-macosx_11_0_arm64.whl", hash = "sha256:0ce40cd7b21210e99342afafbd4d0f76d784eb5b1d60f3bdc566be4983c6c73b", size = 1944552, upload-time = "2026-05-06T13:36:56.717Z" }, + { url = "https://files.pythonhosted.org/packages/15/3c/d7eb777b3ff43e8433a4efb39a17aa8fd98a4ee8561a24a67ef5db07b2d6/pydantic_core-2.46.4-graalpy311-graalpy242_311_native-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:90884113d8b48f760e9587002789ddd741e76ab9f89518cd1e43b1f1a52ec44b", size = 1982984, upload-time = "2026-05-06T13:39:06.207Z" }, + { url = "https://files.pythonhosted.org/packages/63/87/70b9f40170a81afd55ca26c9b2acb25c20d64bcfbf888fafecb3ba077d4c/pydantic_core-2.46.4-graalpy311-graalpy242_311_native-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:66ce7632c22d837c95301830e111ad0128a32b8207533b60896a96c4915192ea", size = 2138417, upload-time = "2026-05-06T13:39:45.476Z" }, + { url = "https://files.pythonhosted.org/packages/9d/1d/8987ad40f65ae1432753072f214fb5c74fe47ffbd0698bb9cbbb585664f8/pydantic_core-2.46.4-graalpy312-graalpy250_312_native-macosx_10_12_x86_64.whl", hash = "sha256:1d8ba486450b14f3b1d63bc521d410ec7565e52f887b9fb671791886436a42f7", size = 2095527, upload-time = "2026-05-06T13:39:52.283Z" }, + { url = "https://files.pythonhosted.org/packages/64/d3/84c282a7eee1d3ac4c0377546ef5a1ea436ce26840d9ac3b7ed54a377507/pydantic_core-2.46.4-graalpy312-graalpy250_312_native-macosx_11_0_arm64.whl", hash = "sha256:3009f12e4e90b7f88b4f9adb1b0c4a3d58fe7820f3238c190047209d148026df", size = 1936024, upload-time = "2026-05-06T13:40:15.671Z" }, + { url = "https://files.pythonhosted.org/packages/d7/ca/eac61596cdeb4d7e174d3dc0bd8a6238f14f75f97a24e7b7db4c7e7340a0/pydantic_core-2.46.4-graalpy312-graalpy250_312_native-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ad785e92e6dc634c21555edc8bd6b64957ab844541bcb96a1366c202951ae526", size = 1990696, upload-time = "2026-05-06T13:38:34.717Z" }, + { url = "https://files.pythonhosted.org/packages/fa/c3/7c8b240552251faf6b3a957db200fcfbbcec36763c050428b601e0c9b83b/pydantic_core-2.46.4-graalpy312-graalpy250_312_native-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:00c603d540afdd6b80eb39f078f33ebd46211f02f33e34a32d9f053bba711de0", size = 2147590, upload-time = "2026-05-06T13:39:29.883Z" }, + { url = "https://files.pythonhosted.org/packages/11/cb/428de0385b6c8d44b716feba566abfacfbd23ee3c4439faa789a1456242f/pydantic_core-2.46.4-pp311-pypy311_pp73-macosx_10_12_x86_64.whl", hash = "sha256:0c563b08bca408dc7f65f700633d8442fffb2421fc47b8101377e9fd65051ff0", size = 2112782, upload-time = "2026-05-06T13:37:04.016Z" }, + { url = "https://files.pythonhosted.org/packages/0b/b5/6a17bdadd0fc1f170adfd05a20d37c832f52b117b4d9131da1f41bb097ce/pydantic_core-2.46.4-pp311-pypy311_pp73-macosx_11_0_arm64.whl", hash = "sha256:db06ffe51636ffe9ca531fe9023dd64bdd794be8754cb5df57c5498ae5b518a7", size = 1952146, upload-time = "2026-05-06T13:39:43.092Z" }, + { url = "https://files.pythonhosted.org/packages/2a/dc/03734d80e362cd43ef65428e9de77c730ce7f2f11c60d2b1e1b39f0fbf99/pydantic_core-2.46.4-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:133878133d271ade3d41d1bfb2a45ec38dbdbda40bc065921c6b04e4630127e2", size = 2134492, upload-time = "2026-05-06T13:36:58.124Z" }, + { url = "https://files.pythonhosted.org/packages/de/df/5e5ffc085ed07cc22d298134d3d911c63e91f6a0eb91fe646750a3209910/pydantic_core-2.46.4-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:9bc519fbf2b7578398853d815009ae5e4d4603d12f4e3f91da8c06852d3da3e9", size = 2156604, upload-time = "2026-05-06T13:37:49.88Z" }, + { url = "https://files.pythonhosted.org/packages/81/44/6e112a4253e56f5705467cbab7ab5e91ee7398ba3d56d358635958893d3e/pydantic_core-2.46.4-pp311-pypy311_pp73-musllinux_1_1_aarch64.whl", hash = "sha256:c7a7bd4e39e8e4c12c39cd480356842b6a8a06e41b23a55a5e3e191718838ddf", size = 2183828, upload-time = "2026-05-06T13:37:43.053Z" }, + { url = "https://files.pythonhosted.org/packages/ac/ad/5565071e937d8e752842ac241463944c9eb14c87e2d269f2658a5bd05e98/pydantic_core-2.46.4-pp311-pypy311_pp73-musllinux_1_1_armv7l.whl", hash = "sha256:d396ec2b979760aaf3218e76c24e65bd0aca24983298653b3a9d7a45f9e47b30", size = 2310000, upload-time = "2026-05-06T13:37:56.694Z" }, + { url = "https://files.pythonhosted.org/packages/4f/c3/66883a5cec183e7fba4d024b4cbbe61851a63750ef606b0afecc46d1f2bf/pydantic_core-2.46.4-pp311-pypy311_pp73-musllinux_1_1_x86_64.whl", hash = "sha256:86e1a4418c6cd97d60c95c71164158eaf7324fae7b0923264016baa993eba6fc", size = 2361286, upload-time = "2026-05-06T13:40:05.667Z" }, + { url = "https://files.pythonhosted.org/packages/4b/2d/69abac8f838090bbecd5df894befb2c2619e7996a98ddb949db9f3b93225/pydantic_core-2.46.4-pp311-pypy311_pp73-win_amd64.whl", hash = "sha256:d51026d73fcfd93610abc7b27789c26b313920fcfb20e27462d74a7f8b06e983", size = 2193071, upload-time = "2026-05-06T13:38:08.682Z" }, ] [[package]] @@ -1842,7 +2048,8 @@ wheels = [ [package.optional-dependencies] crypto = [ - { name = "cryptography" }, + { name = "cryptography", version = "47.0.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version <= '3.9' or (extra == 'group-9-githubkit-pydantic-v1' and extra == 'group-9-githubkit-pydantic-v2')" }, + { name = "cryptography", version = "48.0.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version > '3.9' or (extra == 'group-9-githubkit-pydantic-v1' and extra == 'group-9-githubkit-pydantic-v2')" }, ] [[package]] @@ -1920,7 +2127,7 @@ wheels = [ [[package]] name = "python-discovery" -version = "1.2.2" +version = "1.3.0" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "filelock", version = "3.19.1", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10' or (extra == 'group-9-githubkit-pydantic-v1' and extra == 'group-9-githubkit-pydantic-v2')" }, @@ -1928,9 +2135,9 @@ dependencies = [ { name = "platformdirs", version = "4.4.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10' or (extra == 'group-9-githubkit-pydantic-v1' and extra == 'group-9-githubkit-pydantic-v2')" }, { name = "platformdirs", version = "4.9.6", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.10' or (extra == 'group-9-githubkit-pydantic-v1' and extra == 'group-9-githubkit-pydantic-v2')" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/de/ef/3bae0e537cfe91e8431efcba4434463d2c5a65f5a89edd47c6cf2f03c55f/python_discovery-1.2.2.tar.gz", hash = "sha256:876e9c57139eb757cb5878cbdd9ae5379e5d96266c99ef731119e04fffe533bb", size = 58872, upload-time = "2026-04-07T17:28:49.249Z" } +sdist = { url = "https://files.pythonhosted.org/packages/ae/e0/cc5a8653e9a24f6cf84768f05064aa8ed5a83dcefd5e2a043db14a1c5f44/python_discovery-1.3.0.tar.gz", hash = "sha256:d098f1e86be5d45fe4d14bf1029294aabbd332f4321179dec85e76cddce834b0", size = 63925, upload-time = "2026-05-05T14:38:39.769Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/d8/db/795879cc3ddfe338599bddea6388cc5100b088db0a4caf6e6c1af1c27e04/python_discovery-1.2.2-py3-none-any.whl", hash = "sha256:e1ae95d9af875e78f15e19aed0c6137ab1bb49c200f21f5061786490c9585c7a", size = 31894, upload-time = "2026-04-07T17:28:48.09Z" }, + { url = "https://files.pythonhosted.org/packages/30/d4/24d543ab8b8158b7f5a97113c831205f5c900c92c8762b1e7f44b7ea0405/python_discovery-1.3.0-py3-none-any.whl", hash = "sha256:441d9ced3dfce36e113beb35ca302c71c7ef06f3c0f9c227a0b9bb3bd49b9e9f", size = 33124, upload-time = "2026-05-05T14:38:38.539Z" }, ] [[package]] @@ -2023,7 +2230,8 @@ name = "redis" version = "7.0.1" source = { registry = "https://pypi.org/simple" } resolution-markers = [ - "python_full_version < '3.10'", + "python_full_version > '3.9' and python_full_version < '3.10'", + "python_full_version <= '3.9'", ] dependencies = [ { name = "async-timeout", marker = "python_full_version < '3.10' or (extra == 'group-9-githubkit-pydantic-v1' and extra == 'group-9-githubkit-pydantic-v2')" }, @@ -2053,7 +2261,8 @@ name = "requests" version = "2.32.5" source = { registry = "https://pypi.org/simple" } resolution-markers = [ - "python_full_version < '3.10'", + "python_full_version > '3.9' and python_full_version < '3.10'", + "python_full_version <= '3.9'", ] dependencies = [ { name = "certifi", marker = "python_full_version < '3.10' or (extra == 'group-9-githubkit-pydantic-v1' and extra == 'group-9-githubkit-pydantic-v2')" }, @@ -2231,7 +2440,7 @@ wheels = [ [[package]] name = "virtualenv" -version = "21.3.0" +version = "21.3.1" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "distlib" }, @@ -2242,9 +2451,9 @@ dependencies = [ { name = "python-discovery" }, { name = "typing-extensions", marker = "python_full_version < '3.11' or (extra == 'group-9-githubkit-pydantic-v1' and extra == 'group-9-githubkit-pydantic-v2')" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/3f/8b/6331f7a7fe70131c301106ec1e7cf23e2501bf7d4ca3636805801ca191bb/virtualenv-21.3.0.tar.gz", hash = "sha256:733750db978ec95c2d8eb4feadaa57091002bce404cb39ba69899cf7bd28944e", size = 7614069, upload-time = "2026-04-27T17:05:58.927Z" } +sdist = { url = "https://files.pythonhosted.org/packages/ec/0d/915c02c94d207b85580eb09bffab54438a709e7288524094fe781da526c2/virtualenv-21.3.1.tar.gz", hash = "sha256:c2305bc1fddeec40699b8370d13f8d431b0701f00ce895061ce493aeded4426b", size = 7613791, upload-time = "2026-05-05T01:34:31.402Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/4b/eb/03bfb1299d4c4510329e470f13f9a4ce793df7fcb5a2fd3510f911066f61/virtualenv-21.3.0-py3-none-any.whl", hash = "sha256:4d28ee41f6d9ec8f1f00cd472b9ffbcedda1b3d3b9a575b5c94a2d004fd51bd7", size = 7594690, upload-time = "2026-04-27T17:05:55.468Z" }, + { url = "https://files.pythonhosted.org/packages/b1/4f/f71e641e504111a5a74e3a20bc52d01bd86788b22699dd3fee1c63253cf6/virtualenv-21.3.1-py3-none-any.whl", hash = "sha256:d1a71cf58f2f9228fff23a1f6ec15d39785c6b32e03658d104974247145edd35", size = 7594539, upload-time = "2026-05-05T01:34:28.98Z" }, ] [[package]] @@ -2286,11 +2495,11 @@ wheels = [ [[package]] name = "wcwidth" -version = "0.6.0" +version = "0.7.0" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/35/a2/8e3becb46433538a38726c948d3399905a4c7cabd0df578ede5dc51f0ec2/wcwidth-0.6.0.tar.gz", hash = "sha256:cdc4e4262d6ef9a1a57e018384cbeb1208d8abbc64176027e2c2455c81313159", size = 159684, upload-time = "2026-02-06T19:19:40.919Z" } +sdist = { url = "https://files.pythonhosted.org/packages/2c/ee/afaf0f85a9a18fe47a67f1e4422ed6cf1fe642f0ae0a2f81166231303c52/wcwidth-0.7.0.tar.gz", hash = "sha256:90e3a7ea092341c44b99562e75d09e4d5160fe7a3974c6fb842a101a95e7eed0", size = 182132, upload-time = "2026-05-02T16:04:12.653Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/68/5a/199c59e0a824a3db2b89c5d2dade7ab5f9624dbf6448dc291b46d5ec94d3/wcwidth-0.6.0-py3-none-any.whl", hash = "sha256:1a3a1e510b553315f8e146c54764f4fb6264ffad731b3d78088cdb1478ffbdad", size = 94189, upload-time = "2026-02-06T19:19:39.646Z" }, + { url = "https://files.pythonhosted.org/packages/41/52/e465037f5375f43533d1a80b6923955201596a99142ed524d77b571a1418/wcwidth-0.7.0-py3-none-any.whl", hash = "sha256:5d69154c429a82910e241c738cd0e2976fac8a2dd47a1a805f4afed1c0f136f2", size = 110825, upload-time = "2026-05-02T16:04:11.033Z" }, ] [[package]]