Skip to content

Commit e48611a

Browse files
authored
Merge pull request github#36299 from github/repo-sync
Repo sync
2 parents 7137583 + e08eb68 commit e48611a

File tree

5 files changed

+299
-0
lines changed

5 files changed

+299
-0
lines changed

src/graphql/data/fpt/changelog.json

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,21 @@
11
[
2+
{
3+
"schemaChanges": [
4+
{
5+
"title": "The GraphQL schema includes these changes:",
6+
"changes": [
7+
"<p>Type 'ProjectV2Iteration' was added</p>",
8+
"<p>Type 'ProjectV2IterationFieldConfigurationInput' was added</p>",
9+
"<p>Input field <code>iterationConfiguration</code> of type 'ProjectV2IterationFieldConfigurationInput<code>was added to input object type</code>CreateProjectV2FieldInput'</p>",
10+
"<p>Enum value <code>ITERATION</code> was added to enum 'ProjectV2CustomFieldType'</p>",
11+
"<p>Input field <code>iterationConfiguration</code> of type 'ProjectV2IterationFieldConfigurationInput<code>was added to input object type</code>UpdateProjectV2FieldInput'</p>"
12+
]
13+
}
14+
],
15+
"previewChanges": [],
16+
"upcomingChanges": [],
17+
"date": "2025-02-14"
18+
},
219
{
320
"schemaChanges": [
421
{

src/graphql/data/fpt/schema.docs.graphql

Lines changed: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8013,6 +8013,11 @@ input CreateProjectV2FieldInput {
80138013
"""
80148014
dataType: ProjectV2CustomFieldType!
80158015

8016+
"""
8017+
Configuration for an iteration field.
8018+
"""
8019+
iterationConfiguration: ProjectV2IterationFieldConfigurationInput
8020+
80168021
"""
80178022
The name of the field.
80188023
"""
@@ -34685,6 +34690,11 @@ enum ProjectV2CustomFieldType {
3468534690
"""
3468634691
DATE
3468734692

34693+
"""
34694+
Iteration
34695+
"""
34696+
ITERATION
34697+
3468834698
"""
3468934699
Number
3469034700
"""
@@ -35800,6 +35810,26 @@ enum ProjectV2ItemType {
3580035810
REDACTED
3580135811
}
3580235812

35813+
"""
35814+
Represents an iteration
35815+
"""
35816+
input ProjectV2Iteration {
35817+
"""
35818+
The duration of the iteration, in days.
35819+
"""
35820+
duration: Int!
35821+
35822+
"""
35823+
The start date for the iteration.
35824+
"""
35825+
startDate: Date!
35826+
35827+
"""
35828+
The title for the iteration.
35829+
"""
35830+
title: String!
35831+
}
35832+
3580335833
"""
3580435834
An iteration field inside a project.
3580535835
"""
@@ -35870,6 +35900,26 @@ type ProjectV2IterationFieldConfiguration {
3587035900
startDay: Int!
3587135901
}
3587235902

35903+
"""
35904+
Represents an iteration field configuration.
35905+
"""
35906+
input ProjectV2IterationFieldConfigurationInput {
35907+
"""
35908+
The duration of each iteration, in days.
35909+
"""
35910+
duration: Int!
35911+
35912+
"""
35913+
Zero or more iterations for the field.
35914+
"""
35915+
iterations: [ProjectV2Iteration!]!
35916+
35917+
"""
35918+
The start date for the first iteration.
35919+
"""
35920+
startDate: Date!
35921+
}
35922+
3587335923
"""
3587435924
Iteration field iteration settings for a project.
3587535925
"""
@@ -60993,6 +61043,11 @@ input UpdateProjectV2FieldInput {
6099361043
abstractType: "ProjectV2FieldConfiguration"
6099461044
)
6099561045

61046+
"""
61047+
Configuration for an iteration field.
61048+
"""
61049+
iterationConfiguration: ProjectV2IterationFieldConfigurationInput
61050+
6099661051
"""
6099761052
The name to update.
6099861053
"""

src/graphql/data/fpt/schema.json

Lines changed: 86 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -87319,6 +87319,10 @@
8731987319
"name": "DATE",
8732087320
"description": "<p>Date.</p>"
8732187321
},
87322+
{
87323+
"name": "ITERATION",
87324+
"description": "<p>Iteration.</p>"
87325+
},
8732287326
{
8732387327
"name": "NUMBER",
8732487328
"description": "<p>Number.</p>"
@@ -96841,6 +96845,14 @@
9684196845
"kind": "enums",
9684296846
"href": "/graphql/reference/enums#projectv2customfieldtype"
9684396847
},
96848+
{
96849+
"name": "iterationConfiguration",
96850+
"description": "<p>Configuration for an iteration field.</p>",
96851+
"type": "ProjectV2IterationFieldConfigurationInput",
96852+
"id": "projectv2iterationfieldconfigurationinput",
96853+
"kind": "input-objects",
96854+
"href": "/graphql/reference/input-objects#projectv2iterationfieldconfigurationinput"
96855+
},
9684496856
{
9684596857
"name": "name",
9684696858
"description": "<p>The name of the field.</p>",
@@ -100800,6 +100812,72 @@
100800100812
}
100801100813
]
100802100814
},
100815+
{
100816+
"name": "ProjectV2Iteration",
100817+
"kind": "inputObjects",
100818+
"id": "projectv2iteration",
100819+
"href": "/graphql/reference/input-objects#projectv2iteration",
100820+
"description": "<p>Represents an iteration.</p>",
100821+
"inputFields": [
100822+
{
100823+
"name": "duration",
100824+
"description": "<p>The duration of the iteration, in days.</p>",
100825+
"type": "Int!",
100826+
"id": "int",
100827+
"kind": "scalars",
100828+
"href": "/graphql/reference/scalars#int"
100829+
},
100830+
{
100831+
"name": "startDate",
100832+
"description": "<p>The start date for the iteration.</p>",
100833+
"type": "Date!",
100834+
"id": "date",
100835+
"kind": "scalars",
100836+
"href": "/graphql/reference/scalars#date"
100837+
},
100838+
{
100839+
"name": "title",
100840+
"description": "<p>The title for the iteration.</p>",
100841+
"type": "String!",
100842+
"id": "string",
100843+
"kind": "scalars",
100844+
"href": "/graphql/reference/scalars#string"
100845+
}
100846+
]
100847+
},
100848+
{
100849+
"name": "ProjectV2IterationFieldConfigurationInput",
100850+
"kind": "inputObjects",
100851+
"id": "projectv2iterationfieldconfigurationinput",
100852+
"href": "/graphql/reference/input-objects#projectv2iterationfieldconfigurationinput",
100853+
"description": "<p>Represents an iteration field configuration.</p>",
100854+
"inputFields": [
100855+
{
100856+
"name": "duration",
100857+
"description": "<p>The duration of each iteration, in days.</p>",
100858+
"type": "Int!",
100859+
"id": "int",
100860+
"kind": "scalars",
100861+
"href": "/graphql/reference/scalars#int"
100862+
},
100863+
{
100864+
"name": "iterations",
100865+
"description": "<p>Zero or more iterations for the field.</p>",
100866+
"type": "[ProjectV2Iteration!]!",
100867+
"id": "projectv2iteration",
100868+
"kind": "input-objects",
100869+
"href": "/graphql/reference/input-objects#projectv2iteration"
100870+
},
100871+
{
100872+
"name": "startDate",
100873+
"description": "<p>The start date for the first iteration.</p>",
100874+
"type": "Date!",
100875+
"id": "date",
100876+
"kind": "scalars",
100877+
"href": "/graphql/reference/scalars#date"
100878+
}
100879+
]
100880+
},
100803100881
{
100804100882
"name": "ProjectV2Order",
100805100883
"kind": "inputObjects",
@@ -105995,6 +106073,14 @@
105995106073
"href": "/graphql/reference/scalars#id",
105996106074
"isDeprecated": false
105997106075
},
106076+
{
106077+
"name": "iterationConfiguration",
106078+
"description": "<p>Configuration for an iteration field.</p>",
106079+
"type": "ProjectV2IterationFieldConfigurationInput",
106080+
"id": "projectv2iterationfieldconfigurationinput",
106081+
"kind": "input-objects",
106082+
"href": "/graphql/reference/input-objects#projectv2iterationfieldconfigurationinput"
106083+
},
105998106084
{
105999106085
"name": "name",
106000106086
"description": "<p>The name to update.</p>",

src/graphql/data/ghec/schema.docs.graphql

Lines changed: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8013,6 +8013,11 @@ input CreateProjectV2FieldInput {
80138013
"""
80148014
dataType: ProjectV2CustomFieldType!
80158015

8016+
"""
8017+
Configuration for an iteration field.
8018+
"""
8019+
iterationConfiguration: ProjectV2IterationFieldConfigurationInput
8020+
80168021
"""
80178022
The name of the field.
80188023
"""
@@ -34685,6 +34690,11 @@ enum ProjectV2CustomFieldType {
3468534690
"""
3468634691
DATE
3468734692

34693+
"""
34694+
Iteration
34695+
"""
34696+
ITERATION
34697+
3468834698
"""
3468934699
Number
3469034700
"""
@@ -35800,6 +35810,26 @@ enum ProjectV2ItemType {
3580035810
REDACTED
3580135811
}
3580235812

35813+
"""
35814+
Represents an iteration
35815+
"""
35816+
input ProjectV2Iteration {
35817+
"""
35818+
The duration of the iteration, in days.
35819+
"""
35820+
duration: Int!
35821+
35822+
"""
35823+
The start date for the iteration.
35824+
"""
35825+
startDate: Date!
35826+
35827+
"""
35828+
The title for the iteration.
35829+
"""
35830+
title: String!
35831+
}
35832+
3580335833
"""
3580435834
An iteration field inside a project.
3580535835
"""
@@ -35870,6 +35900,26 @@ type ProjectV2IterationFieldConfiguration {
3587035900
startDay: Int!
3587135901
}
3587235902

35903+
"""
35904+
Represents an iteration field configuration.
35905+
"""
35906+
input ProjectV2IterationFieldConfigurationInput {
35907+
"""
35908+
The duration of each iteration, in days.
35909+
"""
35910+
duration: Int!
35911+
35912+
"""
35913+
Zero or more iterations for the field.
35914+
"""
35915+
iterations: [ProjectV2Iteration!]!
35916+
35917+
"""
35918+
The start date for the first iteration.
35919+
"""
35920+
startDate: Date!
35921+
}
35922+
3587335923
"""
3587435924
Iteration field iteration settings for a project.
3587535925
"""
@@ -60993,6 +61043,11 @@ input UpdateProjectV2FieldInput {
6099361043
abstractType: "ProjectV2FieldConfiguration"
6099461044
)
6099561045

61046+
"""
61047+
Configuration for an iteration field.
61048+
"""
61049+
iterationConfiguration: ProjectV2IterationFieldConfigurationInput
61050+
6099661051
"""
6099761052
The name to update.
6099861053
"""

0 commit comments

Comments
 (0)