Skip to content

Commit

Permalink
feat: source of property (#965)
Browse files Browse the repository at this point in the history
* 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 <octokitbot@martynus.net>
Co-authored-by: Keegan Campbell <me@kfcampbell.com>
  • Loading branch information
3 people committed Jun 28, 2024
1 parent 5de697c commit 8d8d6f1
Show file tree
Hide file tree
Showing 3 changed files with 36 additions and 0 deletions.
4 changes: 4 additions & 0 deletions schema.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18349,6 +18349,8 @@ export type PropertyTargetDefinition = {
name: Scalars['String']['output'];
/** The values to match for */
propertyValues: Array<Scalars['String']['output']>;
/** The source of the property. Choose 'custom' or 'system'. Defaults to 'custom' if not specified */
source?: Maybe<Scalars['String']['output']>;
};

/** A property that must match */
Expand All @@ -18357,6 +18359,8 @@ export type PropertyTargetDefinitionInput = {
name: Scalars['String']['input'];
/** The values to match for */
propertyValues: Array<Scalars['String']['input']>;
/** The source of the property. Choose 'custom' or 'system'. Defaults to 'custom' if not specified */
source?: InputMaybe<Scalars['String']['input']>;
};

/** A user's public key. */
Expand Down
10 changes: 10 additions & 0 deletions schema.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -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
}

"""
Expand All @@ -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
}

"""
Expand Down
22 changes: 22 additions & 0 deletions schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down Expand Up @@ -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,
Expand Down

0 comments on commit 8d8d6f1

Please sign in to comment.