From 8d8d6f117a093161a3a47e9bcf469a483f7d2ada Mon Sep 17 00:00:00 2001 From: Octokit Bot Date: Fri, 28 Jun 2024 17:15:22 -0500 Subject: [PATCH] feat: source of property (#965) * WIP: schema.graphql changed - please review * build: schema.json and schema.d.ts updated * Empty commit to force test run --------- Co-authored-by: Octokit Bot Co-authored-by: Keegan Campbell --- schema.d.ts | 4 ++++ schema.graphql | 10 ++++++++++ schema.json | 22 ++++++++++++++++++++++ 3 files changed, 36 insertions(+) diff --git a/schema.d.ts b/schema.d.ts index a6a54df3b..378343fe6 100644 --- a/schema.d.ts +++ b/schema.d.ts @@ -18349,6 +18349,8 @@ export type PropertyTargetDefinition = { name: Scalars['String']['output']; /** The values to match for */ propertyValues: Array; + /** The source of the property. Choose 'custom' or 'system'. Defaults to 'custom' if not specified */ + source?: Maybe; }; /** A property that must match */ @@ -18357,6 +18359,8 @@ export type PropertyTargetDefinitionInput = { name: Scalars['String']['input']; /** The values to match for */ propertyValues: Array; + /** The source of the property. Choose 'custom' or 'system'. Defaults to 'custom' if not specified */ + source?: InputMaybe; }; /** A user's public key. */ diff --git a/schema.graphql b/schema.graphql index 2d368dfef..e3d0f37e1 100644 --- a/schema.graphql +++ b/schema.graphql @@ -35789,6 +35789,11 @@ type PropertyTargetDefinition { The values to match for """ propertyValues: [String!]! + + """ + The source of the property. Choose 'custom' or 'system'. Defaults to 'custom' if not specified + """ + source: String } """ @@ -35804,6 +35809,11 @@ input PropertyTargetDefinitionInput { The values to match for """ propertyValues: [String!]! + + """ + The source of the property. Choose 'custom' or 'system'. Defaults to 'custom' if not specified + """ + source: String } """ diff --git a/schema.json b/schema.json index 3ca1497b8..bd139aa98 100644 --- a/schema.json +++ b/schema.json @@ -93026,6 +93026,18 @@ }, "isDeprecated": false, "deprecationReason": null + }, + { + "name": "source", + "description": "The source of the property. Choose 'custom' or 'system'. Defaults to 'custom' if not specified", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null } ], "inputFields": null, @@ -93074,6 +93086,16 @@ } }, "defaultValue": null + }, + { + "name": "source", + "description": "The source of the property. Choose 'custom' or 'system'. Defaults to 'custom' if not specified", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null } ], "interfaces": null,