@@ -42,21 +42,6 @@ type AcceptTopicSuggestionPayload {
4242 topic: Topic
4343}
4444
45- """The possible capabilities for action executions setting."""
46- enum ActionExecutionCapabilitySetting {
47- """All action executions are disabled."""
48- DISABLED
49-
50- """All action executions are enabled."""
51- ALL_ACTIONS
52-
53- """Only actions defined within the repo are allowed."""
54- LOCAL_ACTIONS_ONLY
55-
56- """Organization administrators action execution capabilities."""
57- NO_POLICY
58- }
59-
6045"""
6146Represents an object which can take actions on GitHub. Typically a User or Bot.
6247"""
@@ -4866,28 +4851,6 @@ type EnterpriseOutsideCollaboratorEdge {
48664851
48674852"""Enterprise information only visible to enterprise owners."""
48684853type EnterpriseOwnerInfo {
4869- """
4870- A list of enterprise organizations configured with the provided action execution capabilities setting value.
4871- """
4872- actionExecutionCapabilitySettingOrganizations(
4873- """Returns the elements in the list that come after the specified cursor."""
4874- after: String
4875-
4876- """
4877- Returns the elements in the list that come before the specified cursor.
4878- """
4879- before: String
4880-
4881- """Returns the first _n_ elements from the list."""
4882- first: Int
4883-
4884- """Returns the last _n_ elements from the list."""
4885- last: Int
4886-
4887- """Ordering options for organizations with this setting."""
4888- orderBy: OrganizationOrder = {field: LOGIN, direction: ASC}
4889- ): OrganizationConnection!
4890-
48914854 """A list of all of the administrators for this enterprise."""
48924855 admins(
48934856 """The search string to look for."""
@@ -9476,9 +9439,6 @@ type Mutation {
94769439 """Modifies the settings of an existing check suite"""
94779440 updateCheckSuitePreferences(input: UpdateCheckSuitePreferencesInput!): UpdateCheckSuitePreferencesPayload
94789441
9479- """Sets the action execution capability setting for an enterprise."""
9480- updateEnterpriseActionExecutionCapabilitySetting(input: UpdateEnterpriseActionExecutionCapabilitySettingInput!): UpdateEnterpriseActionExecutionCapabilitySettingPayload
9481-
94829442 """Updates the role of an enterprise administrator."""
94839443 updateEnterpriseAdministratorRole(input: UpdateEnterpriseAdministratorRoleInput!): UpdateEnterpriseAdministratorRolePayload
94849444
@@ -22647,40 +22607,6 @@ type UpdateCheckSuitePreferencesPayload {
2264722607 repository: Repository
2264822608}
2264922609
22650- """
22651- Autogenerated input type of UpdateEnterpriseActionExecutionCapabilitySetting
22652- """
22653- input UpdateEnterpriseActionExecutionCapabilitySettingInput {
22654- """
22655- The ID of the enterprise on which to set the members can create repositories setting.
22656- """
22657- enterpriseId: ID!
22658-
22659- """
22660- The value for the action execution capability setting on the enterprise.
22661- """
22662- capability: ActionExecutionCapabilitySetting!
22663-
22664- """A unique identifier for the client performing the mutation."""
22665- clientMutationId: String
22666- }
22667-
22668- """
22669- Autogenerated return type of UpdateEnterpriseActionExecutionCapabilitySetting
22670- """
22671- type UpdateEnterpriseActionExecutionCapabilitySettingPayload {
22672- """A unique identifier for the client performing the mutation."""
22673- clientMutationId: String
22674-
22675- """The enterprise with the updated action execution capability setting."""
22676- enterprise: Enterprise
22677-
22678- """
22679- A message confirming the result of updating the action execution capability setting.
22680- """
22681- message: String
22682- }
22683-
2268422610"""Autogenerated input type of UpdateEnterpriseAdministratorRole"""
2268522611input UpdateEnterpriseAdministratorRoleInput {
2268622612 """The ID of the Enterprise which the admin belongs to."""
0 commit comments