github-schema 1.22.9 → 1.22.10
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.
package/dist/github-schema.d.cts
CHANGED
|
@@ -4197,6 +4197,8 @@ type CreateRepositoryCustomPropertyInput = {
|
|
|
4197
4197
|
propertyName: Scalars['String']['input'];
|
|
4198
4198
|
/** The regex pattern that the value of the custom property must match, if the `value_type` is `string`. */
|
|
4199
4199
|
regex?: InputMaybe<Scalars['String']['input']>;
|
|
4200
|
+
/** Whether this repository custom property requires explicit values. */
|
|
4201
|
+
requireExplicitValues?: InputMaybe<Scalars['Boolean']['input']>;
|
|
4200
4202
|
/** Whether the custom property is required. */
|
|
4201
4203
|
required?: InputMaybe<Scalars['Boolean']['input']>;
|
|
4202
4204
|
/** The global relay id of the source in which a new custom property should be created in. */
|
|
@@ -24508,6 +24510,8 @@ type RepositoryCustomProperty = Node & {
|
|
|
24508
24510
|
propertyName: Scalars['String']['output'];
|
|
24509
24511
|
/** The regex pattern that the value of the custom property must match, if the `value_type` is `string`. */
|
|
24510
24512
|
regex?: Maybe<Scalars['String']['output']>;
|
|
24513
|
+
/** Whether this repository custom property requires explicit values. */
|
|
24514
|
+
requireExplicitValues?: Maybe<Scalars['Boolean']['output']>;
|
|
24511
24515
|
/** Whether the custom property is required. */
|
|
24512
24516
|
required?: Maybe<Scalars['Boolean']['output']>;
|
|
24513
24517
|
/** The source type of the custom property. */
|
|
@@ -30701,6 +30705,8 @@ type UpdateRepositoryCustomPropertyInput = {
|
|
|
30701
30705
|
regex?: InputMaybe<Scalars['String']['input']>;
|
|
30702
30706
|
/** The global relay id of the source of the custom property. */
|
|
30703
30707
|
repositoryCustomPropertyId: Scalars['ID']['input'];
|
|
30708
|
+
/** Whether this repository custom property requires explicit values. */
|
|
30709
|
+
requireExplicitValues?: InputMaybe<Scalars['Boolean']['input']>;
|
|
30704
30710
|
/** Whether the updated custom property is required. */
|
|
30705
30711
|
required?: InputMaybe<Scalars['Boolean']['input']>;
|
|
30706
30712
|
/** The updated actors who can edit the values of the custom property. */
|
package/dist/github-schema.d.mts
CHANGED
|
@@ -4197,6 +4197,8 @@ type CreateRepositoryCustomPropertyInput = {
|
|
|
4197
4197
|
propertyName: Scalars['String']['input'];
|
|
4198
4198
|
/** The regex pattern that the value of the custom property must match, if the `value_type` is `string`. */
|
|
4199
4199
|
regex?: InputMaybe<Scalars['String']['input']>;
|
|
4200
|
+
/** Whether this repository custom property requires explicit values. */
|
|
4201
|
+
requireExplicitValues?: InputMaybe<Scalars['Boolean']['input']>;
|
|
4200
4202
|
/** Whether the custom property is required. */
|
|
4201
4203
|
required?: InputMaybe<Scalars['Boolean']['input']>;
|
|
4202
4204
|
/** The global relay id of the source in which a new custom property should be created in. */
|
|
@@ -24508,6 +24510,8 @@ type RepositoryCustomProperty = Node & {
|
|
|
24508
24510
|
propertyName: Scalars['String']['output'];
|
|
24509
24511
|
/** The regex pattern that the value of the custom property must match, if the `value_type` is `string`. */
|
|
24510
24512
|
regex?: Maybe<Scalars['String']['output']>;
|
|
24513
|
+
/** Whether this repository custom property requires explicit values. */
|
|
24514
|
+
requireExplicitValues?: Maybe<Scalars['Boolean']['output']>;
|
|
24511
24515
|
/** Whether the custom property is required. */
|
|
24512
24516
|
required?: Maybe<Scalars['Boolean']['output']>;
|
|
24513
24517
|
/** The source type of the custom property. */
|
|
@@ -30701,6 +30705,8 @@ type UpdateRepositoryCustomPropertyInput = {
|
|
|
30701
30705
|
regex?: InputMaybe<Scalars['String']['input']>;
|
|
30702
30706
|
/** The global relay id of the source of the custom property. */
|
|
30703
30707
|
repositoryCustomPropertyId: Scalars['ID']['input'];
|
|
30708
|
+
/** Whether this repository custom property requires explicit values. */
|
|
30709
|
+
requireExplicitValues?: InputMaybe<Scalars['Boolean']['input']>;
|
|
30704
30710
|
/** Whether the updated custom property is required. */
|
|
30705
30711
|
required?: InputMaybe<Scalars['Boolean']['input']>;
|
|
30706
30712
|
/** The updated actors who can edit the values of the custom property. */
|
package/github-schema.graphql
CHANGED
|
@@ -8677,6 +8677,11 @@ input CreateRepositoryCustomPropertyInput {
|
|
|
8677
8677
|
"""
|
|
8678
8678
|
regex: String
|
|
8679
8679
|
|
|
8680
|
+
"""
|
|
8681
|
+
Whether this repository custom property requires explicit values.
|
|
8682
|
+
"""
|
|
8683
|
+
requireExplicitValues: Boolean
|
|
8684
|
+
|
|
8680
8685
|
"""
|
|
8681
8686
|
Whether the custom property is required.
|
|
8682
8687
|
"""
|
|
@@ -48708,6 +48713,11 @@ type RepositoryCustomProperty implements Node {
|
|
|
48708
48713
|
"""
|
|
48709
48714
|
regex: String
|
|
48710
48715
|
|
|
48716
|
+
"""
|
|
48717
|
+
Whether this repository custom property requires explicit values.
|
|
48718
|
+
"""
|
|
48719
|
+
requireExplicitValues: Boolean
|
|
48720
|
+
|
|
48711
48721
|
"""
|
|
48712
48722
|
Whether the custom property is required.
|
|
48713
48723
|
"""
|
|
@@ -62610,6 +62620,11 @@ input UpdateRepositoryCustomPropertyInput {
|
|
|
62610
62620
|
"""
|
|
62611
62621
|
repositoryCustomPropertyId: ID!
|
|
62612
62622
|
|
|
62623
|
+
"""
|
|
62624
|
+
Whether this repository custom property requires explicit values.
|
|
62625
|
+
"""
|
|
62626
|
+
requireExplicitValues: Boolean
|
|
62627
|
+
|
|
62613
62628
|
"""
|
|
62614
62629
|
Whether the updated custom property is required.
|
|
62615
62630
|
"""
|