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,