Skip to content

Repo sync #33754

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Jun 27, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/audit-logs/lib/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@
"apiOnlyEvents": "This event is not available in the web interface, only via the REST API, audit log streaming, or JSON/CSV exports.",
"apiRequestEvent": "This event is only available via audit log streaming."
},
"sha": "49912aad5bd477ebf1204dffebaa981bf395ab24"
"sha": "81c06a750e227792bc034b64a13552b9554cd56b"
}
14 changes: 14 additions & 0 deletions src/graphql/data/fpt/changelog.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,18 @@
[
{
"schemaChanges": [
{
"title": "The GraphQL schema includes these changes:",
"changes": [
"<p>Field <code>source</code> was added to object type <code>PropertyTargetDefinition</code></p>",
"<p>Input field <code>source</code> of type <code>String</code> was added to input object type <code>PropertyTargetDefinitionInput</code></p>"
]
}
],
"previewChanges": [],
"upcomingChanges": [],
"date": "2024-06-27"
},
{
"schemaChanges": [
{
Expand Down
10 changes: 10 additions & 0 deletions src/graphql/data/fpt/schema.docs.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -36026,6 +36026,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 @@ -36041,6 +36046,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
16 changes: 16 additions & 0 deletions src/graphql/data/fpt/schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -49291,6 +49291,14 @@
"id": "string",
"kind": "scalars",
"href": "/graphql/reference/scalars#string"
},
{
"name": "source",
"description": "<p>The source of the property. Choose<code>custom</code>or 'system'. Defaults to 'custom' if not specified.</p>",
"type": "String",
"id": "string",
"kind": "scalars",
"href": "/graphql/reference/scalars#string"
}
]
},
Expand Down Expand Up @@ -98909,6 +98917,14 @@
"id": "string",
"kind": "scalars",
"href": "/graphql/reference/scalars#string"
},
{
"name": "source",
"description": "<p>The source of the property. Choose<code>custom</code>or 'system'. Defaults to 'custom' if not specified.</p>",
"type": "String",
"id": "string",
"kind": "scalars",
"href": "/graphql/reference/scalars#string"
}
]
},
Expand Down
10 changes: 10 additions & 0 deletions src/graphql/data/ghec/schema.docs.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -36026,6 +36026,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 @@ -36041,6 +36046,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
16 changes: 16 additions & 0 deletions src/graphql/data/ghec/schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -49291,6 +49291,14 @@
"id": "string",
"kind": "scalars",
"href": "/graphql/reference/scalars#string"
},
{
"name": "source",
"description": "<p>The source of the property. Choose<code>custom</code>or 'system'. Defaults to 'custom' if not specified.</p>",
"type": "String",
"id": "string",
"kind": "scalars",
"href": "/graphql/reference/scalars#string"
}
]
},
Expand Down Expand Up @@ -98909,6 +98917,14 @@
"id": "string",
"kind": "scalars",
"href": "/graphql/reference/scalars#string"
},
{
"name": "source",
"description": "<p>The source of the property. Choose<code>custom</code>or 'system'. Defaults to 'custom' if not specified.</p>",
"type": "String",
"id": "string",
"kind": "scalars",
"href": "/graphql/reference/scalars#string"
}
]
},
Expand Down
Loading