github-schema 1.22.4 → 1.22.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -14906,6 +14906,11 @@ type EnterpriseOwnerInfo {
14906
14906
  """
14907
14907
  ipAllowListForInstalledAppsEnabledSetting: IpAllowListForInstalledAppsEnabledSettingValue!
14908
14908
 
14909
+ """
14910
+ The setting value for whether the enterprise has IP allow list user-level enforcement enabled.
14911
+ """
14912
+ ipAllowListUserLevelEnforcementEnabledSetting: IpAllowListUserLevelEnforcementEnabledSettingValue!
14913
+
14909
14914
  """
14910
14915
  Whether or not the base repository permission is currently being updated.
14911
14916
  """
@@ -18688,6 +18693,21 @@ Types that can own an IP allow list.
18688
18693
  """
18689
18694
  union IpAllowListOwner = App | Enterprise | Organization
18690
18695
 
18696
+ """
18697
+ The possible values for the IP allow list user-level enforcement enabled setting.
18698
+ """
18699
+ enum IpAllowListUserLevelEnforcementEnabledSettingValue {
18700
+ """
18701
+ The setting is disabled for the owner.
18702
+ """
18703
+ DISABLED
18704
+
18705
+ """
18706
+ The setting is enabled for the owner.
18707
+ """
18708
+ ENABLED
18709
+ }
18710
+
18691
18711
  """
18692
18712
  An Issue is a place to discuss ideas, enhancements, tasks, and bugs for a project.
18693
18713
  """
@@ -19155,7 +19175,7 @@ type Issue implements Assignable & Closable & Comment & Deletable & Labelable &
19155
19175
  Returns the last _n_ elements from the list.
19156
19176
  """
19157
19177
  last: Int
19158
- ): ProjectV2ItemConnection!
19178
+ ): ProjectV2ItemConnection
19159
19179
 
19160
19180
  """
19161
19181
  Find a project by number.
@@ -26327,6 +26347,16 @@ type Mutation {
26327
26347
  input: UpdateIpAllowListForInstalledAppsEnabledSettingInput!
26328
26348
  ): UpdateIpAllowListForInstalledAppsEnabledSettingPayload
26329
26349
 
26350
+ """
26351
+ Sets whether IP allow list user-level enforcement is enabled on an enterprise.
26352
+ """
26353
+ updateIpAllowListUserLevelEnforcementEnabledSetting(
26354
+ """
26355
+ Parameters for UpdateIpAllowListUserLevelEnforcementEnabledSetting
26356
+ """
26357
+ input: UpdateIpAllowListUserLevelEnforcementEnabledSettingInput!
26358
+ ): UpdateIpAllowListUserLevelEnforcementEnabledSettingPayload
26359
+
26330
26360
  """
26331
26361
  Updates an Issue.
26332
26362
  """
@@ -38641,7 +38671,7 @@ type PullRequest implements Assignable & Closable & Comment & Labelable & Lockab
38641
38671
  Returns the last _n_ elements from the list.
38642
38672
  """
38643
38673
  last: Int
38644
- ): ProjectV2ItemConnection!
38674
+ ): ProjectV2ItemConnection
38645
38675
 
38646
38676
  """
38647
38677
  Find a project by number.
@@ -61254,6 +61284,41 @@ type UpdateIpAllowListForInstalledAppsEnabledSettingPayload {
61254
61284
  owner: IpAllowListOwner
61255
61285
  }
61256
61286
 
61287
+ """
61288
+ Autogenerated input type of UpdateIpAllowListUserLevelEnforcementEnabledSetting
61289
+ """
61290
+ input UpdateIpAllowListUserLevelEnforcementEnabledSettingInput {
61291
+ """
61292
+ A unique identifier for the client performing the mutation.
61293
+ """
61294
+ clientMutationId: String
61295
+
61296
+ """
61297
+ The ID of the owner.
61298
+ """
61299
+ ownerId: ID!
61300
+
61301
+ """
61302
+ The value for the IP allow list user-level enforcement enabled setting.
61303
+ """
61304
+ settingValue: IpAllowListUserLevelEnforcementEnabledSettingValue!
61305
+ }
61306
+
61307
+ """
61308
+ Autogenerated return type of UpdateIpAllowListUserLevelEnforcementEnabledSetting.
61309
+ """
61310
+ type UpdateIpAllowListUserLevelEnforcementEnabledSettingPayload {
61311
+ """
61312
+ A unique identifier for the client performing the mutation.
61313
+ """
61314
+ clientMutationId: String
61315
+
61316
+ """
61317
+ The IP allow list owner on which the setting was updated.
61318
+ """
61319
+ owner: IpAllowListOwner
61320
+ }
61321
+
61257
61322
  """
61258
61323
  Autogenerated input type of UpdateIssueComment
61259
61324
  """
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "github-schema",
3
- "version": "1.22.4",
3
+ "version": "1.22.6",
4
4
  "description": "GitHub's GraphQL schema",
5
5
  "type": "module",
6
6
  "author": {