github-schema 1.21.9 → 1.21.11

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.
@@ -8608,6 +8608,76 @@ type CreateRefPayload {
8608
8608
  ref: Ref
8609
8609
  }
8610
8610
 
8611
+ """
8612
+ Autogenerated input type of CreateRepositoryCustomProperty
8613
+ """
8614
+ input CreateRepositoryCustomPropertyInput {
8615
+ """
8616
+ The allowed values for the custom property.
8617
+ """
8618
+ allowedValues: [String!]
8619
+
8620
+ """
8621
+ A unique identifier for the client performing the mutation.
8622
+ """
8623
+ clientMutationId: String
8624
+
8625
+ """
8626
+ The default value for the custom property if the property is required.
8627
+ """
8628
+ defaultValue: String
8629
+
8630
+ """
8631
+ The description of the custom property.
8632
+ """
8633
+ description: String
8634
+
8635
+ """
8636
+ The name of the custom property.
8637
+ """
8638
+ propertyName: String!
8639
+
8640
+ """
8641
+ The regex pattern that the value of the custom property must match, if the `value_type` is `string`.
8642
+ """
8643
+ regex: String
8644
+
8645
+ """
8646
+ Whether the custom property is required.
8647
+ """
8648
+ required: Boolean
8649
+
8650
+ """
8651
+ The global relay id of the source in which a new custom property should be created in.
8652
+ """
8653
+ sourceId: ID!
8654
+
8655
+ """
8656
+ The value type for the custom property.
8657
+ """
8658
+ valueType: CustomPropertyValueType!
8659
+
8660
+ """
8661
+ The allowed actors who can edit the values of a custom property.
8662
+ """
8663
+ valuesEditableBy: RepositoryCustomPropertyValuesEditableBy
8664
+ }
8665
+
8666
+ """
8667
+ Autogenerated return type of CreateRepositoryCustomProperty.
8668
+ """
8669
+ type CreateRepositoryCustomPropertyPayload {
8670
+ """
8671
+ A unique identifier for the client performing the mutation.
8672
+ """
8673
+ clientMutationId: String
8674
+
8675
+ """
8676
+ The newly created repository custom property.
8677
+ """
8678
+ repositoryCustomProperty: RepositoryCustomProperty
8679
+ }
8680
+
8611
8681
  """
8612
8682
  Autogenerated input type of CreateRepository
8613
8683
  """
@@ -9027,53 +9097,6 @@ type CreateSponsorshipsPayload {
9027
9097
  sponsorables: [Sponsorable!]
9028
9098
  }
9029
9099
 
9030
- """
9031
- Autogenerated input type of CreateTeamDiscussionComment
9032
- """
9033
- input CreateTeamDiscussionCommentInput {
9034
- """
9035
- The content of the comment. This field is required.
9036
-
9037
- **Upcoming Change on 2024-07-01 UTC**
9038
- **Description:** `body` will be removed. Follow the guide at
9039
- https://github.blog/changelog/2023-02-08-sunset-notice-team-discussions/ to
9040
- find a suitable replacement.
9041
- **Reason:** The Team Discussions feature is deprecated in favor of Organization Discussions.
9042
- """
9043
- body: String
9044
-
9045
- """
9046
- A unique identifier for the client performing the mutation.
9047
- """
9048
- clientMutationId: String
9049
-
9050
- """
9051
- The ID of the discussion to which the comment belongs. This field is required.
9052
-
9053
- **Upcoming Change on 2024-07-01 UTC**
9054
- **Description:** `discussionId` will be removed. Follow the guide at
9055
- https://github.blog/changelog/2023-02-08-sunset-notice-team-discussions/ to
9056
- find a suitable replacement.
9057
- **Reason:** The Team Discussions feature is deprecated in favor of Organization Discussions.
9058
- """
9059
- discussionId: ID
9060
- }
9061
-
9062
- """
9063
- Autogenerated return type of CreateTeamDiscussionComment.
9064
- """
9065
- type CreateTeamDiscussionCommentPayload {
9066
- """
9067
- A unique identifier for the client performing the mutation.
9068
- """
9069
- clientMutationId: String
9070
-
9071
- """
9072
- The new comment.
9073
- """
9074
- teamDiscussionComment: TeamDiscussionComment @deprecated(reason: "The Team Discussions feature is deprecated in favor of Organization Discussions. Follow the guide at https://github.blog/changelog/2023-02-08-sunset-notice-team-discussions/ to find a suitable replacement. Removal on 2024-07-01 UTC.")
9075
- }
9076
-
9077
9100
  """
9078
9101
  Autogenerated input type of CreateTeamDiscussion
9079
9102
  """
@@ -9660,6 +9683,64 @@ type CrossReferencedEvent implements Node & UniformResourceLocatable {
9660
9683
  willCloseTarget: Boolean!
9661
9684
  }
9662
9685
 
9686
+ """
9687
+ Sources which can have custom properties defined.
9688
+ """
9689
+ union CustomPropertySource = Enterprise | Organization
9690
+
9691
+ """
9692
+ A custom property value can be either a string or an array of strings. All
9693
+ property types support only a single string value, except for the multi-select
9694
+ type, which supports only a string array.
9695
+ """
9696
+ scalar CustomPropertyValue
9697
+
9698
+ """
9699
+ The custom property name and value to be set.
9700
+ """
9701
+ input CustomPropertyValueInput {
9702
+ """
9703
+ The name of the custom property.
9704
+ """
9705
+ propertyName: String!
9706
+
9707
+ """
9708
+ The value to set for the custom property. Using a value of null will unset the
9709
+ property value, reverting to the default value if the property is required.
9710
+ """
9711
+ value: CustomPropertyValue
9712
+ }
9713
+
9714
+ """
9715
+ The allowed value types for a custom property definition.
9716
+ """
9717
+ enum CustomPropertyValueType {
9718
+ """
9719
+ A multi-select value.
9720
+ """
9721
+ MULTI_SELECT
9722
+
9723
+ """
9724
+ A single-select value.
9725
+ """
9726
+ SINGLE_SELECT
9727
+
9728
+ """
9729
+ A string value.
9730
+ """
9731
+ STRING
9732
+
9733
+ """
9734
+ A true/false value.
9735
+ """
9736
+ TRUE_FALSE
9737
+
9738
+ """
9739
+ A URL value.
9740
+ """
9741
+ URL
9742
+ }
9743
+
9663
9744
  """
9664
9745
  The Common Vulnerability Scoring System
9665
9746
  """
@@ -10463,49 +10544,54 @@ type DeleteRefPayload {
10463
10544
  }
10464
10545
 
10465
10546
  """
10466
- Autogenerated input type of DeleteRepositoryRuleset
10547
+ Autogenerated input type of DeleteRepositoryCustomProperty
10467
10548
  """
10468
- input DeleteRepositoryRulesetInput {
10549
+ input DeleteRepositoryCustomPropertyInput {
10469
10550
  """
10470
10551
  A unique identifier for the client performing the mutation.
10471
10552
  """
10472
10553
  clientMutationId: String
10473
10554
 
10474
10555
  """
10475
- The global relay id of the repository ruleset to be deleted.
10556
+ The global relay id of the custom property to be deleted.
10476
10557
  """
10477
- repositoryRulesetId: ID!
10558
+ id: ID!
10478
10559
  }
10479
10560
 
10480
10561
  """
10481
- Autogenerated return type of DeleteRepositoryRuleset.
10562
+ Autogenerated return type of DeleteRepositoryCustomProperty.
10482
10563
  """
10483
- type DeleteRepositoryRulesetPayload {
10564
+ type DeleteRepositoryCustomPropertyPayload {
10484
10565
  """
10485
10566
  A unique identifier for the client performing the mutation.
10486
10567
  """
10487
10568
  clientMutationId: String
10569
+
10570
+ """
10571
+ The deleted custom property.
10572
+ """
10573
+ repositoryCustomProperty: RepositoryCustomProperty
10488
10574
  }
10489
10575
 
10490
10576
  """
10491
- Autogenerated input type of DeleteTeamDiscussionComment
10577
+ Autogenerated input type of DeleteRepositoryRuleset
10492
10578
  """
10493
- input DeleteTeamDiscussionCommentInput {
10579
+ input DeleteRepositoryRulesetInput {
10494
10580
  """
10495
10581
  A unique identifier for the client performing the mutation.
10496
10582
  """
10497
10583
  clientMutationId: String
10498
10584
 
10499
10585
  """
10500
- The ID of the comment to delete.
10586
+ The global relay id of the repository ruleset to be deleted.
10501
10587
  """
10502
- id: ID!
10588
+ repositoryRulesetId: ID!
10503
10589
  }
10504
10590
 
10505
10591
  """
10506
- Autogenerated return type of DeleteTeamDiscussionComment.
10592
+ Autogenerated return type of DeleteRepositoryRuleset.
10507
10593
  """
10508
- type DeleteTeamDiscussionCommentPayload {
10594
+ type DeleteRepositoryRulesetPayload {
10509
10595
  """
10510
10596
  A unique identifier for the client performing the mutation.
10511
10597
  """
@@ -13531,6 +13617,41 @@ type Enterprise implements Node {
13531
13617
  """
13532
13618
  readmeHTML: HTML!
13533
13619
 
13620
+ """
13621
+ A list of repository custom properties for this enterprise.
13622
+ """
13623
+ repositoryCustomProperties(
13624
+ """
13625
+ Returns the elements in the list that come after the specified cursor.
13626
+ """
13627
+ after: String
13628
+
13629
+ """
13630
+ Returns the elements in the list that come before the specified cursor.
13631
+ """
13632
+ before: String
13633
+
13634
+ """
13635
+ Returns the first _n_ elements from the list.
13636
+ """
13637
+ first: Int
13638
+
13639
+ """
13640
+ Returns the last _n_ elements from the list.
13641
+ """
13642
+ last: Int
13643
+ ): RepositoryCustomPropertyConnection
13644
+
13645
+ """
13646
+ Returns a single repository custom property for the current enterprise by name.
13647
+ """
13648
+ repositoryCustomProperty(
13649
+ """
13650
+ The name of the repository custom property to be returned.
13651
+ """
13652
+ propertyName: String!
13653
+ ): RepositoryCustomProperty
13654
+
13534
13655
  """
13535
13656
  The HTTP path for this enterprise.
13536
13657
  """
@@ -24865,6 +24986,16 @@ type Mutation {
24865
24986
  input: CreateRepositoryInput!
24866
24987
  ): CreateRepositoryPayload
24867
24988
 
24989
+ """
24990
+ Create a repository custom property.
24991
+ """
24992
+ createRepositoryCustomProperty(
24993
+ """
24994
+ Parameters for CreateRepositoryCustomProperty
24995
+ """
24996
+ input: CreateRepositoryCustomPropertyInput!
24997
+ ): CreateRepositoryCustomPropertyPayload
24998
+
24868
24999
  """
24869
25000
  Create a repository ruleset
24870
25001
  """
@@ -24926,16 +25057,6 @@ type Mutation {
24926
25057
  input: CreateTeamDiscussionInput!
24927
25058
  ): CreateTeamDiscussionPayload
24928
25059
 
24929
- """
24930
- Creates a new team discussion comment.
24931
- """
24932
- createTeamDiscussionComment(
24933
- """
24934
- Parameters for CreateTeamDiscussionComment
24935
- """
24936
- input: CreateTeamDiscussionCommentInput!
24937
- ): CreateTeamDiscussionCommentPayload
24938
-
24939
25060
  """
24940
25061
  Creates a new user list.
24941
25062
  """
@@ -25186,6 +25307,16 @@ type Mutation {
25186
25307
  input: DeleteRefInput!
25187
25308
  ): DeleteRefPayload
25188
25309
 
25310
+ """
25311
+ Delete a repository custom property.
25312
+ """
25313
+ deleteRepositoryCustomProperty(
25314
+ """
25315
+ Parameters for DeleteRepositoryCustomProperty
25316
+ """
25317
+ input: DeleteRepositoryCustomPropertyInput!
25318
+ ): DeleteRepositoryCustomPropertyPayload
25319
+
25189
25320
  """
25190
25321
  Delete a repository ruleset
25191
25322
  """
@@ -25206,16 +25337,6 @@ type Mutation {
25206
25337
  input: DeleteTeamDiscussionInput!
25207
25338
  ): DeleteTeamDiscussionPayload
25208
25339
 
25209
- """
25210
- Deletes a team discussion comment.
25211
- """
25212
- deleteTeamDiscussionComment(
25213
- """
25214
- Parameters for DeleteTeamDiscussionComment
25215
- """
25216
- input: DeleteTeamDiscussionCommentInput!
25217
- ): DeleteTeamDiscussionCommentPayload
25218
-
25219
25340
  """
25220
25341
  Deletes a user list.
25221
25342
  """
@@ -25516,6 +25637,16 @@ type Mutation {
25516
25637
  input: PinIssueInput!
25517
25638
  ): PinIssuePayload
25518
25639
 
25640
+ """
25641
+ Promote a repository custom property to the enterprise level.
25642
+ """
25643
+ promoteRepositoryCustomProperty(
25644
+ """
25645
+ Parameters for PromoteRepositoryCustomProperty
25646
+ """
25647
+ input: PromoteRepositoryCustomPropertyInput!
25648
+ ): PromoteRepositoryCustomPropertyPayload
25649
+
25519
25650
  """
25520
25651
  Publish an existing sponsorship tier that is currently still a draft to a GitHub Sponsors profile.
25521
25652
  """
@@ -25837,6 +25968,16 @@ type Mutation {
25837
25968
  input: SetOrganizationInteractionLimitInput!
25838
25969
  ): SetOrganizationInteractionLimitPayload
25839
25970
 
25971
+ """
25972
+ Set repository custom property values for a repository.
25973
+ """
25974
+ setRepositoryCustomPropertyValues(
25975
+ """
25976
+ Parameters for SetRepositoryCustomPropertyValues
25977
+ """
25978
+ input: SetRepositoryCustomPropertyValuesInput!
25979
+ ): SetRepositoryCustomPropertyValuesPayload
25980
+
25840
25981
  """
25841
25982
  Sets an interaction limit setting for a repository.
25842
25983
  """
@@ -26618,6 +26759,16 @@ type Mutation {
26618
26759
  input: UpdateRepositoryInput!
26619
26760
  ): UpdateRepositoryPayload
26620
26761
 
26762
+ """
26763
+ Update a repository custom property.
26764
+ """
26765
+ updateRepositoryCustomProperty(
26766
+ """
26767
+ Parameters for UpdateRepositoryCustomProperty
26768
+ """
26769
+ input: UpdateRepositoryCustomPropertyInput!
26770
+ ): UpdateRepositoryCustomPropertyPayload
26771
+
26621
26772
  """
26622
26773
  Update a repository ruleset
26623
26774
  """
@@ -26668,16 +26819,6 @@ type Mutation {
26668
26819
  input: UpdateTeamDiscussionInput!
26669
26820
  ): UpdateTeamDiscussionPayload
26670
26821
 
26671
- """
26672
- Updates a discussion comment.
26673
- """
26674
- updateTeamDiscussionComment(
26675
- """
26676
- Parameters for UpdateTeamDiscussionComment
26677
- """
26678
- input: UpdateTeamDiscussionCommentInput!
26679
- ): UpdateTeamDiscussionCommentPayload
26680
-
26681
26822
  """
26682
26823
  Updates team review assignment.
26683
26824
  """
@@ -31199,9 +31340,9 @@ type Organization implements Actor & MemberStatusable & Node & PackageOwner & Pr
31199
31340
  ): Repository
31200
31341
 
31201
31342
  """
31202
- Discussion comments this user has authored.
31343
+ A list of custom properties for this organization.
31203
31344
  """
31204
- repositoryDiscussionComments(
31345
+ repositoryCustomProperties(
31205
31346
  """
31206
31347
  Returns the elements in the list that come after the specified cursor.
31207
31348
  """
@@ -31221,68 +31362,103 @@ type Organization implements Actor & MemberStatusable & Node & PackageOwner & Pr
31221
31362
  Returns the last _n_ elements from the list.
31222
31363
  """
31223
31364
  last: Int
31224
-
31225
- """
31226
- Filter discussion comments to only those that were marked as the answer
31227
- """
31228
- onlyAnswers: Boolean = false
31229
-
31230
- """
31231
- Filter discussion comments to only those in a specific repository.
31232
- """
31233
- repositoryId: ID
31234
- ): DiscussionCommentConnection!
31365
+ ): RepositoryCustomPropertyConnection
31235
31366
 
31236
31367
  """
31237
- Discussions this user has started.
31368
+ Returns a single custom property from the current organization by name.
31238
31369
  """
31239
- repositoryDiscussions(
31240
- """
31241
- Returns the elements in the list that come after the specified cursor.
31242
- """
31243
- after: String
31244
-
31370
+ repositoryCustomProperty(
31245
31371
  """
31246
- Filter discussions to only those that have been answered or not. Defaults to
31247
- including both answered and unanswered discussions.
31372
+ The name of the custom property to be returned.
31248
31373
  """
31249
- answered: Boolean = null
31250
-
31251
- """
31252
- Returns the elements in the list that come before the specified cursor.
31253
- """
31254
- before: String
31255
-
31256
- """
31257
- Returns the first _n_ elements from the list.
31258
- """
31259
- first: Int
31260
-
31261
- """
31262
- Returns the last _n_ elements from the list.
31263
- """
31264
- last: Int
31265
-
31266
- """
31267
- Ordering options for discussions returned from the connection.
31268
- """
31269
- orderBy: DiscussionOrder = {field: CREATED_AT, direction: DESC}
31270
-
31271
- """
31272
- Filter discussions to only those in a specific repository.
31273
- """
31274
- repositoryId: ID
31275
-
31276
- """
31277
- A list of states to filter the discussions by.
31278
- """
31279
- states: [DiscussionState!] = []
31280
- ): DiscussionConnection!
31374
+ propertyName: String!
31375
+ ): RepositoryCustomProperty
31281
31376
 
31282
31377
  """
31283
- A list of all repository migrations for this organization.
31378
+ Discussion comments this user has authored.
31284
31379
  """
31285
- repositoryMigrations(
31380
+ repositoryDiscussionComments(
31381
+ """
31382
+ Returns the elements in the list that come after the specified cursor.
31383
+ """
31384
+ after: String
31385
+
31386
+ """
31387
+ Returns the elements in the list that come before the specified cursor.
31388
+ """
31389
+ before: String
31390
+
31391
+ """
31392
+ Returns the first _n_ elements from the list.
31393
+ """
31394
+ first: Int
31395
+
31396
+ """
31397
+ Returns the last _n_ elements from the list.
31398
+ """
31399
+ last: Int
31400
+
31401
+ """
31402
+ Filter discussion comments to only those that were marked as the answer
31403
+ """
31404
+ onlyAnswers: Boolean = false
31405
+
31406
+ """
31407
+ Filter discussion comments to only those in a specific repository.
31408
+ """
31409
+ repositoryId: ID
31410
+ ): DiscussionCommentConnection!
31411
+
31412
+ """
31413
+ Discussions this user has started.
31414
+ """
31415
+ repositoryDiscussions(
31416
+ """
31417
+ Returns the elements in the list that come after the specified cursor.
31418
+ """
31419
+ after: String
31420
+
31421
+ """
31422
+ Filter discussions to only those that have been answered or not. Defaults to
31423
+ including both answered and unanswered discussions.
31424
+ """
31425
+ answered: Boolean = null
31426
+
31427
+ """
31428
+ Returns the elements in the list that come before the specified cursor.
31429
+ """
31430
+ before: String
31431
+
31432
+ """
31433
+ Returns the first _n_ elements from the list.
31434
+ """
31435
+ first: Int
31436
+
31437
+ """
31438
+ Returns the last _n_ elements from the list.
31439
+ """
31440
+ last: Int
31441
+
31442
+ """
31443
+ Ordering options for discussions returned from the connection.
31444
+ """
31445
+ orderBy: DiscussionOrder = {field: CREATED_AT, direction: DESC}
31446
+
31447
+ """
31448
+ Filter discussions to only those in a specific repository.
31449
+ """
31450
+ repositoryId: ID
31451
+
31452
+ """
31453
+ A list of states to filter the discussions by.
31454
+ """
31455
+ states: [DiscussionState!] = []
31456
+ ): DiscussionConnection!
31457
+
31458
+ """
31459
+ A list of all repository migrations for this organization.
31460
+ """
31461
+ repositoryMigrations(
31286
31462
  """
31287
31463
  Returns the elements in the list that come after the specified cursor.
31288
31464
  """
@@ -37838,6 +38014,36 @@ enum ProjectV2WorkflowsOrderField {
37838
38014
  UPDATED_AT
37839
38015
  }
37840
38016
 
38017
+ """
38018
+ Autogenerated input type of PromoteRepositoryCustomProperty
38019
+ """
38020
+ input PromoteRepositoryCustomPropertyInput {
38021
+ """
38022
+ A unique identifier for the client performing the mutation.
38023
+ """
38024
+ clientMutationId: String
38025
+
38026
+ """
38027
+ The ID of the repository custom property to be promoted.
38028
+ """
38029
+ repositoryCustomPropertyId: ID!
38030
+ }
38031
+
38032
+ """
38033
+ Autogenerated return type of PromoteRepositoryCustomProperty.
38034
+ """
38035
+ type PromoteRepositoryCustomPropertyPayload {
38036
+ """
38037
+ A unique identifier for the client performing the mutation.
38038
+ """
38039
+ clientMutationId: String
38040
+
38041
+ """
38042
+ The repository custom property that has been promoted.
38043
+ """
38044
+ repositoryCustomProperty: RepositoryCustomProperty
38045
+ }
38046
+
37841
38047
  """
37842
38048
  A property that must match
37843
38049
  """
@@ -47861,6 +48067,41 @@ type Repository implements Node & PackageOwner & ProjectOwner & ProjectV2Recent
47861
48067
  orderBy: ReleaseOrder
47862
48068
  ): ReleaseConnection!
47863
48069
 
48070
+ """
48071
+ A custom property value for the repository.
48072
+ """
48073
+ repositoryCustomPropertyValue(
48074
+ """
48075
+ The name of the custom property to retrieve the value for.
48076
+ """
48077
+ propertyName: String!
48078
+ ): RepositoryCustomPropertyValue
48079
+
48080
+ """
48081
+ A list of custom properties and their associated values for a repository.
48082
+ """
48083
+ repositoryCustomPropertyValues(
48084
+ """
48085
+ Returns the elements in the list that come after the specified cursor.
48086
+ """
48087
+ after: String
48088
+
48089
+ """
48090
+ Returns the elements in the list that come before the specified cursor.
48091
+ """
48092
+ before: String
48093
+
48094
+ """
48095
+ Returns the first _n_ elements from the list.
48096
+ """
48097
+ first: Int
48098
+
48099
+ """
48100
+ Returns the last _n_ elements from the list.
48101
+ """
48102
+ last: Int
48103
+ ): RepositoryCustomPropertyValueConnection
48104
+
47864
48105
  """
47865
48106
  A list of applied repository-topic associations for this repository.
47866
48107
  """
@@ -48466,6 +48707,171 @@ enum RepositoryContributionType {
48466
48707
  REPOSITORY
48467
48708
  }
48468
48709
 
48710
+ """
48711
+ A repository custom property.
48712
+ """
48713
+ type RepositoryCustomProperty implements Node {
48714
+ """
48715
+ The allowed values for the custom property. Required if `value_type` is `single_select` or `multi_select`.
48716
+ """
48717
+ allowedValues: [String!]
48718
+
48719
+ """
48720
+ The default value of the custom property, if the property is `required`.
48721
+ """
48722
+ defaultValue: CustomPropertyValue
48723
+
48724
+ """
48725
+ The description of the custom property.
48726
+ """
48727
+ description: String
48728
+
48729
+ """
48730
+ The Node ID of the RepositoryCustomProperty object
48731
+ """
48732
+ id: ID!
48733
+
48734
+ """
48735
+ The name of the custom property.
48736
+ """
48737
+ propertyName: String!
48738
+
48739
+ """
48740
+ The regex pattern that the value of the custom property must match, if the `value_type` is `string`.
48741
+ """
48742
+ regex: String
48743
+
48744
+ """
48745
+ Whether the custom property is required.
48746
+ """
48747
+ required: Boolean
48748
+
48749
+ """
48750
+ The source type of the custom property.
48751
+ """
48752
+ source: CustomPropertySource!
48753
+
48754
+ """
48755
+ The value type of the custom property.
48756
+ """
48757
+ valueType: CustomPropertyValueType!
48758
+
48759
+ """
48760
+ Who can edit the values of this repository custom property.
48761
+ """
48762
+ valuesEditableBy: RepositoryCustomPropertyValuesEditableBy!
48763
+ }
48764
+
48765
+ """
48766
+ The connection type for RepositoryCustomProperty.
48767
+ """
48768
+ type RepositoryCustomPropertyConnection {
48769
+ """
48770
+ A list of edges.
48771
+ """
48772
+ edges: [RepositoryCustomPropertyEdge]
48773
+
48774
+ """
48775
+ A list of nodes.
48776
+ """
48777
+ nodes: [RepositoryCustomProperty]
48778
+
48779
+ """
48780
+ Information to aid in pagination.
48781
+ """
48782
+ pageInfo: PageInfo!
48783
+
48784
+ """
48785
+ Identifies the total count of items in the connection.
48786
+ """
48787
+ totalCount: Int!
48788
+ }
48789
+
48790
+ """
48791
+ An edge in a connection.
48792
+ """
48793
+ type RepositoryCustomPropertyEdge {
48794
+ """
48795
+ A cursor for use in pagination.
48796
+ """
48797
+ cursor: String!
48798
+
48799
+ """
48800
+ The item at the end of the edge.
48801
+ """
48802
+ node: RepositoryCustomProperty
48803
+ }
48804
+
48805
+ """
48806
+ A value associated with a repository custom property.
48807
+ """
48808
+ type RepositoryCustomPropertyValue {
48809
+ """
48810
+ The name of the custom property.
48811
+ """
48812
+ propertyName: String!
48813
+
48814
+ """
48815
+ The value of the custom property.
48816
+ """
48817
+ value: CustomPropertyValue!
48818
+ }
48819
+
48820
+ """
48821
+ The connection type for RepositoryCustomPropertyValue.
48822
+ """
48823
+ type RepositoryCustomPropertyValueConnection {
48824
+ """
48825
+ A list of edges.
48826
+ """
48827
+ edges: [RepositoryCustomPropertyValueEdge]
48828
+
48829
+ """
48830
+ A list of nodes.
48831
+ """
48832
+ nodes: [RepositoryCustomPropertyValue]
48833
+
48834
+ """
48835
+ Information to aid in pagination.
48836
+ """
48837
+ pageInfo: PageInfo!
48838
+
48839
+ """
48840
+ Identifies the total count of items in the connection.
48841
+ """
48842
+ totalCount: Int!
48843
+ }
48844
+
48845
+ """
48846
+ An edge in a connection.
48847
+ """
48848
+ type RepositoryCustomPropertyValueEdge {
48849
+ """
48850
+ A cursor for use in pagination.
48851
+ """
48852
+ cursor: String!
48853
+
48854
+ """
48855
+ The item at the end of the edge.
48856
+ """
48857
+ node: RepositoryCustomPropertyValue
48858
+ }
48859
+
48860
+ """
48861
+ The allowed actors who can edit the values of a custom property.
48862
+ """
48863
+ enum RepositoryCustomPropertyValuesEditableBy {
48864
+ """
48865
+ The organization actors.
48866
+ """
48867
+ ORG_ACTORS
48868
+
48869
+ """
48870
+ The organization and repository actors.
48871
+ """
48872
+ ORG_AND_REPO_ACTORS
48873
+ }
48874
+
48469
48875
  """
48470
48876
  Represents an author of discussions in repositories.
48471
48877
  """
@@ -52597,6 +53003,41 @@ type SetOrganizationInteractionLimitPayload {
52597
53003
  organization: Organization
52598
53004
  }
52599
53005
 
53006
+ """
53007
+ Autogenerated input type of SetRepositoryCustomPropertyValues
53008
+ """
53009
+ input SetRepositoryCustomPropertyValuesInput {
53010
+ """
53011
+ A unique identifier for the client performing the mutation.
53012
+ """
53013
+ clientMutationId: String
53014
+
53015
+ """
53016
+ A list of custom property names and associated values to apply.
53017
+ """
53018
+ properties: [CustomPropertyValueInput!]!
53019
+
53020
+ """
53021
+ The ID of the repository to set properties for.
53022
+ """
53023
+ repositoryId: ID!
53024
+ }
53025
+
53026
+ """
53027
+ Autogenerated return type of SetRepositoryCustomPropertyValues.
53028
+ """
53029
+ type SetRepositoryCustomPropertyValuesPayload {
53030
+ """
53031
+ A unique identifier for the client performing the mutation.
53032
+ """
53033
+ clientMutationId: String
53034
+
53035
+ """
53036
+ The repository that the custom properties were set for.
53037
+ """
53038
+ repository: Repository
53039
+ }
53040
+
52600
53041
  """
52601
53042
  Autogenerated input type of SetRepositoryInteractionLimit
52602
53043
  """
@@ -57837,41 +58278,6 @@ type TeamDiscussion implements Comment & Deletable & Node & Reactable & Subscrib
57837
58278
  """
57838
58279
  bodyVersion: String! @deprecated(reason: "The Team Discussions feature is deprecated in favor of Organization Discussions. Follow the guide at https://github.blog/changelog/2023-02-08-sunset-notice-team-discussions/ to find a suitable replacement. Removal on 2024-07-01 UTC.")
57839
58280
 
57840
- """
57841
- A list of comments on this discussion.
57842
- """
57843
- comments(
57844
- """
57845
- Returns the elements in the list that come after the specified cursor.
57846
- """
57847
- after: String
57848
-
57849
- """
57850
- Returns the elements in the list that come before the specified cursor.
57851
- """
57852
- before: String
57853
-
57854
- """
57855
- Returns the first _n_ elements from the list.
57856
- """
57857
- first: Int
57858
-
57859
- """
57860
- When provided, filters the connection such that results begin with the comment with this number.
57861
- """
57862
- fromComment: Int
57863
-
57864
- """
57865
- Returns the last _n_ elements from the list.
57866
- """
57867
- last: Int
57868
-
57869
- """
57870
- Order for connection
57871
- """
57872
- orderBy: TeamDiscussionCommentOrder
57873
- ): TeamDiscussionCommentConnection! @deprecated(reason: "The Team Discussions feature is deprecated in favor of Organization Discussions. Follow the guide at https://github.blog/changelog/2023-02-08-sunset-notice-team-discussions/ to find a suitable replacement. Removal on 2024-07-01 UTC.")
57874
-
57875
58281
  """
57876
58282
  The HTTP path for discussion comments
57877
58283
  """
@@ -58068,261 +58474,6 @@ type TeamDiscussion implements Comment & Deletable & Node & Reactable & Subscrib
58068
58474
  viewerSubscription: SubscriptionState
58069
58475
  }
58070
58476
 
58071
- """
58072
- A comment on a team discussion.
58073
- """
58074
- type TeamDiscussionComment implements Comment & Deletable & Node & Reactable & UniformResourceLocatable & Updatable & UpdatableComment {
58075
- """
58076
- The actor who authored the comment.
58077
- """
58078
- author: Actor
58079
-
58080
- """
58081
- Author's association with the comment's team.
58082
- """
58083
- authorAssociation: CommentAuthorAssociation! @deprecated(reason: "The Team Discussions feature is deprecated in favor of Organization Discussions. Follow the guide at https://github.blog/changelog/2023-02-08-sunset-notice-team-discussions/ to find a suitable replacement. Removal on 2024-07-01 UTC.")
58084
-
58085
- """
58086
- The body as Markdown.
58087
- """
58088
- body: String!
58089
-
58090
- """
58091
- The body rendered to HTML.
58092
- """
58093
- bodyHTML: HTML!
58094
-
58095
- """
58096
- The body rendered to text.
58097
- """
58098
- bodyText: String!
58099
-
58100
- """
58101
- The current version of the body content.
58102
- """
58103
- bodyVersion: String! @deprecated(reason: "The Team Discussions feature is deprecated in favor of Organization Discussions. Follow the guide at https://github.blog/changelog/2023-02-08-sunset-notice-team-discussions/ to find a suitable replacement. Removal on 2024-07-01 UTC.")
58104
-
58105
- """
58106
- Identifies the date and time when the object was created.
58107
- """
58108
- createdAt: DateTime!
58109
-
58110
- """
58111
- Check if this comment was created via an email reply.
58112
- """
58113
- createdViaEmail: Boolean!
58114
-
58115
- """
58116
- Identifies the primary key from the database.
58117
- """
58118
- databaseId: Int
58119
-
58120
- """
58121
- The discussion this comment is about.
58122
- """
58123
- discussion: TeamDiscussion! @deprecated(reason: "The Team Discussions feature is deprecated in favor of Organization Discussions. Follow the guide at https://github.blog/changelog/2023-02-08-sunset-notice-team-discussions/ to find a suitable replacement. Removal on 2024-07-01 UTC.")
58124
-
58125
- """
58126
- The actor who edited the comment.
58127
- """
58128
- editor: Actor
58129
-
58130
- """
58131
- The Node ID of the TeamDiscussionComment object
58132
- """
58133
- id: ID!
58134
-
58135
- """
58136
- Check if this comment was edited and includes an edit with the creation data
58137
- """
58138
- includesCreatedEdit: Boolean!
58139
-
58140
- """
58141
- The moment the editor made the last edit
58142
- """
58143
- lastEditedAt: DateTime
58144
-
58145
- """
58146
- Identifies the comment number.
58147
- """
58148
- number: Int! @deprecated(reason: "The Team Discussions feature is deprecated in favor of Organization Discussions. Follow the guide at https://github.blog/changelog/2023-02-08-sunset-notice-team-discussions/ to find a suitable replacement. Removal on 2024-07-01 UTC.")
58149
-
58150
- """
58151
- Identifies when the comment was published at.
58152
- """
58153
- publishedAt: DateTime
58154
-
58155
- """
58156
- A list of reactions grouped by content left on the subject.
58157
- """
58158
- reactionGroups: [ReactionGroup!]
58159
-
58160
- """
58161
- A list of Reactions left on the Issue.
58162
- """
58163
- reactions(
58164
- """
58165
- Returns the elements in the list that come after the specified cursor.
58166
- """
58167
- after: String
58168
-
58169
- """
58170
- Returns the elements in the list that come before the specified cursor.
58171
- """
58172
- before: String
58173
-
58174
- """
58175
- Allows filtering Reactions by emoji.
58176
- """
58177
- content: ReactionContent
58178
-
58179
- """
58180
- Returns the first _n_ elements from the list.
58181
- """
58182
- first: Int
58183
-
58184
- """
58185
- Returns the last _n_ elements from the list.
58186
- """
58187
- last: Int
58188
-
58189
- """
58190
- Allows specifying the order in which reactions are returned.
58191
- """
58192
- orderBy: ReactionOrder
58193
- ): ReactionConnection!
58194
-
58195
- """
58196
- The HTTP path for this comment
58197
- """
58198
- resourcePath: URI! @deprecated(reason: "The Team Discussions feature is deprecated in favor of Organization Discussions. Follow the guide at https://github.blog/changelog/2023-02-08-sunset-notice-team-discussions/ to find a suitable replacement. Removal on 2024-07-01 UTC.")
58199
-
58200
- """
58201
- Identifies the date and time when the object was last updated.
58202
- """
58203
- updatedAt: DateTime!
58204
-
58205
- """
58206
- The HTTP URL for this comment
58207
- """
58208
- url: URI! @deprecated(reason: "The Team Discussions feature is deprecated in favor of Organization Discussions. Follow the guide at https://github.blog/changelog/2023-02-08-sunset-notice-team-discussions/ to find a suitable replacement. Removal on 2024-07-01 UTC.")
58209
-
58210
- """
58211
- A list of edits to this content.
58212
- """
58213
- userContentEdits(
58214
- """
58215
- Returns the elements in the list that come after the specified cursor.
58216
- """
58217
- after: String
58218
-
58219
- """
58220
- Returns the elements in the list that come before the specified cursor.
58221
- """
58222
- before: String
58223
-
58224
- """
58225
- Returns the first _n_ elements from the list.
58226
- """
58227
- first: Int
58228
-
58229
- """
58230
- Returns the last _n_ elements from the list.
58231
- """
58232
- last: Int
58233
- ): UserContentEditConnection
58234
-
58235
- """
58236
- Check if the current viewer can delete this object.
58237
- """
58238
- viewerCanDelete: Boolean!
58239
-
58240
- """
58241
- Can user react to this subject
58242
- """
58243
- viewerCanReact: Boolean!
58244
-
58245
- """
58246
- Check if the current viewer can update this object.
58247
- """
58248
- viewerCanUpdate: Boolean!
58249
-
58250
- """
58251
- Reasons why the current viewer can not update this comment.
58252
- """
58253
- viewerCannotUpdateReasons: [CommentCannotUpdateReason!]!
58254
-
58255
- """
58256
- Did the viewer author this comment.
58257
- """
58258
- viewerDidAuthor: Boolean!
58259
- }
58260
-
58261
- """
58262
- The connection type for TeamDiscussionComment.
58263
- """
58264
- type TeamDiscussionCommentConnection {
58265
- """
58266
- A list of edges.
58267
- """
58268
- edges: [TeamDiscussionCommentEdge]
58269
-
58270
- """
58271
- A list of nodes.
58272
- """
58273
- nodes: [TeamDiscussionComment]
58274
-
58275
- """
58276
- Information to aid in pagination.
58277
- """
58278
- pageInfo: PageInfo!
58279
-
58280
- """
58281
- Identifies the total count of items in the connection.
58282
- """
58283
- totalCount: Int!
58284
- }
58285
-
58286
- """
58287
- An edge in a connection.
58288
- """
58289
- type TeamDiscussionCommentEdge {
58290
- """
58291
- A cursor for use in pagination.
58292
- """
58293
- cursor: String!
58294
-
58295
- """
58296
- The item at the end of the edge.
58297
- """
58298
- node: TeamDiscussionComment
58299
- }
58300
-
58301
- """
58302
- Ways in which team discussion comment connections can be ordered.
58303
- """
58304
- input TeamDiscussionCommentOrder {
58305
- """
58306
- The direction in which to order nodes.
58307
- """
58308
- direction: OrderDirection!
58309
-
58310
- """
58311
- The field by which to order nodes.
58312
- """
58313
- field: TeamDiscussionCommentOrderField!
58314
- }
58315
-
58316
- """
58317
- Properties by which team discussion comment connections can be ordered.
58318
- """
58319
- enum TeamDiscussionCommentOrderField {
58320
- """
58321
- Allows sequential ordering of team discussion comments (which is equivalent to chronological ordering).
58322
- """
58323
- NUMBER
58324
- }
58325
-
58326
58477
  """
58327
58478
  The connection type for TeamDiscussion.
58328
58479
  """
@@ -62738,6 +62889,66 @@ type UpdateRefsPayload {
62738
62889
  clientMutationId: String
62739
62890
  }
62740
62891
 
62892
+ """
62893
+ Autogenerated input type of UpdateRepositoryCustomProperty
62894
+ """
62895
+ input UpdateRepositoryCustomPropertyInput {
62896
+ """
62897
+ The updated allowed values for the custom property.
62898
+ """
62899
+ allowedValues: [String!]
62900
+
62901
+ """
62902
+ A unique identifier for the client performing the mutation.
62903
+ """
62904
+ clientMutationId: String
62905
+
62906
+ """
62907
+ The updated default value for the custom property if the property is required.
62908
+ """
62909
+ defaultValue: String
62910
+
62911
+ """
62912
+ The updated description of the custom property.
62913
+ """
62914
+ description: String
62915
+
62916
+ """
62917
+ The regex pattern that the value of the custom property must match, if the `value_type` is `string`.
62918
+ """
62919
+ regex: String
62920
+
62921
+ """
62922
+ The global relay id of the source of the custom property.
62923
+ """
62924
+ repositoryCustomPropertyId: ID!
62925
+
62926
+ """
62927
+ Whether the updated custom property is required.
62928
+ """
62929
+ required: Boolean
62930
+
62931
+ """
62932
+ The updated actors who can edit the values of the custom property.
62933
+ """
62934
+ valuesEditableBy: RepositoryCustomPropertyValuesEditableBy
62935
+ }
62936
+
62937
+ """
62938
+ Autogenerated return type of UpdateRepositoryCustomProperty.
62939
+ """
62940
+ type UpdateRepositoryCustomPropertyPayload {
62941
+ """
62942
+ A unique identifier for the client performing the mutation.
62943
+ """
62944
+ clientMutationId: String
62945
+
62946
+ """
62947
+ The updated repository custom property.
62948
+ """
62949
+ repositoryCustomProperty: RepositoryCustomProperty
62950
+ }
62951
+
62741
62952
  """
62742
62953
  Autogenerated input type of UpdateRepository
62743
62954
  """
@@ -63007,46 +63218,6 @@ type UpdateSubscriptionPayload {
63007
63218
  subscribable: Subscribable
63008
63219
  }
63009
63220
 
63010
- """
63011
- Autogenerated input type of UpdateTeamDiscussionComment
63012
- """
63013
- input UpdateTeamDiscussionCommentInput {
63014
- """
63015
- The updated text of the comment.
63016
- """
63017
- body: String!
63018
-
63019
- """
63020
- The current version of the body content.
63021
- """
63022
- bodyVersion: String
63023
-
63024
- """
63025
- A unique identifier for the client performing the mutation.
63026
- """
63027
- clientMutationId: String
63028
-
63029
- """
63030
- The ID of the comment to modify.
63031
- """
63032
- id: ID!
63033
- }
63034
-
63035
- """
63036
- Autogenerated return type of UpdateTeamDiscussionComment.
63037
- """
63038
- type UpdateTeamDiscussionCommentPayload {
63039
- """
63040
- A unique identifier for the client performing the mutation.
63041
- """
63042
- clientMutationId: String
63043
-
63044
- """
63045
- The updated comment.
63046
- """
63047
- teamDiscussionComment: TeamDiscussionComment
63048
- }
63049
-
63050
63221
  """
63051
63222
  Autogenerated input type of UpdateTeamDiscussion
63052
63223
  """