diff --git a/api/lib/project-item-node-to-github-project-item.js b/api/lib/project-item-node-to-github-project-item.js index 3c8d9fb0..3e4030c3 100644 --- a/api/lib/project-item-node-to-github-project-item.js +++ b/api/lib/project-item-node-to-github-project-item.js @@ -17,6 +17,7 @@ export function projectItemNodeToGitHubProjectItem(state, itemNode) { const common = { type: itemNode.type, id: itemNode.id, + isArchived: itemNode.isArchived, fields, }; @@ -59,12 +60,13 @@ export function projectItemNodeToGitHubProjectItem(state, itemNode) { content, }; } - /* c8 ignore next 8 */ + /* c8 ignore next 9 */ // fallback: no content properties are set. Currently that's in case of "REDACTED" return { type: itemNode.type, id: itemNode.id, + isArchived: itemNode.isArchived, fields, content: {}, }; diff --git a/api/lib/queries.js b/api/lib/queries.js index 3cdaf628..acd3cac4 100644 --- a/api/lib/queries.js +++ b/api/lib/queries.js @@ -97,6 +97,7 @@ export const queryItemFieldNodes = ` id createdAt type + isArchived ${queryContentNode} fieldValues(first: 20) { nodes { diff --git a/index.d.ts b/index.d.ts index bf5c56e2..a7069a30 100644 --- a/index.d.ts +++ b/index.d.ts @@ -130,6 +130,7 @@ export type GitHubProjectItem< type ProjectItem_Redacted = { type: "REDACTED"; id: string; + isArchived: boolean; fields: TFields; content: {}; }; @@ -137,6 +138,7 @@ type ProjectItem_Redacted = { type ProjectItem_DraftIssue = { type: "DRAFT_ISSUE"; id: string; + isArchived: boolean; fields: TFields; content: DraftIssueContent; }; @@ -144,6 +146,7 @@ type ProjectItem_DraftIssue = { type ProjectItem_Issue = { type: "ISSUE"; id: string; + isArchived: boolean; fields: TFields; content: IssueContent; }; @@ -151,6 +154,7 @@ type ProjectItem_Issue = { type ProjectItem_PullRequest = { type: "PULL_REQUEST"; id: string; + isArchived: boolean; fields: TFields; content: PullRequestContent; }; diff --git a/test/recorded/api.items.add-draft-with-empty-fields/fixtures.json b/test/recorded/api.items.add-draft-with-empty-fields/fixtures.json index a0a69f9e..c5283a0d 100644 --- a/test/recorded/api.items.add-draft-with-empty-fields/fixtures.json +++ b/test/recorded/api.items.add-draft-with-empty-fields/fixtures.json @@ -15,7 +15,7 @@ "content-encoding": "gzip", "content-security-policy": "default-src 'none'", "content-type": "application/json; charset=utf-8", - "date": "Mon, 24 Oct 2022 17:25:56 GMT", + "date": "Sun, 29 Jan 2023 18:46:28 GMT", "referrer-policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "server": "GitHub.com", "strict-transport-security": "max-age=31536000; includeSubdomains; preload", @@ -24,12 +24,12 @@ "x-content-type-options": "nosniff", "x-frame-options": "deny", "x-github-media-type": "github.v3; format=json", - "x-github-request-id": "E465:14B4:55BEBFD:5838335:6356CAA4", + "x-github-request-id": "E137:7B16:2E4984:307942:63D6BF04", "x-ratelimit-limit": "5000", - "x-ratelimit-remaining": "4963", - "x-ratelimit-reset": "1666635908", + "x-ratelimit-remaining": "4974", + "x-ratelimit-reset": "1675021300", "x-ratelimit-resource": "graphql", - "x-ratelimit-used": "37", + "x-ratelimit-used": "26", "x-xss-protection": "0" }, "data": { @@ -82,36 +82,31 @@ }, { "id": "PVTF_5", - "dataType": "TRACKS", - "name": "Tracks" - }, - { - "id": "PVTF_6", "dataType": "REVIEWERS", "name": "Reviewers" }, { - "id": "PVTF_7", + "id": "PVTF_6", "dataType": "REPOSITORY", "name": "Repository" }, { - "id": "PVTF_8", + "id": "PVTF_7", "dataType": "MILESTONE", "name": "Milestone" }, { - "id": "PVTF_9", + "id": "PVTF_8", "dataType": "TEXT", "name": "Text" }, { - "id": "PVTF_10", + "id": "PVTF_9", "dataType": "NUMBER", "name": "Number" }, { - "id": "PVTF_11", + "id": "PVTF_10", "dataType": "DATE", "name": "Date" }, @@ -185,7 +180,7 @@ "content-encoding": "gzip", "content-security-policy": "default-src 'none'", "content-type": "application/json; charset=utf-8", - "date": "Mon, 24 Oct 2022 17:25:57 GMT", + "date": "Sun, 29 Jan 2023 18:46:29 GMT", "referrer-policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "server": "GitHub.com", "strict-transport-security": "max-age=31536000; includeSubdomains; preload", @@ -194,12 +189,12 @@ "x-content-type-options": "nosniff", "x-frame-options": "deny", "x-github-media-type": "github.v3; format=json", - "x-github-request-id": "E466:97C9:2B847C:2CA160:6356CAA5", + "x-github-request-id": "E13A:34F7:3699A9:38CAF5:63D6BF05", "x-ratelimit-limit": "5000", - "x-ratelimit-remaining": "4962", - "x-ratelimit-reset": "1666635908", + "x-ratelimit-remaining": "4973", + "x-ratelimit-reset": "1675021300", "x-ratelimit-resource": "graphql", - "x-ratelimit-used": "38", + "x-ratelimit-used": "27", "x-xss-protection": "0" }, "data": { diff --git a/test/recorded/api.items.add-draft-with-fields/fixtures.json b/test/recorded/api.items.add-draft-with-fields/fixtures.json index eeb6bc77..ba7686a6 100644 --- a/test/recorded/api.items.add-draft-with-fields/fixtures.json +++ b/test/recorded/api.items.add-draft-with-fields/fixtures.json @@ -15,7 +15,7 @@ "content-encoding": "gzip", "content-security-policy": "default-src 'none'", "content-type": "application/json; charset=utf-8", - "date": "Mon, 24 Oct 2022 17:26:06 GMT", + "date": "Sun, 29 Jan 2023 18:46:36 GMT", "referrer-policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "server": "GitHub.com", "strict-transport-security": "max-age=31536000; includeSubdomains; preload", @@ -24,12 +24,12 @@ "x-content-type-options": "nosniff", "x-frame-options": "deny", "x-github-media-type": "github.v3; format=json", - "x-github-request-id": "E46D:97C9:2B9226:2CAF81:6356CAAD", + "x-github-request-id": "E142:40DE:31DB9E:340BDE:63D6BF0C", "x-ratelimit-limit": "5000", - "x-ratelimit-remaining": "4957", - "x-ratelimit-reset": "1666635908", + "x-ratelimit-remaining": "4968", + "x-ratelimit-reset": "1675021300", "x-ratelimit-resource": "graphql", - "x-ratelimit-used": "43", + "x-ratelimit-used": "32", "x-xss-protection": "0" }, "data": { @@ -82,36 +82,31 @@ }, { "id": "PVTF_5", - "dataType": "TRACKS", - "name": "Tracks" - }, - { - "id": "PVTF_6", "dataType": "REVIEWERS", "name": "Reviewers" }, { - "id": "PVTF_7", + "id": "PVTF_6", "dataType": "REPOSITORY", "name": "Repository" }, { - "id": "PVTF_8", + "id": "PVTF_7", "dataType": "MILESTONE", "name": "Milestone" }, { - "id": "PVTF_9", + "id": "PVTF_8", "dataType": "TEXT", "name": "Text" }, { - "id": "PVTF_10", + "id": "PVTF_9", "dataType": "NUMBER", "name": "Number" }, { - "id": "PVTF_11", + "id": "PVTF_10", "dataType": "DATE", "name": "Date" }, @@ -186,7 +181,7 @@ "content-encoding": "gzip", "content-security-policy": "default-src 'none'", "content-type": "application/json; charset=utf-8", - "date": "Mon, 24 Oct 2022 17:26:07 GMT", + "date": "Sun, 29 Jan 2023 18:46:37 GMT", "referrer-policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "server": "GitHub.com", "strict-transport-security": "max-age=31536000; includeSubdomains; preload", @@ -195,12 +190,12 @@ "x-content-type-options": "nosniff", "x-frame-options": "deny", "x-github-media-type": "github.v3; format=json", - "x-github-request-id": "E46E:0A68:BF78655:C3C617E:6356CAAE", + "x-github-request-id": "E143:333C:3303DD:353438:63D6BF0D", "x-ratelimit-limit": "5000", - "x-ratelimit-remaining": "4956", - "x-ratelimit-reset": "1666635908", + "x-ratelimit-remaining": "4967", + "x-ratelimit-reset": "1675021300", "x-ratelimit-resource": "graphql", - "x-ratelimit-used": "44", + "x-ratelimit-used": "33", "x-xss-protection": "0" }, "data": { @@ -240,7 +235,7 @@ } }, { - "query": "\n mutation setItemProperties($projectId: ID!, $itemId: ID!) {\n \n date: updateProjectV2ItemFieldValue(input: {projectId: $projectId, itemId: $itemId, fieldId: \"PVTF_lADOBYMIeM4ADzd0zgCMLQw\", value: {date: \"2020-01-01\"}}) {\n projectV2Item { \n id\n createdAt\n type\n \n content {\n ... on DraftIssue {\n id\n title\n createdAt\n updatedAt\n author: creator {\n login\n }\n assignees(first: 10) {\n nodes {\n login\n }\n }\n }\n ... on Issue {\n \n id\n databaseId\n number\n title\n url\n createdAt\n author {\n login\n }\n assignees(first: 10) {\n nodes {\n login\n }\n }\n labels(first: 10) {\n nodes {\n name\n }\n }\n closed\n milestone {\n number\n title\n state\n }\n repository {\n name\n }\n\n }\n ... on PullRequest {\n \n id\n databaseId\n number\n title\n url\n createdAt\n author {\n login\n }\n assignees(first: 10) {\n nodes {\n login\n }\n }\n labels(first: 10) {\n nodes {\n name\n }\n }\n closed\n milestone {\n number\n title\n state\n }\n repository {\n name\n }\n\n merged\n }\n }\n\n fieldValues(first: 20) {\n nodes {\n __typename\n ... on ProjectV2ItemFieldDateValue {\n date\n field {\n ... on ProjectV2Field {\n id\n }\n }\n }\n ... on ProjectV2ItemFieldIterationValue {\n title\n iterationId\n startDate\n duration\n field {\n ... on ProjectV2IterationField {\n id\n }\n }\n }\n ... on ProjectV2ItemFieldNumberValue {\n number\n field {\n ... on ProjectV2Field {\n id\n }\n }\n }\n ... on ProjectV2ItemFieldSingleSelectValue {\n optionId\n field {\n ... on ProjectV2SingleSelectField {\n id\n }\n }\n }\n ... on ProjectV2ItemFieldTextValue {\n text\n field {\n ... on ProjectV2Field {\n id\n }\n }\n }\n }\n }\n }\n }\n \n\n number: updateProjectV2ItemFieldValue(input: {projectId: $projectId, itemId: $itemId, fieldId: \"PVTF_lADOBYMIeM4ADzd0zgCMLPk\", value: {number: 123}}) {\n clientMutationId\n }\n \n\n singleSelect: updateProjectV2ItemFieldValue(input: {projectId: $projectId, itemId: $itemId, fieldId: \"PVTSSF_lADOBYMIeM4ADzd0zgCMLQ0\", value: {singleSelectOptionId: \"8a0f266e\"}}) {\n clientMutationId\n }\n \n\n status: updateProjectV2ItemFieldValue(input: {projectId: $projectId, itemId: $itemId, fieldId: \"PVTSSF_lADOBYMIeM4ADzd0zgCMLM0\", value: {singleSelectOptionId: \"98236657\"}}) {\n clientMutationId\n }\n \n\n text: updateProjectV2ItemFieldValue(input: {projectId: $projectId, itemId: $itemId, fieldId: \"PVTF_lADOBYMIeM4ADzd0zgCMLPg\", value: {text: \"Some text\"}}) {\n clientMutationId\n }\n \n\n title: updateProjectV2ItemFieldValue(input: {projectId: $projectId, itemId: $itemId, fieldId: \"PVTF_lADOBYMIeM4ADzd0zgCMLMs\", value: {text: \"the hack?\"}}) {\n clientMutationId\n }\n \n }\n ", + "query": "\n mutation setItemProperties($projectId: ID!, $itemId: ID!) {\n \n date: updateProjectV2ItemFieldValue(input: {projectId: $projectId, itemId: $itemId, fieldId: \"PVTF_lADOBYMIeM4ADzd0zgCMLQw\", value: {date: \"2020-01-01\"}}) {\n projectV2Item { \n id\n createdAt\n type\n \n content {\n ... on DraftIssue {\n id\n title\n createdAt\n updatedAt\n author: creator {\n login\n }\n assignees(first: 10) {\n nodes {\n login\n }\n }\n }\n ... on Issue {\n \n id\n databaseId\n number\n title\n url\n createdAt\n author {\n login\n }\n assignees(first: 10) {\n nodes {\n login\n }\n }\n labels(first: 10) {\n nodes {\n name\n }\n }\n closed\n milestone {\n number\n title\n state\n }\n repository {\n name\n }\n\n }\n ... on PullRequest {\n \n id\n databaseId\n number\n title\n url\n createdAt\n author {\n login\n }\n assignees(first: 10) {\n nodes {\n login\n }\n }\n labels(first: 10) {\n nodes {\n name\n }\n }\n closed\n milestone {\n number\n title\n state\n }\n repository {\n name\n }\n\n merged\n }\n }\n\n fieldValues(first: 20) {\n nodes {\n __typename\n ... on ProjectV2ItemFieldDateValue {\n date\n field {\n ... on ProjectV2Field {\n id\n }\n }\n }\n ... on ProjectV2ItemFieldIterationValue {\n title\n iterationId\n startDate\n duration\n field {\n ... on ProjectV2IterationField {\n id\n }\n }\n }\n ... on ProjectV2ItemFieldNumberValue {\n number\n field {\n ... on ProjectV2Field {\n id\n }\n }\n }\n ... on ProjectV2ItemFieldSingleSelectValue {\n optionId\n field {\n ... on ProjectV2SingleSelectField {\n id\n }\n }\n }\n ... on ProjectV2ItemFieldTextValue {\n text\n field {\n ... on ProjectV2Field {\n id\n }\n }\n }\n }\n }\n }\n }\n \n\n number: updateProjectV2ItemFieldValue(input: {projectId: $projectId, itemId: $itemId, fieldId: \"PVTF_lADOBYMIeM4ADzd0zgCMLPk\", value: {number: 123}}) {\n clientMutationId\n }\n \n\n singleSelect: updateProjectV2ItemFieldValue(input: {projectId: $projectId, itemId: $itemId, fieldId: \"PVTSSF_lADOBYMIeM4ADzd0zgCMLQ0\", value: {singleSelectOptionId: \"8a0f266e\"}}) {\n clientMutationId\n }\n \n\n status: updateProjectV2ItemFieldValue(input: {projectId: $projectId, itemId: $itemId, fieldId: \"PVTSSF_lADOBYMIeM4ADzd0zgCMLM0\", value: {singleSelectOptionId: \"98236657\"}}) {\n clientMutationId\n }\n \n\n text: updateProjectV2ItemFieldValue(input: {projectId: $projectId, itemId: $itemId, fieldId: \"PVTF_lADOBYMIeM4ADzd0zgCMLPg\", value: {text: \"Some text\"}}) {\n clientMutationId\n }\n \n\n title: updateProjectV2ItemFieldValue(input: {projectId: $projectId, itemId: $itemId, fieldId: \"PVTF_lADOBYMIeM4ADzd0zgCMLMs\", value: {text: \"the hack?\"}}) {\n clientMutationId\n }\n \n }\n ", "variables": { "projectId": "PVT_1", "itemId": "PVTI_1" @@ -255,7 +250,7 @@ "content-encoding": "gzip", "content-security-policy": "default-src 'none'", "content-type": "application/json; charset=utf-8", - "date": "Mon, 24 Oct 2022 17:26:09 GMT", + "date": "Sun, 29 Jan 2023 18:46:39 GMT", "referrer-policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "server": "GitHub.com", "strict-transport-security": "max-age=31536000; includeSubdomains; preload", @@ -264,12 +259,12 @@ "x-content-type-options": "nosniff", "x-frame-options": "deny", "x-github-media-type": "github.v3; format=json", - "x-github-request-id": "E46F:32CE:16D2EBF:17716ED:6356CAAF", + "x-github-request-id": "E144:34F7:36A0BA:38D268:63D6BF0E", "x-ratelimit-limit": "5000", - "x-ratelimit-remaining": "4955", - "x-ratelimit-reset": "1666635908", + "x-ratelimit-remaining": "4966", + "x-ratelimit-reset": "1675021300", "x-ratelimit-resource": "graphql", - "x-ratelimit-used": "45", + "x-ratelimit-used": "34", "x-xss-protection": "0" }, "data": { @@ -304,7 +299,7 @@ "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-01-01", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } } ] diff --git a/test/recorded/api.items.add-draft-with-loaded-items/fixtures.json b/test/recorded/api.items.add-draft-with-loaded-items/fixtures.json index c881fda8..574c4909 100644 --- a/test/recorded/api.items.add-draft-with-loaded-items/fixtures.json +++ b/test/recorded/api.items.add-draft-with-loaded-items/fixtures.json @@ -15,7 +15,7 @@ "content-encoding": "gzip", "content-security-policy": "default-src 'none'", "content-type": "application/json; charset=utf-8", - "date": "Mon, 24 Oct 2022 17:26:17 GMT", + "date": "Sun, 29 Jan 2023 18:46:45 GMT", "referrer-policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "server": "GitHub.com", "strict-transport-security": "max-age=31536000; includeSubdomains; preload", @@ -24,12 +24,12 @@ "x-content-type-options": "nosniff", "x-frame-options": "deny", "x-github-media-type": "github.v3; format=json", - "x-github-request-id": "E476:9797:33D9709:356869D:6356CAB8", + "x-github-request-id": "E14C:4250:316DF6:339E73:63D6BF14", "x-ratelimit-limit": "5000", - "x-ratelimit-remaining": "4949", - "x-ratelimit-reset": "1666635908", + "x-ratelimit-remaining": "4960", + "x-ratelimit-reset": "1675021300", "x-ratelimit-resource": "graphql", - "x-ratelimit-used": "51", + "x-ratelimit-used": "40", "x-xss-protection": "0" }, "data": { @@ -82,36 +82,31 @@ }, { "id": "PVTF_5", - "dataType": "TRACKS", - "name": "Tracks" - }, - { - "id": "PVTF_6", "dataType": "REVIEWERS", "name": "Reviewers" }, { - "id": "PVTF_7", + "id": "PVTF_6", "dataType": "REPOSITORY", "name": "Repository" }, { - "id": "PVTF_8", + "id": "PVTF_7", "dataType": "MILESTONE", "name": "Milestone" }, { - "id": "PVTF_9", + "id": "PVTF_8", "dataType": "TEXT", "name": "Text" }, { - "id": "PVTF_10", + "id": "PVTF_9", "dataType": "NUMBER", "name": "Number" }, { - "id": "PVTF_11", + "id": "PVTF_10", "dataType": "DATE", "name": "Date" }, @@ -192,7 +187,7 @@ "content-encoding": "gzip", "content-security-policy": "default-src 'none'", "content-type": "application/json; charset=utf-8", - "date": "Mon, 24 Oct 2022 17:26:18 GMT", + "date": "Sun, 29 Jan 2023 18:46:46 GMT", "referrer-policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "server": "GitHub.com", "strict-transport-security": "max-age=31536000; includeSubdomains; preload", @@ -201,12 +196,12 @@ "x-content-type-options": "nosniff", "x-frame-options": "deny", "x-github-media-type": "github.v3; format=json", - "x-github-request-id": "E477:0D4A:AF86E1E:B3CF7BF:6356CAB9", + "x-github-request-id": "E14E:3E1B:39EDFF:3C1F28:63D6BF15", "x-ratelimit-limit": "5000", - "x-ratelimit-remaining": "4948", - "x-ratelimit-reset": "1666635908", + "x-ratelimit-remaining": "4959", + "x-ratelimit-reset": "1675021300", "x-ratelimit-resource": "graphql", - "x-ratelimit-used": "52", + "x-ratelimit-used": "41", "x-xss-protection": "0" }, "data": { diff --git a/test/recorded/api.items.add-draft/fixtures.json b/test/recorded/api.items.add-draft/fixtures.json index 8153fd53..b7f9b0bb 100644 --- a/test/recorded/api.items.add-draft/fixtures.json +++ b/test/recorded/api.items.add-draft/fixtures.json @@ -15,7 +15,7 @@ "content-encoding": "gzip", "content-security-policy": "default-src 'none'", "content-type": "application/json; charset=utf-8", - "date": "Mon, 24 Oct 2022 17:25:45 GMT", + "date": "Sun, 29 Jan 2023 18:46:21 GMT", "referrer-policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "server": "GitHub.com", "strict-transport-security": "max-age=31536000; includeSubdomains; preload", @@ -24,12 +24,12 @@ "x-content-type-options": "nosniff", "x-frame-options": "deny", "x-github-media-type": "github.v3; format=json", - "x-github-request-id": "E45D:0A71:AF891B1:B3D519B:6356CA99", + "x-github-request-id": "E12F:7B16:2E43D0:30734C:63D6BEFC", "x-ratelimit-limit": "5000", - "x-ratelimit-remaining": "4969", - "x-ratelimit-reset": "1666635908", + "x-ratelimit-remaining": "4980", + "x-ratelimit-reset": "1675021300", "x-ratelimit-resource": "graphql", - "x-ratelimit-used": "31", + "x-ratelimit-used": "20", "x-xss-protection": "0" }, "data": { @@ -82,36 +82,31 @@ }, { "id": "PVTF_5", - "dataType": "TRACKS", - "name": "Tracks" - }, - { - "id": "PVTF_6", "dataType": "REVIEWERS", "name": "Reviewers" }, { - "id": "PVTF_7", + "id": "PVTF_6", "dataType": "REPOSITORY", "name": "Repository" }, { - "id": "PVTF_8", + "id": "PVTF_7", "dataType": "MILESTONE", "name": "Milestone" }, { - "id": "PVTF_9", + "id": "PVTF_8", "dataType": "TEXT", "name": "Text" }, { - "id": "PVTF_10", + "id": "PVTF_9", "dataType": "NUMBER", "name": "Number" }, { - "id": "PVTF_11", + "id": "PVTF_10", "dataType": "DATE", "name": "Date" }, @@ -185,7 +180,7 @@ "content-encoding": "gzip", "content-security-policy": "default-src 'none'", "content-type": "application/json; charset=utf-8", - "date": "Mon, 24 Oct 2022 17:25:46 GMT", + "date": "Sun, 29 Jan 2023 18:46:22 GMT", "referrer-policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "server": "GitHub.com", "strict-transport-security": "max-age=31536000; includeSubdomains; preload", @@ -194,12 +189,12 @@ "x-content-type-options": "nosniff", "x-frame-options": "deny", "x-github-media-type": "github.v3; format=json", - "x-github-request-id": "E45E:14B4:55BDBB3:583728A:6356CA9A", + "x-github-request-id": "E130:9E04:3B9290:3DC1C6:63D6BEFD", "x-ratelimit-limit": "5000", - "x-ratelimit-remaining": "4968", - "x-ratelimit-reset": "1666635908", + "x-ratelimit-remaining": "4979", + "x-ratelimit-reset": "1675021300", "x-ratelimit-resource": "graphql", - "x-ratelimit-used": "32", + "x-ratelimit-used": "21", "x-xss-protection": "0" }, "data": { diff --git a/test/recorded/api.items.add-existing-item-after-api.items.list/fixtures.json b/test/recorded/api.items.add-existing-item-after-api.items.list/fixtures.json index 2f588735..037067bb 100644 --- a/test/recorded/api.items.add-existing-item-after-api.items.list/fixtures.json +++ b/test/recorded/api.items.add-existing-item-after-api.items.list/fixtures.json @@ -15,7 +15,7 @@ "content-encoding": "gzip", "content-security-policy": "default-src 'none'", "content-type": "application/json; charset=utf-8", - "date": "Mon, 24 Oct 2022 17:26:28 GMT", + "date": "Sun, 29 Jan 2023 18:46:54 GMT", "referrer-policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "server": "GitHub.com", "strict-transport-security": "max-age=31536000; includeSubdomains; preload", @@ -24,12 +24,12 @@ "x-content-type-options": "nosniff", "x-frame-options": "deny", "x-github-media-type": "github.v3; format=json", - "x-github-request-id": "E480:0A68:BF7B2CF:C3C8ED9:6356CAC3", + "x-github-request-id": "E158:4250:317496:33A56D:63D6BF1E", "x-ratelimit-limit": "5000", - "x-ratelimit-remaining": "4941", - "x-ratelimit-reset": "1666635908", + "x-ratelimit-remaining": "4952", + "x-ratelimit-reset": "1675021300", "x-ratelimit-resource": "graphql", - "x-ratelimit-used": "59", + "x-ratelimit-used": "48", "x-xss-protection": "0" }, "data": { @@ -82,36 +82,31 @@ }, { "id": "PVTF_5", - "dataType": "TRACKS", - "name": "Tracks" - }, - { - "id": "PVTF_6", "dataType": "REVIEWERS", "name": "Reviewers" }, { - "id": "PVTF_7", + "id": "PVTF_6", "dataType": "REPOSITORY", "name": "Repository" }, { - "id": "PVTF_8", + "id": "PVTF_7", "dataType": "MILESTONE", "name": "Milestone" }, { - "id": "PVTF_9", + "id": "PVTF_8", "dataType": "TEXT", "name": "Text" }, { - "id": "PVTF_10", + "id": "PVTF_9", "dataType": "NUMBER", "name": "Number" }, { - "id": "PVTF_11", + "id": "PVTF_10", "dataType": "DATE", "name": "Date" }, @@ -234,7 +229,7 @@ "content-encoding": "gzip", "content-security-policy": "default-src 'none'", "content-type": "application/json; charset=utf-8", - "date": "Mon, 24 Oct 2022 17:26:29 GMT", + "date": "Sun, 29 Jan 2023 18:46:55 GMT", "referrer-policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "server": "GitHub.com", "strict-transport-security": "max-age=31536000; includeSubdomains; preload", @@ -243,12 +238,12 @@ "x-content-type-options": "nosniff", "x-frame-options": "deny", "x-github-media-type": "github.v3; format=json", - "x-github-request-id": "E481:6582:ABBE48A:B00AF69:6356CAC4", + "x-github-request-id": "E159:820A:313D09:336EBD:63D6BF1F", "x-ratelimit-limit": "5000", - "x-ratelimit-remaining": "4940", - "x-ratelimit-reset": "1666635908", + "x-ratelimit-remaining": "4951", + "x-ratelimit-reset": "1675021300", "x-ratelimit-resource": "graphql", - "x-ratelimit-used": "60", + "x-ratelimit-used": "49", "x-xss-protection": "0" }, "data": { diff --git a/test/recorded/api.items.add-existing-item-with-fields-after-api.items.list/fixtures.json b/test/recorded/api.items.add-existing-item-with-fields-after-api.items.list/fixtures.json index 055c1b54..6763a34b 100644 --- a/test/recorded/api.items.add-existing-item-with-fields-after-api.items.list/fixtures.json +++ b/test/recorded/api.items.add-existing-item-with-fields-after-api.items.list/fixtures.json @@ -15,7 +15,7 @@ "content-encoding": "gzip", "content-security-policy": "default-src 'none'", "content-type": "application/json; charset=utf-8", - "date": "Mon, 24 Oct 2022 17:26:38 GMT", + "date": "Sun, 29 Jan 2023 18:47:04 GMT", "referrer-policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "server": "GitHub.com", "strict-transport-security": "max-age=31536000; includeSubdomains; preload", @@ -24,12 +24,12 @@ "x-content-type-options": "nosniff", "x-frame-options": "deny", "x-github-media-type": "github.v3; format=json", - "x-github-request-id": "E48A:71A7:B3809D1:B7D15D3:6356CACE", + "x-github-request-id": "E162:778A:2F844C:31B48F:63D6BF28", "x-ratelimit-limit": "5000", - "x-ratelimit-remaining": "4933", - "x-ratelimit-reset": "1666635908", + "x-ratelimit-remaining": "4944", + "x-ratelimit-reset": "1675021300", "x-ratelimit-resource": "graphql", - "x-ratelimit-used": "67", + "x-ratelimit-used": "56", "x-xss-protection": "0" }, "data": { @@ -82,36 +82,31 @@ }, { "id": "PVTF_5", - "dataType": "TRACKS", - "name": "Tracks" - }, - { - "id": "PVTF_6", "dataType": "REVIEWERS", "name": "Reviewers" }, { - "id": "PVTF_7", + "id": "PVTF_6", "dataType": "REPOSITORY", "name": "Repository" }, { - "id": "PVTF_8", + "id": "PVTF_7", "dataType": "MILESTONE", "name": "Milestone" }, { - "id": "PVTF_9", + "id": "PVTF_8", "dataType": "TEXT", "name": "Text" }, { - "id": "PVTF_10", + "id": "PVTF_9", "dataType": "NUMBER", "name": "Number" }, { - "id": "PVTF_11", + "id": "PVTF_10", "dataType": "DATE", "name": "Date" }, @@ -234,7 +229,7 @@ "content-encoding": "gzip", "content-security-policy": "default-src 'none'", "content-type": "application/json; charset=utf-8", - "date": "Mon, 24 Oct 2022 17:26:39 GMT", + "date": "Sun, 29 Jan 2023 18:47:05 GMT", "referrer-policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "server": "GitHub.com", "strict-transport-security": "max-age=31536000; includeSubdomains; preload", @@ -243,12 +238,12 @@ "x-content-type-options": "nosniff", "x-frame-options": "deny", "x-github-media-type": "github.v3; format=json", - "x-github-request-id": "E48B:3CCF:ADD655B:B22422E:6356CACF", + "x-github-request-id": "E163:34F7:36BA16:38ECDA:63D6BF29", "x-ratelimit-limit": "5000", - "x-ratelimit-remaining": "4932", - "x-ratelimit-reset": "1666635908", + "x-ratelimit-remaining": "4943", + "x-ratelimit-reset": "1675021300", "x-ratelimit-resource": "graphql", - "x-ratelimit-used": "68", + "x-ratelimit-used": "57", "x-xss-protection": "0" }, "data": { @@ -301,7 +296,7 @@ } }, { - "query": "\n mutation setItemProperties($projectId: ID!, $itemId: ID!) {\n \n status: updateProjectV2ItemFieldValue(input: {projectId: $projectId, itemId: $itemId, fieldId: \"PVTSSF_lADOBYMIeM4ADzd0zgCMLM0\", value: {singleSelectOptionId: \"98236657\"}}) {\n projectV2Item { \n id\n createdAt\n type\n \n content {\n ... on DraftIssue {\n id\n title\n createdAt\n updatedAt\n author: creator {\n login\n }\n assignees(first: 10) {\n nodes {\n login\n }\n }\n }\n ... on Issue {\n \n id\n databaseId\n number\n title\n url\n createdAt\n author {\n login\n }\n assignees(first: 10) {\n nodes {\n login\n }\n }\n labels(first: 10) {\n nodes {\n name\n }\n }\n closed\n milestone {\n number\n title\n state\n }\n repository {\n name\n }\n\n }\n ... on PullRequest {\n \n id\n databaseId\n number\n title\n url\n createdAt\n author {\n login\n }\n assignees(first: 10) {\n nodes {\n login\n }\n }\n labels(first: 10) {\n nodes {\n name\n }\n }\n closed\n milestone {\n number\n title\n state\n }\n repository {\n name\n }\n\n merged\n }\n }\n\n fieldValues(first: 20) {\n nodes {\n __typename\n ... on ProjectV2ItemFieldDateValue {\n date\n field {\n ... on ProjectV2Field {\n id\n }\n }\n }\n ... on ProjectV2ItemFieldIterationValue {\n title\n iterationId\n startDate\n duration\n field {\n ... on ProjectV2IterationField {\n id\n }\n }\n }\n ... on ProjectV2ItemFieldNumberValue {\n number\n field {\n ... on ProjectV2Field {\n id\n }\n }\n }\n ... on ProjectV2ItemFieldSingleSelectValue {\n optionId\n field {\n ... on ProjectV2SingleSelectField {\n id\n }\n }\n }\n ... on ProjectV2ItemFieldTextValue {\n text\n field {\n ... on ProjectV2Field {\n id\n }\n }\n }\n }\n }\n }\n }\n \n }\n ", + "query": "\n mutation setItemProperties($projectId: ID!, $itemId: ID!) {\n \n status: updateProjectV2ItemFieldValue(input: {projectId: $projectId, itemId: $itemId, fieldId: \"PVTSSF_lADOBYMIeM4ADzd0zgCMLM0\", value: {singleSelectOptionId: \"98236657\"}}) {\n projectV2Item { \n id\n createdAt\n type\n \n content {\n ... on DraftIssue {\n id\n title\n createdAt\n updatedAt\n author: creator {\n login\n }\n assignees(first: 10) {\n nodes {\n login\n }\n }\n }\n ... on Issue {\n \n id\n databaseId\n number\n title\n url\n createdAt\n author {\n login\n }\n assignees(first: 10) {\n nodes {\n login\n }\n }\n labels(first: 10) {\n nodes {\n name\n }\n }\n closed\n milestone {\n number\n title\n state\n }\n repository {\n name\n }\n\n }\n ... on PullRequest {\n \n id\n databaseId\n number\n title\n url\n createdAt\n author {\n login\n }\n assignees(first: 10) {\n nodes {\n login\n }\n }\n labels(first: 10) {\n nodes {\n name\n }\n }\n closed\n milestone {\n number\n title\n state\n }\n repository {\n name\n }\n\n merged\n }\n }\n\n fieldValues(first: 20) {\n nodes {\n __typename\n ... on ProjectV2ItemFieldDateValue {\n date\n field {\n ... on ProjectV2Field {\n id\n }\n }\n }\n ... on ProjectV2ItemFieldIterationValue {\n title\n iterationId\n startDate\n duration\n field {\n ... on ProjectV2IterationField {\n id\n }\n }\n }\n ... on ProjectV2ItemFieldNumberValue {\n number\n field {\n ... on ProjectV2Field {\n id\n }\n }\n }\n ... on ProjectV2ItemFieldSingleSelectValue {\n optionId\n field {\n ... on ProjectV2SingleSelectField {\n id\n }\n }\n }\n ... on ProjectV2ItemFieldTextValue {\n text\n field {\n ... on ProjectV2Field {\n id\n }\n }\n }\n }\n }\n }\n }\n \n }\n ", "variables": { "projectId": "PVT_1", "itemId": "PVTI_1" @@ -316,7 +311,7 @@ "content-encoding": "gzip", "content-security-policy": "default-src 'none'", "content-type": "application/json; charset=utf-8", - "date": "Mon, 24 Oct 2022 17:26:41 GMT", + "date": "Sun, 29 Jan 2023 18:47:06 GMT", "referrer-policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "server": "GitHub.com", "strict-transport-security": "max-age=31536000; includeSubdomains; preload", @@ -325,12 +320,12 @@ "x-content-type-options": "nosniff", "x-frame-options": "deny", "x-github-media-type": "github.v3; format=json", - "x-github-request-id": "E48C:6582:ABBFC16:B00C764:6356CAD0", + "x-github-request-id": "E164:1F3F:33042D:3534D2:63D6BF2A", "x-ratelimit-limit": "5000", - "x-ratelimit-remaining": "4931", - "x-ratelimit-reset": "1666635908", + "x-ratelimit-remaining": "4942", + "x-ratelimit-reset": "1675021300", "x-ratelimit-resource": "graphql", - "x-ratelimit-used": "69", + "x-ratelimit-used": "58", "x-xss-protection": "0" }, "data": { diff --git a/test/recorded/api.items.add-multiple-for-same-issue/fixtures.json b/test/recorded/api.items.add-multiple-for-same-issue/fixtures.json index efab5ad3..76840451 100644 --- a/test/recorded/api.items.add-multiple-for-same-issue/fixtures.json +++ b/test/recorded/api.items.add-multiple-for-same-issue/fixtures.json @@ -15,7 +15,7 @@ "content-encoding": "gzip", "content-security-policy": "default-src 'none'", "content-type": "application/json; charset=utf-8", - "date": "Mon, 24 Oct 2022 17:26:49 GMT", + "date": "Sun, 29 Jan 2023 18:47:15 GMT", "referrer-policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "server": "GitHub.com", "strict-transport-security": "max-age=31536000; includeSubdomains; preload", @@ -24,12 +24,12 @@ "x-content-type-options": "nosniff", "x-frame-options": "deny", "x-github-media-type": "github.v3; format=json", - "x-github-request-id": "E495:32CE:16D78D6:17762C2:6356CAD9", + "x-github-request-id": "E16C:778A:2F8F54:31BFF4:63D6BF32", "x-ratelimit-limit": "5000", - "x-ratelimit-remaining": "4926", - "x-ratelimit-reset": "1666635908", + "x-ratelimit-remaining": "4937", + "x-ratelimit-reset": "1675021300", "x-ratelimit-resource": "graphql", - "x-ratelimit-used": "74", + "x-ratelimit-used": "63", "x-xss-protection": "0" }, "data": { @@ -82,36 +82,31 @@ }, { "id": "PVTF_5", - "dataType": "TRACKS", - "name": "Tracks" - }, - { - "id": "PVTF_6", "dataType": "REVIEWERS", "name": "Reviewers" }, { - "id": "PVTF_7", + "id": "PVTF_6", "dataType": "REPOSITORY", "name": "Repository" }, { - "id": "PVTF_8", + "id": "PVTF_7", "dataType": "MILESTONE", "name": "Milestone" }, { - "id": "PVTF_9", + "id": "PVTF_8", "dataType": "TEXT", "name": "Text" }, { - "id": "PVTF_10", + "id": "PVTF_9", "dataType": "NUMBER", "name": "Number" }, { - "id": "PVTF_11", + "id": "PVTF_10", "dataType": "DATE", "name": "Date" }, @@ -185,7 +180,7 @@ "content-encoding": "gzip", "content-security-policy": "default-src 'none'", "content-type": "application/json; charset=utf-8", - "date": "Mon, 24 Oct 2022 17:26:50 GMT", + "date": "Sun, 29 Jan 2023 18:47:16 GMT", "referrer-policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "server": "GitHub.com", "strict-transport-security": "max-age=31536000; includeSubdomains; preload", @@ -194,12 +189,12 @@ "x-content-type-options": "nosniff", "x-frame-options": "deny", "x-github-media-type": "github.v3; format=json", - "x-github-request-id": "E496:0C72:B3AB304:B7F8F94:6356CADA", + "x-github-request-id": "E16D:820A:315292:338522:63D6BF33", "x-ratelimit-limit": "5000", - "x-ratelimit-remaining": "4925", - "x-ratelimit-reset": "1666635908", + "x-ratelimit-remaining": "4936", + "x-ratelimit-reset": "1675021300", "x-ratelimit-resource": "graphql", - "x-ratelimit-used": "75", + "x-ratelimit-used": "64", "x-xss-protection": "0" }, "data": { @@ -252,36 +247,31 @@ }, { "id": "PVTF_5", - "dataType": "TRACKS", - "name": "Tracks" - }, - { - "id": "PVTF_6", "dataType": "REVIEWERS", "name": "Reviewers" }, { - "id": "PVTF_7", + "id": "PVTF_6", "dataType": "REPOSITORY", "name": "Repository" }, { - "id": "PVTF_8", + "id": "PVTF_7", "dataType": "MILESTONE", "name": "Milestone" }, { - "id": "PVTF_9", + "id": "PVTF_8", "dataType": "TEXT", "name": "Text" }, { - "id": "PVTF_10", + "id": "PVTF_9", "dataType": "NUMBER", "name": "Number" }, { - "id": "PVTF_11", + "id": "PVTF_10", "dataType": "DATE", "name": "Date" }, @@ -355,7 +345,7 @@ "content-encoding": "gzip", "content-security-policy": "default-src 'none'", "content-type": "application/json; charset=utf-8", - "date": "Mon, 24 Oct 2022 17:26:51 GMT", + "date": "Sun, 29 Jan 2023 18:47:17 GMT", "referrer-policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "server": "GitHub.com", "strict-transport-security": "max-age=31536000; includeSubdomains; preload", @@ -364,12 +354,12 @@ "x-content-type-options": "nosniff", "x-frame-options": "deny", "x-github-media-type": "github.v3; format=json", - "x-github-request-id": "E497:9797:33DD01A:356C117:6356CADB", + "x-github-request-id": "E16E:7412:2DB187:2FE224:63D6BF34", "x-ratelimit-limit": "5000", - "x-ratelimit-remaining": "4924", - "x-ratelimit-reset": "1666635908", + "x-ratelimit-remaining": "4935", + "x-ratelimit-reset": "1675021300", "x-ratelimit-resource": "graphql", - "x-ratelimit-used": "76", + "x-ratelimit-used": "65", "x-xss-protection": "0" }, "data": { @@ -437,7 +427,7 @@ "content-encoding": "gzip", "content-security-policy": "default-src 'none'", "content-type": "application/json; charset=utf-8", - "date": "Mon, 24 Oct 2022 17:26:52 GMT", + "date": "Sun, 29 Jan 2023 18:47:18 GMT", "referrer-policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "server": "GitHub.com", "strict-transport-security": "max-age=31536000; includeSubdomains; preload", @@ -446,12 +436,12 @@ "x-content-type-options": "nosniff", "x-frame-options": "deny", "x-github-media-type": "github.v3; format=json", - "x-github-request-id": "E498:97C9:2BE198:2D00CD:6356CADC", + "x-github-request-id": "E16F:127E:3C1DF9:3E51BF:63D6BF35", "x-ratelimit-limit": "5000", - "x-ratelimit-remaining": "4923", - "x-ratelimit-reset": "1666635908", + "x-ratelimit-remaining": "4934", + "x-ratelimit-reset": "1675021300", "x-ratelimit-resource": "graphql", - "x-ratelimit-used": "77", + "x-ratelimit-used": "66", "x-xss-protection": "0" }, "data": { diff --git a/test/recorded/api.items.add-pull-request/fixtures.json b/test/recorded/api.items.add-pull-request/fixtures.json index 330251ff..468a1435 100644 --- a/test/recorded/api.items.add-pull-request/fixtures.json +++ b/test/recorded/api.items.add-pull-request/fixtures.json @@ -15,7 +15,7 @@ "content-encoding": "gzip", "content-security-policy": "default-src 'none'", "content-type": "application/json; charset=utf-8", - "date": "Mon, 24 Oct 2022 17:27:08 GMT", + "date": "Sun, 29 Jan 2023 18:47:30 GMT", "referrer-policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "server": "GitHub.com", "strict-transport-security": "max-age=31536000; includeSubdomains; preload", @@ -24,12 +24,12 @@ "x-content-type-options": "nosniff", "x-frame-options": "deny", "x-github-media-type": "github.v3; format=json", - "x-github-request-id": "E4A8:3CCF:ADD9FC1:B227DD9:6356CAEC", + "x-github-request-id": "E17D:1726:3B0D78:3D4272:63D6BF42", "x-ratelimit-limit": "5000", - "x-ratelimit-remaining": "4918", - "x-ratelimit-reset": "1666635908", + "x-ratelimit-remaining": "4928", + "x-ratelimit-reset": "1675021300", "x-ratelimit-resource": "graphql", - "x-ratelimit-used": "82", + "x-ratelimit-used": "72", "x-xss-protection": "0" }, "data": { @@ -82,36 +82,31 @@ }, { "id": "PVTF_5", - "dataType": "TRACKS", - "name": "Tracks" - }, - { - "id": "PVTF_6", "dataType": "REVIEWERS", "name": "Reviewers" }, { - "id": "PVTF_7", + "id": "PVTF_6", "dataType": "REPOSITORY", "name": "Repository" }, { - "id": "PVTF_8", + "id": "PVTF_7", "dataType": "MILESTONE", "name": "Milestone" }, { - "id": "PVTF_9", + "id": "PVTF_8", "dataType": "TEXT", "name": "Text" }, { - "id": "PVTF_10", + "id": "PVTF_9", "dataType": "NUMBER", "name": "Number" }, { - "id": "PVTF_11", + "id": "PVTF_10", "dataType": "DATE", "name": "Date" }, @@ -185,7 +180,7 @@ "content-encoding": "gzip", "content-security-policy": "default-src 'none'", "content-type": "application/json; charset=utf-8", - "date": "Mon, 24 Oct 2022 17:27:09 GMT", + "date": "Sun, 29 Jan 2023 18:47:32 GMT", "referrer-policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "server": "GitHub.com", "strict-transport-security": "max-age=31536000; includeSubdomains; preload", @@ -194,12 +189,12 @@ "x-content-type-options": "nosniff", "x-frame-options": "deny", "x-github-media-type": "github.v3; format=json", - "x-github-request-id": "E4A9:6582:ABC2EA0:B00FB3D:6356CAED", + "x-github-request-id": "E17E:7B16:2E7CF2:30AF2E:63D6BF43", "x-ratelimit-limit": "5000", - "x-ratelimit-remaining": "4917", - "x-ratelimit-reset": "1666635908", + "x-ratelimit-remaining": "4927", + "x-ratelimit-reset": "1675021300", "x-ratelimit-resource": "graphql", - "x-ratelimit-used": "83", + "x-ratelimit-used": "73", "x-xss-protection": "0" }, "data": { diff --git a/test/recorded/api.items.add-with-custom-fields/fixtures.json b/test/recorded/api.items.add-with-custom-fields/fixtures.json index 0edef2d3..b3dea967 100644 --- a/test/recorded/api.items.add-with-custom-fields/fixtures.json +++ b/test/recorded/api.items.add-with-custom-fields/fixtures.json @@ -15,7 +15,7 @@ "content-encoding": "gzip", "content-security-policy": "default-src 'none'", "content-type": "application/json; charset=utf-8", - "date": "Mon, 24 Oct 2022 17:27:18 GMT", + "date": "Sun, 29 Jan 2023 18:47:39 GMT", "referrer-policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "server": "GitHub.com", "strict-transport-security": "max-age=31536000; includeSubdomains; preload", @@ -24,12 +24,12 @@ "x-content-type-options": "nosniff", "x-frame-options": "deny", "x-github-media-type": "github.v3; format=json", - "x-github-request-id": "E4B8:3CCF:ADDB5EA:B22946A:6356CAF6", + "x-github-request-id": "E186:127E:3C3B05:3E6F91:63D6BF4B", "x-ratelimit-limit": "5000", - "x-ratelimit-remaining": "4912", - "x-ratelimit-reset": "1666635908", + "x-ratelimit-remaining": "4922", + "x-ratelimit-reset": "1675021300", "x-ratelimit-resource": "graphql", - "x-ratelimit-used": "88", + "x-ratelimit-used": "78", "x-xss-protection": "0" }, "data": { @@ -82,36 +82,31 @@ }, { "id": "PVTF_5", - "dataType": "TRACKS", - "name": "Tracks" - }, - { - "id": "PVTF_6", "dataType": "REVIEWERS", "name": "Reviewers" }, { - "id": "PVTF_7", + "id": "PVTF_6", "dataType": "REPOSITORY", "name": "Repository" }, { - "id": "PVTF_8", + "id": "PVTF_7", "dataType": "MILESTONE", "name": "Milestone" }, { - "id": "PVTF_9", + "id": "PVTF_8", "dataType": "TEXT", "name": "Text" }, { - "id": "PVTF_10", + "id": "PVTF_9", "dataType": "NUMBER", "name": "Number" }, { - "id": "PVTF_11", + "id": "PVTF_10", "dataType": "DATE", "name": "Date" }, @@ -185,7 +180,7 @@ "content-encoding": "gzip", "content-security-policy": "default-src 'none'", "content-type": "application/json; charset=utf-8", - "date": "Mon, 24 Oct 2022 17:27:19 GMT", + "date": "Sun, 29 Jan 2023 18:47:40 GMT", "referrer-policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "server": "GitHub.com", "strict-transport-security": "max-age=31536000; includeSubdomains; preload", @@ -194,12 +189,12 @@ "x-content-type-options": "nosniff", "x-frame-options": "deny", "x-github-media-type": "github.v3; format=json", - "x-github-request-id": "E4BB:0A71:AF94550:B3E0934:6356CAF7", + "x-github-request-id": "E187:89D2:376C5E:39A118:63D6BF4C", "x-ratelimit-limit": "5000", - "x-ratelimit-remaining": "4911", - "x-ratelimit-reset": "1666635908", + "x-ratelimit-remaining": "4921", + "x-ratelimit-reset": "1675021300", "x-ratelimit-resource": "graphql", - "x-ratelimit-used": "89", + "x-ratelimit-used": "79", "x-xss-protection": "0" }, "data": { @@ -252,7 +247,7 @@ } }, { - "query": "\n mutation setItemProperties($projectId: ID!, $itemId: ID!) {\n \n text: updateProjectV2ItemFieldValue(input: {projectId: $projectId, itemId: $itemId, fieldId: \"PVTF_lADOBYMIeM4ADzd0zgCMLPg\", value: {text: \"text\"}}) {\n projectV2Item { \n id\n createdAt\n type\n \n content {\n ... on DraftIssue {\n id\n title\n createdAt\n updatedAt\n author: creator {\n login\n }\n assignees(first: 10) {\n nodes {\n login\n }\n }\n }\n ... on Issue {\n \n id\n databaseId\n number\n title\n url\n createdAt\n author {\n login\n }\n assignees(first: 10) {\n nodes {\n login\n }\n }\n labels(first: 10) {\n nodes {\n name\n }\n }\n closed\n milestone {\n number\n title\n state\n }\n repository {\n name\n }\n\n }\n ... on PullRequest {\n \n id\n databaseId\n number\n title\n url\n createdAt\n author {\n login\n }\n assignees(first: 10) {\n nodes {\n login\n }\n }\n labels(first: 10) {\n nodes {\n name\n }\n }\n closed\n milestone {\n number\n title\n state\n }\n repository {\n name\n }\n\n merged\n }\n }\n\n fieldValues(first: 20) {\n nodes {\n __typename\n ... on ProjectV2ItemFieldDateValue {\n date\n field {\n ... on ProjectV2Field {\n id\n }\n }\n }\n ... on ProjectV2ItemFieldIterationValue {\n title\n iterationId\n startDate\n duration\n field {\n ... on ProjectV2IterationField {\n id\n }\n }\n }\n ... on ProjectV2ItemFieldNumberValue {\n number\n field {\n ... on ProjectV2Field {\n id\n }\n }\n }\n ... on ProjectV2ItemFieldSingleSelectValue {\n optionId\n field {\n ... on ProjectV2SingleSelectField {\n id\n }\n }\n }\n ... on ProjectV2ItemFieldTextValue {\n text\n field {\n ... on ProjectV2Field {\n id\n }\n }\n }\n }\n }\n }\n }\n \n\n number: updateProjectV2ItemFieldValue(input: {projectId: $projectId, itemId: $itemId, fieldId: \"PVTF_lADOBYMIeM4ADzd0zgCMLPk\", value: {number: 1}}) {\n clientMutationId\n }\n \n\n singleSelect: updateProjectV2ItemFieldValue(input: {projectId: $projectId, itemId: $itemId, fieldId: \"PVTSSF_lADOBYMIeM4ADzd0zgCMLQ0\", value: {singleSelectOptionId: \"b92ebdaa\"}}) {\n clientMutationId\n }\n \n\n date: updateProjectV2ItemFieldValue(input: {projectId: $projectId, itemId: $itemId, fieldId: \"PVTF_lADOBYMIeM4ADzd0zgCMLQw\", value: {date: \"2020-02-02T00:00:00.000Z\"}}) {\n clientMutationId\n }\n \n\n status: updateProjectV2ItemFieldValue(input: {projectId: $projectId, itemId: $itemId, fieldId: \"PVTSSF_lADOBYMIeM4ADzd0zgCMLM0\", value: {singleSelectOptionId: \"98236657\"}}) {\n clientMutationId\n }\n \n }\n ", + "query": "\n mutation setItemProperties($projectId: ID!, $itemId: ID!) {\n \n text: updateProjectV2ItemFieldValue(input: {projectId: $projectId, itemId: $itemId, fieldId: \"PVTF_lADOBYMIeM4ADzd0zgCMLPg\", value: {text: \"text\"}}) {\n projectV2Item { \n id\n createdAt\n type\n \n content {\n ... on DraftIssue {\n id\n title\n createdAt\n updatedAt\n author: creator {\n login\n }\n assignees(first: 10) {\n nodes {\n login\n }\n }\n }\n ... on Issue {\n \n id\n databaseId\n number\n title\n url\n createdAt\n author {\n login\n }\n assignees(first: 10) {\n nodes {\n login\n }\n }\n labels(first: 10) {\n nodes {\n name\n }\n }\n closed\n milestone {\n number\n title\n state\n }\n repository {\n name\n }\n\n }\n ... on PullRequest {\n \n id\n databaseId\n number\n title\n url\n createdAt\n author {\n login\n }\n assignees(first: 10) {\n nodes {\n login\n }\n }\n labels(first: 10) {\n nodes {\n name\n }\n }\n closed\n milestone {\n number\n title\n state\n }\n repository {\n name\n }\n\n merged\n }\n }\n\n fieldValues(first: 20) {\n nodes {\n __typename\n ... on ProjectV2ItemFieldDateValue {\n date\n field {\n ... on ProjectV2Field {\n id\n }\n }\n }\n ... on ProjectV2ItemFieldIterationValue {\n title\n iterationId\n startDate\n duration\n field {\n ... on ProjectV2IterationField {\n id\n }\n }\n }\n ... on ProjectV2ItemFieldNumberValue {\n number\n field {\n ... on ProjectV2Field {\n id\n }\n }\n }\n ... on ProjectV2ItemFieldSingleSelectValue {\n optionId\n field {\n ... on ProjectV2SingleSelectField {\n id\n }\n }\n }\n ... on ProjectV2ItemFieldTextValue {\n text\n field {\n ... on ProjectV2Field {\n id\n }\n }\n }\n }\n }\n }\n }\n \n\n number: updateProjectV2ItemFieldValue(input: {projectId: $projectId, itemId: $itemId, fieldId: \"PVTF_lADOBYMIeM4ADzd0zgCMLPk\", value: {number: 1}}) {\n clientMutationId\n }\n \n\n singleSelect: updateProjectV2ItemFieldValue(input: {projectId: $projectId, itemId: $itemId, fieldId: \"PVTSSF_lADOBYMIeM4ADzd0zgCMLQ0\", value: {singleSelectOptionId: \"b92ebdaa\"}}) {\n clientMutationId\n }\n \n\n date: updateProjectV2ItemFieldValue(input: {projectId: $projectId, itemId: $itemId, fieldId: \"PVTF_lADOBYMIeM4ADzd0zgCMLQw\", value: {date: \"2020-02-02T00:00:00.000Z\"}}) {\n clientMutationId\n }\n \n\n status: updateProjectV2ItemFieldValue(input: {projectId: $projectId, itemId: $itemId, fieldId: \"PVTSSF_lADOBYMIeM4ADzd0zgCMLM0\", value: {singleSelectOptionId: \"98236657\"}}) {\n clientMutationId\n }\n \n }\n ", "variables": { "projectId": "PVT_1", "itemId": "PVTI_1" @@ -267,7 +262,7 @@ "content-encoding": "gzip", "content-security-policy": "default-src 'none'", "content-type": "application/json; charset=utf-8", - "date": "Mon, 24 Oct 2022 17:27:21 GMT", + "date": "Sun, 29 Jan 2023 18:47:42 GMT", "referrer-policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "server": "GitHub.com", "strict-transport-security": "max-age=31536000; includeSubdomains; preload", @@ -276,12 +271,12 @@ "x-content-type-options": "nosniff", "x-frame-options": "deny", "x-github-media-type": "github.v3; format=json", - "x-github-request-id": "E4BC:14B4:55C83A0:5841E61:6356CAF8", + "x-github-request-id": "E188:3763:3840EC:3A7334:63D6BF4D", "x-ratelimit-limit": "5000", - "x-ratelimit-remaining": "4910", - "x-ratelimit-reset": "1666635908", + "x-ratelimit-remaining": "4920", + "x-ratelimit-reset": "1675021300", "x-ratelimit-resource": "graphql", - "x-ratelimit-used": "90", + "x-ratelimit-used": "80", "x-xss-protection": "0" }, "data": { @@ -329,7 +324,7 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } } ] diff --git a/test/recorded/api.items.add-with-optional-non-existing-field/fixtures.json b/test/recorded/api.items.add-with-optional-non-existing-field/fixtures.json index 926ced66..6a71deca 100644 --- a/test/recorded/api.items.add-with-optional-non-existing-field/fixtures.json +++ b/test/recorded/api.items.add-with-optional-non-existing-field/fixtures.json @@ -15,7 +15,7 @@ "content-encoding": "gzip", "content-security-policy": "default-src 'none'", "content-type": "application/json; charset=utf-8", - "date": "Mon, 24 Oct 2022 17:27:30 GMT", + "date": "Sun, 29 Jan 2023 18:47:48 GMT", "referrer-policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "server": "GitHub.com", "strict-transport-security": "max-age=31536000; includeSubdomains; preload", @@ -24,12 +24,12 @@ "x-content-type-options": "nosniff", "x-frame-options": "deny", "x-github-media-type": "github.v3; format=json", - "x-github-request-id": "E4C5:0C72:B3B0583:B7FE3B0:6356CB02", + "x-github-request-id": "E195:0782:3B263B:3D5922:63D6BF54", "x-ratelimit-limit": "5000", - "x-ratelimit-remaining": "4905", - "x-ratelimit-reset": "1666635908", + "x-ratelimit-remaining": "4915", + "x-ratelimit-reset": "1675021300", "x-ratelimit-resource": "graphql", - "x-ratelimit-used": "95", + "x-ratelimit-used": "85", "x-xss-protection": "0" }, "data": { @@ -82,36 +82,31 @@ }, { "id": "PVTF_5", - "dataType": "TRACKS", - "name": "Tracks" - }, - { - "id": "PVTF_6", "dataType": "REVIEWERS", "name": "Reviewers" }, { - "id": "PVTF_7", + "id": "PVTF_6", "dataType": "REPOSITORY", "name": "Repository" }, { - "id": "PVTF_8", + "id": "PVTF_7", "dataType": "MILESTONE", "name": "Milestone" }, { - "id": "PVTF_9", + "id": "PVTF_8", "dataType": "TEXT", "name": "Text" }, { - "id": "PVTF_10", + "id": "PVTF_9", "dataType": "NUMBER", "name": "Number" }, { - "id": "PVTF_11", + "id": "PVTF_10", "dataType": "DATE", "name": "Date" }, @@ -185,7 +180,7 @@ "content-encoding": "gzip", "content-security-policy": "default-src 'none'", "content-type": "application/json; charset=utf-8", - "date": "Mon, 24 Oct 2022 17:27:31 GMT", + "date": "Sun, 29 Jan 2023 18:47:50 GMT", "referrer-policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "server": "GitHub.com", "strict-transport-security": "max-age=31536000; includeSubdomains; preload", @@ -194,12 +189,12 @@ "x-content-type-options": "nosniff", "x-frame-options": "deny", "x-github-media-type": "github.v3; format=json", - "x-github-request-id": "E4C6:97C9:2C2097:2D4191:6356CB03", + "x-github-request-id": "E196:820A:316DB7:33A19A:63D6BF55", "x-ratelimit-limit": "5000", - "x-ratelimit-remaining": "4904", - "x-ratelimit-reset": "1666635908", + "x-ratelimit-remaining": "4914", + "x-ratelimit-reset": "1675021300", "x-ratelimit-resource": "graphql", - "x-ratelimit-used": "96", + "x-ratelimit-used": "86", "x-xss-protection": "0" }, "data": { diff --git a/test/recorded/api.items.add-with-quotes-in-value/fixtures.json b/test/recorded/api.items.add-with-quotes-in-value/fixtures.json index 314f8a36..6a38b4af 100644 --- a/test/recorded/api.items.add-with-quotes-in-value/fixtures.json +++ b/test/recorded/api.items.add-with-quotes-in-value/fixtures.json @@ -15,7 +15,7 @@ "content-encoding": "gzip", "content-security-policy": "default-src 'none'", "content-type": "application/json; charset=utf-8", - "date": "Mon, 24 Oct 2022 17:27:40 GMT", + "date": "Sun, 29 Jan 2023 18:47:57 GMT", "referrer-policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "server": "GitHub.com", "strict-transport-security": "max-age=31536000; includeSubdomains; preload", @@ -24,12 +24,12 @@ "x-content-type-options": "nosniff", "x-frame-options": "deny", "x-github-media-type": "github.v3; format=json", - "x-github-request-id": "E4D0:05CF:3C3456A:3DFDDE9:6356CB0C", + "x-github-request-id": "E19F:54E3:38DD6A:3B1122:63D6BF5D", "x-ratelimit-limit": "5000", - "x-ratelimit-remaining": "4899", - "x-ratelimit-reset": "1666635908", + "x-ratelimit-remaining": "4909", + "x-ratelimit-reset": "1675021300", "x-ratelimit-resource": "graphql", - "x-ratelimit-used": "101", + "x-ratelimit-used": "91", "x-xss-protection": "0" }, "data": { @@ -82,36 +82,31 @@ }, { "id": "PVTF_5", - "dataType": "TRACKS", - "name": "Tracks" - }, - { - "id": "PVTF_6", "dataType": "REVIEWERS", "name": "Reviewers" }, { - "id": "PVTF_7", + "id": "PVTF_6", "dataType": "REPOSITORY", "name": "Repository" }, { - "id": "PVTF_8", + "id": "PVTF_7", "dataType": "MILESTONE", "name": "Milestone" }, { - "id": "PVTF_9", + "id": "PVTF_8", "dataType": "TEXT", "name": "Text" }, { - "id": "PVTF_10", + "id": "PVTF_9", "dataType": "NUMBER", "name": "Number" }, { - "id": "PVTF_11", + "id": "PVTF_10", "dataType": "DATE", "name": "Date" }, @@ -185,7 +180,7 @@ "content-encoding": "gzip", "content-security-policy": "default-src 'none'", "content-type": "application/json; charset=utf-8", - "date": "Mon, 24 Oct 2022 17:27:42 GMT", + "date": "Sun, 29 Jan 2023 18:47:58 GMT", "referrer-policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "server": "GitHub.com", "strict-transport-security": "max-age=31536000; includeSubdomains; preload", @@ -194,12 +189,12 @@ "x-content-type-options": "nosniff", "x-frame-options": "deny", "x-github-media-type": "github.v3; format=json", - "x-github-request-id": "E4D1:71A7:B38863F:B7D94DC:6356CB0D", + "x-github-request-id": "E1A0:4F0E:34A683:36D950:63D6BF5E", "x-ratelimit-limit": "5000", - "x-ratelimit-remaining": "4898", - "x-ratelimit-reset": "1666635908", + "x-ratelimit-remaining": "4908", + "x-ratelimit-reset": "1675021300", "x-ratelimit-resource": "graphql", - "x-ratelimit-used": "102", + "x-ratelimit-used": "92", "x-xss-protection": "0" }, "data": { @@ -252,7 +247,7 @@ } }, { - "query": "\n mutation setItemProperties($projectId: ID!, $itemId: ID!) {\n \n text: updateProjectV2ItemFieldValue(input: {projectId: $projectId, itemId: $itemId, fieldId: \"PVTF_lADOBYMIeM4ADzd0zgCMLPg\", value: {text: \"Is \\\"it\\\"?\"}}) {\n projectV2Item { \n id\n createdAt\n type\n \n content {\n ... on DraftIssue {\n id\n title\n createdAt\n updatedAt\n author: creator {\n login\n }\n assignees(first: 10) {\n nodes {\n login\n }\n }\n }\n ... on Issue {\n \n id\n databaseId\n number\n title\n url\n createdAt\n author {\n login\n }\n assignees(first: 10) {\n nodes {\n login\n }\n }\n labels(first: 10) {\n nodes {\n name\n }\n }\n closed\n milestone {\n number\n title\n state\n }\n repository {\n name\n }\n\n }\n ... on PullRequest {\n \n id\n databaseId\n number\n title\n url\n createdAt\n author {\n login\n }\n assignees(first: 10) {\n nodes {\n login\n }\n }\n labels(first: 10) {\n nodes {\n name\n }\n }\n closed\n milestone {\n number\n title\n state\n }\n repository {\n name\n }\n\n merged\n }\n }\n\n fieldValues(first: 20) {\n nodes {\n __typename\n ... on ProjectV2ItemFieldDateValue {\n date\n field {\n ... on ProjectV2Field {\n id\n }\n }\n }\n ... on ProjectV2ItemFieldIterationValue {\n title\n iterationId\n startDate\n duration\n field {\n ... on ProjectV2IterationField {\n id\n }\n }\n }\n ... on ProjectV2ItemFieldNumberValue {\n number\n field {\n ... on ProjectV2Field {\n id\n }\n }\n }\n ... on ProjectV2ItemFieldSingleSelectValue {\n optionId\n field {\n ... on ProjectV2SingleSelectField {\n id\n }\n }\n }\n ... on ProjectV2ItemFieldTextValue {\n text\n field {\n ... on ProjectV2Field {\n id\n }\n }\n }\n }\n }\n }\n }\n \n }\n ", + "query": "\n mutation setItemProperties($projectId: ID!, $itemId: ID!) {\n \n text: updateProjectV2ItemFieldValue(input: {projectId: $projectId, itemId: $itemId, fieldId: \"PVTF_lADOBYMIeM4ADzd0zgCMLPg\", value: {text: \"Is \\\"it\\\"?\"}}) {\n projectV2Item { \n id\n createdAt\n type\n \n content {\n ... on DraftIssue {\n id\n title\n createdAt\n updatedAt\n author: creator {\n login\n }\n assignees(first: 10) {\n nodes {\n login\n }\n }\n }\n ... on Issue {\n \n id\n databaseId\n number\n title\n url\n createdAt\n author {\n login\n }\n assignees(first: 10) {\n nodes {\n login\n }\n }\n labels(first: 10) {\n nodes {\n name\n }\n }\n closed\n milestone {\n number\n title\n state\n }\n repository {\n name\n }\n\n }\n ... on PullRequest {\n \n id\n databaseId\n number\n title\n url\n createdAt\n author {\n login\n }\n assignees(first: 10) {\n nodes {\n login\n }\n }\n labels(first: 10) {\n nodes {\n name\n }\n }\n closed\n milestone {\n number\n title\n state\n }\n repository {\n name\n }\n\n merged\n }\n }\n\n fieldValues(first: 20) {\n nodes {\n __typename\n ... on ProjectV2ItemFieldDateValue {\n date\n field {\n ... on ProjectV2Field {\n id\n }\n }\n }\n ... on ProjectV2ItemFieldIterationValue {\n title\n iterationId\n startDate\n duration\n field {\n ... on ProjectV2IterationField {\n id\n }\n }\n }\n ... on ProjectV2ItemFieldNumberValue {\n number\n field {\n ... on ProjectV2Field {\n id\n }\n }\n }\n ... on ProjectV2ItemFieldSingleSelectValue {\n optionId\n field {\n ... on ProjectV2SingleSelectField {\n id\n }\n }\n }\n ... on ProjectV2ItemFieldTextValue {\n text\n field {\n ... on ProjectV2Field {\n id\n }\n }\n }\n }\n }\n }\n }\n \n }\n ", "variables": { "projectId": "PVT_1", "itemId": "PVTI_1" @@ -267,7 +262,7 @@ "content-encoding": "gzip", "content-security-policy": "default-src 'none'", "content-type": "application/json; charset=utf-8", - "date": "Mon, 24 Oct 2022 17:27:43 GMT", + "date": "Sun, 29 Jan 2023 18:47:59 GMT", "referrer-policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "server": "GitHub.com", "strict-transport-security": "max-age=31536000; includeSubdomains; preload", @@ -276,12 +271,12 @@ "x-content-type-options": "nosniff", "x-frame-options": "deny", "x-github-media-type": "github.v3; format=json", - "x-github-request-id": "E4D2:0A68:BF84937:C3D2847:6356CB0E", + "x-github-request-id": "E1A1:34F7:36EBBC:392097:63D6BF5F", "x-ratelimit-limit": "5000", - "x-ratelimit-remaining": "4897", - "x-ratelimit-reset": "1666635908", + "x-ratelimit-remaining": "4907", + "x-ratelimit-reset": "1675021300", "x-ratelimit-resource": "graphql", - "x-ratelimit-used": "103", + "x-ratelimit-used": "93", "x-xss-protection": "0" }, "data": { @@ -329,7 +324,7 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "Is \"it\"?", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } } ] diff --git a/test/recorded/api.items.add-without-configuring-custom-fields/fixtures.json b/test/recorded/api.items.add-without-configuring-custom-fields/fixtures.json index 8fd90ace..5cbda65d 100644 --- a/test/recorded/api.items.add-without-configuring-custom-fields/fixtures.json +++ b/test/recorded/api.items.add-without-configuring-custom-fields/fixtures.json @@ -15,7 +15,7 @@ "content-encoding": "gzip", "content-security-policy": "default-src 'none'", "content-type": "application/json; charset=utf-8", - "date": "Mon, 24 Oct 2022 17:27:52 GMT", + "date": "Sun, 29 Jan 2023 18:48:07 GMT", "referrer-policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "server": "GitHub.com", "strict-transport-security": "max-age=31536000; includeSubdomains; preload", @@ -24,12 +24,12 @@ "x-content-type-options": "nosniff", "x-frame-options": "deny", "x-github-media-type": "github.v3; format=json", - "x-github-request-id": "E4DB:0A71:AF981AE:B3E46D7:6356CB17", + "x-github-request-id": "E1A9:778A:2FBB05:31EDC3:63D6BF67", "x-ratelimit-limit": "5000", - "x-ratelimit-remaining": "4892", - "x-ratelimit-reset": "1666635908", + "x-ratelimit-remaining": "4902", + "x-ratelimit-reset": "1675021300", "x-ratelimit-resource": "graphql", - "x-ratelimit-used": "108", + "x-ratelimit-used": "98", "x-xss-protection": "0" }, "data": { @@ -82,36 +82,31 @@ }, { "id": "PVTF_5", - "dataType": "TRACKS", - "name": "Tracks" - }, - { - "id": "PVTF_6", "dataType": "REVIEWERS", "name": "Reviewers" }, { - "id": "PVTF_7", + "id": "PVTF_6", "dataType": "REPOSITORY", "name": "Repository" }, { - "id": "PVTF_8", + "id": "PVTF_7", "dataType": "MILESTONE", "name": "Milestone" }, { - "id": "PVTF_9", + "id": "PVTF_8", "dataType": "TEXT", "name": "Text" }, { - "id": "PVTF_10", + "id": "PVTF_9", "dataType": "NUMBER", "name": "Number" }, { - "id": "PVTF_11", + "id": "PVTF_10", "dataType": "DATE", "name": "Date" }, @@ -185,7 +180,7 @@ "content-encoding": "gzip", "content-security-policy": "default-src 'none'", "content-type": "application/json; charset=utf-8", - "date": "Mon, 24 Oct 2022 17:27:53 GMT", + "date": "Sun, 29 Jan 2023 18:48:09 GMT", "referrer-policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "server": "GitHub.com", "strict-transport-security": "max-age=31536000; includeSubdomains; preload", @@ -194,12 +189,12 @@ "x-content-type-options": "nosniff", "x-frame-options": "deny", "x-github-media-type": "github.v3; format=json", - "x-github-request-id": "E4DC:0D4A:AF91FD6:B3DAD58:6356CB18", + "x-github-request-id": "E1AA:0782:3B3C27:3D6FE3:63D6BF68", "x-ratelimit-limit": "5000", - "x-ratelimit-remaining": "4891", - "x-ratelimit-reset": "1666635908", + "x-ratelimit-remaining": "4901", + "x-ratelimit-reset": "1675021300", "x-ratelimit-resource": "graphql", - "x-ratelimit-used": "109", + "x-ratelimit-used": "99", "x-xss-protection": "0" }, "data": { diff --git a/test/recorded/api.items.add/fixtures.json b/test/recorded/api.items.add/fixtures.json index a68e9ed4..100d49da 100644 --- a/test/recorded/api.items.add/fixtures.json +++ b/test/recorded/api.items.add/fixtures.json @@ -15,7 +15,7 @@ "content-encoding": "gzip", "content-security-policy": "default-src 'none'", "content-type": "application/json; charset=utf-8", - "date": "Mon, 24 Oct 2022 17:25:36 GMT", + "date": "Sun, 29 Jan 2023 18:46:13 GMT", "referrer-policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "server": "GitHub.com", "strict-transport-security": "max-age=31536000; includeSubdomains; preload", @@ -24,12 +24,12 @@ "x-content-type-options": "nosniff", "x-frame-options": "deny", "x-github-media-type": "github.v3; format=json", - "x-github-request-id": "E452:97C9:2B63F6:2C800E:6356CA90", + "x-github-request-id": "E127:3763:37EC9D:3A1B7B:63D6BEF5", "x-ratelimit-limit": "5000", - "x-ratelimit-remaining": "4975", - "x-ratelimit-reset": "1666635908", + "x-ratelimit-remaining": "4986", + "x-ratelimit-reset": "1675021300", "x-ratelimit-resource": "graphql", - "x-ratelimit-used": "25", + "x-ratelimit-used": "14", "x-xss-protection": "0" }, "data": { @@ -82,36 +82,31 @@ }, { "id": "PVTF_5", - "dataType": "TRACKS", - "name": "Tracks" - }, - { - "id": "PVTF_6", "dataType": "REVIEWERS", "name": "Reviewers" }, { - "id": "PVTF_7", + "id": "PVTF_6", "dataType": "REPOSITORY", "name": "Repository" }, { - "id": "PVTF_8", + "id": "PVTF_7", "dataType": "MILESTONE", "name": "Milestone" }, { - "id": "PVTF_9", + "id": "PVTF_8", "dataType": "TEXT", "name": "Text" }, { - "id": "PVTF_10", + "id": "PVTF_9", "dataType": "NUMBER", "name": "Number" }, { - "id": "PVTF_11", + "id": "PVTF_10", "dataType": "DATE", "name": "Date" }, @@ -185,7 +180,7 @@ "content-encoding": "gzip", "content-security-policy": "default-src 'none'", "content-type": "application/json; charset=utf-8", - "date": "Mon, 24 Oct 2022 17:25:37 GMT", + "date": "Sun, 29 Jan 2023 18:46:14 GMT", "referrer-policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "server": "GitHub.com", "strict-transport-security": "max-age=31536000; includeSubdomains; preload", @@ -194,12 +189,12 @@ "x-content-type-options": "nosniff", "x-frame-options": "deny", "x-github-media-type": "github.v3; format=json", - "x-github-request-id": "E453:05CF:3C265F1:3DEF951:6356CA91", + "x-github-request-id": "E128:1726:3ABDBD:3CEFB9:63D6BEF6", "x-ratelimit-limit": "5000", - "x-ratelimit-remaining": "4974", - "x-ratelimit-reset": "1666635908", + "x-ratelimit-remaining": "4985", + "x-ratelimit-reset": "1675021300", "x-ratelimit-resource": "graphql", - "x-ratelimit-used": "26", + "x-ratelimit-used": "15", "x-xss-protection": "0" }, "data": { diff --git a/test/recorded/api.items.get-archived/fixtures.json b/test/recorded/api.items.get-archived/fixtures.json new file mode 100644 index 00000000..9d65009b --- /dev/null +++ b/test/recorded/api.items.get-archived/fixtures.json @@ -0,0 +1,274 @@ +[ + { + "query": "\n query getProjectCoreData($owner: String!, $number: Int!) {\n userOrOrganization: repositoryOwner(login: $owner) {\n ... on ProjectV2Owner {\n projectV2(number: $number) {\n \n id\n title\n url\n fields(first: 50) {\n nodes {\n ... on ProjectV2FieldCommon {\n id\n dataType\n name\n }\n ... on ProjectV2SingleSelectField {\n options {\n id\n name\n }\n }\n ... on ProjectV2IterationField {\n configuration {\n iterations {\n title\n duration\n startDate\n }\n completedIterations {\n title\n duration\n startDate\n }\n duration\n startDay\n }\n }\n }\n }\n\n }\n }\n }\n }\n", + "variables": { + "owner": "github-project-fixtures", + "number": 2 + }, + "response": { + "status": 200, + "url": "https://api.github.com/graphql", + "headers": { + "access-control-allow-origin": "*", + "access-control-expose-headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset", + "connection": "close", + "content-encoding": "gzip", + "content-security-policy": "default-src 'none'", + "content-type": "application/json; charset=utf-8", + "date": "Sun, 29 Jan 2023 18:48:30 GMT", + "referrer-policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "server": "GitHub.com", + "strict-transport-security": "max-age=31536000; includeSubdomains; preload", + "transfer-encoding": "chunked", + "vary": "Accept-Encoding, Accept, X-Requested-With", + "x-content-type-options": "nosniff", + "x-frame-options": "deny", + "x-github-media-type": "github.v3; format=json", + "x-github-request-id": "E1C0:5DBC:37FDF5:3A3328:63D6BF7E", + "x-ratelimit-limit": "5000", + "x-ratelimit-remaining": "4885", + "x-ratelimit-reset": "1675021300", + "x-ratelimit-resource": "graphql", + "x-ratelimit-used": "115", + "x-xss-protection": "0" + }, + "data": { + "data": { + "userOrOrganization": { + "projectV2": { + "id": "PVT_1", + "title": "@gr2m's Test Fixtures", + "url": "https://github.com/orgs/github-project-fixtures/projects/2", + "fields": { + "nodes": [ + { + "id": "PVTF_1", + "dataType": "TITLE", + "name": "Title" + }, + { + "id": "PVTF_2", + "dataType": "ASSIGNEES", + "name": "Assignees" + }, + { + "id": "PVTSSF_1", + "dataType": "SINGLE_SELECT", + "name": "Status", + "options": [ + { + "id": "f75ad846", + "name": "Todo" + }, + { + "id": "47fc9ee4", + "name": "In Progress" + }, + { + "id": "98236657", + "name": "Done" + } + ] + }, + { + "id": "PVTF_3", + "dataType": "LABELS", + "name": "Labels" + }, + { + "id": "PVTF_4", + "dataType": "LINKED_PULL_REQUESTS", + "name": "Linked pull requests" + }, + { + "id": "PVTF_5", + "dataType": "REVIEWERS", + "name": "Reviewers" + }, + { + "id": "PVTF_6", + "dataType": "REPOSITORY", + "name": "Repository" + }, + { + "id": "PVTF_7", + "dataType": "MILESTONE", + "name": "Milestone" + }, + { + "id": "PVTF_8", + "dataType": "TEXT", + "name": "Text" + }, + { + "id": "PVTF_9", + "dataType": "NUMBER", + "name": "Number" + }, + { + "id": "PVTF_10", + "dataType": "DATE", + "name": "Date" + }, + { + "id": "PVTSSF_2", + "dataType": "SINGLE_SELECT", + "name": "Single select", + "options": [ + { + "id": "b92ebdaa", + "name": "One" + }, + { + "id": "8a0f266e", + "name": "Two" + }, + { + "id": "7ec185b4", + "name": "Three" + } + ] + }, + { + "id": "PVTIF_1", + "dataType": "ITERATION", + "name": "Iteration", + "configuration": { + "iterations": [], + "completedIterations": [ + { + "title": "Iteration 3", + "duration": 14, + "startDate": "2022-08-05" + }, + { + "title": "Iteration 2", + "duration": 14, + "startDate": "2022-07-22" + }, + { + "title": "Iteration 1", + "duration": 14, + "startDate": "2022-07-08" + } + ], + "duration": 14, + "startDay": 5 + } + } + ] + } + } + } + } + } + } + }, + { + "query": "\n query getProjectItem($id:ID!) {\n node(id:$id){\n ... on ProjectV2Item {\n \n id\n createdAt\n type\n \n content {\n ... on DraftIssue {\n id\n title\n createdAt\n updatedAt\n author: creator {\n login\n }\n assignees(first: 10) {\n nodes {\n login\n }\n }\n }\n ... on Issue {\n \n id\n databaseId\n number\n title\n url\n createdAt\n author {\n login\n }\n assignees(first: 10) {\n nodes {\n login\n }\n }\n labels(first: 10) {\n nodes {\n name\n }\n }\n closed\n milestone {\n number\n title\n state\n }\n repository {\n name\n }\n\n }\n ... on PullRequest {\n \n id\n databaseId\n number\n title\n url\n createdAt\n author {\n login\n }\n assignees(first: 10) {\n nodes {\n login\n }\n }\n labels(first: 10) {\n nodes {\n name\n }\n }\n closed\n milestone {\n number\n title\n state\n }\n repository {\n name\n }\n\n merged\n }\n }\n\n fieldValues(first: 20) {\n nodes {\n __typename\n ... on ProjectV2ItemFieldDateValue {\n date\n field {\n ... on ProjectV2Field {\n id\n }\n }\n }\n ... on ProjectV2ItemFieldIterationValue {\n title\n iterationId\n startDate\n duration\n field {\n ... on ProjectV2IterationField {\n id\n }\n }\n }\n ... on ProjectV2ItemFieldNumberValue {\n number\n field {\n ... on ProjectV2Field {\n id\n }\n }\n }\n ... on ProjectV2ItemFieldSingleSelectValue {\n optionId\n field {\n ... on ProjectV2SingleSelectField {\n id\n }\n }\n }\n ... on ProjectV2ItemFieldTextValue {\n text\n field {\n ... on ProjectV2Field {\n id\n }\n }\n }\n }\n }\n\n }\n }\n }\n", + "variables": { + "id": "PVTI_1" + }, + "response": { + "status": 200, + "url": "https://api.github.com/graphql", + "headers": { + "access-control-allow-origin": "*", + "access-control-expose-headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset", + "connection": "close", + "content-encoding": "gzip", + "content-security-policy": "default-src 'none'", + "content-type": "application/json; charset=utf-8", + "date": "Sun, 29 Jan 2023 18:48:31 GMT", + "referrer-policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "server": "GitHub.com", + "strict-transport-security": "max-age=31536000; includeSubdomains; preload", + "transfer-encoding": "chunked", + "vary": "Accept-Encoding, Accept, X-Requested-With", + "x-content-type-options": "nosniff", + "x-frame-options": "deny", + "x-github-media-type": "github.v3; format=json", + "x-github-request-id": "E1C1:333C:3374E9:35A9EA:63D6BF7F", + "x-ratelimit-limit": "5000", + "x-ratelimit-remaining": "4884", + "x-ratelimit-reset": "1675021300", + "x-ratelimit-resource": "graphql", + "x-ratelimit-used": "116", + "x-xss-protection": "0" + }, + "data": { + "data": { + "node": { + "id": "PVTI_1", + "createdAt": "2022-02-02T12:00:00Z", + "type": "ISSUE", + "content": { + "id": "I_1", + "databaseId": 1001, + "number": 1, + "title": "Issue", + "url": "https://github.com/github-project-fixtures/test-repository/issues/1", + "createdAt": "2022-02-02T12:00:00Z", + "author": { + "login": "gh-project-fixtures" + }, + "assignees": { + "nodes": [] + }, + "labels": { + "nodes": [] + }, + "closed": false, + "milestone": null, + "repository": { + "name": "test-repository" + } + }, + "fieldValues": { + "nodes": [ + { + "__typename": "ProjectV2ItemFieldRepositoryValue" + }, + { + "__typename": "ProjectV2ItemFieldTextValue", + "text": "Issue", + "field": { + "id": "PVTF_1" + } + }, + { + "__typename": "ProjectV2ItemFieldTextValue", + "text": "text", + "field": { + "id": "PVTF_8" + } + }, + { + "__typename": "ProjectV2ItemFieldNumberValue", + "number": 1, + "field": { + "id": "PVTF_9" + } + }, + { + "__typename": "ProjectV2ItemFieldDateValue", + "date": "2020-02-02", + "field": { + "id": "PVTF_10" + } + }, + { + "__typename": "ProjectV2ItemFieldSingleSelectValue", + "optionId": "b92ebdaa", + "field": { + "id": "PVTSSF_2" + } + } + ] + } + } + } + } + } + } +] \ No newline at end of file diff --git a/test/recorded/api.items.get-archived/prepare.js b/test/recorded/api.items.get-archived/prepare.js new file mode 100644 index 00000000..766d9442 --- /dev/null +++ b/test/recorded/api.items.get-archived/prepare.js @@ -0,0 +1,50 @@ +// @ts-check + +/** + * Prepare state in order to record fixtures for test.js. Returns array of arguments that will be passed + * passed as `test(project, ...arguments)`. + * + * @param {import("@octokit/openapi-types").components["schemas"]["repository"]} repository + * @param {import("@octokit/core").Octokit} octokit + * @param {import("../../..").default<{text: string, number: number, date: string, singleSelect: "One" | "Two" | "Three"}>} project + * @returns {Promise<[string]>} + */ +export async function prepare(repository, octokit, project) { + // create a test issue + const { data: issue } = await octokit.request( + "POST /repos/{owner}/{repo}/issues", + { + owner: repository.owner.login, + repo: repository.name, + title: "Issue", + body: "This is a test issue", + } + ); + + // add issue to project + const item = await project.items.add(issue.node_id, { + text: "text", + number: "1", + date: new Date("2020-02-02").toISOString(), + singleSelect: "One", + }); + + // archive item + // TODO: replace with `project.items.archive()` once its implemented + await octokit.graphql( + ` + mutation addIssueToProject($projectId: ID!, $itemId: ID!) { + archiveProjectV2Item(input:{projectId: $projectId, itemId: $itemId }) { + clientMutationId + } + } + `, + { + // hardcoded to https://github.com/orgs/github-project-fixtures/projects/2 + projectId: "PVT_kwDOBYMIeM4ADzd0", + itemId: item.id, + } + ); + + return [item.id]; +} diff --git a/test/recorded/api.items.get-archived/test.js b/test/recorded/api.items.get-archived/test.js new file mode 100644 index 00000000..796bf78b --- /dev/null +++ b/test/recorded/api.items.get-archived/test.js @@ -0,0 +1,9 @@ +// @ts-check + +/** + * @param {import("../../../").default} project + * @param {string} [itemId] + */ +export function test(project, itemId = "PVTI_1") { + return project.items.get(itemId); +} diff --git a/test/recorded/api.items.get-by-content-content-repository-and-number/fixtures.json b/test/recorded/api.items.get-by-content-content-repository-and-number/fixtures.json index 2cdbc2b6..cfee3f0c 100644 --- a/test/recorded/api.items.get-by-content-content-repository-and-number/fixtures.json +++ b/test/recorded/api.items.get-by-content-content-repository-and-number/fixtures.json @@ -15,7 +15,7 @@ "content-encoding": "gzip", "content-security-policy": "default-src 'none'", "content-type": "application/json; charset=utf-8", - "date": "Mon, 24 Oct 2022 17:28:17 GMT", + "date": "Sun, 29 Jan 2023 18:48:39 GMT", "referrer-policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "server": "GitHub.com", "strict-transport-security": "max-age=31536000; includeSubdomains; preload", @@ -24,12 +24,12 @@ "x-content-type-options": "nosniff", "x-frame-options": "deny", "x-github-media-type": "github.v3; format=json", - "x-github-request-id": "E4F5:0D4A:AF9564D:B3DE4E9:6356CB31", + "x-github-request-id": "E1C9:127E:3C867E:3EBD7F:63D6BF87", "x-ratelimit-limit": "5000", - "x-ratelimit-remaining": "4876", - "x-ratelimit-reset": "1666635908", + "x-ratelimit-remaining": "4879", + "x-ratelimit-reset": "1675021300", "x-ratelimit-resource": "graphql", - "x-ratelimit-used": "124", + "x-ratelimit-used": "121", "x-xss-protection": "0" }, "data": { @@ -82,36 +82,31 @@ }, { "id": "PVTF_5", - "dataType": "TRACKS", - "name": "Tracks" - }, - { - "id": "PVTF_6", "dataType": "REVIEWERS", "name": "Reviewers" }, { - "id": "PVTF_7", + "id": "PVTF_6", "dataType": "REPOSITORY", "name": "Repository" }, { - "id": "PVTF_8", + "id": "PVTF_7", "dataType": "MILESTONE", "name": "Milestone" }, { - "id": "PVTF_9", + "id": "PVTF_8", "dataType": "TEXT", "name": "Text" }, { - "id": "PVTF_10", + "id": "PVTF_9", "dataType": "NUMBER", "name": "Number" }, { - "id": "PVTF_11", + "id": "PVTF_10", "dataType": "DATE", "name": "Date" }, @@ -186,7 +181,7 @@ "content-encoding": "gzip", "content-security-policy": "default-src 'none'", "content-type": "application/json; charset=utf-8", - "date": "Mon, 24 Oct 2022 17:28:18 GMT", + "date": "Sun, 29 Jan 2023 18:48:40 GMT", "referrer-policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "server": "GitHub.com", "strict-transport-security": "max-age=31536000; includeSubdomains; preload", @@ -195,12 +190,12 @@ "x-content-type-options": "nosniff", "x-frame-options": "deny", "x-github-media-type": "github.v3; format=json", - "x-github-request-id": "E4F6:0A68:BF8925E:C3D7305:6356CB32", + "x-github-request-id": "E1CA:3E1B:3A5E04:3C93A6:63D6BF88", "x-ratelimit-limit": "5000", - "x-ratelimit-remaining": "4875", - "x-ratelimit-reset": "1666635908", + "x-ratelimit-remaining": "4878", + "x-ratelimit-reset": "1675021300", "x-ratelimit-resource": "graphql", - "x-ratelimit-used": "125", + "x-ratelimit-used": "122", "x-xss-protection": "0" }, "data": { @@ -257,21 +252,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 1, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { diff --git a/test/recorded/api.items.get-by-content-id-with-non-optional-missing-user-fields/fixtures.json b/test/recorded/api.items.get-by-content-id-with-non-optional-missing-user-fields/fixtures.json index 93a7fc87..c290050a 100644 --- a/test/recorded/api.items.get-by-content-id-with-non-optional-missing-user-fields/fixtures.json +++ b/test/recorded/api.items.get-by-content-id-with-non-optional-missing-user-fields/fixtures.json @@ -15,7 +15,7 @@ "content-encoding": "gzip", "content-security-policy": "default-src 'none'", "content-type": "application/json; charset=utf-8", - "date": "Mon, 24 Oct 2022 17:28:42 GMT", + "date": "Sun, 29 Jan 2023 18:49:00 GMT", "referrer-policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "server": "GitHub.com", "strict-transport-security": "max-age=31536000; includeSubdomains; preload", @@ -24,12 +24,12 @@ "x-content-type-options": "nosniff", "x-frame-options": "deny", "x-github-media-type": "github.v3; format=json", - "x-github-request-id": "E516:0DBE:38C4C68:3A7E27D:6356CB4A", + "x-github-request-id": "E1E1:1F3F:336834:359D64:63D6BF9C", "x-ratelimit-limit": "5000", - "x-ratelimit-remaining": "4860", - "x-ratelimit-reset": "1666635908", + "x-ratelimit-remaining": "4863", + "x-ratelimit-reset": "1675021300", "x-ratelimit-resource": "graphql", - "x-ratelimit-used": "140", + "x-ratelimit-used": "137", "x-xss-protection": "0" }, "data": { @@ -82,36 +82,31 @@ }, { "id": "PVTF_5", - "dataType": "TRACKS", - "name": "Tracks" - }, - { - "id": "PVTF_6", "dataType": "REVIEWERS", "name": "Reviewers" }, { - "id": "PVTF_7", + "id": "PVTF_6", "dataType": "REPOSITORY", "name": "Repository" }, { - "id": "PVTF_8", + "id": "PVTF_7", "dataType": "MILESTONE", "name": "Milestone" }, { - "id": "PVTF_9", + "id": "PVTF_8", "dataType": "TEXT", "name": "Text" }, { - "id": "PVTF_10", + "id": "PVTF_9", "dataType": "NUMBER", "name": "Number" }, { - "id": "PVTF_11", + "id": "PVTF_10", "dataType": "DATE", "name": "Date" }, diff --git a/test/recorded/api.items.get-by-content-id-with-optional-user-fields/fixtures.json b/test/recorded/api.items.get-by-content-id-with-optional-user-fields/fixtures.json index e1e5b0b4..4e38231b 100644 --- a/test/recorded/api.items.get-by-content-id-with-optional-user-fields/fixtures.json +++ b/test/recorded/api.items.get-by-content-id-with-optional-user-fields/fixtures.json @@ -15,7 +15,7 @@ "content-encoding": "gzip", "content-security-policy": "default-src 'none'", "content-type": "application/json; charset=utf-8", - "date": "Mon, 24 Oct 2022 17:28:53 GMT", + "date": "Sun, 29 Jan 2023 18:49:10 GMT", "referrer-policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "server": "GitHub.com", "strict-transport-security": "max-age=31536000; includeSubdomains; preload", @@ -24,12 +24,12 @@ "x-content-type-options": "nosniff", "x-frame-options": "deny", "x-github-media-type": "github.v3; format=json", - "x-github-request-id": "E521:0DBE:38C607A:3A7F706:6356CB55", + "x-github-request-id": "E1EB:7412:2E0E5D:304372:63D6BFA6", "x-ratelimit-limit": "5000", - "x-ratelimit-remaining": "4853", - "x-ratelimit-reset": "1666635908", + "x-ratelimit-remaining": "4856", + "x-ratelimit-reset": "1675021300", "x-ratelimit-resource": "graphql", - "x-ratelimit-used": "147", + "x-ratelimit-used": "144", "x-xss-protection": "0" }, "data": { @@ -82,36 +82,31 @@ }, { "id": "PVTF_5", - "dataType": "TRACKS", - "name": "Tracks" - }, - { - "id": "PVTF_6", "dataType": "REVIEWERS", "name": "Reviewers" }, { - "id": "PVTF_7", + "id": "PVTF_6", "dataType": "REPOSITORY", "name": "Repository" }, { - "id": "PVTF_8", + "id": "PVTF_7", "dataType": "MILESTONE", "name": "Milestone" }, { - "id": "PVTF_9", + "id": "PVTF_8", "dataType": "TEXT", "name": "Text" }, { - "id": "PVTF_10", + "id": "PVTF_9", "dataType": "NUMBER", "name": "Number" }, { - "id": "PVTF_11", + "id": "PVTF_10", "dataType": "DATE", "name": "Date" }, @@ -184,7 +179,7 @@ "content-encoding": "gzip", "content-security-policy": "default-src 'none'", "content-type": "application/json; charset=utf-8", - "date": "Mon, 24 Oct 2022 17:28:54 GMT", + "date": "Sun, 29 Jan 2023 18:49:11 GMT", "referrer-policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "server": "GitHub.com", "strict-transport-security": "max-age=31536000; includeSubdomains; preload", @@ -193,12 +188,12 @@ "x-content-type-options": "nosniff", "x-frame-options": "deny", "x-github-media-type": "github.v3; format=json", - "x-github-request-id": "E523:0C72:B3BA99D:B808B66:6356CB56", + "x-github-request-id": "E1EC:7B16:2ECEBA:3104FB:63D6BFA7", "x-ratelimit-limit": "5000", - "x-ratelimit-remaining": "4852", - "x-ratelimit-reset": "1666635908", + "x-ratelimit-remaining": "4855", + "x-ratelimit-reset": "1675021300", "x-ratelimit-resource": "graphql", - "x-ratelimit-used": "148", + "x-ratelimit-used": "145", "x-xss-protection": "0" }, "data": { @@ -253,21 +248,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 1, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { diff --git a/test/recorded/api.items.get-by-content-id/fixtures.json b/test/recorded/api.items.get-by-content-id/fixtures.json index 7b2d8246..9b6ab5f7 100644 --- a/test/recorded/api.items.get-by-content-id/fixtures.json +++ b/test/recorded/api.items.get-by-content-id/fixtures.json @@ -15,7 +15,7 @@ "content-encoding": "gzip", "content-security-policy": "default-src 'none'", "content-type": "application/json; charset=utf-8", - "date": "Mon, 24 Oct 2022 17:28:30 GMT", + "date": "Sun, 29 Jan 2023 18:48:49 GMT", "referrer-policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "server": "GitHub.com", "strict-transport-security": "max-age=31536000; includeSubdomains; preload", @@ -24,12 +24,12 @@ "x-content-type-options": "nosniff", "x-frame-options": "deny", "x-github-media-type": "github.v3; format=json", - "x-github-request-id": "E502:3CCF:ADE423A:B2323C4:6356CB3D", + "x-github-request-id": "E1D5:1726:3B575A:3D8F68:63D6BF91", "x-ratelimit-limit": "5000", - "x-ratelimit-remaining": "4868", - "x-ratelimit-reset": "1666635908", + "x-ratelimit-remaining": "4871", + "x-ratelimit-reset": "1675021300", "x-ratelimit-resource": "graphql", - "x-ratelimit-used": "132", + "x-ratelimit-used": "129", "x-xss-protection": "0" }, "data": { @@ -82,36 +82,31 @@ }, { "id": "PVTF_5", - "dataType": "TRACKS", - "name": "Tracks" - }, - { - "id": "PVTF_6", "dataType": "REVIEWERS", "name": "Reviewers" }, { - "id": "PVTF_7", + "id": "PVTF_6", "dataType": "REPOSITORY", "name": "Repository" }, { - "id": "PVTF_8", + "id": "PVTF_7", "dataType": "MILESTONE", "name": "Milestone" }, { - "id": "PVTF_9", + "id": "PVTF_8", "dataType": "TEXT", "name": "Text" }, { - "id": "PVTF_10", + "id": "PVTF_9", "dataType": "NUMBER", "name": "Number" }, { - "id": "PVTF_11", + "id": "PVTF_10", "dataType": "DATE", "name": "Date" }, @@ -184,7 +179,7 @@ "content-encoding": "gzip", "content-security-policy": "default-src 'none'", "content-type": "application/json; charset=utf-8", - "date": "Mon, 24 Oct 2022 17:28:31 GMT", + "date": "Sun, 29 Jan 2023 18:48:50 GMT", "referrer-policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "server": "GitHub.com", "strict-transport-security": "max-age=31536000; includeSubdomains; preload", @@ -193,12 +188,12 @@ "x-content-type-options": "nosniff", "x-frame-options": "deny", "x-github-media-type": "github.v3; format=json", - "x-github-request-id": "E503:14B4:55D0172:5849F40:6356CB3E", + "x-github-request-id": "E1D7:8CE2:31FDF0:343464:63D6BF92", "x-ratelimit-limit": "5000", - "x-ratelimit-remaining": "4867", - "x-ratelimit-reset": "1666635908", + "x-ratelimit-remaining": "4870", + "x-ratelimit-reset": "1675021300", "x-ratelimit-resource": "graphql", - "x-ratelimit-used": "133", + "x-ratelimit-used": "130", "x-xss-protection": "0" }, "data": { @@ -253,21 +248,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 1, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { diff --git a/test/recorded/api.items.get-draft-item/fixtures.json b/test/recorded/api.items.get-draft-item/fixtures.json index 79ddaf0a..938c3fb9 100644 --- a/test/recorded/api.items.get-draft-item/fixtures.json +++ b/test/recorded/api.items.get-draft-item/fixtures.json @@ -15,7 +15,7 @@ "content-encoding": "gzip", "content-security-policy": "default-src 'none'", "content-type": "application/json; charset=utf-8", - "date": "Mon, 24 Oct 2022 17:29:04 GMT", + "date": "Sun, 29 Jan 2023 18:49:19 GMT", "referrer-policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "server": "GitHub.com", "strict-transport-security": "max-age=31536000; includeSubdomains; preload", @@ -24,12 +24,12 @@ "x-content-type-options": "nosniff", "x-frame-options": "deny", "x-github-media-type": "github.v3; format=json", - "x-github-request-id": "E531:3B75:3765E54:390B2A6:6356CB5F", + "x-github-request-id": "E1F4:1F3F:337B1B:35B10E:63D6BFAF", "x-ratelimit-limit": "5000", - "x-ratelimit-remaining": "4846", - "x-ratelimit-reset": "1666635908", + "x-ratelimit-remaining": "4849", + "x-ratelimit-reset": "1675021300", "x-ratelimit-resource": "graphql", - "x-ratelimit-used": "154", + "x-ratelimit-used": "151", "x-xss-protection": "0" }, "data": { @@ -82,36 +82,31 @@ }, { "id": "PVTF_5", - "dataType": "TRACKS", - "name": "Tracks" - }, - { - "id": "PVTF_6", "dataType": "REVIEWERS", "name": "Reviewers" }, { - "id": "PVTF_7", + "id": "PVTF_6", "dataType": "REPOSITORY", "name": "Repository" }, { - "id": "PVTF_8", + "id": "PVTF_7", "dataType": "MILESTONE", "name": "Milestone" }, { - "id": "PVTF_9", + "id": "PVTF_8", "dataType": "TEXT", "name": "Text" }, { - "id": "PVTF_10", + "id": "PVTF_9", "dataType": "NUMBER", "name": "Number" }, { - "id": "PVTF_11", + "id": "PVTF_10", "dataType": "DATE", "name": "Date" }, @@ -184,7 +179,7 @@ "content-encoding": "gzip", "content-security-policy": "default-src 'none'", "content-type": "application/json; charset=utf-8", - "date": "Mon, 24 Oct 2022 17:29:05 GMT", + "date": "Sun, 29 Jan 2023 18:49:20 GMT", "referrer-policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "server": "GitHub.com", "strict-transport-security": "max-age=31536000; includeSubdomains; preload", @@ -193,12 +188,12 @@ "x-content-type-options": "nosniff", "x-frame-options": "deny", "x-github-media-type": "github.v3; format=json", - "x-github-request-id": "E534:4EF2:74C31B2:77E2DC4:6356CB61", + "x-github-request-id": "E1F5:333C:33A377:35DA7C:63D6BFB0", "x-ratelimit-limit": "5000", - "x-ratelimit-remaining": "4845", - "x-ratelimit-reset": "1666635908", + "x-ratelimit-remaining": "4848", + "x-ratelimit-reset": "1675021300", "x-ratelimit-resource": "graphql", - "x-ratelimit-used": "155", + "x-ratelimit-used": "152", "x-xss-protection": "0" }, "data": { diff --git a/test/recorded/api.items.get-not-found/fixtures.json b/test/recorded/api.items.get-not-found/fixtures.json index f2028669..04b11c3c 100644 --- a/test/recorded/api.items.get-not-found/fixtures.json +++ b/test/recorded/api.items.get-not-found/fixtures.json @@ -15,7 +15,7 @@ "content-encoding": "gzip", "content-security-policy": "default-src 'none'", "content-type": "application/json; charset=utf-8", - "date": "Mon, 24 Oct 2022 17:29:13 GMT", + "date": "Sun, 29 Jan 2023 18:49:26 GMT", "referrer-policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "server": "GitHub.com", "strict-transport-security": "max-age=31536000; includeSubdomains; preload", @@ -24,12 +24,12 @@ "x-content-type-options": "nosniff", "x-frame-options": "deny", "x-github-media-type": "github.v3; format=json", - "x-github-request-id": "E53D:0D4A:AF9C3DE:B3E54CF:6356CB68", + "x-github-request-id": "E1FC:1F3F:33812B:35B769:63D6BFB6", "x-ratelimit-limit": "5000", - "x-ratelimit-remaining": "4840", - "x-ratelimit-reset": "1666635908", + "x-ratelimit-remaining": "4843", + "x-ratelimit-reset": "1675021300", "x-ratelimit-resource": "graphql", - "x-ratelimit-used": "160", + "x-ratelimit-used": "157", "x-xss-protection": "0" }, "data": { @@ -82,36 +82,31 @@ }, { "id": "PVTF_5", - "dataType": "TRACKS", - "name": "Tracks" - }, - { - "id": "PVTF_6", "dataType": "REVIEWERS", "name": "Reviewers" }, { - "id": "PVTF_7", + "id": "PVTF_6", "dataType": "REPOSITORY", "name": "Repository" }, { - "id": "PVTF_8", + "id": "PVTF_7", "dataType": "MILESTONE", "name": "Milestone" }, { - "id": "PVTF_9", + "id": "PVTF_8", "dataType": "TEXT", "name": "Text" }, { - "id": "PVTF_10", + "id": "PVTF_9", "dataType": "NUMBER", "name": "Number" }, { - "id": "PVTF_11", + "id": "PVTF_10", "dataType": "DATE", "name": "Date" }, @@ -184,7 +179,7 @@ "content-encoding": "gzip", "content-security-policy": "default-src 'none'", "content-type": "application/json; charset=utf-8", - "date": "Mon, 24 Oct 2022 17:29:14 GMT", + "date": "Sun, 29 Jan 2023 18:49:27 GMT", "referrer-policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "server": "GitHub.com", "strict-transport-security": "max-age=31536000; includeSubdomains; preload", @@ -193,12 +188,12 @@ "x-content-type-options": "nosniff", "x-frame-options": "deny", "x-github-media-type": "github.v3; format=json", - "x-github-request-id": "E53E:14B4:55D4FC8:584EF50:6356CB69", + "x-github-request-id": "E1FD:7412:2E1E21:3053E0:63D6BFB7", "x-ratelimit-limit": "5000", - "x-ratelimit-remaining": "4839", - "x-ratelimit-reset": "1666635908", + "x-ratelimit-remaining": "4842", + "x-ratelimit-reset": "1675021300", "x-ratelimit-resource": "graphql", - "x-ratelimit-used": "161", + "x-ratelimit-used": "158", "x-xss-protection": "0" }, "data": { diff --git a/test/recorded/api.items.get-using-content-id/fixtures.json b/test/recorded/api.items.get-using-content-id/fixtures.json index 9d493d51..0cd7b3ac 100644 --- a/test/recorded/api.items.get-using-content-id/fixtures.json +++ b/test/recorded/api.items.get-using-content-id/fixtures.json @@ -15,7 +15,7 @@ "content-encoding": "gzip", "content-security-policy": "default-src 'none'", "content-type": "application/json; charset=utf-8", - "date": "Mon, 24 Oct 2022 17:29:23 GMT", + "date": "Sun, 29 Jan 2023 18:49:35 GMT", "referrer-policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "server": "GitHub.com", "strict-transport-security": "max-age=31536000; includeSubdomains; preload", @@ -24,12 +24,12 @@ "x-content-type-options": "nosniff", "x-frame-options": "deny", "x-github-media-type": "github.v3; format=json", - "x-github-request-id": "E547:0C72:B3BE6B8:B80C9BF:6356CB73", + "x-github-request-id": "E207:9E04:3C6BEA:3EA2D2:63D6BFBF", "x-ratelimit-limit": "5000", - "x-ratelimit-remaining": "4834", - "x-ratelimit-reset": "1666635908", + "x-ratelimit-remaining": "4837", + "x-ratelimit-reset": "1675021300", "x-ratelimit-resource": "graphql", - "x-ratelimit-used": "166", + "x-ratelimit-used": "163", "x-xss-protection": "0" }, "data": { @@ -82,36 +82,31 @@ }, { "id": "PVTF_5", - "dataType": "TRACKS", - "name": "Tracks" - }, - { - "id": "PVTF_6", "dataType": "REVIEWERS", "name": "Reviewers" }, { - "id": "PVTF_7", + "id": "PVTF_6", "dataType": "REPOSITORY", "name": "Repository" }, { - "id": "PVTF_8", + "id": "PVTF_7", "dataType": "MILESTONE", "name": "Milestone" }, { - "id": "PVTF_9", + "id": "PVTF_8", "dataType": "TEXT", "name": "Text" }, { - "id": "PVTF_10", + "id": "PVTF_9", "dataType": "NUMBER", "name": "Number" }, { - "id": "PVTF_11", + "id": "PVTF_10", "dataType": "DATE", "name": "Date" }, @@ -184,7 +179,7 @@ "content-encoding": "gzip", "content-security-policy": "default-src 'none'", "content-type": "application/json; charset=utf-8", - "date": "Mon, 24 Oct 2022 17:29:24 GMT", + "date": "Sun, 29 Jan 2023 18:49:36 GMT", "referrer-policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "server": "GitHub.com", "strict-transport-security": "max-age=31536000; includeSubdomains; preload", @@ -193,12 +188,12 @@ "x-content-type-options": "nosniff", "x-frame-options": "deny", "x-github-media-type": "github.v3; format=json", - "x-github-request-id": "E548:6582:ABD30A1:B0202E3:6356CB74", + "x-github-request-id": "E208:333C:33B153:35E8F1:63D6BFC0", "x-ratelimit-limit": "5000", - "x-ratelimit-remaining": "4833", - "x-ratelimit-reset": "1666635908", + "x-ratelimit-remaining": "4836", + "x-ratelimit-reset": "1675021300", "x-ratelimit-resource": "graphql", - "x-ratelimit-used": "167", + "x-ratelimit-used": "164", "x-xss-protection": "0" }, "data": { diff --git a/test/recorded/api.items.get/fixtures.json b/test/recorded/api.items.get/fixtures.json index ba982677..ccbe9ec1 100644 --- a/test/recorded/api.items.get/fixtures.json +++ b/test/recorded/api.items.get/fixtures.json @@ -15,7 +15,7 @@ "content-encoding": "gzip", "content-security-policy": "default-src 'none'", "content-type": "application/json; charset=utf-8", - "date": "Mon, 24 Oct 2022 17:28:05 GMT", + "date": "Sun, 29 Jan 2023 18:48:18 GMT", "referrer-policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "server": "GitHub.com", "strict-transport-security": "max-age=31536000; includeSubdomains; preload", @@ -24,12 +24,12 @@ "x-content-type-options": "nosniff", "x-frame-options": "deny", "x-github-media-type": "github.v3; format=json", - "x-github-request-id": "E4EA:14B4:55CD1D5:5846EA5:6356CB25", + "x-github-request-id": "E1B4:7412:2DE40B:301714:63D6BF72", "x-ratelimit-limit": "5000", - "x-ratelimit-remaining": "4884", - "x-ratelimit-reset": "1666635908", + "x-ratelimit-remaining": "4894", + "x-ratelimit-reset": "1675021300", "x-ratelimit-resource": "graphql", - "x-ratelimit-used": "116", + "x-ratelimit-used": "106", "x-xss-protection": "0" }, "data": { @@ -82,36 +82,31 @@ }, { "id": "PVTF_5", - "dataType": "TRACKS", - "name": "Tracks" - }, - { - "id": "PVTF_6", "dataType": "REVIEWERS", "name": "Reviewers" }, { - "id": "PVTF_7", + "id": "PVTF_6", "dataType": "REPOSITORY", "name": "Repository" }, { - "id": "PVTF_8", + "id": "PVTF_7", "dataType": "MILESTONE", "name": "Milestone" }, { - "id": "PVTF_9", + "id": "PVTF_8", "dataType": "TEXT", "name": "Text" }, { - "id": "PVTF_10", + "id": "PVTF_9", "dataType": "NUMBER", "name": "Number" }, { - "id": "PVTF_11", + "id": "PVTF_10", "dataType": "DATE", "name": "Date" }, @@ -184,7 +179,7 @@ "content-encoding": "gzip", "content-security-policy": "default-src 'none'", "content-type": "application/json; charset=utf-8", - "date": "Mon, 24 Oct 2022 17:28:06 GMT", + "date": "Sun, 29 Jan 2023 18:48:19 GMT", "referrer-policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "server": "GitHub.com", "strict-transport-security": "max-age=31536000; includeSubdomains; preload", @@ -193,12 +188,12 @@ "x-content-type-options": "nosniff", "x-frame-options": "deny", "x-github-media-type": "github.v3; format=json", - "x-github-request-id": "E4EB:0DBE:38C0B83:3A7A040:6356CB26", + "x-github-request-id": "E1B5:127E:3C728F:3EA8CA:63D6BF73", "x-ratelimit-limit": "5000", - "x-ratelimit-remaining": "4883", - "x-ratelimit-reset": "1666635908", + "x-ratelimit-remaining": "4893", + "x-ratelimit-reset": "1675021300", "x-ratelimit-resource": "graphql", - "x-ratelimit-used": "117", + "x-ratelimit-used": "107", "x-xss-protection": "0" }, "data": { @@ -245,21 +240,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 1, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { diff --git a/test/recorded/api.items.list-multiple-calls/fixtures.json b/test/recorded/api.items.list-multiple-calls/fixtures.json index 4339f482..1ce5a57c 100644 --- a/test/recorded/api.items.list-multiple-calls/fixtures.json +++ b/test/recorded/api.items.list-multiple-calls/fixtures.json @@ -15,7 +15,7 @@ "content-encoding": "gzip", "content-security-policy": "default-src 'none'", "content-type": "application/json; charset=utf-8", - "date": "Mon, 24 Oct 2022 17:29:57 GMT", + "date": "Sun, 29 Jan 2023 18:50:05 GMT", "referrer-policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "server": "GitHub.com", "strict-transport-security": "max-age=31536000; includeSubdomains; preload", @@ -24,12 +24,12 @@ "x-content-type-options": "nosniff", "x-frame-options": "deny", "x-github-media-type": "github.v3; format=json", - "x-github-request-id": "E568:0A71:AFA660E:B3F3079:6356CB94", + "x-github-request-id": "E228:333C:33CA0C:3602E2:63D6BFDD", "x-ratelimit-limit": "5000", - "x-ratelimit-remaining": "4811", - "x-ratelimit-reset": "1666635908", + "x-ratelimit-remaining": "4814", + "x-ratelimit-reset": "1675021300", "x-ratelimit-resource": "graphql", - "x-ratelimit-used": "189", + "x-ratelimit-used": "186", "x-xss-protection": "0" }, "data": { @@ -82,36 +82,31 @@ }, { "id": "PVTF_5", - "dataType": "TRACKS", - "name": "Tracks" - }, - { - "id": "PVTF_6", "dataType": "REVIEWERS", "name": "Reviewers" }, { - "id": "PVTF_7", + "id": "PVTF_6", "dataType": "REPOSITORY", "name": "Repository" }, { - "id": "PVTF_8", + "id": "PVTF_7", "dataType": "MILESTONE", "name": "Milestone" }, { - "id": "PVTF_9", + "id": "PVTF_8", "dataType": "TEXT", "name": "Text" }, { - "id": "PVTF_10", + "id": "PVTF_9", "dataType": "NUMBER", "name": "Number" }, { - "id": "PVTF_11", + "id": "PVTF_10", "dataType": "DATE", "name": "Date" }, @@ -211,21 +206,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 1, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -280,21 +275,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 2, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -331,7 +326,7 @@ "content-encoding": "gzip", "content-security-policy": "default-src 'none'", "content-type": "application/json; charset=utf-8", - "date": "Mon, 24 Oct 2022 17:29:57 GMT", + "date": "Sun, 29 Jan 2023 18:50:06 GMT", "referrer-policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "server": "GitHub.com", "strict-transport-security": "max-age=31536000; includeSubdomains; preload", @@ -340,12 +335,12 @@ "x-content-type-options": "nosniff", "x-frame-options": "deny", "x-github-media-type": "github.v3; format=json", - "x-github-request-id": "E569:14B4:55D9FFC:5854163:6356CB95", + "x-github-request-id": "E229:6763:300800:3240FE:63D6BFDE", "x-ratelimit-limit": "5000", - "x-ratelimit-remaining": "4809", - "x-ratelimit-reset": "1666635908", + "x-ratelimit-remaining": "4812", + "x-ratelimit-reset": "1675021300", "x-ratelimit-resource": "graphql", - "x-ratelimit-used": "191", + "x-ratelimit-used": "188", "x-xss-protection": "0" }, "data": { @@ -398,36 +393,31 @@ }, { "id": "PVTF_5", - "dataType": "TRACKS", - "name": "Tracks" - }, - { - "id": "PVTF_6", "dataType": "REVIEWERS", "name": "Reviewers" }, { - "id": "PVTF_7", + "id": "PVTF_6", "dataType": "REPOSITORY", "name": "Repository" }, { - "id": "PVTF_8", + "id": "PVTF_7", "dataType": "MILESTONE", "name": "Milestone" }, { - "id": "PVTF_9", + "id": "PVTF_8", "dataType": "TEXT", "name": "Text" }, { - "id": "PVTF_10", + "id": "PVTF_9", "dataType": "NUMBER", "name": "Number" }, { - "id": "PVTF_11", + "id": "PVTF_10", "dataType": "DATE", "name": "Date" }, @@ -527,21 +517,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 1, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -596,21 +586,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 2, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { diff --git a/test/recorded/api.items.list-then-api.items.add-then-api.items.get-by-content-id/fixtures.json b/test/recorded/api.items.list-then-api.items.add-then-api.items.get-by-content-id/fixtures.json index 85d31f71..743dcb6f 100644 --- a/test/recorded/api.items.list-then-api.items.add-then-api.items.get-by-content-id/fixtures.json +++ b/test/recorded/api.items.list-then-api.items.add-then-api.items.get-by-content-id/fixtures.json @@ -15,7 +15,7 @@ "content-encoding": "gzip", "content-security-policy": "default-src 'none'", "content-type": "application/json; charset=utf-8", - "date": "Mon, 24 Oct 2022 17:30:12 GMT", + "date": "Sun, 29 Jan 2023 18:50:19 GMT", "referrer-policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "server": "GitHub.com", "strict-transport-security": "max-age=31536000; includeSubdomains; preload", @@ -24,12 +24,12 @@ "x-content-type-options": "nosniff", "x-frame-options": "deny", "x-github-media-type": "github.v3; format=json", - "x-github-request-id": "E57D:97C9:2D3079:2E5825:6356CBA4", + "x-github-request-id": "E237:1F3F:33BA0E:35F264:63D6BFEB", "x-ratelimit-limit": "5000", - "x-ratelimit-remaining": "4799", - "x-ratelimit-reset": "1666635908", + "x-ratelimit-remaining": "4802", + "x-ratelimit-reset": "1675021300", "x-ratelimit-resource": "graphql", - "x-ratelimit-used": "201", + "x-ratelimit-used": "198", "x-xss-protection": "0" }, "data": { @@ -82,36 +82,31 @@ }, { "id": "PVTF_5", - "dataType": "TRACKS", - "name": "Tracks" - }, - { - "id": "PVTF_6", "dataType": "REVIEWERS", "name": "Reviewers" }, { - "id": "PVTF_7", + "id": "PVTF_6", "dataType": "REPOSITORY", "name": "Repository" }, { - "id": "PVTF_8", + "id": "PVTF_7", "dataType": "MILESTONE", "name": "Milestone" }, { - "id": "PVTF_9", + "id": "PVTF_8", "dataType": "TEXT", "name": "Text" }, { - "id": "PVTF_10", + "id": "PVTF_9", "dataType": "NUMBER", "name": "Number" }, { - "id": "PVTF_11", + "id": "PVTF_10", "dataType": "DATE", "name": "Date" }, @@ -211,21 +206,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 1, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -262,7 +257,7 @@ "content-encoding": "gzip", "content-security-policy": "default-src 'none'", "content-type": "application/json; charset=utf-8", - "date": "Mon, 24 Oct 2022 17:30:14 GMT", + "date": "Sun, 29 Jan 2023 18:50:20 GMT", "referrer-policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "server": "GitHub.com", "strict-transport-security": "max-age=31536000; includeSubdomains; preload", @@ -271,12 +266,12 @@ "x-content-type-options": "nosniff", "x-frame-options": "deny", "x-github-media-type": "github.v3; format=json", - "x-github-request-id": "E57E:30A5:4088CB:4223F6:6356CBA5", + "x-github-request-id": "E238:54E3:39717B:3BAAFC:63D6BFEC", "x-ratelimit-limit": "5000", - "x-ratelimit-remaining": "4798", - "x-ratelimit-reset": "1666635908", + "x-ratelimit-remaining": "4801", + "x-ratelimit-reset": "1675021300", "x-ratelimit-resource": "graphql", - "x-ratelimit-used": "202", + "x-ratelimit-used": "199", "x-xss-protection": "0" }, "data": { @@ -343,7 +338,7 @@ "content-encoding": "gzip", "content-security-policy": "default-src 'none'", "content-type": "application/json; charset=utf-8", - "date": "Mon, 24 Oct 2022 17:30:15 GMT", + "date": "Sun, 29 Jan 2023 18:50:21 GMT", "referrer-policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "server": "GitHub.com", "strict-transport-security": "max-age=31536000; includeSubdomains; preload", @@ -352,12 +347,12 @@ "x-content-type-options": "nosniff", "x-frame-options": "deny", "x-github-media-type": "github.v3; format=json", - "x-github-request-id": "E580:97C9:2D3418:2E5BC1:6356CBA6", + "x-github-request-id": "E239:333C:33DA8C:3613FF:63D6BFED", "x-ratelimit-limit": "5000", - "x-ratelimit-remaining": "4797", - "x-ratelimit-reset": "1666635908", + "x-ratelimit-remaining": "4800", + "x-ratelimit-reset": "1675021300", "x-ratelimit-resource": "graphql", - "x-ratelimit-used": "203", + "x-ratelimit-used": "200", "x-xss-protection": "0" }, "data": { diff --git a/test/recorded/api.items.list-then-api.items.remove-clears-cache/fixtures.json b/test/recorded/api.items.list-then-api.items.remove-clears-cache/fixtures.json index 73adaaaa..1200bffd 100644 --- a/test/recorded/api.items.list-then-api.items.remove-clears-cache/fixtures.json +++ b/test/recorded/api.items.list-then-api.items.remove-clears-cache/fixtures.json @@ -15,7 +15,7 @@ "content-encoding": "gzip", "content-security-policy": "default-src 'none'", "content-type": "application/json; charset=utf-8", - "date": "Mon, 24 Oct 2022 17:30:28 GMT", + "date": "Sun, 29 Jan 2023 18:50:33 GMT", "referrer-policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "server": "GitHub.com", "strict-transport-security": "max-age=31536000; includeSubdomains; preload", @@ -24,12 +24,12 @@ "x-content-type-options": "nosniff", "x-frame-options": "deny", "x-github-media-type": "github.v3; format=json", - "x-github-request-id": "E58F:6582:ABDAF15:B028427:6356CBB4", + "x-github-request-id": "E245:9E04:3CAA7B:3EE3C5:63D6BFF9", "x-ratelimit-limit": "5000", - "x-ratelimit-remaining": "4787", - "x-ratelimit-reset": "1666635908", + "x-ratelimit-remaining": "4790", + "x-ratelimit-reset": "1675021300", "x-ratelimit-resource": "graphql", - "x-ratelimit-used": "213", + "x-ratelimit-used": "210", "x-xss-protection": "0" }, "data": { @@ -82,36 +82,31 @@ }, { "id": "PVTF_5", - "dataType": "TRACKS", - "name": "Tracks" - }, - { - "id": "PVTF_6", "dataType": "REVIEWERS", "name": "Reviewers" }, { - "id": "PVTF_7", + "id": "PVTF_6", "dataType": "REPOSITORY", "name": "Repository" }, { - "id": "PVTF_8", + "id": "PVTF_7", "dataType": "MILESTONE", "name": "Milestone" }, { - "id": "PVTF_9", + "id": "PVTF_8", "dataType": "TEXT", "name": "Text" }, { - "id": "PVTF_10", + "id": "PVTF_9", "dataType": "NUMBER", "name": "Number" }, { - "id": "PVTF_11", + "id": "PVTF_10", "dataType": "DATE", "name": "Date" }, @@ -211,21 +206,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 1, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -261,7 +256,7 @@ "content-encoding": "gzip", "content-security-policy": "default-src 'none'", "content-type": "application/json; charset=utf-8", - "date": "Mon, 24 Oct 2022 17:30:29 GMT", + "date": "Sun, 29 Jan 2023 18:50:34 GMT", "referrer-policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "server": "GitHub.com", "strict-transport-security": "max-age=31536000; includeSubdomains; preload", @@ -270,12 +265,12 @@ "x-content-type-options": "nosniff", "x-frame-options": "deny", "x-github-media-type": "github.v3; format=json", - "x-github-request-id": "E590:0C72:B3C6BC6:B81519E:6356CBB5", + "x-github-request-id": "E246:5DBC:3879BA:3AB3FB:63D6BFFA", "x-ratelimit-limit": "5000", - "x-ratelimit-remaining": "4786", - "x-ratelimit-reset": "1666635908", + "x-ratelimit-remaining": "4789", + "x-ratelimit-reset": "1675021300", "x-ratelimit-resource": "graphql", - "x-ratelimit-used": "214", + "x-ratelimit-used": "211", "x-xss-protection": "0" }, "data": { @@ -322,21 +317,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 1, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -369,7 +364,7 @@ "content-encoding": "gzip", "content-security-policy": "default-src 'none'", "content-type": "application/json; charset=utf-8", - "date": "Mon, 24 Oct 2022 17:30:30 GMT", + "date": "Sun, 29 Jan 2023 18:50:35 GMT", "referrer-policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "server": "GitHub.com", "strict-transport-security": "max-age=31536000; includeSubdomains; preload", @@ -378,12 +373,12 @@ "x-content-type-options": "nosniff", "x-frame-options": "deny", "x-github-media-type": "github.v3; format=json", - "x-github-request-id": "E591:97C9:2D50C5:2E7936:6356CBB6", + "x-github-request-id": "E247:0782:3BCEDF:3E0889:63D6BFFB", "x-ratelimit-limit": "5000", - "x-ratelimit-remaining": "4785", - "x-ratelimit-reset": "1666635908", + "x-ratelimit-remaining": "4788", + "x-ratelimit-reset": "1675021300", "x-ratelimit-resource": "graphql", - "x-ratelimit-used": "215", + "x-ratelimit-used": "212", "x-xss-protection": "0" }, "data": { @@ -410,7 +405,7 @@ "content-encoding": "gzip", "content-security-policy": "default-src 'none'", "content-type": "application/json; charset=utf-8", - "date": "Mon, 24 Oct 2022 17:30:31 GMT", + "date": "Sun, 29 Jan 2023 18:50:36 GMT", "referrer-policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "server": "GitHub.com", "strict-transport-security": "max-age=31536000; includeSubdomains; preload", @@ -419,12 +414,12 @@ "x-content-type-options": "nosniff", "x-frame-options": "deny", "x-github-media-type": "github.v3; format=json", - "x-github-request-id": "E592:30A5:40A9BC:4245CD:6356CBB7", + "x-github-request-id": "E248:8CE2:326150:349C14:63D6BFFC", "x-ratelimit-limit": "5000", - "x-ratelimit-remaining": "4784", - "x-ratelimit-reset": "1666635908", + "x-ratelimit-remaining": "4787", + "x-ratelimit-reset": "1675021300", "x-ratelimit-resource": "graphql", - "x-ratelimit-used": "216", + "x-ratelimit-used": "213", "x-xss-protection": "0" }, "data": { @@ -443,7 +438,7 @@ "column": 5 } ], - "message": "Could not resolve to a node with the global id of 'PVTI_lADOBYMIeM4ADzd0zgDFgro'." + "message": "Could not resolve to a node with the global id of 'PVTI_lADOBYMIeM4ADzd0zgEkM38'." } ] } diff --git a/test/recorded/api.items.list-then-api.items.remove-not-found/fixtures.json b/test/recorded/api.items.list-then-api.items.remove-not-found/fixtures.json index f6980bed..147be63d 100644 --- a/test/recorded/api.items.list-then-api.items.remove-not-found/fixtures.json +++ b/test/recorded/api.items.list-then-api.items.remove-not-found/fixtures.json @@ -15,7 +15,7 @@ "content-encoding": "gzip", "content-security-policy": "default-src 'none'", "content-type": "application/json; charset=utf-8", - "date": "Mon, 24 Oct 2022 17:30:41 GMT", + "date": "Sun, 29 Jan 2023 18:50:44 GMT", "referrer-policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "server": "GitHub.com", "strict-transport-security": "max-age=31536000; includeSubdomains; preload", @@ -24,12 +24,12 @@ "x-content-type-options": "nosniff", "x-frame-options": "deny", "x-github-media-type": "github.v3; format=json", - "x-github-request-id": "E59A:14B4:55DF46F:58597C3:6356CBC0", + "x-github-request-id": "E250:6763:302857:3262E2:63D6C004", "x-ratelimit-limit": "5000", - "x-ratelimit-remaining": "4778", - "x-ratelimit-reset": "1666635908", + "x-ratelimit-remaining": "4781", + "x-ratelimit-reset": "1675021300", "x-ratelimit-resource": "graphql", - "x-ratelimit-used": "222", + "x-ratelimit-used": "219", "x-xss-protection": "0" }, "data": { @@ -82,36 +82,31 @@ }, { "id": "PVTF_5", - "dataType": "TRACKS", - "name": "Tracks" - }, - { - "id": "PVTF_6", "dataType": "REVIEWERS", "name": "Reviewers" }, { - "id": "PVTF_7", + "id": "PVTF_6", "dataType": "REPOSITORY", "name": "Repository" }, { - "id": "PVTF_8", + "id": "PVTF_7", "dataType": "MILESTONE", "name": "Milestone" }, { - "id": "PVTF_9", + "id": "PVTF_8", "dataType": "TEXT", "name": "Text" }, { - "id": "PVTF_10", + "id": "PVTF_9", "dataType": "NUMBER", "name": "Number" }, { - "id": "PVTF_11", + "id": "PVTF_10", "dataType": "DATE", "name": "Date" }, @@ -211,21 +206,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 1, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -261,7 +256,7 @@ "content-encoding": "gzip", "content-security-policy": "default-src 'none'", "content-type": "application/json; charset=utf-8", - "date": "Mon, 24 Oct 2022 17:30:41 GMT", + "date": "Sun, 29 Jan 2023 18:50:45 GMT", "referrer-policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "server": "GitHub.com", "strict-transport-security": "max-age=31536000; includeSubdomains; preload", @@ -270,12 +265,12 @@ "x-content-type-options": "nosniff", "x-frame-options": "deny", "x-github-media-type": "github.v3; format=json", - "x-github-request-id": "E59B:0DBE:38D240D:3A8BF38:6356CBC1", + "x-github-request-id": "E251:1726:3BC7EF:3E04A4:63D6C005", "x-ratelimit-limit": "5000", - "x-ratelimit-remaining": "4777", - "x-ratelimit-reset": "1666635908", + "x-ratelimit-remaining": "4780", + "x-ratelimit-reset": "1675021300", "x-ratelimit-resource": "graphql", - "x-ratelimit-used": "223", + "x-ratelimit-used": "220", "x-xss-protection": "0" }, "data": { diff --git a/test/recorded/api.items.list-then-api.items.update/fixtures.json b/test/recorded/api.items.list-then-api.items.update/fixtures.json index 11ecee2e..74b77dc5 100644 --- a/test/recorded/api.items.list-then-api.items.update/fixtures.json +++ b/test/recorded/api.items.list-then-api.items.update/fixtures.json @@ -15,7 +15,7 @@ "content-encoding": "gzip", "content-security-policy": "default-src 'none'", "content-type": "application/json; charset=utf-8", - "date": "Mon, 24 Oct 2022 17:30:53 GMT", + "date": "Sun, 29 Jan 2023 18:50:55 GMT", "referrer-policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "server": "GitHub.com", "strict-transport-security": "max-age=31536000; includeSubdomains; preload", @@ -24,12 +24,12 @@ "x-content-type-options": "nosniff", "x-frame-options": "deny", "x-github-media-type": "github.v3; format=json", - "x-github-request-id": "E5A7:0C72:B3C9A4E:B81811A:6356CBCD", + "x-github-request-id": "E25E:54E3:39929E:3BCD9B:63D6C00F", "x-ratelimit-limit": "5000", - "x-ratelimit-remaining": "4769", - "x-ratelimit-reset": "1666635908", + "x-ratelimit-remaining": "4772", + "x-ratelimit-reset": "1675021300", "x-ratelimit-resource": "graphql", - "x-ratelimit-used": "231", + "x-ratelimit-used": "228", "x-xss-protection": "0" }, "data": { @@ -82,36 +82,31 @@ }, { "id": "PVTF_5", - "dataType": "TRACKS", - "name": "Tracks" - }, - { - "id": "PVTF_6", "dataType": "REVIEWERS", "name": "Reviewers" }, { - "id": "PVTF_7", + "id": "PVTF_6", "dataType": "REPOSITORY", "name": "Repository" }, { - "id": "PVTF_8", + "id": "PVTF_7", "dataType": "MILESTONE", "name": "Milestone" }, { - "id": "PVTF_9", + "id": "PVTF_8", "dataType": "TEXT", "name": "Text" }, { - "id": "PVTF_10", + "id": "PVTF_9", "dataType": "NUMBER", "name": "Number" }, { - "id": "PVTF_11", + "id": "PVTF_10", "dataType": "DATE", "name": "Date" }, @@ -211,21 +206,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 1, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -261,7 +256,7 @@ "content-encoding": "gzip", "content-security-policy": "default-src 'none'", "content-type": "application/json; charset=utf-8", - "date": "Mon, 24 Oct 2022 17:30:54 GMT", + "date": "Sun, 29 Jan 2023 18:50:56 GMT", "referrer-policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "server": "GitHub.com", "strict-transport-security": "max-age=31536000; includeSubdomains; preload", @@ -270,12 +265,12 @@ "x-content-type-options": "nosniff", "x-frame-options": "deny", "x-github-media-type": "github.v3; format=json", - "x-github-request-id": "E5A8:3CCF:ADF5CF2:B244490:6356CBCE", + "x-github-request-id": "E25F:6763:303266:326D75:63D6C010", "x-ratelimit-limit": "5000", - "x-ratelimit-remaining": "4768", - "x-ratelimit-reset": "1666635908", + "x-ratelimit-remaining": "4771", + "x-ratelimit-reset": "1675021300", "x-ratelimit-resource": "graphql", - "x-ratelimit-used": "232", + "x-ratelimit-used": "229", "x-xss-protection": "0" }, "data": { @@ -322,21 +317,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 1, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -354,7 +349,7 @@ } }, { - "query": "\n mutation setItemProperties($projectId: ID!, $itemId: ID!) {\n \n text: updateProjectV2ItemFieldValue(input: {projectId: $projectId, itemId: $itemId, fieldId: \"PVTF_lADOBYMIeM4ADzd0zgCMLPg\", value: {text: \"new text\"}}) {\n projectV2Item { \n id\n createdAt\n type\n \n content {\n ... on DraftIssue {\n id\n title\n createdAt\n updatedAt\n author: creator {\n login\n }\n assignees(first: 10) {\n nodes {\n login\n }\n }\n }\n ... on Issue {\n \n id\n databaseId\n number\n title\n url\n createdAt\n author {\n login\n }\n assignees(first: 10) {\n nodes {\n login\n }\n }\n labels(first: 10) {\n nodes {\n name\n }\n }\n closed\n milestone {\n number\n title\n state\n }\n repository {\n name\n }\n\n }\n ... on PullRequest {\n \n id\n databaseId\n number\n title\n url\n createdAt\n author {\n login\n }\n assignees(first: 10) {\n nodes {\n login\n }\n }\n labels(first: 10) {\n nodes {\n name\n }\n }\n closed\n milestone {\n number\n title\n state\n }\n repository {\n name\n }\n\n merged\n }\n }\n\n fieldValues(first: 20) {\n nodes {\n __typename\n ... on ProjectV2ItemFieldDateValue {\n date\n field {\n ... on ProjectV2Field {\n id\n }\n }\n }\n ... on ProjectV2ItemFieldIterationValue {\n title\n iterationId\n startDate\n duration\n field {\n ... on ProjectV2IterationField {\n id\n }\n }\n }\n ... on ProjectV2ItemFieldNumberValue {\n number\n field {\n ... on ProjectV2Field {\n id\n }\n }\n }\n ... on ProjectV2ItemFieldSingleSelectValue {\n optionId\n field {\n ... on ProjectV2SingleSelectField {\n id\n }\n }\n }\n ... on ProjectV2ItemFieldTextValue {\n text\n field {\n ... on ProjectV2Field {\n id\n }\n }\n }\n }\n }\n }\n }\n \n }\n ", + "query": "\n mutation setItemProperties($projectId: ID!, $itemId: ID!) {\n \n text: updateProjectV2ItemFieldValue(input: {projectId: $projectId, itemId: $itemId, fieldId: \"PVTF_lADOBYMIeM4ADzd0zgCMLPg\", value: {text: \"new text\"}}) {\n projectV2Item { \n id\n createdAt\n type\n \n content {\n ... on DraftIssue {\n id\n title\n createdAt\n updatedAt\n author: creator {\n login\n }\n assignees(first: 10) {\n nodes {\n login\n }\n }\n }\n ... on Issue {\n \n id\n databaseId\n number\n title\n url\n createdAt\n author {\n login\n }\n assignees(first: 10) {\n nodes {\n login\n }\n }\n labels(first: 10) {\n nodes {\n name\n }\n }\n closed\n milestone {\n number\n title\n state\n }\n repository {\n name\n }\n\n }\n ... on PullRequest {\n \n id\n databaseId\n number\n title\n url\n createdAt\n author {\n login\n }\n assignees(first: 10) {\n nodes {\n login\n }\n }\n labels(first: 10) {\n nodes {\n name\n }\n }\n closed\n milestone {\n number\n title\n state\n }\n repository {\n name\n }\n\n merged\n }\n }\n\n fieldValues(first: 20) {\n nodes {\n __typename\n ... on ProjectV2ItemFieldDateValue {\n date\n field {\n ... on ProjectV2Field {\n id\n }\n }\n }\n ... on ProjectV2ItemFieldIterationValue {\n title\n iterationId\n startDate\n duration\n field {\n ... on ProjectV2IterationField {\n id\n }\n }\n }\n ... on ProjectV2ItemFieldNumberValue {\n number\n field {\n ... on ProjectV2Field {\n id\n }\n }\n }\n ... on ProjectV2ItemFieldSingleSelectValue {\n optionId\n field {\n ... on ProjectV2SingleSelectField {\n id\n }\n }\n }\n ... on ProjectV2ItemFieldTextValue {\n text\n field {\n ... on ProjectV2Field {\n id\n }\n }\n }\n }\n }\n }\n }\n \n }\n ", "variables": { "projectId": "PVT_1", "itemId": "PVTI_1" @@ -369,7 +364,7 @@ "content-encoding": "gzip", "content-security-policy": "default-src 'none'", "content-type": "application/json; charset=utf-8", - "date": "Mon, 24 Oct 2022 17:30:56 GMT", + "date": "Sun, 29 Jan 2023 18:50:57 GMT", "referrer-policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "server": "GitHub.com", "strict-transport-security": "max-age=31536000; includeSubdomains; preload", @@ -378,12 +373,12 @@ "x-content-type-options": "nosniff", "x-frame-options": "deny", "x-github-media-type": "github.v3; format=json", - "x-github-request-id": "E5AA:0D4A:AFA99E0:B3F2F02:6356CBCF", + "x-github-request-id": "E260:3763:38F315:3B2D21:63D6C011", "x-ratelimit-limit": "5000", - "x-ratelimit-remaining": "4767", - "x-ratelimit-reset": "1666635908", + "x-ratelimit-remaining": "4770", + "x-ratelimit-reset": "1675021300", "x-ratelimit-resource": "graphql", - "x-ratelimit-used": "233", + "x-ratelimit-used": "230", "x-xss-protection": "0" }, "data": { @@ -431,21 +426,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "new text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 1, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { diff --git a/test/recorded/api.items.list-with-fields-using-wrong-capitalization/fixtures.json b/test/recorded/api.items.list-with-fields-using-wrong-capitalization/fixtures.json index b4ce10fb..d701145d 100644 --- a/test/recorded/api.items.list-with-fields-using-wrong-capitalization/fixtures.json +++ b/test/recorded/api.items.list-with-fields-using-wrong-capitalization/fixtures.json @@ -15,7 +15,7 @@ "content-encoding": "gzip", "content-security-policy": "default-src 'none'", "content-type": "application/json; charset=utf-8", - "date": "Mon, 24 Oct 2022 17:31:11 GMT", + "date": "Sun, 29 Jan 2023 18:51:11 GMT", "referrer-policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "server": "GitHub.com", "strict-transport-security": "max-age=31536000; includeSubdomains; preload", @@ -24,12 +24,12 @@ "x-content-type-options": "nosniff", "x-frame-options": "deny", "x-github-media-type": "github.v3; format=json", - "x-github-request-id": "E5B9:9797:33FA376:3589F50:6356CBDE", + "x-github-request-id": "E272:1726:3BE31A:3E20E9:63D6C01E", "x-ratelimit-limit": "5000", - "x-ratelimit-remaining": "4757", - "x-ratelimit-reset": "1666635908", + "x-ratelimit-remaining": "4760", + "x-ratelimit-reset": "1675021300", "x-ratelimit-resource": "graphql", - "x-ratelimit-used": "243", + "x-ratelimit-used": "240", "x-xss-protection": "0" }, "data": { @@ -82,36 +82,31 @@ }, { "id": "PVTF_5", - "dataType": "TRACKS", - "name": "Tracks" - }, - { - "id": "PVTF_6", "dataType": "REVIEWERS", "name": "Reviewers" }, { - "id": "PVTF_7", + "id": "PVTF_6", "dataType": "REPOSITORY", "name": "Repository" }, { - "id": "PVTF_8", + "id": "PVTF_7", "dataType": "MILESTONE", "name": "Milestone" }, { - "id": "PVTF_9", + "id": "PVTF_8", "dataType": "TEXT", "name": "Text" }, { - "id": "PVTF_10", + "id": "PVTF_9", "dataType": "NUMBER", "name": "Number" }, { - "id": "PVTF_11", + "id": "PVTF_10", "dataType": "DATE", "name": "Date" }, @@ -211,21 +206,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 1, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -280,21 +275,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 2, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { diff --git a/test/recorded/api.items.list-with-match-field-name-option/fixtures.json b/test/recorded/api.items.list-with-match-field-name-option/fixtures.json index 2f747a60..852bffa4 100644 --- a/test/recorded/api.items.list-with-match-field-name-option/fixtures.json +++ b/test/recorded/api.items.list-with-match-field-name-option/fixtures.json @@ -15,7 +15,7 @@ "content-encoding": "gzip", "content-security-policy": "default-src 'none'", "content-type": "application/json; charset=utf-8", - "date": "Mon, 24 Oct 2022 17:31:29 GMT", + "date": "Sun, 29 Jan 2023 18:51:25 GMT", "referrer-policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "server": "GitHub.com", "strict-transport-security": "max-age=31536000; includeSubdomains; preload", @@ -24,12 +24,12 @@ "x-content-type-options": "nosniff", "x-frame-options": "deny", "x-github-media-type": "github.v3; format=json", - "x-github-request-id": "E5C8:3CCF:ADFA2C5:B248BD0:6356CBF0", + "x-github-request-id": "E287:3E1B:3B04E0:3D4129:63D6C02D", "x-ratelimit-limit": "5000", - "x-ratelimit-remaining": "4745", - "x-ratelimit-reset": "1666635908", + "x-ratelimit-remaining": "4748", + "x-ratelimit-reset": "1675021300", "x-ratelimit-resource": "graphql", - "x-ratelimit-used": "255", + "x-ratelimit-used": "252", "x-xss-protection": "0" }, "data": { @@ -82,36 +82,31 @@ }, { "id": "PVTF_5", - "dataType": "TRACKS", - "name": "Tracks" - }, - { - "id": "PVTF_6", "dataType": "REVIEWERS", "name": "Reviewers" }, { - "id": "PVTF_7", + "id": "PVTF_6", "dataType": "REPOSITORY", "name": "Repository" }, { - "id": "PVTF_8", + "id": "PVTF_7", "dataType": "MILESTONE", "name": "Milestone" }, { - "id": "PVTF_9", + "id": "PVTF_8", "dataType": "TEXT", "name": "Text" }, { - "id": "PVTF_10", + "id": "PVTF_9", "dataType": "NUMBER", "name": "Number" }, { - "id": "PVTF_11", + "id": "PVTF_10", "dataType": "DATE", "name": "Date" }, @@ -211,21 +206,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 1, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -280,21 +275,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 2, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { diff --git a/test/recorded/api.items.list-with-pagination/fixtures.json b/test/recorded/api.items.list-with-pagination/fixtures.json index b130cf30..ff068435 100644 --- a/test/recorded/api.items.list-with-pagination/fixtures.json +++ b/test/recorded/api.items.list-with-pagination/fixtures.json @@ -15,7 +15,7 @@ "content-encoding": "gzip", "content-security-policy": "default-src 'none'", "content-type": "application/json; charset=utf-8", - "date": "Sun, 14 Aug 2022 05:24:50 GMT", + "date": "Sun, 29 Jan 2023 19:10:43 GMT", "referrer-policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "server": "GitHub.com", "strict-transport-security": "max-age=31536000; includeSubdomains; preload", @@ -24,12 +24,12 @@ "x-content-type-options": "nosniff", "x-frame-options": "deny", "x-github-media-type": "github.v3; format=json", - "x-github-request-id": "FD77:22C8:54C05D:572065:62F88720", + "x-github-request-id": "E6A0:54E3:3E7DCC:40E80F:63D6C4B2", "x-ratelimit-limit": "5000", - "x-ratelimit-remaining": "4399", - "x-ratelimit-reset": "1660457292", + "x-ratelimit-remaining": "4143", + "x-ratelimit-reset": "1675021300", "x-ratelimit-resource": "graphql", - "x-ratelimit-used": "601", + "x-ratelimit-used": "857", "x-xss-protection": "0" }, "data": { @@ -82,36 +82,31 @@ }, { "id": "PVTF_5", - "dataType": "TASKS", - "name": "Tracks" - }, - { - "id": "PVTF_6", "dataType": "REVIEWERS", "name": "Reviewers" }, { - "id": "PVTF_7", + "id": "PVTF_6", "dataType": "REPOSITORY", "name": "Repository" }, { - "id": "PVTF_8", + "id": "PVTF_7", "dataType": "MILESTONE", "name": "Milestone" }, { - "id": "PVTF_9", + "id": "PVTF_8", "dataType": "TEXT", "name": "Text" }, { - "id": "PVTF_10", + "id": "PVTF_9", "dataType": "NUMBER", "name": "Number" }, { - "id": "PVTF_11", + "id": "PVTF_10", "dataType": "DATE", "name": "Date" }, @@ -139,14 +134,13 @@ "dataType": "ITERATION", "name": "Iteration", "configuration": { - "iterations": [ + "iterations": [], + "completedIterations": [ { "title": "Iteration 3", "duration": 14, "startDate": "2022-08-05" - } - ], - "completedIterations": [ + }, { "title": "Iteration 2", "duration": 14, @@ -212,21 +206,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 1, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -281,21 +275,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 2, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -350,21 +344,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 3, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -419,21 +413,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 4, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -488,21 +482,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 5, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -557,21 +551,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 6, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -626,21 +620,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 7, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -695,21 +689,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 8, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -764,21 +758,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 9, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -833,21 +827,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 10, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -902,21 +896,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 11, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -971,21 +965,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 12, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -1040,21 +1034,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 13, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -1109,21 +1103,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 14, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -1178,21 +1172,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 15, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -1247,21 +1241,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 16, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -1316,21 +1310,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 17, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -1385,21 +1379,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 18, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -1454,21 +1448,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 19, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -1523,21 +1517,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 20, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -1592,21 +1586,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 21, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -1661,21 +1655,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 22, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -1730,21 +1724,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 23, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -1799,21 +1793,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 24, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -1868,21 +1862,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 25, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -1937,21 +1931,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 26, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -2006,21 +2000,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 27, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -2075,21 +2069,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 28, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -2144,21 +2138,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 29, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -2213,21 +2207,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 30, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -2282,21 +2276,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 31, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -2351,21 +2345,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 32, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -2420,21 +2414,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 33, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -2489,21 +2483,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 34, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -2558,21 +2552,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 35, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -2627,21 +2621,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 36, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -2696,21 +2690,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 37, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -2765,21 +2759,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 38, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -2834,21 +2828,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 39, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -2903,21 +2897,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 40, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -2972,21 +2966,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 41, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -3041,21 +3035,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 42, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -3110,21 +3104,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 43, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -3179,21 +3173,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 44, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -3248,21 +3242,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 45, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -3317,21 +3311,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 46, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -3386,21 +3380,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 47, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -3455,21 +3449,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 48, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -3524,21 +3518,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 49, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -3593,21 +3587,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 50, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -3662,21 +3656,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 51, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -3731,21 +3725,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 52, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -3800,21 +3794,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 53, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -3869,21 +3863,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 54, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -3938,21 +3932,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 55, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -4007,21 +4001,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 56, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -4076,21 +4070,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 57, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -4145,21 +4139,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 58, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -4214,21 +4208,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 59, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -4283,21 +4277,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 60, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -4352,21 +4346,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 61, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -4421,21 +4415,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 62, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -4490,21 +4484,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 63, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -4559,21 +4553,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 64, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -4628,21 +4622,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 65, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -4697,21 +4691,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 66, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -4766,21 +4760,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 67, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -4835,21 +4829,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 68, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -4904,21 +4898,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 69, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -4973,21 +4967,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 70, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -5042,21 +5036,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 71, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -5111,21 +5105,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 72, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -5180,21 +5174,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 73, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -5249,21 +5243,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 74, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -5318,21 +5312,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 75, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -5387,21 +5381,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 76, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -5456,21 +5450,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 77, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -5525,21 +5519,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 78, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -5594,21 +5588,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 79, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -5663,21 +5657,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 80, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -5732,21 +5726,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 81, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -5801,21 +5795,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 82, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -5870,21 +5864,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 83, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -5939,21 +5933,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 84, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -6008,21 +6002,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 85, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -6077,21 +6071,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 86, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -6146,21 +6140,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 87, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -6215,21 +6209,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 88, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -6284,21 +6278,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 89, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -6353,21 +6347,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 90, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -6422,21 +6416,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 91, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -6491,21 +6485,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 92, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -6560,21 +6554,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 93, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -6629,21 +6623,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 94, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -6698,21 +6692,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 95, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -6767,21 +6761,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 96, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -6836,21 +6830,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 97, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -6905,21 +6899,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 98, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -6974,21 +6968,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 99, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -7043,21 +7037,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 100, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -7096,7 +7090,7 @@ "content-encoding": "gzip", "content-security-policy": "default-src 'none'", "content-type": "application/json; charset=utf-8", - "date": "Sun, 14 Aug 2022 05:24:52 GMT", + "date": "Sun, 29 Jan 2023 19:10:45 GMT", "referrer-policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "server": "GitHub.com", "strict-transport-security": "max-age=31536000; includeSubdomains; preload", @@ -7105,12 +7099,12 @@ "x-content-type-options": "nosniff", "x-frame-options": "deny", "x-github-media-type": "github.v3; format=json", - "x-github-request-id": "FD78:766F:427252:44D021:62F88722", + "x-github-request-id": "E6A1:0782:41283E:43920E:63D6C4B3", "x-ratelimit-limit": "5000", - "x-ratelimit-remaining": "4397", - "x-ratelimit-reset": "1660457292", + "x-ratelimit-remaining": "4141", + "x-ratelimit-reset": "1675021300", "x-ratelimit-resource": "graphql", - "x-ratelimit-used": "603", + "x-ratelimit-used": "859", "x-xss-protection": "0" }, "data": { @@ -7165,21 +7159,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 101, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -7234,21 +7228,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 102, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -7303,21 +7297,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 103, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -7372,21 +7366,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 104, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -7441,21 +7435,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 105, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -7510,21 +7504,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 106, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -7579,21 +7573,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 107, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -7648,21 +7642,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 108, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -7717,21 +7711,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 109, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -7786,21 +7780,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 110, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -7855,21 +7849,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 111, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -7924,21 +7918,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 112, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -7993,21 +7987,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 113, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -8062,21 +8056,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 114, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -8131,21 +8125,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 115, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -8200,21 +8194,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 116, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -8269,21 +8263,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 117, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -8338,21 +8332,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 118, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -8407,21 +8401,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 119, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -8476,21 +8470,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 120, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -8545,21 +8539,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 121, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -8614,21 +8608,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 122, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -8683,21 +8677,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 123, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -8752,21 +8746,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 124, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -8821,21 +8815,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 125, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -8890,21 +8884,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 126, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -8959,21 +8953,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 127, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -9028,21 +9022,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 128, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -9097,21 +9091,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 129, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -9166,21 +9160,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 130, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -9235,21 +9229,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 131, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -9304,21 +9298,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 132, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -9373,21 +9367,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 133, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -9442,21 +9436,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 134, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -9511,21 +9505,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 135, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -9580,21 +9574,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 136, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -9649,21 +9643,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 137, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -9718,21 +9712,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 138, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -9787,21 +9781,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 139, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -9856,21 +9850,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 140, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -9925,21 +9919,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 141, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -9994,21 +9988,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 142, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -10063,21 +10057,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 143, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -10132,21 +10126,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 144, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -10201,21 +10195,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 145, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -10270,21 +10264,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 146, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -10339,21 +10333,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 147, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -10408,21 +10402,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 148, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -10477,21 +10471,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 149, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -10546,21 +10540,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 150, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -10615,21 +10609,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 151, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -10684,21 +10678,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 152, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -10753,21 +10747,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 153, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -10822,21 +10816,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 154, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -10891,21 +10885,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 155, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -10960,21 +10954,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 156, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -11029,21 +11023,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 157, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -11098,21 +11092,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 158, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -11167,21 +11161,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 159, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -11236,21 +11230,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 160, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -11305,21 +11299,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 161, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -11374,21 +11368,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 162, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -11443,21 +11437,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 163, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -11512,21 +11506,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 164, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -11581,21 +11575,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 165, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -11650,21 +11644,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 166, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -11719,21 +11713,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 167, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -11788,21 +11782,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 168, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -11857,21 +11851,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 169, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -11926,21 +11920,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 170, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -11995,21 +11989,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 171, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -12064,21 +12058,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 172, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -12133,21 +12127,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 173, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -12202,21 +12196,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 174, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -12271,21 +12265,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 175, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -12340,21 +12334,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 176, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -12409,21 +12403,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 177, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -12478,21 +12472,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 178, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -12547,21 +12541,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 179, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -12616,21 +12610,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 180, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -12685,21 +12679,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 181, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -12754,21 +12748,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 182, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -12823,21 +12817,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 183, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -12892,21 +12886,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 184, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -12961,21 +12955,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 185, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -13030,21 +13024,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 186, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -13099,21 +13093,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 187, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -13168,21 +13162,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 188, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -13237,21 +13231,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 189, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -13306,21 +13300,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 190, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -13375,21 +13369,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 191, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -13444,21 +13438,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 192, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -13513,21 +13507,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 193, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -13582,21 +13576,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 194, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -13651,21 +13645,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 195, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -13720,21 +13714,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 196, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -13789,21 +13783,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 197, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -13858,21 +13852,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 198, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -13927,21 +13921,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 199, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -13996,21 +13990,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 200, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -14049,7 +14043,7 @@ "content-encoding": "gzip", "content-security-policy": "default-src 'none'", "content-type": "application/json; charset=utf-8", - "date": "Sun, 14 Aug 2022 05:24:53 GMT", + "date": "Sun, 29 Jan 2023 19:10:45 GMT", "referrer-policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "server": "GitHub.com", "strict-transport-security": "max-age=31536000; includeSubdomains; preload", @@ -14058,12 +14052,12 @@ "x-content-type-options": "nosniff", "x-frame-options": "deny", "x-github-media-type": "github.v3; format=json", - "x-github-request-id": "FD79:42A9:45DC65:483BE0:62F88725", + "x-github-request-id": "E6A2:40DE:372866:3992A1:63D6C4B5", "x-ratelimit-limit": "5000", - "x-ratelimit-remaining": "4395", - "x-ratelimit-reset": "1660457292", + "x-ratelimit-remaining": "4139", + "x-ratelimit-reset": "1675021300", "x-ratelimit-resource": "graphql", - "x-ratelimit-used": "605", + "x-ratelimit-used": "861", "x-xss-protection": "0" }, "data": { @@ -14118,21 +14112,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 201, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { diff --git a/test/recorded/api.items.list-without-custom-fields/fixtures.json b/test/recorded/api.items.list-without-custom-fields/fixtures.json index f4082bba..bcdd988e 100644 --- a/test/recorded/api.items.list-without-custom-fields/fixtures.json +++ b/test/recorded/api.items.list-without-custom-fields/fixtures.json @@ -15,7 +15,7 @@ "content-encoding": "gzip", "content-security-policy": "default-src 'none'", "content-type": "application/json; charset=utf-8", - "date": "Mon, 24 Oct 2022 17:31:46 GMT", + "date": "Sun, 29 Jan 2023 18:51:40 GMT", "referrer-policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "server": "GitHub.com", "strict-transport-security": "max-age=31536000; includeSubdomains; preload", @@ -24,12 +24,12 @@ "x-content-type-options": "nosniff", "x-frame-options": "deny", "x-github-media-type": "github.v3; format=json", - "x-github-request-id": "E5DA:3B75:3778955:391E46D:6356CC02", + "x-github-request-id": "E2A6:127E:3D44A9:3F82EB:63D6C03C", "x-ratelimit-limit": "5000", - "x-ratelimit-remaining": "4733", - "x-ratelimit-reset": "1666635908", + "x-ratelimit-remaining": "4736", + "x-ratelimit-reset": "1675021300", "x-ratelimit-resource": "graphql", - "x-ratelimit-used": "267", + "x-ratelimit-used": "264", "x-xss-protection": "0" }, "data": { @@ -82,36 +82,31 @@ }, { "id": "PVTF_5", - "dataType": "TRACKS", - "name": "Tracks" - }, - { - "id": "PVTF_6", "dataType": "REVIEWERS", "name": "Reviewers" }, { - "id": "PVTF_7", + "id": "PVTF_6", "dataType": "REPOSITORY", "name": "Repository" }, { - "id": "PVTF_8", + "id": "PVTF_7", "dataType": "MILESTONE", "name": "Milestone" }, { - "id": "PVTF_9", + "id": "PVTF_8", "dataType": "TEXT", "name": "Text" }, { - "id": "PVTF_10", + "id": "PVTF_9", "dataType": "NUMBER", "name": "Number" }, { - "id": "PVTF_11", + "id": "PVTF_10", "dataType": "DATE", "name": "Date" }, @@ -211,21 +206,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 1, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -280,21 +275,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 2, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { diff --git a/test/recorded/api.items.list/fixtures.json b/test/recorded/api.items.list/fixtures.json index 33240e94..20f1e18e 100644 --- a/test/recorded/api.items.list/fixtures.json +++ b/test/recorded/api.items.list/fixtures.json @@ -15,7 +15,7 @@ "content-encoding": "gzip", "content-security-policy": "default-src 'none'", "content-type": "application/json; charset=utf-8", - "date": "Mon, 24 Oct 2022 17:29:39 GMT", + "date": "Sun, 29 Jan 2023 18:49:49 GMT", "referrer-policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "server": "GitHub.com", "strict-transport-security": "max-age=31536000; includeSubdomains; preload", @@ -24,12 +24,12 @@ "x-content-type-options": "nosniff", "x-frame-options": "deny", "x-github-media-type": "github.v3; format=json", - "x-github-request-id": "E557:9797:33EFB45:357F341:6356CB83", + "x-github-request-id": "E217:0782:3B9EED:3DD6AF:63D6BFCD", "x-ratelimit-limit": "5000", - "x-ratelimit-remaining": "4823", - "x-ratelimit-reset": "1666635908", + "x-ratelimit-remaining": "4826", + "x-ratelimit-reset": "1675021300", "x-ratelimit-resource": "graphql", - "x-ratelimit-used": "177", + "x-ratelimit-used": "174", "x-xss-protection": "0" }, "data": { @@ -82,36 +82,31 @@ }, { "id": "PVTF_5", - "dataType": "TRACKS", - "name": "Tracks" - }, - { - "id": "PVTF_6", "dataType": "REVIEWERS", "name": "Reviewers" }, { - "id": "PVTF_7", + "id": "PVTF_6", "dataType": "REPOSITORY", "name": "Repository" }, { - "id": "PVTF_8", + "id": "PVTF_7", "dataType": "MILESTONE", "name": "Milestone" }, { - "id": "PVTF_9", + "id": "PVTF_8", "dataType": "TEXT", "name": "Text" }, { - "id": "PVTF_10", + "id": "PVTF_9", "dataType": "NUMBER", "name": "Number" }, { - "id": "PVTF_11", + "id": "PVTF_10", "dataType": "DATE", "name": "Date" }, @@ -211,21 +206,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 1, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -280,21 +275,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 2, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { diff --git a/test/recorded/api.items.remove-by-content-id-not-found/fixtures.json b/test/recorded/api.items.remove-by-content-id-not-found/fixtures.json index ed36b6b4..e88cb1cc 100644 --- a/test/recorded/api.items.remove-by-content-id-not-found/fixtures.json +++ b/test/recorded/api.items.remove-by-content-id-not-found/fixtures.json @@ -15,7 +15,7 @@ "content-encoding": "gzip", "content-security-policy": "default-src 'none'", "content-type": "application/json; charset=utf-8", - "date": "Mon, 24 Oct 2022 17:32:21 GMT", + "date": "Sun, 29 Jan 2023 18:52:10 GMT", "referrer-policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "server": "GitHub.com", "strict-transport-security": "max-age=31536000; includeSubdomains; preload", @@ -24,12 +24,12 @@ "x-content-type-options": "nosniff", "x-frame-options": "deny", "x-github-media-type": "github.v3; format=json", - "x-github-request-id": "E5F9:97C9:2E0EBB:2F3BAE:6356CC24", + "x-github-request-id": "E2C9:8CE2:32B6D4:34F558:63D6C059", "x-ratelimit-limit": "5000", - "x-ratelimit-remaining": "4711", - "x-ratelimit-reset": "1666635908", + "x-ratelimit-remaining": "4714", + "x-ratelimit-reset": "1675021300", "x-ratelimit-resource": "graphql", - "x-ratelimit-used": "289", + "x-ratelimit-used": "286", "x-xss-protection": "0" }, "data": { @@ -82,36 +82,31 @@ }, { "id": "PVTF_5", - "dataType": "TRACKS", - "name": "Tracks" - }, - { - "id": "PVTF_6", "dataType": "REVIEWERS", "name": "Reviewers" }, { - "id": "PVTF_7", + "id": "PVTF_6", "dataType": "REPOSITORY", "name": "Repository" }, { - "id": "PVTF_8", + "id": "PVTF_7", "dataType": "MILESTONE", "name": "Milestone" }, { - "id": "PVTF_9", + "id": "PVTF_8", "dataType": "TEXT", "name": "Text" }, { - "id": "PVTF_10", + "id": "PVTF_9", "dataType": "NUMBER", "name": "Number" }, { - "id": "PVTF_11", + "id": "PVTF_10", "dataType": "DATE", "name": "Date" }, @@ -184,7 +179,7 @@ "content-encoding": "gzip", "content-security-policy": "default-src 'none'", "content-type": "application/json; charset=utf-8", - "date": "Mon, 24 Oct 2022 17:32:22 GMT", + "date": "Sun, 29 Jan 2023 18:52:10 GMT", "referrer-policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "server": "GitHub.com", "strict-transport-security": "max-age=31536000; includeSubdomains; preload", @@ -193,12 +188,12 @@ "x-content-type-options": "nosniff", "x-frame-options": "deny", "x-github-media-type": "github.v3; format=json", - "x-github-request-id": "E5FA:97C9:2E107F:2F3D77:6356CC25", + "x-github-request-id": "E2CA:127E:3D6402:3FA39B:63D6C05A", "x-ratelimit-limit": "5000", - "x-ratelimit-remaining": "4710", - "x-ratelimit-reset": "1666635908", + "x-ratelimit-remaining": "4713", + "x-ratelimit-reset": "1675021300", "x-ratelimit-resource": "graphql", - "x-ratelimit-used": "290", + "x-ratelimit-used": "287", "x-xss-protection": "0" }, "data": { diff --git a/test/recorded/api.items.remove-by-content-id/fixtures.json b/test/recorded/api.items.remove-by-content-id/fixtures.json index 2a4facb7..65cdb83e 100644 --- a/test/recorded/api.items.remove-by-content-id/fixtures.json +++ b/test/recorded/api.items.remove-by-content-id/fixtures.json @@ -15,7 +15,7 @@ "content-encoding": "gzip", "content-security-policy": "default-src 'none'", "content-type": "application/json; charset=utf-8", - "date": "Mon, 24 Oct 2022 17:32:12 GMT", + "date": "Sun, 29 Jan 2023 18:52:03 GMT", "referrer-policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "server": "GitHub.com", "strict-transport-security": "max-age=31536000; includeSubdomains; preload", @@ -24,12 +24,12 @@ "x-content-type-options": "nosniff", "x-frame-options": "deny", "x-github-media-type": "github.v3; format=json", - "x-github-request-id": "E5F1:0C72:B3D3103:B821B26:6356CC1C", + "x-github-request-id": "E2C1:333C:343D13:367AA2:63D6C052", "x-ratelimit-limit": "5000", - "x-ratelimit-remaining": "4716", - "x-ratelimit-reset": "1666635908", + "x-ratelimit-remaining": "4719", + "x-ratelimit-reset": "1675021300", "x-ratelimit-resource": "graphql", - "x-ratelimit-used": "284", + "x-ratelimit-used": "281", "x-xss-protection": "0" }, "data": { @@ -82,36 +82,31 @@ }, { "id": "PVTF_5", - "dataType": "TRACKS", - "name": "Tracks" - }, - { - "id": "PVTF_6", "dataType": "REVIEWERS", "name": "Reviewers" }, { - "id": "PVTF_7", + "id": "PVTF_6", "dataType": "REPOSITORY", "name": "Repository" }, { - "id": "PVTF_8", + "id": "PVTF_7", "dataType": "MILESTONE", "name": "Milestone" }, { - "id": "PVTF_9", + "id": "PVTF_8", "dataType": "TEXT", "name": "Text" }, { - "id": "PVTF_10", + "id": "PVTF_9", "dataType": "NUMBER", "name": "Number" }, { - "id": "PVTF_11", + "id": "PVTF_10", "dataType": "DATE", "name": "Date" }, @@ -184,7 +179,7 @@ "content-encoding": "gzip", "content-security-policy": "default-src 'none'", "content-type": "application/json; charset=utf-8", - "date": "Mon, 24 Oct 2022 17:32:14 GMT", + "date": "Sun, 29 Jan 2023 18:52:04 GMT", "referrer-policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "server": "GitHub.com", "strict-transport-security": "max-age=31536000; includeSubdomains; preload", @@ -193,12 +188,12 @@ "x-content-type-options": "nosniff", "x-frame-options": "deny", "x-github-media-type": "github.v3; format=json", - "x-github-request-id": "E5F2:0D4A:AFB3755:B3FCFB6:6356CC1D", + "x-github-request-id": "E2C2:1726:3C1876:3E587D:63D6C053", "x-ratelimit-limit": "5000", - "x-ratelimit-remaining": "4715", - "x-ratelimit-reset": "1666635908", + "x-ratelimit-remaining": "4718", + "x-ratelimit-reset": "1675021300", "x-ratelimit-resource": "graphql", - "x-ratelimit-used": "285", + "x-ratelimit-used": "282", "x-xss-protection": "0" }, "data": { @@ -253,21 +248,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 1, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -303,7 +298,7 @@ "content-encoding": "gzip", "content-security-policy": "default-src 'none'", "content-type": "application/json; charset=utf-8", - "date": "Mon, 24 Oct 2022 17:32:15 GMT", + "date": "Sun, 29 Jan 2023 18:52:05 GMT", "referrer-policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "server": "GitHub.com", "strict-transport-security": "max-age=31536000; includeSubdomains; preload", @@ -312,12 +307,12 @@ "x-content-type-options": "nosniff", "x-frame-options": "deny", "x-github-media-type": "github.v3; format=json", - "x-github-request-id": "E5F3:3B75:377BD10:392196D:6356CC1E", + "x-github-request-id": "E2C3:6763:306DC3:32ABA5:63D6C054", "x-ratelimit-limit": "5000", - "x-ratelimit-remaining": "4714", - "x-ratelimit-reset": "1666635908", + "x-ratelimit-remaining": "4717", + "x-ratelimit-reset": "1675021300", "x-ratelimit-resource": "graphql", - "x-ratelimit-used": "286", + "x-ratelimit-used": "283", "x-xss-protection": "0" }, "data": { diff --git a/test/recorded/api.items.remove-by-repository-and-number-not-found/fixtures.json b/test/recorded/api.items.remove-by-repository-and-number-not-found/fixtures.json index acc7c675..282ad8f3 100644 --- a/test/recorded/api.items.remove-by-repository-and-number-not-found/fixtures.json +++ b/test/recorded/api.items.remove-by-repository-and-number-not-found/fixtures.json @@ -15,7 +15,7 @@ "content-encoding": "gzip", "content-security-policy": "default-src 'none'", "content-type": "application/json; charset=utf-8", - "date": "Mon, 24 Oct 2022 17:32:39 GMT", + "date": "Sun, 29 Jan 2023 18:52:25 GMT", "referrer-policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "server": "GitHub.com", "strict-transport-security": "max-age=31536000; includeSubdomains; preload", @@ -24,12 +24,12 @@ "x-content-type-options": "nosniff", "x-frame-options": "deny", "x-github-media-type": "github.v3; format=json", - "x-github-request-id": "E60F:71A7:B3AEF65:B800AB2:6356CC37", + "x-github-request-id": "E2DA:4F0E:359923:37D6BD:63D6C069", "x-ratelimit-limit": "5000", - "x-ratelimit-remaining": "4700", - "x-ratelimit-reset": "1666635908", + "x-ratelimit-remaining": "4703", + "x-ratelimit-reset": "1675021300", "x-ratelimit-resource": "graphql", - "x-ratelimit-used": "300", + "x-ratelimit-used": "297", "x-xss-protection": "0" }, "data": { @@ -82,36 +82,31 @@ }, { "id": "PVTF_5", - "dataType": "TRACKS", - "name": "Tracks" - }, - { - "id": "PVTF_6", "dataType": "REVIEWERS", "name": "Reviewers" }, { - "id": "PVTF_7", + "id": "PVTF_6", "dataType": "REPOSITORY", "name": "Repository" }, { - "id": "PVTF_8", + "id": "PVTF_7", "dataType": "MILESTONE", "name": "Milestone" }, { - "id": "PVTF_9", + "id": "PVTF_8", "dataType": "TEXT", "name": "Text" }, { - "id": "PVTF_10", + "id": "PVTF_9", "dataType": "NUMBER", "name": "Number" }, { - "id": "PVTF_11", + "id": "PVTF_10", "dataType": "DATE", "name": "Date" }, @@ -186,7 +181,7 @@ "content-encoding": "gzip", "content-security-policy": "default-src 'none'", "content-type": "application/json; charset=utf-8", - "date": "Mon, 24 Oct 2022 17:32:40 GMT", + "date": "Sun, 29 Jan 2023 18:52:26 GMT", "referrer-policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "server": "GitHub.com", "strict-transport-security": "max-age=31536000; includeSubdomains; preload", @@ -195,12 +190,12 @@ "x-content-type-options": "nosniff", "x-frame-options": "deny", "x-github-media-type": "github.v3; format=json", - "x-github-request-id": "E610:0A68:BFAA65D:C3F91E8:6356CC38", + "x-github-request-id": "E2DB:333C:345767:3695CF:63D6C06A", "x-ratelimit-limit": "5000", - "x-ratelimit-remaining": "4699", - "x-ratelimit-reset": "1666635908", + "x-ratelimit-remaining": "4702", + "x-ratelimit-reset": "1675021300", "x-ratelimit-resource": "graphql", - "x-ratelimit-used": "301", + "x-ratelimit-used": "298", "x-xss-protection": "0" }, "data": { diff --git a/test/recorded/api.items.remove-by-repository-and-number/fixtures.json b/test/recorded/api.items.remove-by-repository-and-number/fixtures.json index 26ae500e..84093e33 100644 --- a/test/recorded/api.items.remove-by-repository-and-number/fixtures.json +++ b/test/recorded/api.items.remove-by-repository-and-number/fixtures.json @@ -15,7 +15,7 @@ "content-encoding": "gzip", "content-security-policy": "default-src 'none'", "content-type": "application/json; charset=utf-8", - "date": "Mon, 24 Oct 2022 17:32:31 GMT", + "date": "Sun, 29 Jan 2023 18:52:18 GMT", "referrer-policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "server": "GitHub.com", "strict-transport-security": "max-age=31536000; includeSubdomains; preload", @@ -24,12 +24,12 @@ "x-content-type-options": "nosniff", "x-frame-options": "deny", "x-github-media-type": "github.v3; format=json", - "x-github-request-id": "E602:3B75:377D9FC:39236E3:6356CC2F", + "x-github-request-id": "E2D3:8CE2:32BEBE:34FD96:63D6C062", "x-ratelimit-limit": "5000", - "x-ratelimit-remaining": "4705", - "x-ratelimit-reset": "1666635908", + "x-ratelimit-remaining": "4708", + "x-ratelimit-reset": "1675021300", "x-ratelimit-resource": "graphql", - "x-ratelimit-used": "295", + "x-ratelimit-used": "292", "x-xss-protection": "0" }, "data": { @@ -82,36 +82,31 @@ }, { "id": "PVTF_5", - "dataType": "TRACKS", - "name": "Tracks" - }, - { - "id": "PVTF_6", "dataType": "REVIEWERS", "name": "Reviewers" }, { - "id": "PVTF_7", + "id": "PVTF_6", "dataType": "REPOSITORY", "name": "Repository" }, { - "id": "PVTF_8", + "id": "PVTF_7", "dataType": "MILESTONE", "name": "Milestone" }, { - "id": "PVTF_9", + "id": "PVTF_8", "dataType": "TEXT", "name": "Text" }, { - "id": "PVTF_10", + "id": "PVTF_9", "dataType": "NUMBER", "name": "Number" }, { - "id": "PVTF_11", + "id": "PVTF_10", "dataType": "DATE", "name": "Date" }, @@ -186,7 +181,7 @@ "content-encoding": "gzip", "content-security-policy": "default-src 'none'", "content-type": "application/json; charset=utf-8", - "date": "Mon, 24 Oct 2022 17:32:32 GMT", + "date": "Sun, 29 Jan 2023 18:52:19 GMT", "referrer-policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "server": "GitHub.com", "strict-transport-security": "max-age=31536000; includeSubdomains; preload", @@ -195,12 +190,12 @@ "x-content-type-options": "nosniff", "x-frame-options": "deny", "x-github-media-type": "github.v3; format=json", - "x-github-request-id": "E603:32CE:16FE4F1:179DD11:6356CC30", + "x-github-request-id": "E2D4:127E:3D6D44:3FAD33:63D6C063", "x-ratelimit-limit": "5000", - "x-ratelimit-remaining": "4704", - "x-ratelimit-reset": "1666635908", + "x-ratelimit-remaining": "4707", + "x-ratelimit-reset": "1675021300", "x-ratelimit-resource": "graphql", - "x-ratelimit-used": "296", + "x-ratelimit-used": "293", "x-xss-protection": "0" }, "data": { @@ -257,21 +252,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 1, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -309,7 +304,7 @@ "content-encoding": "gzip", "content-security-policy": "default-src 'none'", "content-type": "application/json; charset=utf-8", - "date": "Mon, 24 Oct 2022 17:32:33 GMT", + "date": "Sun, 29 Jan 2023 18:52:21 GMT", "referrer-policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "server": "GitHub.com", "strict-transport-security": "max-age=31536000; includeSubdomains; preload", @@ -318,12 +313,12 @@ "x-content-type-options": "nosniff", "x-frame-options": "deny", "x-github-media-type": "github.v3; format=json", - "x-github-request-id": "E607:4EF2:74DC8D4:77FCD79:6356CC31", + "x-github-request-id": "E2D5:6763:307C4F:32BAC8:63D6C064", "x-ratelimit-limit": "5000", - "x-ratelimit-remaining": "4703", - "x-ratelimit-reset": "1666635908", + "x-ratelimit-remaining": "4706", + "x-ratelimit-reset": "1675021300", "x-ratelimit-resource": "graphql", - "x-ratelimit-used": "297", + "x-ratelimit-used": "294", "x-xss-protection": "0" }, "data": { diff --git a/test/recorded/api.items.remove-not-found/fixtures.json b/test/recorded/api.items.remove-not-found/fixtures.json index 4ed75660..07d4034a 100644 --- a/test/recorded/api.items.remove-not-found/fixtures.json +++ b/test/recorded/api.items.remove-not-found/fixtures.json @@ -15,7 +15,7 @@ "content-encoding": "gzip", "content-security-policy": "default-src 'none'", "content-type": "application/json; charset=utf-8", - "date": "Mon, 24 Oct 2022 17:32:46 GMT", + "date": "Sun, 29 Jan 2023 18:52:31 GMT", "referrer-policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "server": "GitHub.com", "strict-transport-security": "max-age=31536000; includeSubdomains; preload", @@ -24,12 +24,12 @@ "x-content-type-options": "nosniff", "x-frame-options": "deny", "x-github-media-type": "github.v3; format=json", - "x-github-request-id": "E616:0DBE:38E05C0:3A9A60D:6356CC3E", + "x-github-request-id": "E2E0:6763:308473:32C362:63D6C06F", "x-ratelimit-limit": "5000", - "x-ratelimit-remaining": "4696", - "x-ratelimit-reset": "1666635908", + "x-ratelimit-remaining": "4699", + "x-ratelimit-reset": "1675021300", "x-ratelimit-resource": "graphql", - "x-ratelimit-used": "304", + "x-ratelimit-used": "301", "x-xss-protection": "0" }, "data": { @@ -82,36 +82,31 @@ }, { "id": "PVTF_5", - "dataType": "TRACKS", - "name": "Tracks" - }, - { - "id": "PVTF_6", "dataType": "REVIEWERS", "name": "Reviewers" }, { - "id": "PVTF_7", + "id": "PVTF_6", "dataType": "REPOSITORY", "name": "Repository" }, { - "id": "PVTF_8", + "id": "PVTF_7", "dataType": "MILESTONE", "name": "Milestone" }, { - "id": "PVTF_9", + "id": "PVTF_8", "dataType": "TEXT", "name": "Text" }, { - "id": "PVTF_10", + "id": "PVTF_9", "dataType": "NUMBER", "name": "Number" }, { - "id": "PVTF_11", + "id": "PVTF_10", "dataType": "DATE", "name": "Date" }, @@ -184,7 +179,7 @@ "content-encoding": "gzip", "content-security-policy": "default-src 'none'", "content-type": "application/json; charset=utf-8", - "date": "Mon, 24 Oct 2022 17:32:47 GMT", + "date": "Sun, 29 Jan 2023 18:52:32 GMT", "referrer-policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "server": "GitHub.com", "strict-transport-security": "max-age=31536000; includeSubdomains; preload", @@ -193,12 +188,12 @@ "x-content-type-options": "nosniff", "x-frame-options": "deny", "x-github-media-type": "github.v3; format=json", - "x-github-request-id": "E617:0DBE:38E0756:3A9A79F:6356CC3E", + "x-github-request-id": "E2E1:6763:308554:32C43A:63D6C070", "x-ratelimit-limit": "5000", - "x-ratelimit-remaining": "4695", - "x-ratelimit-reset": "1666635908", + "x-ratelimit-remaining": "4698", + "x-ratelimit-reset": "1675021300", "x-ratelimit-resource": "graphql", - "x-ratelimit-used": "305", + "x-ratelimit-used": "302", "x-xss-protection": "0" }, "data": { diff --git a/test/recorded/api.items.remove/fixtures.json b/test/recorded/api.items.remove/fixtures.json index 2cb08b98..7c09b5da 100644 --- a/test/recorded/api.items.remove/fixtures.json +++ b/test/recorded/api.items.remove/fixtures.json @@ -15,7 +15,7 @@ "content-encoding": "gzip", "content-security-policy": "default-src 'none'", "content-type": "application/json; charset=utf-8", - "date": "Mon, 24 Oct 2022 17:32:00 GMT", + "date": "Sun, 29 Jan 2023 18:51:52 GMT", "referrer-policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "server": "GitHub.com", "strict-transport-security": "max-age=31536000; includeSubdomains; preload", @@ -24,12 +24,12 @@ "x-content-type-options": "nosniff", "x-frame-options": "deny", "x-github-media-type": "github.v3; format=json", - "x-github-request-id": "E5E6:05CF:3C53F43:3E1E2BE:6356CC10", + "x-github-request-id": "E2B4:0782:3C1A3E:3E5709:63D6C048", "x-ratelimit-limit": "5000", - "x-ratelimit-remaining": "4724", - "x-ratelimit-reset": "1666635908", + "x-ratelimit-remaining": "4727", + "x-ratelimit-reset": "1675021300", "x-ratelimit-resource": "graphql", - "x-ratelimit-used": "276", + "x-ratelimit-used": "273", "x-xss-protection": "0" }, "data": { @@ -82,36 +82,31 @@ }, { "id": "PVTF_5", - "dataType": "TRACKS", - "name": "Tracks" - }, - { - "id": "PVTF_6", "dataType": "REVIEWERS", "name": "Reviewers" }, { - "id": "PVTF_7", + "id": "PVTF_6", "dataType": "REPOSITORY", "name": "Repository" }, { - "id": "PVTF_8", + "id": "PVTF_7", "dataType": "MILESTONE", "name": "Milestone" }, { - "id": "PVTF_9", + "id": "PVTF_8", "dataType": "TEXT", "name": "Text" }, { - "id": "PVTF_10", + "id": "PVTF_9", "dataType": "NUMBER", "name": "Number" }, { - "id": "PVTF_11", + "id": "PVTF_10", "dataType": "DATE", "name": "Date" }, @@ -184,7 +179,7 @@ "content-encoding": "gzip", "content-security-policy": "default-src 'none'", "content-type": "application/json; charset=utf-8", - "date": "Mon, 24 Oct 2022 17:32:01 GMT", + "date": "Sun, 29 Jan 2023 18:51:53 GMT", "referrer-policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "server": "GitHub.com", "strict-transport-security": "max-age=31536000; includeSubdomains; preload", @@ -193,12 +188,12 @@ "x-content-type-options": "nosniff", "x-frame-options": "deny", "x-github-media-type": "github.v3; format=json", - "x-github-request-id": "E5E7:4EF2:74D881E:77F8BA1:6356CC11", + "x-github-request-id": "E2B6:54E3:39D1E6:3C0F34:63D6C049", "x-ratelimit-limit": "5000", - "x-ratelimit-remaining": "4723", - "x-ratelimit-reset": "1666635908", + "x-ratelimit-remaining": "4726", + "x-ratelimit-reset": "1675021300", "x-ratelimit-resource": "graphql", - "x-ratelimit-used": "277", + "x-ratelimit-used": "274", "x-xss-protection": "0" }, "data": { diff --git a/test/recorded/api.items.update-built-in-read-only-field/fixtures.json b/test/recorded/api.items.update-built-in-read-only-field/fixtures.json index 2042afb8..8388c86c 100644 --- a/test/recorded/api.items.update-built-in-read-only-field/fixtures.json +++ b/test/recorded/api.items.update-built-in-read-only-field/fixtures.json @@ -15,7 +15,7 @@ "content-encoding": "gzip", "content-security-policy": "default-src 'none'", "content-type": "application/json; charset=utf-8", - "date": "Mon, 24 Oct 2022 17:33:10 GMT", + "date": "Sun, 29 Jan 2023 18:52:52 GMT", "referrer-policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "server": "GitHub.com", "strict-transport-security": "max-age=31536000; includeSubdomains; preload", @@ -24,12 +24,12 @@ "x-content-type-options": "nosniff", "x-frame-options": "deny", "x-github-media-type": "github.v3; format=json", - "x-github-request-id": "E62F:0DBE:38E33FD:3A9D552:6356CC55", + "x-github-request-id": "E2F8:127E:3D8BFC:3FCD2D:63D6C084", "x-ratelimit-limit": "5000", - "x-ratelimit-remaining": "4681", - "x-ratelimit-reset": "1666635908", + "x-ratelimit-remaining": "4684", + "x-ratelimit-reset": "1675021300", "x-ratelimit-resource": "graphql", - "x-ratelimit-used": "319", + "x-ratelimit-used": "316", "x-xss-protection": "0" }, "data": { @@ -82,36 +82,31 @@ }, { "id": "PVTF_5", - "dataType": "TRACKS", - "name": "Tracks" - }, - { - "id": "PVTF_6", "dataType": "REVIEWERS", "name": "Reviewers" }, { - "id": "PVTF_7", + "id": "PVTF_6", "dataType": "REPOSITORY", "name": "Repository" }, { - "id": "PVTF_8", + "id": "PVTF_7", "dataType": "MILESTONE", "name": "Milestone" }, { - "id": "PVTF_9", + "id": "PVTF_8", "dataType": "TEXT", "name": "Text" }, { - "id": "PVTF_10", + "id": "PVTF_9", "dataType": "NUMBER", "name": "Number" }, { - "id": "PVTF_11", + "id": "PVTF_10", "dataType": "DATE", "name": "Date" }, @@ -184,7 +179,7 @@ "content-encoding": "gzip", "content-security-policy": "default-src 'none'", "content-type": "application/json; charset=utf-8", - "date": "Mon, 24 Oct 2022 17:33:11 GMT", + "date": "Sun, 29 Jan 2023 18:52:53 GMT", "referrer-policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "server": "GitHub.com", "strict-transport-security": "max-age=31536000; includeSubdomains; preload", @@ -193,12 +188,12 @@ "x-content-type-options": "nosniff", "x-frame-options": "deny", "x-github-media-type": "github.v3; format=json", - "x-github-request-id": "E630:05CF:3C5C487:3E26AEA:6356CC56", + "x-github-request-id": "E2FA:7412:2EC455:310239:63D6C085", "x-ratelimit-limit": "5000", - "x-ratelimit-remaining": "4680", - "x-ratelimit-reset": "1666635908", + "x-ratelimit-remaining": "4683", + "x-ratelimit-reset": "1675021300", "x-ratelimit-resource": "graphql", - "x-ratelimit-used": "320", + "x-ratelimit-used": "317", "x-xss-protection": "0" }, "data": { @@ -245,21 +240,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 1, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { diff --git a/test/recorded/api.items.update-by-content-id-not-found/fixtures.json b/test/recorded/api.items.update-by-content-id-not-found/fixtures.json index 7a7f6f42..729087f7 100644 --- a/test/recorded/api.items.update-by-content-id-not-found/fixtures.json +++ b/test/recorded/api.items.update-by-content-id-not-found/fixtures.json @@ -15,7 +15,7 @@ "content-encoding": "gzip", "content-security-policy": "default-src 'none'", "content-type": "application/json; charset=utf-8", - "date": "Mon, 24 Oct 2022 17:33:32 GMT", + "date": "Sun, 29 Jan 2023 18:53:12 GMT", "referrer-policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "server": "GitHub.com", "strict-transport-security": "max-age=31536000; includeSubdomains; preload", @@ -24,12 +24,12 @@ "x-content-type-options": "nosniff", "x-frame-options": "deny", "x-github-media-type": "github.v3; format=json", - "x-github-request-id": "E644:6582:ABF151B:B03F19F:6356CC6C", + "x-github-request-id": "E310:778A:30CABC:3309A2:63D6C098", "x-ratelimit-limit": "5000", - "x-ratelimit-remaining": "4666", - "x-ratelimit-reset": "1666635908", + "x-ratelimit-remaining": "4669", + "x-ratelimit-reset": "1675021300", "x-ratelimit-resource": "graphql", - "x-ratelimit-used": "334", + "x-ratelimit-used": "331", "x-xss-protection": "0" }, "data": { @@ -82,36 +82,31 @@ }, { "id": "PVTF_5", - "dataType": "TRACKS", - "name": "Tracks" - }, - { - "id": "PVTF_6", "dataType": "REVIEWERS", "name": "Reviewers" }, { - "id": "PVTF_7", + "id": "PVTF_6", "dataType": "REPOSITORY", "name": "Repository" }, { - "id": "PVTF_8", + "id": "PVTF_7", "dataType": "MILESTONE", "name": "Milestone" }, { - "id": "PVTF_9", + "id": "PVTF_8", "dataType": "TEXT", "name": "Text" }, { - "id": "PVTF_10", + "id": "PVTF_9", "dataType": "NUMBER", "name": "Number" }, { - "id": "PVTF_11", + "id": "PVTF_10", "dataType": "DATE", "name": "Date" }, @@ -184,7 +179,7 @@ "content-encoding": "gzip", "content-security-policy": "default-src 'none'", "content-type": "application/json; charset=utf-8", - "date": "Mon, 24 Oct 2022 17:33:33 GMT", + "date": "Sun, 29 Jan 2023 18:53:13 GMT", "referrer-policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "server": "GitHub.com", "strict-transport-security": "max-age=31536000; includeSubdomains; preload", @@ -193,12 +188,12 @@ "x-content-type-options": "nosniff", "x-frame-options": "deny", "x-github-media-type": "github.v3; format=json", - "x-github-request-id": "E645:0DBE:38E629A:3AA04CF:6356CC6D", + "x-github-request-id": "E311:4250:32BD26:34FD13:63D6C099", "x-ratelimit-limit": "5000", - "x-ratelimit-remaining": "4665", - "x-ratelimit-reset": "1666635908", + "x-ratelimit-remaining": "4668", + "x-ratelimit-reset": "1675021300", "x-ratelimit-resource": "graphql", - "x-ratelimit-used": "335", + "x-ratelimit-used": "332", "x-xss-protection": "0" }, "data": { diff --git a/test/recorded/api.items.update-by-content-id-optional-non-existing-field/fixtures.json b/test/recorded/api.items.update-by-content-id-optional-non-existing-field/fixtures.json index fa0132bf..d8b23fa8 100644 --- a/test/recorded/api.items.update-by-content-id-optional-non-existing-field/fixtures.json +++ b/test/recorded/api.items.update-by-content-id-optional-non-existing-field/fixtures.json @@ -15,7 +15,7 @@ "content-encoding": "gzip", "content-security-policy": "default-src 'none'", "content-type": "application/json; charset=utf-8", - "date": "Mon, 24 Oct 2022 17:33:42 GMT", + "date": "Sun, 29 Jan 2023 18:53:21 GMT", "referrer-policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "server": "GitHub.com", "strict-transport-security": "max-age=31536000; includeSubdomains; preload", @@ -24,12 +24,12 @@ "x-content-type-options": "nosniff", "x-frame-options": "deny", "x-github-media-type": "github.v3; format=json", - "x-github-request-id": "E64E:3B75:3785A4C:392BA35:6356CC76", + "x-github-request-id": "E31C:333C:34907F:36D0F9:63D6C0A0", "x-ratelimit-limit": "5000", - "x-ratelimit-remaining": "4660", - "x-ratelimit-reset": "1666635908", + "x-ratelimit-remaining": "4663", + "x-ratelimit-reset": "1675021300", "x-ratelimit-resource": "graphql", - "x-ratelimit-used": "340", + "x-ratelimit-used": "337", "x-xss-protection": "0" }, "data": { @@ -82,36 +82,31 @@ }, { "id": "PVTF_5", - "dataType": "TRACKS", - "name": "Tracks" - }, - { - "id": "PVTF_6", "dataType": "REVIEWERS", "name": "Reviewers" }, { - "id": "PVTF_7", + "id": "PVTF_6", "dataType": "REPOSITORY", "name": "Repository" }, { - "id": "PVTF_8", + "id": "PVTF_7", "dataType": "MILESTONE", "name": "Milestone" }, { - "id": "PVTF_9", + "id": "PVTF_8", "dataType": "TEXT", "name": "Text" }, { - "id": "PVTF_10", + "id": "PVTF_9", "dataType": "NUMBER", "name": "Number" }, { - "id": "PVTF_11", + "id": "PVTF_10", "dataType": "DATE", "name": "Date" }, @@ -184,7 +179,7 @@ "content-encoding": "gzip", "content-security-policy": "default-src 'none'", "content-type": "application/json; charset=utf-8", - "date": "Mon, 24 Oct 2022 17:33:43 GMT", + "date": "Sun, 29 Jan 2023 18:53:22 GMT", "referrer-policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "server": "GitHub.com", "strict-transport-security": "max-age=31536000; includeSubdomains; preload", @@ -193,12 +188,12 @@ "x-content-type-options": "nosniff", "x-frame-options": "deny", "x-github-media-type": "github.v3; format=json", - "x-github-request-id": "E64F:71A7:B3B7754:B80952F:6356CC77", + "x-github-request-id": "E31D:89D2:38C710:3B0985:63D6C0A1", "x-ratelimit-limit": "5000", - "x-ratelimit-remaining": "4659", - "x-ratelimit-reset": "1666635908", + "x-ratelimit-remaining": "4662", + "x-ratelimit-reset": "1675021300", "x-ratelimit-resource": "graphql", - "x-ratelimit-used": "341", + "x-ratelimit-used": "338", "x-xss-protection": "0" }, "data": { @@ -253,21 +248,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 1, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { diff --git a/test/recorded/api.items.update-by-content-id/fixtures.json b/test/recorded/api.items.update-by-content-id/fixtures.json index feb03a15..23034292 100644 --- a/test/recorded/api.items.update-by-content-id/fixtures.json +++ b/test/recorded/api.items.update-by-content-id/fixtures.json @@ -15,7 +15,7 @@ "content-encoding": "gzip", "content-security-policy": "default-src 'none'", "content-type": "application/json; charset=utf-8", - "date": "Mon, 24 Oct 2022 17:33:22 GMT", + "date": "Sun, 29 Jan 2023 18:53:03 GMT", "referrer-policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "server": "GitHub.com", "strict-transport-security": "max-age=31536000; includeSubdomains; preload", @@ -24,12 +24,12 @@ "x-content-type-options": "nosniff", "x-frame-options": "deny", "x-github-media-type": "github.v3; format=json", - "x-github-request-id": "E63B:3B75:378374C:392966D:6356CC62", + "x-github-request-id": "E307:4250:32B481:34F407:63D6C08F", "x-ratelimit-limit": "5000", - "x-ratelimit-remaining": "4673", - "x-ratelimit-reset": "1666635908", + "x-ratelimit-remaining": "4676", + "x-ratelimit-reset": "1675021300", "x-ratelimit-resource": "graphql", - "x-ratelimit-used": "327", + "x-ratelimit-used": "324", "x-xss-protection": "0" }, "data": { @@ -82,36 +82,31 @@ }, { "id": "PVTF_5", - "dataType": "TRACKS", - "name": "Tracks" - }, - { - "id": "PVTF_6", "dataType": "REVIEWERS", "name": "Reviewers" }, { - "id": "PVTF_7", + "id": "PVTF_6", "dataType": "REPOSITORY", "name": "Repository" }, { - "id": "PVTF_8", + "id": "PVTF_7", "dataType": "MILESTONE", "name": "Milestone" }, { - "id": "PVTF_9", + "id": "PVTF_8", "dataType": "TEXT", "name": "Text" }, { - "id": "PVTF_10", + "id": "PVTF_9", "dataType": "NUMBER", "name": "Number" }, { - "id": "PVTF_11", + "id": "PVTF_10", "dataType": "DATE", "name": "Date" }, @@ -184,7 +179,7 @@ "content-encoding": "gzip", "content-security-policy": "default-src 'none'", "content-type": "application/json; charset=utf-8", - "date": "Mon, 24 Oct 2022 17:33:23 GMT", + "date": "Sun, 29 Jan 2023 18:53:04 GMT", "referrer-policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "server": "GitHub.com", "strict-transport-security": "max-age=31536000; includeSubdomains; preload", @@ -193,12 +188,12 @@ "x-content-type-options": "nosniff", "x-frame-options": "deny", "x-github-media-type": "github.v3; format=json", - "x-github-request-id": "E63C:3B75:378391F:392984E:6356CC63", + "x-github-request-id": "E308:127E:3D97E9:3FD9A0:63D6C090", "x-ratelimit-limit": "5000", - "x-ratelimit-remaining": "4672", - "x-ratelimit-reset": "1666635908", + "x-ratelimit-remaining": "4675", + "x-ratelimit-reset": "1675021300", "x-ratelimit-resource": "graphql", - "x-ratelimit-used": "328", + "x-ratelimit-used": "325", "x-xss-protection": "0" }, "data": { @@ -253,21 +248,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 1, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -288,7 +283,7 @@ } }, { - "query": "\n mutation setItemProperties($projectId: ID!, $itemId: ID!) {\n \n text: updateProjectV2ItemFieldValue(input: {projectId: $projectId, itemId: $itemId, fieldId: \"PVTF_lADOBYMIeM4ADzd0zgCMLPg\", value: {text: \"new text\"}}) {\n projectV2Item { \n id\n createdAt\n type\n \n content {\n ... on DraftIssue {\n id\n title\n createdAt\n updatedAt\n author: creator {\n login\n }\n assignees(first: 10) {\n nodes {\n login\n }\n }\n }\n ... on Issue {\n \n id\n databaseId\n number\n title\n url\n createdAt\n author {\n login\n }\n assignees(first: 10) {\n nodes {\n login\n }\n }\n labels(first: 10) {\n nodes {\n name\n }\n }\n closed\n milestone {\n number\n title\n state\n }\n repository {\n name\n }\n\n }\n ... on PullRequest {\n \n id\n databaseId\n number\n title\n url\n createdAt\n author {\n login\n }\n assignees(first: 10) {\n nodes {\n login\n }\n }\n labels(first: 10) {\n nodes {\n name\n }\n }\n closed\n milestone {\n number\n title\n state\n }\n repository {\n name\n }\n\n merged\n }\n }\n\n fieldValues(first: 20) {\n nodes {\n __typename\n ... on ProjectV2ItemFieldDateValue {\n date\n field {\n ... on ProjectV2Field {\n id\n }\n }\n }\n ... on ProjectV2ItemFieldIterationValue {\n title\n iterationId\n startDate\n duration\n field {\n ... on ProjectV2IterationField {\n id\n }\n }\n }\n ... on ProjectV2ItemFieldNumberValue {\n number\n field {\n ... on ProjectV2Field {\n id\n }\n }\n }\n ... on ProjectV2ItemFieldSingleSelectValue {\n optionId\n field {\n ... on ProjectV2SingleSelectField {\n id\n }\n }\n }\n ... on ProjectV2ItemFieldTextValue {\n text\n field {\n ... on ProjectV2Field {\n id\n }\n }\n }\n }\n }\n }\n }\n \n }\n ", + "query": "\n mutation setItemProperties($projectId: ID!, $itemId: ID!) {\n \n text: updateProjectV2ItemFieldValue(input: {projectId: $projectId, itemId: $itemId, fieldId: \"PVTF_lADOBYMIeM4ADzd0zgCMLPg\", value: {text: \"new text\"}}) {\n projectV2Item { \n id\n createdAt\n type\n \n content {\n ... on DraftIssue {\n id\n title\n createdAt\n updatedAt\n author: creator {\n login\n }\n assignees(first: 10) {\n nodes {\n login\n }\n }\n }\n ... on Issue {\n \n id\n databaseId\n number\n title\n url\n createdAt\n author {\n login\n }\n assignees(first: 10) {\n nodes {\n login\n }\n }\n labels(first: 10) {\n nodes {\n name\n }\n }\n closed\n milestone {\n number\n title\n state\n }\n repository {\n name\n }\n\n }\n ... on PullRequest {\n \n id\n databaseId\n number\n title\n url\n createdAt\n author {\n login\n }\n assignees(first: 10) {\n nodes {\n login\n }\n }\n labels(first: 10) {\n nodes {\n name\n }\n }\n closed\n milestone {\n number\n title\n state\n }\n repository {\n name\n }\n\n merged\n }\n }\n\n fieldValues(first: 20) {\n nodes {\n __typename\n ... on ProjectV2ItemFieldDateValue {\n date\n field {\n ... on ProjectV2Field {\n id\n }\n }\n }\n ... on ProjectV2ItemFieldIterationValue {\n title\n iterationId\n startDate\n duration\n field {\n ... on ProjectV2IterationField {\n id\n }\n }\n }\n ... on ProjectV2ItemFieldNumberValue {\n number\n field {\n ... on ProjectV2Field {\n id\n }\n }\n }\n ... on ProjectV2ItemFieldSingleSelectValue {\n optionId\n field {\n ... on ProjectV2SingleSelectField {\n id\n }\n }\n }\n ... on ProjectV2ItemFieldTextValue {\n text\n field {\n ... on ProjectV2Field {\n id\n }\n }\n }\n }\n }\n }\n }\n \n }\n ", "variables": { "projectId": "PVT_1", "itemId": "PVTI_1" @@ -303,7 +298,7 @@ "content-encoding": "gzip", "content-security-policy": "default-src 'none'", "content-type": "application/json; charset=utf-8", - "date": "Mon, 24 Oct 2022 17:33:24 GMT", + "date": "Sun, 29 Jan 2023 18:53:05 GMT", "referrer-policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "server": "GitHub.com", "strict-transport-security": "max-age=31536000; includeSubdomains; preload", @@ -312,12 +307,12 @@ "x-content-type-options": "nosniff", "x-frame-options": "deny", "x-github-media-type": "github.v3; format=json", - "x-github-request-id": "E63D:0D4A:AFBC133:B405C62:6356CC64", + "x-github-request-id": "E309:6763:309E7C:32DEC2:63D6C091", "x-ratelimit-limit": "5000", - "x-ratelimit-remaining": "4671", - "x-ratelimit-reset": "1666635908", + "x-ratelimit-remaining": "4674", + "x-ratelimit-reset": "1675021300", "x-ratelimit-resource": "graphql", - "x-ratelimit-used": "329", + "x-ratelimit-used": "326", "x-xss-protection": "0" }, "data": { @@ -365,21 +360,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "new text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 1, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { diff --git a/test/recorded/api.items.update-by-content-repository-and-number-not-found/fixtures.json b/test/recorded/api.items.update-by-content-repository-and-number-not-found/fixtures.json index fb3cc141..c3b0e0ff 100644 --- a/test/recorded/api.items.update-by-content-repository-and-number-not-found/fixtures.json +++ b/test/recorded/api.items.update-by-content-repository-and-number-not-found/fixtures.json @@ -15,7 +15,7 @@ "content-encoding": "gzip", "content-security-policy": "default-src 'none'", "content-type": "application/json; charset=utf-8", - "date": "Mon, 24 Oct 2022 17:34:06 GMT", + "date": "Sun, 29 Jan 2023 18:53:40 GMT", "referrer-policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "server": "GitHub.com", "strict-transport-security": "max-age=31536000; includeSubdomains; preload", @@ -24,12 +24,12 @@ "x-content-type-options": "nosniff", "x-frame-options": "deny", "x-github-media-type": "github.v3; format=json", - "x-github-request-id": "E666:0A71:AFC5BC5:B41309D:6356CC8E", + "x-github-request-id": "E330:127E:3DBD5B:400070:63D6C0B4", "x-ratelimit-limit": "5000", - "x-ratelimit-remaining": "4645", - "x-ratelimit-reset": "1666635908", + "x-ratelimit-remaining": "4648", + "x-ratelimit-reset": "1675021300", "x-ratelimit-resource": "graphql", - "x-ratelimit-used": "355", + "x-ratelimit-used": "352", "x-xss-protection": "0" }, "data": { @@ -82,36 +82,31 @@ }, { "id": "PVTF_5", - "dataType": "TRACKS", - "name": "Tracks" - }, - { - "id": "PVTF_6", "dataType": "REVIEWERS", "name": "Reviewers" }, { - "id": "PVTF_7", + "id": "PVTF_6", "dataType": "REPOSITORY", "name": "Repository" }, { - "id": "PVTF_8", + "id": "PVTF_7", "dataType": "MILESTONE", "name": "Milestone" }, { - "id": "PVTF_9", + "id": "PVTF_8", "dataType": "TEXT", "name": "Text" }, { - "id": "PVTF_10", + "id": "PVTF_9", "dataType": "NUMBER", "name": "Number" }, { - "id": "PVTF_11", + "id": "PVTF_10", "dataType": "DATE", "name": "Date" }, @@ -186,7 +181,7 @@ "content-encoding": "gzip", "content-security-policy": "default-src 'none'", "content-type": "application/json; charset=utf-8", - "date": "Mon, 24 Oct 2022 17:34:07 GMT", + "date": "Sun, 29 Jan 2023 18:53:41 GMT", "referrer-policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "server": "GitHub.com", "strict-transport-security": "max-age=31536000; includeSubdomains; preload", @@ -195,12 +190,12 @@ "x-content-type-options": "nosniff", "x-frame-options": "deny", "x-github-media-type": "github.v3; format=json", - "x-github-request-id": "E667:05CF:3C63234:3E2DB05:6356CC8F", + "x-github-request-id": "E331:1F3F:346E87:36AECA:63D6C0B5", "x-ratelimit-limit": "5000", - "x-ratelimit-remaining": "4644", - "x-ratelimit-reset": "1666635908", + "x-ratelimit-remaining": "4647", + "x-ratelimit-reset": "1675021300", "x-ratelimit-resource": "graphql", - "x-ratelimit-used": "356", + "x-ratelimit-used": "353", "x-xss-protection": "0" }, "data": { diff --git a/test/recorded/api.items.update-by-content-repository-and-number-optional-non-existing-field/fixtures.json b/test/recorded/api.items.update-by-content-repository-and-number-optional-non-existing-field/fixtures.json index 96b96845..49d032f8 100644 --- a/test/recorded/api.items.update-by-content-repository-and-number-optional-non-existing-field/fixtures.json +++ b/test/recorded/api.items.update-by-content-repository-and-number-optional-non-existing-field/fixtures.json @@ -15,7 +15,7 @@ "content-encoding": "gzip", "content-security-policy": "default-src 'none'", "content-type": "application/json; charset=utf-8", - "date": "Mon, 24 Oct 2022 17:34:17 GMT", + "date": "Sun, 29 Jan 2023 18:53:49 GMT", "referrer-policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "server": "GitHub.com", "strict-transport-security": "max-age=31536000; includeSubdomains; preload", @@ -24,12 +24,12 @@ "x-content-type-options": "nosniff", "x-frame-options": "deny", "x-github-media-type": "github.v3; format=json", - "x-github-request-id": "E66F:9797:340F55C:359F8DE:6356CC99", + "x-github-request-id": "E33C:1F3F:347511:36B5BB:63D6C0BD", "x-ratelimit-limit": "5000", - "x-ratelimit-remaining": "4639", - "x-ratelimit-reset": "1666635908", + "x-ratelimit-remaining": "4642", + "x-ratelimit-reset": "1675021300", "x-ratelimit-resource": "graphql", - "x-ratelimit-used": "361", + "x-ratelimit-used": "358", "x-xss-protection": "0" }, "data": { @@ -82,36 +82,31 @@ }, { "id": "PVTF_5", - "dataType": "TRACKS", - "name": "Tracks" - }, - { - "id": "PVTF_6", "dataType": "REVIEWERS", "name": "Reviewers" }, { - "id": "PVTF_7", + "id": "PVTF_6", "dataType": "REPOSITORY", "name": "Repository" }, { - "id": "PVTF_8", + "id": "PVTF_7", "dataType": "MILESTONE", "name": "Milestone" }, { - "id": "PVTF_9", + "id": "PVTF_8", "dataType": "TEXT", "name": "Text" }, { - "id": "PVTF_10", + "id": "PVTF_9", "dataType": "NUMBER", "name": "Number" }, { - "id": "PVTF_11", + "id": "PVTF_10", "dataType": "DATE", "name": "Date" }, @@ -186,7 +181,7 @@ "content-encoding": "gzip", "content-security-policy": "default-src 'none'", "content-type": "application/json; charset=utf-8", - "date": "Mon, 24 Oct 2022 17:34:19 GMT", + "date": "Sun, 29 Jan 2023 18:53:51 GMT", "referrer-policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "server": "GitHub.com", "strict-transport-security": "max-age=31536000; includeSubdomains; preload", @@ -195,12 +190,12 @@ "x-content-type-options": "nosniff", "x-frame-options": "deny", "x-github-media-type": "github.v3; format=json", - "x-github-request-id": "E670:4EF2:74E9CB6:780A5D5:6356CC9A", + "x-github-request-id": "E33D:820A:32A763:34E9D9:63D6C0BE", "x-ratelimit-limit": "5000", - "x-ratelimit-remaining": "4638", - "x-ratelimit-reset": "1666635908", + "x-ratelimit-remaining": "4641", + "x-ratelimit-reset": "1675021300", "x-ratelimit-resource": "graphql", - "x-ratelimit-used": "362", + "x-ratelimit-used": "359", "x-xss-protection": "0" }, "data": { @@ -257,21 +252,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 1, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { diff --git a/test/recorded/api.items.update-by-content-repository-and-number/fixtures.json b/test/recorded/api.items.update-by-content-repository-and-number/fixtures.json index ac6f2d33..2f01428f 100644 --- a/test/recorded/api.items.update-by-content-repository-and-number/fixtures.json +++ b/test/recorded/api.items.update-by-content-repository-and-number/fixtures.json @@ -15,7 +15,7 @@ "content-encoding": "gzip", "content-security-policy": "default-src 'none'", "content-type": "application/json; charset=utf-8", - "date": "Mon, 24 Oct 2022 17:33:55 GMT", + "date": "Sun, 29 Jan 2023 18:53:31 GMT", "referrer-policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "server": "GitHub.com", "strict-transport-security": "max-age=31536000; includeSubdomains; preload", @@ -24,12 +24,12 @@ "x-content-type-options": "nosniff", "x-frame-options": "deny", "x-github-media-type": "github.v3; format=json", - "x-github-request-id": "E659:71A7:B3B8E46:B80ACA6:6356CC83", + "x-github-request-id": "E327:34F7:38212C:3A6360:63D6C0AB", "x-ratelimit-limit": "5000", - "x-ratelimit-remaining": "4652", - "x-ratelimit-reset": "1666635908", + "x-ratelimit-remaining": "4655", + "x-ratelimit-reset": "1675021300", "x-ratelimit-resource": "graphql", - "x-ratelimit-used": "348", + "x-ratelimit-used": "345", "x-xss-protection": "0" }, "data": { @@ -82,36 +82,31 @@ }, { "id": "PVTF_5", - "dataType": "TRACKS", - "name": "Tracks" - }, - { - "id": "PVTF_6", "dataType": "REVIEWERS", "name": "Reviewers" }, { - "id": "PVTF_7", + "id": "PVTF_6", "dataType": "REPOSITORY", "name": "Repository" }, { - "id": "PVTF_8", + "id": "PVTF_7", "dataType": "MILESTONE", "name": "Milestone" }, { - "id": "PVTF_9", + "id": "PVTF_8", "dataType": "TEXT", "name": "Text" }, { - "id": "PVTF_10", + "id": "PVTF_9", "dataType": "NUMBER", "name": "Number" }, { - "id": "PVTF_11", + "id": "PVTF_10", "dataType": "DATE", "name": "Date" }, @@ -186,7 +181,7 @@ "content-encoding": "gzip", "content-security-policy": "default-src 'none'", "content-type": "application/json; charset=utf-8", - "date": "Mon, 24 Oct 2022 17:33:56 GMT", + "date": "Sun, 29 Jan 2023 18:53:32 GMT", "referrer-policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "server": "GitHub.com", "strict-transport-security": "max-age=31536000; includeSubdomains; preload", @@ -195,12 +190,12 @@ "x-content-type-options": "nosniff", "x-frame-options": "deny", "x-github-media-type": "github.v3; format=json", - "x-github-request-id": "E65A:9797:340CD17:359CFC4:6356CC84", + "x-github-request-id": "E328:4F0E:35D8FC:381945:63D6C0AC", "x-ratelimit-limit": "5000", - "x-ratelimit-remaining": "4651", - "x-ratelimit-reset": "1666635908", + "x-ratelimit-remaining": "4654", + "x-ratelimit-reset": "1675021300", "x-ratelimit-resource": "graphql", - "x-ratelimit-used": "349", + "x-ratelimit-used": "346", "x-xss-protection": "0" }, "data": { @@ -257,21 +252,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 1, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -294,7 +289,7 @@ } }, { - "query": "\n mutation setItemProperties($projectId: ID!, $itemId: ID!) {\n \n text: updateProjectV2ItemFieldValue(input: {projectId: $projectId, itemId: $itemId, fieldId: \"PVTF_lADOBYMIeM4ADzd0zgCMLPg\", value: {text: \"new text\"}}) {\n projectV2Item { \n id\n createdAt\n type\n \n content {\n ... on DraftIssue {\n id\n title\n createdAt\n updatedAt\n author: creator {\n login\n }\n assignees(first: 10) {\n nodes {\n login\n }\n }\n }\n ... on Issue {\n \n id\n databaseId\n number\n title\n url\n createdAt\n author {\n login\n }\n assignees(first: 10) {\n nodes {\n login\n }\n }\n labels(first: 10) {\n nodes {\n name\n }\n }\n closed\n milestone {\n number\n title\n state\n }\n repository {\n name\n }\n\n }\n ... on PullRequest {\n \n id\n databaseId\n number\n title\n url\n createdAt\n author {\n login\n }\n assignees(first: 10) {\n nodes {\n login\n }\n }\n labels(first: 10) {\n nodes {\n name\n }\n }\n closed\n milestone {\n number\n title\n state\n }\n repository {\n name\n }\n\n merged\n }\n }\n\n fieldValues(first: 20) {\n nodes {\n __typename\n ... on ProjectV2ItemFieldDateValue {\n date\n field {\n ... on ProjectV2Field {\n id\n }\n }\n }\n ... on ProjectV2ItemFieldIterationValue {\n title\n iterationId\n startDate\n duration\n field {\n ... on ProjectV2IterationField {\n id\n }\n }\n }\n ... on ProjectV2ItemFieldNumberValue {\n number\n field {\n ... on ProjectV2Field {\n id\n }\n }\n }\n ... on ProjectV2ItemFieldSingleSelectValue {\n optionId\n field {\n ... on ProjectV2SingleSelectField {\n id\n }\n }\n }\n ... on ProjectV2ItemFieldTextValue {\n text\n field {\n ... on ProjectV2Field {\n id\n }\n }\n }\n }\n }\n }\n }\n \n }\n ", + "query": "\n mutation setItemProperties($projectId: ID!, $itemId: ID!) {\n \n text: updateProjectV2ItemFieldValue(input: {projectId: $projectId, itemId: $itemId, fieldId: \"PVTF_lADOBYMIeM4ADzd0zgCMLPg\", value: {text: \"new text\"}}) {\n projectV2Item { \n id\n createdAt\n type\n \n content {\n ... on DraftIssue {\n id\n title\n createdAt\n updatedAt\n author: creator {\n login\n }\n assignees(first: 10) {\n nodes {\n login\n }\n }\n }\n ... on Issue {\n \n id\n databaseId\n number\n title\n url\n createdAt\n author {\n login\n }\n assignees(first: 10) {\n nodes {\n login\n }\n }\n labels(first: 10) {\n nodes {\n name\n }\n }\n closed\n milestone {\n number\n title\n state\n }\n repository {\n name\n }\n\n }\n ... on PullRequest {\n \n id\n databaseId\n number\n title\n url\n createdAt\n author {\n login\n }\n assignees(first: 10) {\n nodes {\n login\n }\n }\n labels(first: 10) {\n nodes {\n name\n }\n }\n closed\n milestone {\n number\n title\n state\n }\n repository {\n name\n }\n\n merged\n }\n }\n\n fieldValues(first: 20) {\n nodes {\n __typename\n ... on ProjectV2ItemFieldDateValue {\n date\n field {\n ... on ProjectV2Field {\n id\n }\n }\n }\n ... on ProjectV2ItemFieldIterationValue {\n title\n iterationId\n startDate\n duration\n field {\n ... on ProjectV2IterationField {\n id\n }\n }\n }\n ... on ProjectV2ItemFieldNumberValue {\n number\n field {\n ... on ProjectV2Field {\n id\n }\n }\n }\n ... on ProjectV2ItemFieldSingleSelectValue {\n optionId\n field {\n ... on ProjectV2SingleSelectField {\n id\n }\n }\n }\n ... on ProjectV2ItemFieldTextValue {\n text\n field {\n ... on ProjectV2Field {\n id\n }\n }\n }\n }\n }\n }\n }\n \n }\n ", "variables": { "projectId": "PVT_1", "itemId": "PVTI_1" @@ -309,7 +304,7 @@ "content-encoding": "gzip", "content-security-policy": "default-src 'none'", "content-type": "application/json; charset=utf-8", - "date": "Mon, 24 Oct 2022 17:33:58 GMT", + "date": "Sun, 29 Jan 2023 18:53:34 GMT", "referrer-policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "server": "GitHub.com", "strict-transport-security": "max-age=31536000; includeSubdomains; preload", @@ -318,12 +313,12 @@ "x-content-type-options": "nosniff", "x-frame-options": "deny", "x-github-media-type": "github.v3; format=json", - "x-github-request-id": "E65B:3B75:37873BB:392D451:6356CC85", + "x-github-request-id": "E329:778A:30DBCC:331B6E:63D6C0AD", "x-ratelimit-limit": "5000", - "x-ratelimit-remaining": "4650", - "x-ratelimit-reset": "1666635908", + "x-ratelimit-remaining": "4653", + "x-ratelimit-reset": "1675021300", "x-ratelimit-resource": "graphql", - "x-ratelimit-used": "350", + "x-ratelimit-used": "347", "x-xss-protection": "0" }, "data": { @@ -371,21 +366,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "new text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 1, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { diff --git a/test/recorded/api.items.update-not-found/fixtures.json b/test/recorded/api.items.update-not-found/fixtures.json index ee5bc73a..9719bce4 100644 --- a/test/recorded/api.items.update-not-found/fixtures.json +++ b/test/recorded/api.items.update-not-found/fixtures.json @@ -15,7 +15,7 @@ "content-encoding": "gzip", "content-security-policy": "default-src 'none'", "content-type": "application/json; charset=utf-8", - "date": "Mon, 24 Oct 2022 17:34:27 GMT", + "date": "Sun, 29 Jan 2023 18:53:57 GMT", "referrer-policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "server": "GitHub.com", "strict-transport-security": "max-age=31536000; includeSubdomains; preload", @@ -24,12 +24,12 @@ "x-content-type-options": "nosniff", "x-frame-options": "deny", "x-github-media-type": "github.v3; format=json", - "x-github-request-id": "E678:97C9:2EE731:301961:6356CCA2", + "x-github-request-id": "E346:5DBC:393C9C:3B7EDA:63D6C0C5", "x-ratelimit-limit": "5000", - "x-ratelimit-remaining": "4633", - "x-ratelimit-reset": "1666635908", + "x-ratelimit-remaining": "4636", + "x-ratelimit-reset": "1675021300", "x-ratelimit-resource": "graphql", - "x-ratelimit-used": "367", + "x-ratelimit-used": "364", "x-xss-protection": "0" }, "data": { @@ -82,36 +82,31 @@ }, { "id": "PVTF_5", - "dataType": "TRACKS", - "name": "Tracks" - }, - { - "id": "PVTF_6", "dataType": "REVIEWERS", "name": "Reviewers" }, { - "id": "PVTF_7", + "id": "PVTF_6", "dataType": "REPOSITORY", "name": "Repository" }, { - "id": "PVTF_8", + "id": "PVTF_7", "dataType": "MILESTONE", "name": "Milestone" }, { - "id": "PVTF_9", + "id": "PVTF_8", "dataType": "TEXT", "name": "Text" }, { - "id": "PVTF_10", + "id": "PVTF_9", "dataType": "NUMBER", "name": "Number" }, { - "id": "PVTF_11", + "id": "PVTF_10", "dataType": "DATE", "name": "Date" }, @@ -184,7 +179,7 @@ "content-encoding": "gzip", "content-security-policy": "default-src 'none'", "content-type": "application/json; charset=utf-8", - "date": "Mon, 24 Oct 2022 17:34:28 GMT", + "date": "Sun, 29 Jan 2023 18:53:58 GMT", "referrer-policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "server": "GitHub.com", "strict-transport-security": "max-age=31536000; includeSubdomains; preload", @@ -193,12 +188,12 @@ "x-content-type-options": "nosniff", "x-frame-options": "deny", "x-github-media-type": "github.v3; format=json", - "x-github-request-id": "E679:0DBE:38ECA51:3AA6EB7:6356CCA3", + "x-github-request-id": "E347:3763:39A313:3BE46A:63D6C0C6", "x-ratelimit-limit": "5000", - "x-ratelimit-remaining": "4632", - "x-ratelimit-reset": "1666635908", + "x-ratelimit-remaining": "4635", + "x-ratelimit-reset": "1675021300", "x-ratelimit-resource": "graphql", - "x-ratelimit-used": "368", + "x-ratelimit-used": "365", "x-xss-protection": "0" }, "data": { diff --git a/test/recorded/api.items.update-optional-non-existing-field/fixtures.json b/test/recorded/api.items.update-optional-non-existing-field/fixtures.json index 86def770..81bf10fc 100644 --- a/test/recorded/api.items.update-optional-non-existing-field/fixtures.json +++ b/test/recorded/api.items.update-optional-non-existing-field/fixtures.json @@ -15,7 +15,7 @@ "content-encoding": "gzip", "content-security-policy": "default-src 'none'", "content-type": "application/json; charset=utf-8", - "date": "Mon, 24 Oct 2022 17:34:37 GMT", + "date": "Sun, 29 Jan 2023 18:54:05 GMT", "referrer-policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "server": "GitHub.com", "strict-transport-security": "max-age=31536000; includeSubdomains; preload", @@ -24,12 +24,12 @@ "x-content-type-options": "nosniff", "x-frame-options": "deny", "x-github-media-type": "github.v3; format=json", - "x-github-request-id": "E681:30A5:42524C:43F862:6356CCAD", + "x-github-request-id": "E353:127E:3DD6E9:401B1F:63D6C0CD", "x-ratelimit-limit": "5000", - "x-ratelimit-remaining": "4627", - "x-ratelimit-reset": "1666635908", + "x-ratelimit-remaining": "4630", + "x-ratelimit-reset": "1675021300", "x-ratelimit-resource": "graphql", - "x-ratelimit-used": "373", + "x-ratelimit-used": "370", "x-xss-protection": "0" }, "data": { @@ -82,36 +82,31 @@ }, { "id": "PVTF_5", - "dataType": "TRACKS", - "name": "Tracks" - }, - { - "id": "PVTF_6", "dataType": "REVIEWERS", "name": "Reviewers" }, { - "id": "PVTF_7", + "id": "PVTF_6", "dataType": "REPOSITORY", "name": "Repository" }, { - "id": "PVTF_8", + "id": "PVTF_7", "dataType": "MILESTONE", "name": "Milestone" }, { - "id": "PVTF_9", + "id": "PVTF_8", "dataType": "TEXT", "name": "Text" }, { - "id": "PVTF_10", + "id": "PVTF_9", "dataType": "NUMBER", "name": "Number" }, { - "id": "PVTF_11", + "id": "PVTF_10", "dataType": "DATE", "name": "Date" }, @@ -184,7 +179,7 @@ "content-encoding": "gzip", "content-security-policy": "default-src 'none'", "content-type": "application/json; charset=utf-8", - "date": "Mon, 24 Oct 2022 17:34:38 GMT", + "date": "Sun, 29 Jan 2023 18:54:07 GMT", "referrer-policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "server": "GitHub.com", "strict-transport-security": "max-age=31536000; includeSubdomains; preload", @@ -193,12 +188,12 @@ "x-content-type-options": "nosniff", "x-frame-options": "deny", "x-github-media-type": "github.v3; format=json", - "x-github-request-id": "E683:3B75:378C064:39322A1:6356CCAE", + "x-github-request-id": "E354:34F7:384133:3A84F5:63D6C0CE", "x-ratelimit-limit": "5000", - "x-ratelimit-remaining": "4626", - "x-ratelimit-reset": "1666635908", + "x-ratelimit-remaining": "4629", + "x-ratelimit-reset": "1675021300", "x-ratelimit-resource": "graphql", - "x-ratelimit-used": "374", + "x-ratelimit-used": "371", "x-xss-protection": "0" }, "data": { @@ -245,21 +240,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 1, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { diff --git a/test/recorded/api.items.update-status-with-spaces-in-field-keys/fixtures.json b/test/recorded/api.items.update-status-with-spaces-in-field-keys/fixtures.json index 9adfd7a9..849c9791 100644 --- a/test/recorded/api.items.update-status-with-spaces-in-field-keys/fixtures.json +++ b/test/recorded/api.items.update-status-with-spaces-in-field-keys/fixtures.json @@ -15,7 +15,7 @@ "content-encoding": "gzip", "content-security-policy": "default-src 'none'", "content-type": "application/json; charset=utf-8", - "date": "Mon, 24 Oct 2022 17:34:50 GMT", + "date": "Sun, 29 Jan 2023 18:54:16 GMT", "referrer-policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "server": "GitHub.com", "strict-transport-security": "max-age=31536000; includeSubdomains; preload", @@ -24,12 +24,12 @@ "x-content-type-options": "nosniff", "x-frame-options": "deny", "x-github-media-type": "github.v3; format=json", - "x-github-request-id": "E68E:6582:ABFABFC:B048B94:6356CCBA", + "x-github-request-id": "E35E:778A:310109:334265:63D6C0D8", "x-ratelimit-limit": "5000", - "x-ratelimit-remaining": "4619", - "x-ratelimit-reset": "1666635908", + "x-ratelimit-remaining": "4622", + "x-ratelimit-reset": "1675021300", "x-ratelimit-resource": "graphql", - "x-ratelimit-used": "381", + "x-ratelimit-used": "378", "x-xss-protection": "0" }, "data": { @@ -82,36 +82,31 @@ }, { "id": "PVTF_5", - "dataType": "TRACKS", - "name": "Tracks" - }, - { - "id": "PVTF_6", "dataType": "REVIEWERS", "name": "Reviewers" }, { - "id": "PVTF_7", + "id": "PVTF_6", "dataType": "REPOSITORY", "name": "Repository" }, { - "id": "PVTF_8", + "id": "PVTF_7", "dataType": "MILESTONE", "name": "Milestone" }, { - "id": "PVTF_9", + "id": "PVTF_8", "dataType": "TEXT", "name": "Text" }, { - "id": "PVTF_10", + "id": "PVTF_9", "dataType": "NUMBER", "name": "Number" }, { - "id": "PVTF_11", + "id": "PVTF_10", "dataType": "DATE", "name": "Date" }, @@ -184,7 +179,7 @@ "content-encoding": "gzip", "content-security-policy": "default-src 'none'", "content-type": "application/json; charset=utf-8", - "date": "Mon, 24 Oct 2022 17:34:51 GMT", + "date": "Sun, 29 Jan 2023 18:54:17 GMT", "referrer-policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "server": "GitHub.com", "strict-transport-security": "max-age=31536000; includeSubdomains; preload", @@ -193,12 +188,12 @@ "x-content-type-options": "nosniff", "x-frame-options": "deny", "x-github-media-type": "github.v3; format=json", - "x-github-request-id": "E68F:30A5:426847:440EF3:6356CCBB", + "x-github-request-id": "E35F:3E1B:3BAD8B:3DF0D1:63D6C0D9", "x-ratelimit-limit": "5000", - "x-ratelimit-remaining": "4618", - "x-ratelimit-reset": "1666635908", + "x-ratelimit-remaining": "4621", + "x-ratelimit-reset": "1675021300", "x-ratelimit-resource": "graphql", - "x-ratelimit-used": "382", + "x-ratelimit-used": "379", "x-xss-protection": "0" }, "data": { @@ -245,21 +240,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 1, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -277,7 +272,7 @@ } }, { - "query": "\n mutation setItemProperties($projectId: ID!, $itemId: ID!) {\n \n MyText: updateProjectV2ItemFieldValue(input: {projectId: $projectId, itemId: $itemId, fieldId: \"PVTF_lADOBYMIeM4ADzd0zgCMLPg\", value: {text: \"new text\"}}) {\n projectV2Item { \n id\n createdAt\n type\n \n content {\n ... on DraftIssue {\n id\n title\n createdAt\n updatedAt\n author: creator {\n login\n }\n assignees(first: 10) {\n nodes {\n login\n }\n }\n }\n ... on Issue {\n \n id\n databaseId\n number\n title\n url\n createdAt\n author {\n login\n }\n assignees(first: 10) {\n nodes {\n login\n }\n }\n labels(first: 10) {\n nodes {\n name\n }\n }\n closed\n milestone {\n number\n title\n state\n }\n repository {\n name\n }\n\n }\n ... on PullRequest {\n \n id\n databaseId\n number\n title\n url\n createdAt\n author {\n login\n }\n assignees(first: 10) {\n nodes {\n login\n }\n }\n labels(first: 10) {\n nodes {\n name\n }\n }\n closed\n milestone {\n number\n title\n state\n }\n repository {\n name\n }\n\n merged\n }\n }\n\n fieldValues(first: 20) {\n nodes {\n __typename\n ... on ProjectV2ItemFieldDateValue {\n date\n field {\n ... on ProjectV2Field {\n id\n }\n }\n }\n ... on ProjectV2ItemFieldIterationValue {\n title\n iterationId\n startDate\n duration\n field {\n ... on ProjectV2IterationField {\n id\n }\n }\n }\n ... on ProjectV2ItemFieldNumberValue {\n number\n field {\n ... on ProjectV2Field {\n id\n }\n }\n }\n ... on ProjectV2ItemFieldSingleSelectValue {\n optionId\n field {\n ... on ProjectV2SingleSelectField {\n id\n }\n }\n }\n ... on ProjectV2ItemFieldTextValue {\n text\n field {\n ... on ProjectV2Field {\n id\n }\n }\n }\n }\n }\n }\n }\n \n }\n ", + "query": "\n mutation setItemProperties($projectId: ID!, $itemId: ID!) {\n \n MyText: updateProjectV2ItemFieldValue(input: {projectId: $projectId, itemId: $itemId, fieldId: \"PVTF_lADOBYMIeM4ADzd0zgCMLPg\", value: {text: \"new text\"}}) {\n projectV2Item { \n id\n createdAt\n type\n \n content {\n ... on DraftIssue {\n id\n title\n createdAt\n updatedAt\n author: creator {\n login\n }\n assignees(first: 10) {\n nodes {\n login\n }\n }\n }\n ... on Issue {\n \n id\n databaseId\n number\n title\n url\n createdAt\n author {\n login\n }\n assignees(first: 10) {\n nodes {\n login\n }\n }\n labels(first: 10) {\n nodes {\n name\n }\n }\n closed\n milestone {\n number\n title\n state\n }\n repository {\n name\n }\n\n }\n ... on PullRequest {\n \n id\n databaseId\n number\n title\n url\n createdAt\n author {\n login\n }\n assignees(first: 10) {\n nodes {\n login\n }\n }\n labels(first: 10) {\n nodes {\n name\n }\n }\n closed\n milestone {\n number\n title\n state\n }\n repository {\n name\n }\n\n merged\n }\n }\n\n fieldValues(first: 20) {\n nodes {\n __typename\n ... on ProjectV2ItemFieldDateValue {\n date\n field {\n ... on ProjectV2Field {\n id\n }\n }\n }\n ... on ProjectV2ItemFieldIterationValue {\n title\n iterationId\n startDate\n duration\n field {\n ... on ProjectV2IterationField {\n id\n }\n }\n }\n ... on ProjectV2ItemFieldNumberValue {\n number\n field {\n ... on ProjectV2Field {\n id\n }\n }\n }\n ... on ProjectV2ItemFieldSingleSelectValue {\n optionId\n field {\n ... on ProjectV2SingleSelectField {\n id\n }\n }\n }\n ... on ProjectV2ItemFieldTextValue {\n text\n field {\n ... on ProjectV2Field {\n id\n }\n }\n }\n }\n }\n }\n }\n \n }\n ", "variables": { "projectId": "PVT_1", "itemId": "PVTI_1" @@ -292,7 +287,7 @@ "content-encoding": "gzip", "content-security-policy": "default-src 'none'", "content-type": "application/json; charset=utf-8", - "date": "Mon, 24 Oct 2022 17:34:52 GMT", + "date": "Sun, 29 Jan 2023 18:54:19 GMT", "referrer-policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "server": "GitHub.com", "strict-transport-security": "max-age=31536000; includeSubdomains; preload", @@ -301,12 +296,12 @@ "x-content-type-options": "nosniff", "x-frame-options": "deny", "x-github-media-type": "github.v3; format=json", - "x-github-request-id": "E690:0A71:AFCB28C:B418938:6356CCBC", + "x-github-request-id": "E360:778A:31029F:334414:63D6C0DA", "x-ratelimit-limit": "5000", - "x-ratelimit-remaining": "4617", - "x-ratelimit-reset": "1666635908", + "x-ratelimit-remaining": "4620", + "x-ratelimit-reset": "1675021300", "x-ratelimit-resource": "graphql", - "x-ratelimit-used": "383", + "x-ratelimit-used": "380", "x-xss-protection": "0" }, "data": { @@ -354,21 +349,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "new text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 1, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { diff --git a/test/recorded/api.items.update-status-without-user-fields/fixtures.json b/test/recorded/api.items.update-status-without-user-fields/fixtures.json index 6d87e38d..9302a6fa 100644 --- a/test/recorded/api.items.update-status-without-user-fields/fixtures.json +++ b/test/recorded/api.items.update-status-without-user-fields/fixtures.json @@ -15,7 +15,7 @@ "content-encoding": "gzip", "content-security-policy": "default-src 'none'", "content-type": "application/json; charset=utf-8", - "date": "Mon, 24 Oct 2022 17:35:04 GMT", + "date": "Sun, 29 Jan 2023 18:54:29 GMT", "referrer-policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "server": "GitHub.com", "strict-transport-security": "max-age=31536000; includeSubdomains; preload", @@ -24,12 +24,12 @@ "x-content-type-options": "nosniff", "x-frame-options": "deny", "x-github-media-type": "github.v3; format=json", - "x-github-request-id": "E69A:0A68:BFBC5C0:C40B7A3:6356CCC7", + "x-github-request-id": "E36B:8CE2:332D26:35711E:63D6C0E4", "x-ratelimit-limit": "5000", - "x-ratelimit-remaining": "4610", - "x-ratelimit-reset": "1666635908", + "x-ratelimit-remaining": "4613", + "x-ratelimit-reset": "1675021300", "x-ratelimit-resource": "graphql", - "x-ratelimit-used": "390", + "x-ratelimit-used": "387", "x-xss-protection": "0" }, "data": { @@ -82,36 +82,31 @@ }, { "id": "PVTF_5", - "dataType": "TRACKS", - "name": "Tracks" - }, - { - "id": "PVTF_6", "dataType": "REVIEWERS", "name": "Reviewers" }, { - "id": "PVTF_7", + "id": "PVTF_6", "dataType": "REPOSITORY", "name": "Repository" }, { - "id": "PVTF_8", + "id": "PVTF_7", "dataType": "MILESTONE", "name": "Milestone" }, { - "id": "PVTF_9", + "id": "PVTF_8", "dataType": "TEXT", "name": "Text" }, { - "id": "PVTF_10", + "id": "PVTF_9", "dataType": "NUMBER", "name": "Number" }, { - "id": "PVTF_11", + "id": "PVTF_10", "dataType": "DATE", "name": "Date" }, @@ -184,7 +179,7 @@ "content-encoding": "gzip", "content-security-policy": "default-src 'none'", "content-type": "application/json; charset=utf-8", - "date": "Mon, 24 Oct 2022 17:35:05 GMT", + "date": "Sun, 29 Jan 2023 18:54:30 GMT", "referrer-policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "server": "GitHub.com", "strict-transport-security": "max-age=31536000; includeSubdomains; preload", @@ -193,12 +188,12 @@ "x-content-type-options": "nosniff", "x-frame-options": "deny", "x-github-media-type": "github.v3; format=json", - "x-github-request-id": "E69B:32CE:170F846:17AF6E5:6356CCC8", + "x-github-request-id": "E36C:7B16:2FD2A6:321598:63D6C0E5", "x-ratelimit-limit": "5000", - "x-ratelimit-remaining": "4609", - "x-ratelimit-reset": "1666635908", + "x-ratelimit-remaining": "4612", + "x-ratelimit-reset": "1675021300", "x-ratelimit-resource": "graphql", - "x-ratelimit-used": "391", + "x-ratelimit-used": "388", "x-xss-protection": "0" }, "data": { @@ -245,21 +240,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 1, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -277,7 +272,7 @@ } }, { - "query": "\n mutation setItemProperties($projectId: ID!, $itemId: ID!) {\n \n status: updateProjectV2ItemFieldValue(input: {projectId: $projectId, itemId: $itemId, fieldId: \"PVTSSF_lADOBYMIeM4ADzd0zgCMLM0\", value: {singleSelectOptionId: \"47fc9ee4\"}}) {\n projectV2Item { \n id\n createdAt\n type\n \n content {\n ... on DraftIssue {\n id\n title\n createdAt\n updatedAt\n author: creator {\n login\n }\n assignees(first: 10) {\n nodes {\n login\n }\n }\n }\n ... on Issue {\n \n id\n databaseId\n number\n title\n url\n createdAt\n author {\n login\n }\n assignees(first: 10) {\n nodes {\n login\n }\n }\n labels(first: 10) {\n nodes {\n name\n }\n }\n closed\n milestone {\n number\n title\n state\n }\n repository {\n name\n }\n\n }\n ... on PullRequest {\n \n id\n databaseId\n number\n title\n url\n createdAt\n author {\n login\n }\n assignees(first: 10) {\n nodes {\n login\n }\n }\n labels(first: 10) {\n nodes {\n name\n }\n }\n closed\n milestone {\n number\n title\n state\n }\n repository {\n name\n }\n\n merged\n }\n }\n\n fieldValues(first: 20) {\n nodes {\n __typename\n ... on ProjectV2ItemFieldDateValue {\n date\n field {\n ... on ProjectV2Field {\n id\n }\n }\n }\n ... on ProjectV2ItemFieldIterationValue {\n title\n iterationId\n startDate\n duration\n field {\n ... on ProjectV2IterationField {\n id\n }\n }\n }\n ... on ProjectV2ItemFieldNumberValue {\n number\n field {\n ... on ProjectV2Field {\n id\n }\n }\n }\n ... on ProjectV2ItemFieldSingleSelectValue {\n optionId\n field {\n ... on ProjectV2SingleSelectField {\n id\n }\n }\n }\n ... on ProjectV2ItemFieldTextValue {\n text\n field {\n ... on ProjectV2Field {\n id\n }\n }\n }\n }\n }\n }\n }\n \n }\n ", + "query": "\n mutation setItemProperties($projectId: ID!, $itemId: ID!) {\n \n status: updateProjectV2ItemFieldValue(input: {projectId: $projectId, itemId: $itemId, fieldId: \"PVTSSF_lADOBYMIeM4ADzd0zgCMLM0\", value: {singleSelectOptionId: \"47fc9ee4\"}}) {\n projectV2Item { \n id\n createdAt\n type\n \n content {\n ... on DraftIssue {\n id\n title\n createdAt\n updatedAt\n author: creator {\n login\n }\n assignees(first: 10) {\n nodes {\n login\n }\n }\n }\n ... on Issue {\n \n id\n databaseId\n number\n title\n url\n createdAt\n author {\n login\n }\n assignees(first: 10) {\n nodes {\n login\n }\n }\n labels(first: 10) {\n nodes {\n name\n }\n }\n closed\n milestone {\n number\n title\n state\n }\n repository {\n name\n }\n\n }\n ... on PullRequest {\n \n id\n databaseId\n number\n title\n url\n createdAt\n author {\n login\n }\n assignees(first: 10) {\n nodes {\n login\n }\n }\n labels(first: 10) {\n nodes {\n name\n }\n }\n closed\n milestone {\n number\n title\n state\n }\n repository {\n name\n }\n\n merged\n }\n }\n\n fieldValues(first: 20) {\n nodes {\n __typename\n ... on ProjectV2ItemFieldDateValue {\n date\n field {\n ... on ProjectV2Field {\n id\n }\n }\n }\n ... on ProjectV2ItemFieldIterationValue {\n title\n iterationId\n startDate\n duration\n field {\n ... on ProjectV2IterationField {\n id\n }\n }\n }\n ... on ProjectV2ItemFieldNumberValue {\n number\n field {\n ... on ProjectV2Field {\n id\n }\n }\n }\n ... on ProjectV2ItemFieldSingleSelectValue {\n optionId\n field {\n ... on ProjectV2SingleSelectField {\n id\n }\n }\n }\n ... on ProjectV2ItemFieldTextValue {\n text\n field {\n ... on ProjectV2Field {\n id\n }\n }\n }\n }\n }\n }\n }\n \n }\n ", "variables": { "projectId": "PVT_1", "itemId": "PVTI_1" @@ -292,7 +287,7 @@ "content-encoding": "gzip", "content-security-policy": "default-src 'none'", "content-type": "application/json; charset=utf-8", - "date": "Mon, 24 Oct 2022 17:35:06 GMT", + "date": "Sun, 29 Jan 2023 18:54:31 GMT", "referrer-policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "server": "GitHub.com", "strict-transport-security": "max-age=31536000; includeSubdomains; preload", @@ -301,12 +296,12 @@ "x-content-type-options": "nosniff", "x-frame-options": "deny", "x-github-media-type": "github.v3; format=json", - "x-github-request-id": "E69C:3CCF:AE15227:B264446:6356CCC9", + "x-github-request-id": "E36D:0782:3CB571:3EF888:63D6C0E6", "x-ratelimit-limit": "5000", - "x-ratelimit-remaining": "4608", - "x-ratelimit-reset": "1666635908", + "x-ratelimit-remaining": "4611", + "x-ratelimit-reset": "1675021300", "x-ratelimit-resource": "graphql", - "x-ratelimit-used": "392", + "x-ratelimit-used": "389", "x-xss-protection": "0" }, "data": { @@ -354,21 +349,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 1, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { diff --git a/test/recorded/api.items.update-unsetting-single-select-field/fixtures.json b/test/recorded/api.items.update-unsetting-single-select-field/fixtures.json index b5898569..f9656232 100644 --- a/test/recorded/api.items.update-unsetting-single-select-field/fixtures.json +++ b/test/recorded/api.items.update-unsetting-single-select-field/fixtures.json @@ -15,7 +15,7 @@ "content-encoding": "gzip", "content-security-policy": "default-src 'none'", "content-type": "application/json; charset=utf-8", - "date": "Mon, 24 Oct 2022 18:14:56 GMT", + "date": "Sun, 29 Jan 2023 18:54:40 GMT", "referrer-policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "server": "GitHub.com", "strict-transport-security": "max-age=31536000; includeSubdomains; preload", @@ -24,12 +24,12 @@ "x-content-type-options": "nosniff", "x-frame-options": "deny", "x-github-media-type": "github.v3; format=json", - "x-github-request-id": "E8A9:05CF:3D829A5:3F53988:6356D61F", + "x-github-request-id": "E37A:3763:39CC56:3C0F57:63D6C0F0", "x-ratelimit-limit": "5000", - "x-ratelimit-remaining": "4519", - "x-ratelimit-reset": "1666635908", + "x-ratelimit-remaining": "4604", + "x-ratelimit-reset": "1675021300", "x-ratelimit-resource": "graphql", - "x-ratelimit-used": "481", + "x-ratelimit-used": "396", "x-xss-protection": "0" }, "data": { @@ -82,36 +82,31 @@ }, { "id": "PVTF_5", - "dataType": "TRACKS", - "name": "Tracks" - }, - { - "id": "PVTF_6", "dataType": "REVIEWERS", "name": "Reviewers" }, { - "id": "PVTF_7", + "id": "PVTF_6", "dataType": "REPOSITORY", "name": "Repository" }, { - "id": "PVTF_8", + "id": "PVTF_7", "dataType": "MILESTONE", "name": "Milestone" }, { - "id": "PVTF_9", + "id": "PVTF_8", "dataType": "TEXT", "name": "Text" }, { - "id": "PVTF_10", + "id": "PVTF_9", "dataType": "NUMBER", "name": "Number" }, { - "id": "PVTF_11", + "id": "PVTF_10", "dataType": "DATE", "name": "Date" }, @@ -184,7 +179,7 @@ "content-encoding": "gzip", "content-security-policy": "default-src 'none'", "content-type": "application/json; charset=utf-8", - "date": "Mon, 24 Oct 2022 18:14:57 GMT", + "date": "Sun, 29 Jan 2023 18:54:41 GMT", "referrer-policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "server": "GitHub.com", "strict-transport-security": "max-age=31536000; includeSubdomains; preload", @@ -193,12 +188,12 @@ "x-content-type-options": "nosniff", "x-frame-options": "deny", "x-github-media-type": "github.v3; format=json", - "x-github-request-id": "E8AA:0D4A:B0F7068:B54744B:6356D620", + "x-github-request-id": "E37B:89D2:391600:3B5B7F:63D6C0F1", "x-ratelimit-limit": "5000", - "x-ratelimit-remaining": "4518", - "x-ratelimit-reset": "1666635908", + "x-ratelimit-remaining": "4603", + "x-ratelimit-reset": "1675021300", "x-ratelimit-resource": "graphql", - "x-ratelimit-used": "482", + "x-ratelimit-used": "397", "x-xss-protection": "0" }, "data": { @@ -271,7 +266,7 @@ "content-encoding": "gzip", "content-security-policy": "default-src 'none'", "content-type": "application/json; charset=utf-8", - "date": "Mon, 24 Oct 2022 18:14:58 GMT", + "date": "Sun, 29 Jan 2023 18:54:42 GMT", "referrer-policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "server": "GitHub.com", "strict-transport-security": "max-age=31536000; includeSubdomains; preload", @@ -280,12 +275,12 @@ "x-content-type-options": "nosniff", "x-frame-options": "deny", "x-github-media-type": "github.v3; format=json", - "x-github-request-id": "E8AB:3CCF:AF3EDE8:B394560:6356D621", + "x-github-request-id": "E37C:820A:32D5B1:351A32:63D6C0F2", "x-ratelimit-limit": "5000", - "x-ratelimit-remaining": "4517", - "x-ratelimit-reset": "1666635908", + "x-ratelimit-remaining": "4602", + "x-ratelimit-reset": "1675021300", "x-ratelimit-resource": "graphql", - "x-ratelimit-used": "483", + "x-ratelimit-used": "398", "x-xss-protection": "0" }, "data": { diff --git a/test/recorded/api.items.update-unsetting-text-field/fixtures.json b/test/recorded/api.items.update-unsetting-text-field/fixtures.json index 8c7cf044..b17edf61 100644 --- a/test/recorded/api.items.update-unsetting-text-field/fixtures.json +++ b/test/recorded/api.items.update-unsetting-text-field/fixtures.json @@ -15,7 +15,7 @@ "content-encoding": "gzip", "content-security-policy": "default-src 'none'", "content-type": "application/json; charset=utf-8", - "date": "Mon, 24 Oct 2022 17:50:12 GMT", + "date": "Sun, 29 Jan 2023 18:54:53 GMT", "referrer-policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "server": "GitHub.com", "strict-transport-security": "max-age=31536000; includeSubdomains; preload", @@ -24,12 +24,12 @@ "x-content-type-options": "nosniff", "x-frame-options": "deny", "x-github-media-type": "github.v3; format=json", - "x-github-request-id": "E785:3B75:37F4065:399C99E:6356D054", + "x-github-request-id": "E387:5DBC:3974EF:3BB97B:63D6C0FC", "x-ratelimit-limit": "5000", - "x-ratelimit-remaining": "4546", - "x-ratelimit-reset": "1666635908", + "x-ratelimit-remaining": "4595", + "x-ratelimit-reset": "1675021300", "x-ratelimit-resource": "graphql", - "x-ratelimit-used": "454", + "x-ratelimit-used": "405", "x-xss-protection": "0" }, "data": { @@ -82,36 +82,31 @@ }, { "id": "PVTF_5", - "dataType": "TRACKS", - "name": "Tracks" - }, - { - "id": "PVTF_6", "dataType": "REVIEWERS", "name": "Reviewers" }, { - "id": "PVTF_7", + "id": "PVTF_6", "dataType": "REPOSITORY", "name": "Repository" }, { - "id": "PVTF_8", + "id": "PVTF_7", "dataType": "MILESTONE", "name": "Milestone" }, { - "id": "PVTF_9", + "id": "PVTF_8", "dataType": "TEXT", "name": "Text" }, { - "id": "PVTF_10", + "id": "PVTF_9", "dataType": "NUMBER", "name": "Number" }, { - "id": "PVTF_11", + "id": "PVTF_10", "dataType": "DATE", "name": "Date" }, @@ -184,7 +179,7 @@ "content-encoding": "gzip", "content-security-policy": "default-src 'none'", "content-type": "application/json; charset=utf-8", - "date": "Mon, 24 Oct 2022 17:50:13 GMT", + "date": "Sun, 29 Jan 2023 18:54:54 GMT", "referrer-policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "server": "GitHub.com", "strict-transport-security": "max-age=31536000; includeSubdomains; preload", @@ -193,12 +188,12 @@ "x-content-type-options": "nosniff", "x-frame-options": "deny", "x-github-media-type": "github.v3; format=json", - "x-github-request-id": "E786:97C9:352644:368064:6356D055", + "x-github-request-id": "E389:1F3F:34B109:36F440:63D6C0FD", "x-ratelimit-limit": "5000", - "x-ratelimit-remaining": "4545", - "x-ratelimit-reset": "1666635908", + "x-ratelimit-remaining": "4594", + "x-ratelimit-reset": "1675021300", "x-ratelimit-resource": "graphql", - "x-ratelimit-used": "455", + "x-ratelimit-used": "406", "x-xss-protection": "0" }, "data": { @@ -245,21 +240,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 1, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -277,7 +272,7 @@ } }, { - "query": "\n mutation setItemProperties($projectId: ID!, $itemId: ID!) {\n \n text: updateProjectV2ItemFieldValue(input: {projectId: $projectId, itemId: $itemId, fieldId: \"PVTF_lADOBYMIeM4ADzd0zgCMLPg\", value: {text: \"\"}}) {\n projectV2Item { \n id\n createdAt\n type\n \n content {\n ... on DraftIssue {\n id\n title\n createdAt\n updatedAt\n author: creator {\n login\n }\n assignees(first: 10) {\n nodes {\n login\n }\n }\n }\n ... on Issue {\n \n id\n databaseId\n number\n title\n url\n createdAt\n author {\n login\n }\n assignees(first: 10) {\n nodes {\n login\n }\n }\n labels(first: 10) {\n nodes {\n name\n }\n }\n closed\n milestone {\n number\n title\n state\n }\n repository {\n name\n }\n\n }\n ... on PullRequest {\n \n id\n databaseId\n number\n title\n url\n createdAt\n author {\n login\n }\n assignees(first: 10) {\n nodes {\n login\n }\n }\n labels(first: 10) {\n nodes {\n name\n }\n }\n closed\n milestone {\n number\n title\n state\n }\n repository {\n name\n }\n\n merged\n }\n }\n\n fieldValues(first: 20) {\n nodes {\n __typename\n ... on ProjectV2ItemFieldDateValue {\n date\n field {\n ... on ProjectV2Field {\n id\n }\n }\n }\n ... on ProjectV2ItemFieldIterationValue {\n title\n iterationId\n startDate\n duration\n field {\n ... on ProjectV2IterationField {\n id\n }\n }\n }\n ... on ProjectV2ItemFieldNumberValue {\n number\n field {\n ... on ProjectV2Field {\n id\n }\n }\n }\n ... on ProjectV2ItemFieldSingleSelectValue {\n optionId\n field {\n ... on ProjectV2SingleSelectField {\n id\n }\n }\n }\n ... on ProjectV2ItemFieldTextValue {\n text\n field {\n ... on ProjectV2Field {\n id\n }\n }\n }\n }\n }\n }\n }\n \n }\n ", + "query": "\n mutation setItemProperties($projectId: ID!, $itemId: ID!) {\n \n text: clearProjectV2ItemFieldValue(input: {projectId: $projectId, itemId: $itemId, fieldId: \"PVTF_lADOBYMIeM4ADzd0zgCMLPg\"}) {\n projectV2Item { \n id\n createdAt\n type\n \n content {\n ... on DraftIssue {\n id\n title\n createdAt\n updatedAt\n author: creator {\n login\n }\n assignees(first: 10) {\n nodes {\n login\n }\n }\n }\n ... on Issue {\n \n id\n databaseId\n number\n title\n url\n createdAt\n author {\n login\n }\n assignees(first: 10) {\n nodes {\n login\n }\n }\n labels(first: 10) {\n nodes {\n name\n }\n }\n closed\n milestone {\n number\n title\n state\n }\n repository {\n name\n }\n\n }\n ... on PullRequest {\n \n id\n databaseId\n number\n title\n url\n createdAt\n author {\n login\n }\n assignees(first: 10) {\n nodes {\n login\n }\n }\n labels(first: 10) {\n nodes {\n name\n }\n }\n closed\n milestone {\n number\n title\n state\n }\n repository {\n name\n }\n\n merged\n }\n }\n\n fieldValues(first: 20) {\n nodes {\n __typename\n ... on ProjectV2ItemFieldDateValue {\n date\n field {\n ... on ProjectV2Field {\n id\n }\n }\n }\n ... on ProjectV2ItemFieldIterationValue {\n title\n iterationId\n startDate\n duration\n field {\n ... on ProjectV2IterationField {\n id\n }\n }\n }\n ... on ProjectV2ItemFieldNumberValue {\n number\n field {\n ... on ProjectV2Field {\n id\n }\n }\n }\n ... on ProjectV2ItemFieldSingleSelectValue {\n optionId\n field {\n ... on ProjectV2SingleSelectField {\n id\n }\n }\n }\n ... on ProjectV2ItemFieldTextValue {\n text\n field {\n ... on ProjectV2Field {\n id\n }\n }\n }\n }\n }\n }\n }\n \n }\n ", "variables": { "projectId": "PVT_1", "itemId": "PVTI_1" @@ -292,7 +287,7 @@ "content-encoding": "gzip", "content-security-policy": "default-src 'none'", "content-type": "application/json; charset=utf-8", - "date": "Mon, 24 Oct 2022 17:50:14 GMT", + "date": "Sun, 29 Jan 2023 18:54:55 GMT", "referrer-policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "server": "GitHub.com", "strict-transport-security": "max-age=31536000; includeSubdomains; preload", @@ -301,12 +296,12 @@ "x-content-type-options": "nosniff", "x-frame-options": "deny", "x-github-media-type": "github.v3; format=json", - "x-github-request-id": "E787:97C9:352857:368281:6356D056", + "x-github-request-id": "E38A:40DE:339F16:35E342:63D6C0FE", "x-ratelimit-limit": "5000", - "x-ratelimit-remaining": "4544", - "x-ratelimit-reset": "1666635908", + "x-ratelimit-remaining": "4593", + "x-ratelimit-reset": "1675021300", "x-ratelimit-resource": "graphql", - "x-ratelimit-used": "456", + "x-ratelimit-used": "407", "x-xss-protection": "0" }, "data": { @@ -354,14 +349,14 @@ "__typename": "ProjectV2ItemFieldNumberValue", "number": 1, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { diff --git a/test/recorded/api.items.update-with-invalid-field-option/fixtures.json b/test/recorded/api.items.update-with-invalid-field-option/fixtures.json index bdac11ba..352feb5a 100644 --- a/test/recorded/api.items.update-with-invalid-field-option/fixtures.json +++ b/test/recorded/api.items.update-with-invalid-field-option/fixtures.json @@ -15,7 +15,7 @@ "content-encoding": "gzip", "content-security-policy": "default-src 'none'", "content-type": "application/json; charset=utf-8", - "date": "Mon, 24 Oct 2022 17:35:30 GMT", + "date": "Sun, 29 Jan 2023 18:55:04 GMT", "referrer-policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "server": "GitHub.com", "strict-transport-security": "max-age=31536000; includeSubdomains; preload", @@ -24,12 +24,12 @@ "x-content-type-options": "nosniff", "x-frame-options": "deny", "x-github-media-type": "github.v3; format=json", - "x-github-request-id": "E6B9:32CE:17126FE:17B26AB:6356CCE2", + "x-github-request-id": "E394:7412:2F28D2:316BE8:63D6C108", "x-ratelimit-limit": "5000", - "x-ratelimit-remaining": "4592", - "x-ratelimit-reset": "1666635908", + "x-ratelimit-remaining": "4586", + "x-ratelimit-reset": "1675021300", "x-ratelimit-resource": "graphql", - "x-ratelimit-used": "408", + "x-ratelimit-used": "414", "x-xss-protection": "0" }, "data": { @@ -82,36 +82,31 @@ }, { "id": "PVTF_5", - "dataType": "TRACKS", - "name": "Tracks" - }, - { - "id": "PVTF_6", "dataType": "REVIEWERS", "name": "Reviewers" }, { - "id": "PVTF_7", + "id": "PVTF_6", "dataType": "REPOSITORY", "name": "Repository" }, { - "id": "PVTF_8", + "id": "PVTF_7", "dataType": "MILESTONE", "name": "Milestone" }, { - "id": "PVTF_9", + "id": "PVTF_8", "dataType": "TEXT", "name": "Text" }, { - "id": "PVTF_10", + "id": "PVTF_9", "dataType": "NUMBER", "name": "Number" }, { - "id": "PVTF_11", + "id": "PVTF_10", "dataType": "DATE", "name": "Date" }, @@ -184,7 +179,7 @@ "content-encoding": "gzip", "content-security-policy": "default-src 'none'", "content-type": "application/json; charset=utf-8", - "date": "Mon, 24 Oct 2022 17:35:31 GMT", + "date": "Sun, 29 Jan 2023 18:55:06 GMT", "referrer-policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "server": "GitHub.com", "strict-transport-security": "max-age=31536000; includeSubdomains; preload", @@ -193,12 +188,12 @@ "x-content-type-options": "nosniff", "x-frame-options": "deny", "x-github-media-type": "github.v3; format=json", - "x-github-request-id": "E6BA:71A7:B3C5AB3:B817D1D:6356CCE3", + "x-github-request-id": "E395:6763:30F993:333EA8:63D6C109", "x-ratelimit-limit": "5000", - "x-ratelimit-remaining": "4591", - "x-ratelimit-reset": "1666635908", + "x-ratelimit-remaining": "4585", + "x-ratelimit-reset": "1675021300", "x-ratelimit-resource": "graphql", - "x-ratelimit-used": "409", + "x-ratelimit-used": "415", "x-xss-protection": "0" }, "data": { @@ -245,21 +240,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 1, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { diff --git a/test/recorded/api.items.update-with-match-field-option-value-constructor-option/fixtures.json b/test/recorded/api.items.update-with-match-field-option-value-constructor-option/fixtures.json index 35e659e4..4490601a 100644 --- a/test/recorded/api.items.update-with-match-field-option-value-constructor-option/fixtures.json +++ b/test/recorded/api.items.update-with-match-field-option-value-constructor-option/fixtures.json @@ -15,7 +15,7 @@ "content-encoding": "gzip", "content-security-policy": "default-src 'none'", "content-type": "application/json; charset=utf-8", - "date": "Mon, 24 Oct 2022 17:35:43 GMT", + "date": "Sun, 29 Jan 2023 18:55:15 GMT", "referrer-policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "server": "GitHub.com", "strict-transport-security": "max-age=31536000; includeSubdomains; preload", @@ -24,12 +24,12 @@ "x-content-type-options": "nosniff", "x-frame-options": "deny", "x-github-media-type": "github.v3; format=json", - "x-github-request-id": "E6C4:0DBE:38F5878:3AB001A:6356CCEF", + "x-github-request-id": "E39F:778A:3133D4:337789:63D6C113", "x-ratelimit-limit": "5000", - "x-ratelimit-remaining": "4584", - "x-ratelimit-reset": "1666635908", + "x-ratelimit-remaining": "4578", + "x-ratelimit-reset": "1675021300", "x-ratelimit-resource": "graphql", - "x-ratelimit-used": "416", + "x-ratelimit-used": "422", "x-xss-protection": "0" }, "data": { @@ -82,36 +82,31 @@ }, { "id": "PVTF_5", - "dataType": "TRACKS", - "name": "Tracks" - }, - { - "id": "PVTF_6", "dataType": "REVIEWERS", "name": "Reviewers" }, { - "id": "PVTF_7", + "id": "PVTF_6", "dataType": "REPOSITORY", "name": "Repository" }, { - "id": "PVTF_8", + "id": "PVTF_7", "dataType": "MILESTONE", "name": "Milestone" }, { - "id": "PVTF_9", + "id": "PVTF_8", "dataType": "TEXT", "name": "Text" }, { - "id": "PVTF_10", + "id": "PVTF_9", "dataType": "NUMBER", "name": "Number" }, { - "id": "PVTF_11", + "id": "PVTF_10", "dataType": "DATE", "name": "Date" }, @@ -184,7 +179,7 @@ "content-encoding": "gzip", "content-security-policy": "default-src 'none'", "content-type": "application/json; charset=utf-8", - "date": "Mon, 24 Oct 2022 17:35:44 GMT", + "date": "Sun, 29 Jan 2023 18:55:16 GMT", "referrer-policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "server": "GitHub.com", "strict-transport-security": "max-age=31536000; includeSubdomains; preload", @@ -193,12 +188,12 @@ "x-content-type-options": "nosniff", "x-frame-options": "deny", "x-github-media-type": "github.v3; format=json", - "x-github-request-id": "E6C5:3CCF:AE19F60:B2692F3:6356CCF0", + "x-github-request-id": "E3A0:0782:3CE0E4:3F25D9:63D6C114", "x-ratelimit-limit": "5000", - "x-ratelimit-remaining": "4583", - "x-ratelimit-reset": "1666635908", + "x-ratelimit-remaining": "4577", + "x-ratelimit-reset": "1675021300", "x-ratelimit-resource": "graphql", - "x-ratelimit-used": "417", + "x-ratelimit-used": "423", "x-xss-protection": "0" }, "data": { @@ -245,21 +240,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 1, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -277,7 +272,7 @@ } }, { - "query": "\n mutation setItemProperties($projectId: ID!, $itemId: ID!) {\n \n singleSelect: updateProjectV2ItemFieldValue(input: {projectId: $projectId, itemId: $itemId, fieldId: \"PVTSSF_lADOBYMIeM4ADzd0zgCMLQ0\", value: {singleSelectOptionId: \"b92ebdaa\"}}) {\n projectV2Item { \n id\n createdAt\n type\n \n content {\n ... on DraftIssue {\n id\n title\n createdAt\n updatedAt\n author: creator {\n login\n }\n assignees(first: 10) {\n nodes {\n login\n }\n }\n }\n ... on Issue {\n \n id\n databaseId\n number\n title\n url\n createdAt\n author {\n login\n }\n assignees(first: 10) {\n nodes {\n login\n }\n }\n labels(first: 10) {\n nodes {\n name\n }\n }\n closed\n milestone {\n number\n title\n state\n }\n repository {\n name\n }\n\n }\n ... on PullRequest {\n \n id\n databaseId\n number\n title\n url\n createdAt\n author {\n login\n }\n assignees(first: 10) {\n nodes {\n login\n }\n }\n labels(first: 10) {\n nodes {\n name\n }\n }\n closed\n milestone {\n number\n title\n state\n }\n repository {\n name\n }\n\n merged\n }\n }\n\n fieldValues(first: 20) {\n nodes {\n __typename\n ... on ProjectV2ItemFieldDateValue {\n date\n field {\n ... on ProjectV2Field {\n id\n }\n }\n }\n ... on ProjectV2ItemFieldIterationValue {\n title\n iterationId\n startDate\n duration\n field {\n ... on ProjectV2IterationField {\n id\n }\n }\n }\n ... on ProjectV2ItemFieldNumberValue {\n number\n field {\n ... on ProjectV2Field {\n id\n }\n }\n }\n ... on ProjectV2ItemFieldSingleSelectValue {\n optionId\n field {\n ... on ProjectV2SingleSelectField {\n id\n }\n }\n }\n ... on ProjectV2ItemFieldTextValue {\n text\n field {\n ... on ProjectV2Field {\n id\n }\n }\n }\n }\n }\n }\n }\n \n }\n ", + "query": "\n mutation setItemProperties($projectId: ID!, $itemId: ID!) {\n \n singleSelect: updateProjectV2ItemFieldValue(input: {projectId: $projectId, itemId: $itemId, fieldId: \"PVTSSF_lADOBYMIeM4ADzd0zgCMLQ0\", value: {singleSelectOptionId: \"b92ebdaa\"}}) {\n projectV2Item { \n id\n createdAt\n type\n \n content {\n ... on DraftIssue {\n id\n title\n createdAt\n updatedAt\n author: creator {\n login\n }\n assignees(first: 10) {\n nodes {\n login\n }\n }\n }\n ... on Issue {\n \n id\n databaseId\n number\n title\n url\n createdAt\n author {\n login\n }\n assignees(first: 10) {\n nodes {\n login\n }\n }\n labels(first: 10) {\n nodes {\n name\n }\n }\n closed\n milestone {\n number\n title\n state\n }\n repository {\n name\n }\n\n }\n ... on PullRequest {\n \n id\n databaseId\n number\n title\n url\n createdAt\n author {\n login\n }\n assignees(first: 10) {\n nodes {\n login\n }\n }\n labels(first: 10) {\n nodes {\n name\n }\n }\n closed\n milestone {\n number\n title\n state\n }\n repository {\n name\n }\n\n merged\n }\n }\n\n fieldValues(first: 20) {\n nodes {\n __typename\n ... on ProjectV2ItemFieldDateValue {\n date\n field {\n ... on ProjectV2Field {\n id\n }\n }\n }\n ... on ProjectV2ItemFieldIterationValue {\n title\n iterationId\n startDate\n duration\n field {\n ... on ProjectV2IterationField {\n id\n }\n }\n }\n ... on ProjectV2ItemFieldNumberValue {\n number\n field {\n ... on ProjectV2Field {\n id\n }\n }\n }\n ... on ProjectV2ItemFieldSingleSelectValue {\n optionId\n field {\n ... on ProjectV2SingleSelectField {\n id\n }\n }\n }\n ... on ProjectV2ItemFieldTextValue {\n text\n field {\n ... on ProjectV2Field {\n id\n }\n }\n }\n }\n }\n }\n }\n \n }\n ", "variables": { "projectId": "PVT_1", "itemId": "PVTI_1" @@ -292,7 +287,7 @@ "content-encoding": "gzip", "content-security-policy": "default-src 'none'", "content-type": "application/json; charset=utf-8", - "date": "Mon, 24 Oct 2022 17:35:45 GMT", + "date": "Sun, 29 Jan 2023 18:55:17 GMT", "referrer-policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "server": "GitHub.com", "strict-transport-security": "max-age=31536000; includeSubdomains; preload", @@ -301,12 +296,12 @@ "x-content-type-options": "nosniff", "x-frame-options": "deny", "x-github-media-type": "github.v3; format=json", - "x-github-request-id": "E6C8:6582:AC01B1A:B04FD11:6356CCF1", + "x-github-request-id": "E3A1:5DBC:398D59:3BD2E9:63D6C115", "x-ratelimit-limit": "5000", - "x-ratelimit-remaining": "4582", - "x-ratelimit-reset": "1666635908", + "x-ratelimit-remaining": "4576", + "x-ratelimit-reset": "1675021300", "x-ratelimit-resource": "graphql", - "x-ratelimit-used": "418", + "x-ratelimit-used": "424", "x-xss-protection": "0" }, "data": { @@ -354,21 +349,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 1, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { diff --git a/test/recorded/api.items.update-with-undefined-value/fixtures.json b/test/recorded/api.items.update-with-undefined-value/fixtures.json index 40cffebe..2157a9bd 100644 --- a/test/recorded/api.items.update-with-undefined-value/fixtures.json +++ b/test/recorded/api.items.update-with-undefined-value/fixtures.json @@ -15,7 +15,7 @@ "content-encoding": "gzip", "content-security-policy": "default-src 'none'", "content-type": "application/json; charset=utf-8", - "date": "Mon, 24 Oct 2022 17:35:56 GMT", + "date": "Sun, 29 Jan 2023 18:55:27 GMT", "referrer-policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "server": "GitHub.com", "strict-transport-security": "max-age=31536000; includeSubdomains; preload", @@ -24,12 +24,12 @@ "x-content-type-options": "nosniff", "x-frame-options": "deny", "x-github-media-type": "github.v3; format=json", - "x-github-request-id": "E6D3:71A7:B3C8977:B81ACDC:6356CCFC", + "x-github-request-id": "E3AC:89D2:3943CC:3B8B43:63D6C11F", "x-ratelimit-limit": "5000", - "x-ratelimit-remaining": "4575", - "x-ratelimit-reset": "1666635908", + "x-ratelimit-remaining": "4569", + "x-ratelimit-reset": "1675021300", "x-ratelimit-resource": "graphql", - "x-ratelimit-used": "425", + "x-ratelimit-used": "431", "x-xss-protection": "0" }, "data": { @@ -82,36 +82,31 @@ }, { "id": "PVTF_5", - "dataType": "TRACKS", - "name": "Tracks" - }, - { - "id": "PVTF_6", "dataType": "REVIEWERS", "name": "Reviewers" }, { - "id": "PVTF_7", + "id": "PVTF_6", "dataType": "REPOSITORY", "name": "Repository" }, { - "id": "PVTF_8", + "id": "PVTF_7", "dataType": "MILESTONE", "name": "Milestone" }, { - "id": "PVTF_9", + "id": "PVTF_8", "dataType": "TEXT", "name": "Text" }, { - "id": "PVTF_10", + "id": "PVTF_9", "dataType": "NUMBER", "name": "Number" }, { - "id": "PVTF_11", + "id": "PVTF_10", "dataType": "DATE", "name": "Date" }, @@ -184,7 +179,7 @@ "content-encoding": "gzip", "content-security-policy": "default-src 'none'", "content-type": "application/json; charset=utf-8", - "date": "Mon, 24 Oct 2022 17:35:57 GMT", + "date": "Sun, 29 Jan 2023 18:55:28 GMT", "referrer-policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "server": "GitHub.com", "strict-transport-security": "max-age=31536000; includeSubdomains; preload", @@ -193,12 +188,12 @@ "x-content-type-options": "nosniff", "x-frame-options": "deny", "x-github-media-type": "github.v3; format=json", - "x-github-request-id": "E6D4:32CE:17156A0:17B575F:6356CCFD", + "x-github-request-id": "E3AD:4250:332BD7:357135:63D6C120", "x-ratelimit-limit": "5000", - "x-ratelimit-remaining": "4574", - "x-ratelimit-reset": "1666635908", + "x-ratelimit-remaining": "4568", + "x-ratelimit-reset": "1675021300", "x-ratelimit-resource": "graphql", - "x-ratelimit-used": "426", + "x-ratelimit-used": "432", "x-xss-protection": "0" }, "data": { @@ -245,21 +240,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 1, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -277,7 +272,7 @@ } }, { - "query": "\n mutation setItemProperties($projectId: ID!, $itemId: ID!) {\n \n text: updateProjectV2ItemFieldValue(input: {projectId: $projectId, itemId: $itemId, fieldId: \"PVTF_lADOBYMIeM4ADzd0zgCMLPg\", value: {text: \"new text\"}}) {\n projectV2Item { \n id\n createdAt\n type\n \n content {\n ... on DraftIssue {\n id\n title\n createdAt\n updatedAt\n author: creator {\n login\n }\n assignees(first: 10) {\n nodes {\n login\n }\n }\n }\n ... on Issue {\n \n id\n databaseId\n number\n title\n url\n createdAt\n author {\n login\n }\n assignees(first: 10) {\n nodes {\n login\n }\n }\n labels(first: 10) {\n nodes {\n name\n }\n }\n closed\n milestone {\n number\n title\n state\n }\n repository {\n name\n }\n\n }\n ... on PullRequest {\n \n id\n databaseId\n number\n title\n url\n createdAt\n author {\n login\n }\n assignees(first: 10) {\n nodes {\n login\n }\n }\n labels(first: 10) {\n nodes {\n name\n }\n }\n closed\n milestone {\n number\n title\n state\n }\n repository {\n name\n }\n\n merged\n }\n }\n\n fieldValues(first: 20) {\n nodes {\n __typename\n ... on ProjectV2ItemFieldDateValue {\n date\n field {\n ... on ProjectV2Field {\n id\n }\n }\n }\n ... on ProjectV2ItemFieldIterationValue {\n title\n iterationId\n startDate\n duration\n field {\n ... on ProjectV2IterationField {\n id\n }\n }\n }\n ... on ProjectV2ItemFieldNumberValue {\n number\n field {\n ... on ProjectV2Field {\n id\n }\n }\n }\n ... on ProjectV2ItemFieldSingleSelectValue {\n optionId\n field {\n ... on ProjectV2SingleSelectField {\n id\n }\n }\n }\n ... on ProjectV2ItemFieldTextValue {\n text\n field {\n ... on ProjectV2Field {\n id\n }\n }\n }\n }\n }\n }\n }\n \n }\n ", + "query": "\n mutation setItemProperties($projectId: ID!, $itemId: ID!) {\n \n text: updateProjectV2ItemFieldValue(input: {projectId: $projectId, itemId: $itemId, fieldId: \"PVTF_lADOBYMIeM4ADzd0zgCMLPg\", value: {text: \"new text\"}}) {\n projectV2Item { \n id\n createdAt\n type\n \n content {\n ... on DraftIssue {\n id\n title\n createdAt\n updatedAt\n author: creator {\n login\n }\n assignees(first: 10) {\n nodes {\n login\n }\n }\n }\n ... on Issue {\n \n id\n databaseId\n number\n title\n url\n createdAt\n author {\n login\n }\n assignees(first: 10) {\n nodes {\n login\n }\n }\n labels(first: 10) {\n nodes {\n name\n }\n }\n closed\n milestone {\n number\n title\n state\n }\n repository {\n name\n }\n\n }\n ... on PullRequest {\n \n id\n databaseId\n number\n title\n url\n createdAt\n author {\n login\n }\n assignees(first: 10) {\n nodes {\n login\n }\n }\n labels(first: 10) {\n nodes {\n name\n }\n }\n closed\n milestone {\n number\n title\n state\n }\n repository {\n name\n }\n\n merged\n }\n }\n\n fieldValues(first: 20) {\n nodes {\n __typename\n ... on ProjectV2ItemFieldDateValue {\n date\n field {\n ... on ProjectV2Field {\n id\n }\n }\n }\n ... on ProjectV2ItemFieldIterationValue {\n title\n iterationId\n startDate\n duration\n field {\n ... on ProjectV2IterationField {\n id\n }\n }\n }\n ... on ProjectV2ItemFieldNumberValue {\n number\n field {\n ... on ProjectV2Field {\n id\n }\n }\n }\n ... on ProjectV2ItemFieldSingleSelectValue {\n optionId\n field {\n ... on ProjectV2SingleSelectField {\n id\n }\n }\n }\n ... on ProjectV2ItemFieldTextValue {\n text\n field {\n ... on ProjectV2Field {\n id\n }\n }\n }\n }\n }\n }\n }\n \n }\n ", "variables": { "projectId": "PVT_1", "itemId": "PVTI_1" @@ -292,7 +287,7 @@ "content-encoding": "gzip", "content-security-policy": "default-src 'none'", "content-type": "application/json; charset=utf-8", - "date": "Mon, 24 Oct 2022 17:35:59 GMT", + "date": "Sun, 29 Jan 2023 18:55:29 GMT", "referrer-policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "server": "GitHub.com", "strict-transport-security": "max-age=31536000; includeSubdomains; preload", @@ -301,12 +296,12 @@ "x-content-type-options": "nosniff", "x-frame-options": "deny", "x-github-media-type": "github.v3; format=json", - "x-github-request-id": "E6D5:0D4A:AFCF5B2:B419753:6356CCFE", + "x-github-request-id": "E3AE:4250:332CBE:35722D:63D6C121", "x-ratelimit-limit": "5000", - "x-ratelimit-remaining": "4573", - "x-ratelimit-reset": "1666635908", + "x-ratelimit-remaining": "4567", + "x-ratelimit-reset": "1675021300", "x-ratelimit-resource": "graphql", - "x-ratelimit-used": "427", + "x-ratelimit-used": "433", "x-xss-protection": "0" }, "data": { @@ -354,21 +349,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "new text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 1, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { diff --git a/test/recorded/api.items.update-with-unknown-field/fixtures.json b/test/recorded/api.items.update-with-unknown-field/fixtures.json index 330d129b..80396e27 100644 --- a/test/recorded/api.items.update-with-unknown-field/fixtures.json +++ b/test/recorded/api.items.update-with-unknown-field/fixtures.json @@ -15,7 +15,7 @@ "content-encoding": "gzip", "content-security-policy": "default-src 'none'", "content-type": "application/json; charset=utf-8", - "date": "Mon, 24 Oct 2022 17:36:10 GMT", + "date": "Sun, 29 Jan 2023 18:55:39 GMT", "referrer-policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "server": "GitHub.com", "strict-transport-security": "max-age=31536000; includeSubdomains; preload", @@ -24,12 +24,12 @@ "x-content-type-options": "nosniff", "x-frame-options": "deny", "x-github-media-type": "github.v3; format=json", - "x-github-request-id": "E6DF:14B4:5603CC0:587EDCF:6356CD09", + "x-github-request-id": "E3B8:820A:33095E:355036:63D6C12B", "x-ratelimit-limit": "5000", - "x-ratelimit-remaining": "4566", - "x-ratelimit-reset": "1666635908", + "x-ratelimit-remaining": "4560", + "x-ratelimit-reset": "1675021300", "x-ratelimit-resource": "graphql", - "x-ratelimit-used": "434", + "x-ratelimit-used": "440", "x-xss-protection": "0" }, "data": { @@ -82,36 +82,31 @@ }, { "id": "PVTF_5", - "dataType": "TRACKS", - "name": "Tracks" - }, - { - "id": "PVTF_6", "dataType": "REVIEWERS", "name": "Reviewers" }, { - "id": "PVTF_7", + "id": "PVTF_6", "dataType": "REPOSITORY", "name": "Repository" }, { - "id": "PVTF_8", + "id": "PVTF_7", "dataType": "MILESTONE", "name": "Milestone" }, { - "id": "PVTF_9", + "id": "PVTF_8", "dataType": "TEXT", "name": "Text" }, { - "id": "PVTF_10", + "id": "PVTF_9", "dataType": "NUMBER", "name": "Number" }, { - "id": "PVTF_11", + "id": "PVTF_10", "dataType": "DATE", "name": "Date" }, diff --git a/test/recorded/api.items.update-with-user-defined-status-field/fixtures.json b/test/recorded/api.items.update-with-user-defined-status-field/fixtures.json index fa532907..82e98d5d 100644 --- a/test/recorded/api.items.update-with-user-defined-status-field/fixtures.json +++ b/test/recorded/api.items.update-with-user-defined-status-field/fixtures.json @@ -15,7 +15,7 @@ "content-encoding": "gzip", "content-security-policy": "default-src 'none'", "content-type": "application/json; charset=utf-8", - "date": "Mon, 24 Oct 2022 17:36:21 GMT", + "date": "Sun, 29 Jan 2023 18:55:49 GMT", "referrer-policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "server": "GitHub.com", "strict-transport-security": "max-age=31536000; includeSubdomains; preload", @@ -24,12 +24,12 @@ "x-content-type-options": "nosniff", "x-frame-options": "deny", "x-github-media-type": "github.v3; format=json", - "x-github-request-id": "E6EA:05CF:3C72E46:3E3DC9B:6356CD15", + "x-github-request-id": "E3C2:3763:3A1167:3C5742:63D6C135", "x-ratelimit-limit": "5000", - "x-ratelimit-remaining": "4559", - "x-ratelimit-reset": "1666635908", + "x-ratelimit-remaining": "4553", + "x-ratelimit-reset": "1675021300", "x-ratelimit-resource": "graphql", - "x-ratelimit-used": "441", + "x-ratelimit-used": "447", "x-xss-protection": "0" }, "data": { @@ -82,36 +82,31 @@ }, { "id": "PVTF_5", - "dataType": "TRACKS", - "name": "Tracks" - }, - { - "id": "PVTF_6", "dataType": "REVIEWERS", "name": "Reviewers" }, { - "id": "PVTF_7", + "id": "PVTF_6", "dataType": "REPOSITORY", "name": "Repository" }, { - "id": "PVTF_8", + "id": "PVTF_7", "dataType": "MILESTONE", "name": "Milestone" }, { - "id": "PVTF_9", + "id": "PVTF_8", "dataType": "TEXT", "name": "Text" }, { - "id": "PVTF_10", + "id": "PVTF_9", "dataType": "NUMBER", "name": "Number" }, { - "id": "PVTF_11", + "id": "PVTF_10", "dataType": "DATE", "name": "Date" }, @@ -184,7 +179,7 @@ "content-encoding": "gzip", "content-security-policy": "default-src 'none'", "content-type": "application/json; charset=utf-8", - "date": "Mon, 24 Oct 2022 17:36:22 GMT", + "date": "Sun, 29 Jan 2023 18:55:50 GMT", "referrer-policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "server": "GitHub.com", "strict-transport-security": "max-age=31536000; includeSubdomains; preload", @@ -193,12 +188,12 @@ "x-content-type-options": "nosniff", "x-frame-options": "deny", "x-github-media-type": "github.v3; format=json", - "x-github-request-id": "E6EB:0DBE:38FA2FB:3AB4C2C:6356CD16", + "x-github-request-id": "E3C4:333C:3521B0:376818:63D6C136", "x-ratelimit-limit": "5000", - "x-ratelimit-remaining": "4558", - "x-ratelimit-reset": "1666635908", + "x-ratelimit-remaining": "4552", + "x-ratelimit-reset": "1675021300", "x-ratelimit-resource": "graphql", - "x-ratelimit-used": "442", + "x-ratelimit-used": "448", "x-xss-protection": "0" }, "data": { @@ -245,21 +240,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 1, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -277,7 +272,7 @@ } }, { - "query": "\n mutation setItemProperties($projectId: ID!, $itemId: ID!) {\n \n status: updateProjectV2ItemFieldValue(input: {projectId: $projectId, itemId: $itemId, fieldId: \"PVTF_lADOBYMIeM4ADzd0zgCMLPg\", value: {text: \"new text\"}}) {\n projectV2Item { \n id\n createdAt\n type\n \n content {\n ... on DraftIssue {\n id\n title\n createdAt\n updatedAt\n author: creator {\n login\n }\n assignees(first: 10) {\n nodes {\n login\n }\n }\n }\n ... on Issue {\n \n id\n databaseId\n number\n title\n url\n createdAt\n author {\n login\n }\n assignees(first: 10) {\n nodes {\n login\n }\n }\n labels(first: 10) {\n nodes {\n name\n }\n }\n closed\n milestone {\n number\n title\n state\n }\n repository {\n name\n }\n\n }\n ... on PullRequest {\n \n id\n databaseId\n number\n title\n url\n createdAt\n author {\n login\n }\n assignees(first: 10) {\n nodes {\n login\n }\n }\n labels(first: 10) {\n nodes {\n name\n }\n }\n closed\n milestone {\n number\n title\n state\n }\n repository {\n name\n }\n\n merged\n }\n }\n\n fieldValues(first: 20) {\n nodes {\n __typename\n ... on ProjectV2ItemFieldDateValue {\n date\n field {\n ... on ProjectV2Field {\n id\n }\n }\n }\n ... on ProjectV2ItemFieldIterationValue {\n title\n iterationId\n startDate\n duration\n field {\n ... on ProjectV2IterationField {\n id\n }\n }\n }\n ... on ProjectV2ItemFieldNumberValue {\n number\n field {\n ... on ProjectV2Field {\n id\n }\n }\n }\n ... on ProjectV2ItemFieldSingleSelectValue {\n optionId\n field {\n ... on ProjectV2SingleSelectField {\n id\n }\n }\n }\n ... on ProjectV2ItemFieldTextValue {\n text\n field {\n ... on ProjectV2Field {\n id\n }\n }\n }\n }\n }\n }\n }\n \n }\n ", + "query": "\n mutation setItemProperties($projectId: ID!, $itemId: ID!) {\n \n status: updateProjectV2ItemFieldValue(input: {projectId: $projectId, itemId: $itemId, fieldId: \"PVTF_lADOBYMIeM4ADzd0zgCMLPg\", value: {text: \"new text\"}}) {\n projectV2Item { \n id\n createdAt\n type\n \n content {\n ... on DraftIssue {\n id\n title\n createdAt\n updatedAt\n author: creator {\n login\n }\n assignees(first: 10) {\n nodes {\n login\n }\n }\n }\n ... on Issue {\n \n id\n databaseId\n number\n title\n url\n createdAt\n author {\n login\n }\n assignees(first: 10) {\n nodes {\n login\n }\n }\n labels(first: 10) {\n nodes {\n name\n }\n }\n closed\n milestone {\n number\n title\n state\n }\n repository {\n name\n }\n\n }\n ... on PullRequest {\n \n id\n databaseId\n number\n title\n url\n createdAt\n author {\n login\n }\n assignees(first: 10) {\n nodes {\n login\n }\n }\n labels(first: 10) {\n nodes {\n name\n }\n }\n closed\n milestone {\n number\n title\n state\n }\n repository {\n name\n }\n\n merged\n }\n }\n\n fieldValues(first: 20) {\n nodes {\n __typename\n ... on ProjectV2ItemFieldDateValue {\n date\n field {\n ... on ProjectV2Field {\n id\n }\n }\n }\n ... on ProjectV2ItemFieldIterationValue {\n title\n iterationId\n startDate\n duration\n field {\n ... on ProjectV2IterationField {\n id\n }\n }\n }\n ... on ProjectV2ItemFieldNumberValue {\n number\n field {\n ... on ProjectV2Field {\n id\n }\n }\n }\n ... on ProjectV2ItemFieldSingleSelectValue {\n optionId\n field {\n ... on ProjectV2SingleSelectField {\n id\n }\n }\n }\n ... on ProjectV2ItemFieldTextValue {\n text\n field {\n ... on ProjectV2Field {\n id\n }\n }\n }\n }\n }\n }\n }\n \n }\n ", "variables": { "projectId": "PVT_1", "itemId": "PVTI_1" @@ -292,7 +287,7 @@ "content-encoding": "gzip", "content-security-policy": "default-src 'none'", "content-type": "application/json; charset=utf-8", - "date": "Mon, 24 Oct 2022 17:36:23 GMT", + "date": "Sun, 29 Jan 2023 18:55:51 GMT", "referrer-policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "server": "GitHub.com", "strict-transport-security": "max-age=31536000; includeSubdomains; preload", @@ -301,12 +296,12 @@ "x-content-type-options": "nosniff", "x-frame-options": "deny", "x-github-media-type": "github.v3; format=json", - "x-github-request-id": "E6EC:30A5:4305AF:44B052:6356CD17", + "x-github-request-id": "E3C5:4250:333F0F:358558:63D6C137", "x-ratelimit-limit": "5000", - "x-ratelimit-remaining": "4557", - "x-ratelimit-reset": "1666635908", + "x-ratelimit-remaining": "4551", + "x-ratelimit-reset": "1675021300", "x-ratelimit-resource": "graphql", - "x-ratelimit-used": "443", + "x-ratelimit-used": "449", "x-xss-protection": "0" }, "data": { @@ -354,21 +349,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "new text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 1, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { diff --git a/test/recorded/api.items.update/fixtures.json b/test/recorded/api.items.update/fixtures.json index 620b2eaa..3301edda 100644 --- a/test/recorded/api.items.update/fixtures.json +++ b/test/recorded/api.items.update/fixtures.json @@ -15,7 +15,7 @@ "content-encoding": "gzip", "content-security-policy": "default-src 'none'", "content-type": "application/json; charset=utf-8", - "date": "Mon, 24 Oct 2022 17:32:56 GMT", + "date": "Sun, 29 Jan 2023 18:52:40 GMT", "referrer-policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "server": "GitHub.com", "strict-transport-security": "max-age=31536000; includeSubdomains; preload", @@ -24,12 +24,12 @@ "x-content-type-options": "nosniff", "x-frame-options": "deny", "x-github-media-type": "github.v3; format=json", - "x-github-request-id": "E61F:0A68:BFAC39E:C3FAFBE:6356CC48", + "x-github-request-id": "E2E9:54E3:3A074B:3C467C:63D6C078", "x-ratelimit-limit": "5000", - "x-ratelimit-remaining": "4690", - "x-ratelimit-reset": "1666635908", + "x-ratelimit-remaining": "4693", + "x-ratelimit-reset": "1675021300", "x-ratelimit-resource": "graphql", - "x-ratelimit-used": "310", + "x-ratelimit-used": "307", "x-xss-protection": "0" }, "data": { @@ -82,36 +82,31 @@ }, { "id": "PVTF_5", - "dataType": "TRACKS", - "name": "Tracks" - }, - { - "id": "PVTF_6", "dataType": "REVIEWERS", "name": "Reviewers" }, { - "id": "PVTF_7", + "id": "PVTF_6", "dataType": "REPOSITORY", "name": "Repository" }, { - "id": "PVTF_8", + "id": "PVTF_7", "dataType": "MILESTONE", "name": "Milestone" }, { - "id": "PVTF_9", + "id": "PVTF_8", "dataType": "TEXT", "name": "Text" }, { - "id": "PVTF_10", + "id": "PVTF_9", "dataType": "NUMBER", "name": "Number" }, { - "id": "PVTF_11", + "id": "PVTF_10", "dataType": "DATE", "name": "Date" }, @@ -184,7 +179,7 @@ "content-encoding": "gzip", "content-security-policy": "default-src 'none'", "content-type": "application/json; charset=utf-8", - "date": "Mon, 24 Oct 2022 17:32:57 GMT", + "date": "Sun, 29 Jan 2023 18:52:41 GMT", "referrer-policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "server": "GitHub.com", "strict-transport-security": "max-age=31536000; includeSubdomains; preload", @@ -193,12 +188,12 @@ "x-content-type-options": "nosniff", "x-frame-options": "deny", "x-github-media-type": "github.v3; format=json", - "x-github-request-id": "E620:0C72:B3D83A1:B826F73:6356CC49", + "x-github-request-id": "E2EA:4F0E:35A767:37E599:63D6C079", "x-ratelimit-limit": "5000", - "x-ratelimit-remaining": "4689", - "x-ratelimit-reset": "1666635908", + "x-ratelimit-remaining": "4692", + "x-ratelimit-reset": "1675021300", "x-ratelimit-resource": "graphql", - "x-ratelimit-used": "311", + "x-ratelimit-used": "308", "x-xss-protection": "0" }, "data": { @@ -245,21 +240,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 1, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { @@ -277,7 +272,7 @@ } }, { - "query": "\n mutation setItemProperties($projectId: ID!, $itemId: ID!) {\n \n text: updateProjectV2ItemFieldValue(input: {projectId: $projectId, itemId: $itemId, fieldId: \"PVTF_lADOBYMIeM4ADzd0zgCMLPg\", value: {text: \"new text\"}}) {\n projectV2Item { \n id\n createdAt\n type\n \n content {\n ... on DraftIssue {\n id\n title\n createdAt\n updatedAt\n author: creator {\n login\n }\n assignees(first: 10) {\n nodes {\n login\n }\n }\n }\n ... on Issue {\n \n id\n databaseId\n number\n title\n url\n createdAt\n author {\n login\n }\n assignees(first: 10) {\n nodes {\n login\n }\n }\n labels(first: 10) {\n nodes {\n name\n }\n }\n closed\n milestone {\n number\n title\n state\n }\n repository {\n name\n }\n\n }\n ... on PullRequest {\n \n id\n databaseId\n number\n title\n url\n createdAt\n author {\n login\n }\n assignees(first: 10) {\n nodes {\n login\n }\n }\n labels(first: 10) {\n nodes {\n name\n }\n }\n closed\n milestone {\n number\n title\n state\n }\n repository {\n name\n }\n\n merged\n }\n }\n\n fieldValues(first: 20) {\n nodes {\n __typename\n ... on ProjectV2ItemFieldDateValue {\n date\n field {\n ... on ProjectV2Field {\n id\n }\n }\n }\n ... on ProjectV2ItemFieldIterationValue {\n title\n iterationId\n startDate\n duration\n field {\n ... on ProjectV2IterationField {\n id\n }\n }\n }\n ... on ProjectV2ItemFieldNumberValue {\n number\n field {\n ... on ProjectV2Field {\n id\n }\n }\n }\n ... on ProjectV2ItemFieldSingleSelectValue {\n optionId\n field {\n ... on ProjectV2SingleSelectField {\n id\n }\n }\n }\n ... on ProjectV2ItemFieldTextValue {\n text\n field {\n ... on ProjectV2Field {\n id\n }\n }\n }\n }\n }\n }\n }\n \n }\n ", + "query": "\n mutation setItemProperties($projectId: ID!, $itemId: ID!) {\n \n text: updateProjectV2ItemFieldValue(input: {projectId: $projectId, itemId: $itemId, fieldId: \"PVTF_lADOBYMIeM4ADzd0zgCMLPg\", value: {text: \"new text\"}}) {\n projectV2Item { \n id\n createdAt\n type\n \n content {\n ... on DraftIssue {\n id\n title\n createdAt\n updatedAt\n author: creator {\n login\n }\n assignees(first: 10) {\n nodes {\n login\n }\n }\n }\n ... on Issue {\n \n id\n databaseId\n number\n title\n url\n createdAt\n author {\n login\n }\n assignees(first: 10) {\n nodes {\n login\n }\n }\n labels(first: 10) {\n nodes {\n name\n }\n }\n closed\n milestone {\n number\n title\n state\n }\n repository {\n name\n }\n\n }\n ... on PullRequest {\n \n id\n databaseId\n number\n title\n url\n createdAt\n author {\n login\n }\n assignees(first: 10) {\n nodes {\n login\n }\n }\n labels(first: 10) {\n nodes {\n name\n }\n }\n closed\n milestone {\n number\n title\n state\n }\n repository {\n name\n }\n\n merged\n }\n }\n\n fieldValues(first: 20) {\n nodes {\n __typename\n ... on ProjectV2ItemFieldDateValue {\n date\n field {\n ... on ProjectV2Field {\n id\n }\n }\n }\n ... on ProjectV2ItemFieldIterationValue {\n title\n iterationId\n startDate\n duration\n field {\n ... on ProjectV2IterationField {\n id\n }\n }\n }\n ... on ProjectV2ItemFieldNumberValue {\n number\n field {\n ... on ProjectV2Field {\n id\n }\n }\n }\n ... on ProjectV2ItemFieldSingleSelectValue {\n optionId\n field {\n ... on ProjectV2SingleSelectField {\n id\n }\n }\n }\n ... on ProjectV2ItemFieldTextValue {\n text\n field {\n ... on ProjectV2Field {\n id\n }\n }\n }\n }\n }\n }\n }\n \n }\n ", "variables": { "projectId": "PVT_1", "itemId": "PVTI_1" @@ -292,7 +287,7 @@ "content-encoding": "gzip", "content-security-policy": "default-src 'none'", "content-type": "application/json; charset=utf-8", - "date": "Mon, 24 Oct 2022 17:32:58 GMT", + "date": "Sun, 29 Jan 2023 18:52:42 GMT", "referrer-policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "server": "GitHub.com", "strict-transport-security": "max-age=31536000; includeSubdomains; preload", @@ -301,12 +296,12 @@ "x-content-type-options": "nosniff", "x-frame-options": "deny", "x-github-media-type": "github.v3; format=json", - "x-github-request-id": "E621:0D4A:AFB870C:B40211C:6356CC4A", + "x-github-request-id": "E2EB:5DBC:38F6C2:3B3609:63D6C07A", "x-ratelimit-limit": "5000", - "x-ratelimit-remaining": "4688", - "x-ratelimit-reset": "1666635908", + "x-ratelimit-remaining": "4691", + "x-ratelimit-reset": "1675021300", "x-ratelimit-resource": "graphql", - "x-ratelimit-used": "312", + "x-ratelimit-used": "309", "x-xss-protection": "0" }, "data": { @@ -354,21 +349,21 @@ "__typename": "ProjectV2ItemFieldTextValue", "text": "new text", "field": { - "id": "PVTF_9" + "id": "PVTF_8" } }, { "__typename": "ProjectV2ItemFieldNumberValue", "number": 1, "field": { - "id": "PVTF_10" + "id": "PVTF_9" } }, { "__typename": "ProjectV2ItemFieldDateValue", "date": "2020-02-02", "field": { - "id": "PVTF_11" + "id": "PVTF_10" } }, { diff --git a/test/snapshots/recorded.test.js.md b/test/snapshots/recorded.test.js.md index 17af9c0a..f7eeb83a 100644 --- a/test/snapshots/recorded.test.js.md +++ b/test/snapshots/recorded.test.js.md @@ -32,6 +32,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue', }, id: 'PVTI_1', + isArchived: undefined, type: 'ISSUE', } @@ -55,6 +56,7 @@ Generated by [AVA](https://avajs.dev). title: 'Draft Title', }, id: 'PVTI_1', + isArchived: undefined, type: 'DRAFT_ISSUE', } @@ -78,6 +80,7 @@ Generated by [AVA](https://avajs.dev). title: 'Draft Title', }, id: 'PVTI_1', + isArchived: undefined, type: 'DRAFT_ISSUE', } @@ -101,6 +104,7 @@ Generated by [AVA](https://avajs.dev). title: 'the hack?', }, id: 'PVTI_1', + isArchived: undefined, type: 'DRAFT_ISSUE', } @@ -124,6 +128,7 @@ Generated by [AVA](https://avajs.dev). title: 'Draft Title', }, id: 'PVTI_1', + isArchived: undefined, type: 'DRAFT_ISSUE', } @@ -155,6 +160,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue', }, id: 'PVTI_1', + isArchived: undefined, type: 'ISSUE', } @@ -181,6 +187,7 @@ Generated by [AVA](https://avajs.dev). status: 'Done', }, id: 'PVTI_1', + isArchived: undefined, type: 'ISSUE', } @@ -212,6 +219,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue', }, id: 'PVTI_1', + isArchived: undefined, type: 'ISSUE', } @@ -244,6 +252,7 @@ Generated by [AVA](https://avajs.dev). title: 'Test', }, id: 'PVTI_1', + isArchived: undefined, type: 'PULL_REQUEST', } @@ -274,6 +283,7 @@ Generated by [AVA](https://avajs.dev). text: 'text', }, id: 'PVTI_1', + isArchived: undefined, type: 'ISSUE', } @@ -301,6 +311,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue', }, id: 'PVTI_1', + isArchived: undefined, type: 'ISSUE', } @@ -327,6 +338,7 @@ Generated by [AVA](https://avajs.dev). text: 'Is "it"?', }, id: 'PVTI_1', + isArchived: undefined, type: 'ISSUE', } @@ -354,6 +366,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue', }, id: 'PVTI_1', + isArchived: undefined, type: 'ISSUE', } @@ -385,6 +398,39 @@ Generated by [AVA](https://avajs.dev). title: 'Issue', }, id: 'PVTI_1', + isArchived: undefined, + type: 'ISSUE', + } + +## api.items.get-archived + +> Snapshot 1 + + { + content: { + assignees: [], + closed: false, + closedAt: undefined, + createdAt: '2022-02-02T12:00:00Z', + databaseId: 1001, + id: 'I_1', + labels: [], + milestone: null, + number: 1, + repository: 'test-repository', + title: 'Issue', + url: 'https://github.com/github-project-fixtures/test-repository/issues/1', + }, + fields: { + date: '2020-02-02', + number: '1', + singleSelect: 'One', + status: null, + text: 'text', + title: 'Issue', + }, + id: 'PVTI_1', + isArchived: undefined, type: 'ISSUE', } @@ -416,6 +462,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue', }, id: 'PVTI_1', + isArchived: undefined, type: 'ISSUE', } @@ -447,6 +494,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue', }, id: 'PVTI_1', + isArchived: undefined, type: 'ISSUE', } @@ -455,7 +503,7 @@ Generated by [AVA](https://avajs.dev). > Snapshot 1 Error { - message: '[github-project] "Nope" could not be matched with any of the existing field names: "Title", "Assignees", "Status", "Labels", "Linked pull requests", "Tracks", "Reviewers", "Repository", "Milestone", "Text", "Number", "Date", "Single select", "Iteration". If the field should be considered optional, then set it to "nonExistingField: { name: "Nope", optional: true}', + message: '[github-project] "Nope" could not be matched with any of the existing field names: "Title", "Assignees", "Status", "Labels", "Linked pull requests", "Reviewers", "Repository", "Milestone", "Text", "Number", "Date", "Single select", "Iteration". If the field should be considered optional, then set it to "nonExistingField: { name: "Nope", optional: true}', } ## api.items.get-by-content-id-with-optional-user-fields @@ -486,6 +534,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue', }, id: 'PVTI_1', + isArchived: undefined, type: 'ISSUE', } @@ -509,6 +558,7 @@ Generated by [AVA](https://avajs.dev). title: 'Draft Item title', }, id: 'PVTI_1', + isArchived: undefined, type: 'DRAFT_ISSUE', } @@ -553,6 +603,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue 1', }, id: 'PVTI_1', + isArchived: undefined, type: 'ISSUE', }, { @@ -579,6 +630,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue 2', }, id: 'PVTI_2', + isArchived: undefined, type: 'ISSUE', }, ] @@ -612,6 +664,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue 1', }, id: 'PVTI_1', + isArchived: undefined, type: 'ISSUE', }, { @@ -638,6 +691,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue 2', }, id: 'PVTI_2', + isArchived: undefined, type: 'ISSUE', }, ] @@ -670,6 +724,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue 2', }, id: 'PVTI_2', + isArchived: undefined, type: 'ISSUE', } @@ -708,6 +763,7 @@ Generated by [AVA](https://avajs.dev). text: 'new text', }, id: 'PVTI_1', + isArchived: undefined, type: 'ISSUE', } @@ -738,6 +794,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue 1', }, id: 'PVTI_1', + isArchived: undefined, type: 'ISSUE', }, { @@ -762,6 +819,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue 2', }, id: 'PVTI_2', + isArchived: undefined, type: 'ISSUE', }, ] @@ -794,6 +852,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue 1', }, id: 'PVTI_1', + isArchived: undefined, type: 'ISSUE', }, { @@ -817,6 +876,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue 2', }, id: 'PVTI_2', + isArchived: undefined, type: 'ISSUE', }, ], @@ -851,6 +911,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue 1', }, id: 'PVTI_1', + isArchived: undefined, type: 'ISSUE', }, { @@ -877,6 +938,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue 2', }, id: 'PVTI_2', + isArchived: undefined, type: 'ISSUE', }, { @@ -903,6 +965,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue 3', }, id: 'PVTI_3', + isArchived: undefined, type: 'ISSUE', }, { @@ -929,6 +992,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue 4', }, id: 'PVTI_4', + isArchived: undefined, type: 'ISSUE', }, { @@ -955,6 +1019,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue 5', }, id: 'PVTI_5', + isArchived: undefined, type: 'ISSUE', }, { @@ -981,6 +1046,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue 6', }, id: 'PVTI_6', + isArchived: undefined, type: 'ISSUE', }, { @@ -1007,6 +1073,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue 7', }, id: 'PVTI_7', + isArchived: undefined, type: 'ISSUE', }, { @@ -1033,6 +1100,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue 8', }, id: 'PVTI_8', + isArchived: undefined, type: 'ISSUE', }, { @@ -1059,6 +1127,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue 9', }, id: 'PVTI_9', + isArchived: undefined, type: 'ISSUE', }, { @@ -1085,6 +1154,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue 10', }, id: 'PVTI_10', + isArchived: undefined, type: 'ISSUE', }, { @@ -1111,6 +1181,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue 11', }, id: 'PVTI_11', + isArchived: undefined, type: 'ISSUE', }, { @@ -1137,6 +1208,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue 12', }, id: 'PVTI_12', + isArchived: undefined, type: 'ISSUE', }, { @@ -1163,6 +1235,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue 13', }, id: 'PVTI_13', + isArchived: undefined, type: 'ISSUE', }, { @@ -1189,6 +1262,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue 14', }, id: 'PVTI_14', + isArchived: undefined, type: 'ISSUE', }, { @@ -1215,6 +1289,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue 15', }, id: 'PVTI_15', + isArchived: undefined, type: 'ISSUE', }, { @@ -1241,6 +1316,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue 16', }, id: 'PVTI_16', + isArchived: undefined, type: 'ISSUE', }, { @@ -1267,6 +1343,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue 17', }, id: 'PVTI_17', + isArchived: undefined, type: 'ISSUE', }, { @@ -1293,6 +1370,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue 18', }, id: 'PVTI_18', + isArchived: undefined, type: 'ISSUE', }, { @@ -1319,6 +1397,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue 19', }, id: 'PVTI_19', + isArchived: undefined, type: 'ISSUE', }, { @@ -1345,6 +1424,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue 20', }, id: 'PVTI_20', + isArchived: undefined, type: 'ISSUE', }, { @@ -1371,6 +1451,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue 21', }, id: 'PVTI_21', + isArchived: undefined, type: 'ISSUE', }, { @@ -1397,6 +1478,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue 22', }, id: 'PVTI_22', + isArchived: undefined, type: 'ISSUE', }, { @@ -1423,6 +1505,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue 23', }, id: 'PVTI_23', + isArchived: undefined, type: 'ISSUE', }, { @@ -1449,6 +1532,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue 24', }, id: 'PVTI_24', + isArchived: undefined, type: 'ISSUE', }, { @@ -1475,6 +1559,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue 25', }, id: 'PVTI_25', + isArchived: undefined, type: 'ISSUE', }, { @@ -1501,6 +1586,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue 26', }, id: 'PVTI_26', + isArchived: undefined, type: 'ISSUE', }, { @@ -1527,6 +1613,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue 27', }, id: 'PVTI_27', + isArchived: undefined, type: 'ISSUE', }, { @@ -1553,6 +1640,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue 28', }, id: 'PVTI_28', + isArchived: undefined, type: 'ISSUE', }, { @@ -1579,6 +1667,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue 29', }, id: 'PVTI_29', + isArchived: undefined, type: 'ISSUE', }, { @@ -1605,6 +1694,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue 30', }, id: 'PVTI_30', + isArchived: undefined, type: 'ISSUE', }, { @@ -1631,6 +1721,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue 31', }, id: 'PVTI_31', + isArchived: undefined, type: 'ISSUE', }, { @@ -1657,6 +1748,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue 32', }, id: 'PVTI_32', + isArchived: undefined, type: 'ISSUE', }, { @@ -1683,6 +1775,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue 33', }, id: 'PVTI_33', + isArchived: undefined, type: 'ISSUE', }, { @@ -1709,6 +1802,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue 34', }, id: 'PVTI_34', + isArchived: undefined, type: 'ISSUE', }, { @@ -1735,6 +1829,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue 35', }, id: 'PVTI_35', + isArchived: undefined, type: 'ISSUE', }, { @@ -1761,6 +1856,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue 36', }, id: 'PVTI_36', + isArchived: undefined, type: 'ISSUE', }, { @@ -1787,6 +1883,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue 37', }, id: 'PVTI_37', + isArchived: undefined, type: 'ISSUE', }, { @@ -1813,6 +1910,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue 38', }, id: 'PVTI_38', + isArchived: undefined, type: 'ISSUE', }, { @@ -1839,6 +1937,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue 39', }, id: 'PVTI_39', + isArchived: undefined, type: 'ISSUE', }, { @@ -1865,6 +1964,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue 40', }, id: 'PVTI_40', + isArchived: undefined, type: 'ISSUE', }, { @@ -1891,6 +1991,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue 41', }, id: 'PVTI_41', + isArchived: undefined, type: 'ISSUE', }, { @@ -1917,6 +2018,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue 42', }, id: 'PVTI_42', + isArchived: undefined, type: 'ISSUE', }, { @@ -1943,6 +2045,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue 43', }, id: 'PVTI_43', + isArchived: undefined, type: 'ISSUE', }, { @@ -1969,6 +2072,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue 44', }, id: 'PVTI_44', + isArchived: undefined, type: 'ISSUE', }, { @@ -1995,6 +2099,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue 45', }, id: 'PVTI_45', + isArchived: undefined, type: 'ISSUE', }, { @@ -2021,6 +2126,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue 46', }, id: 'PVTI_46', + isArchived: undefined, type: 'ISSUE', }, { @@ -2047,6 +2153,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue 47', }, id: 'PVTI_47', + isArchived: undefined, type: 'ISSUE', }, { @@ -2073,6 +2180,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue 48', }, id: 'PVTI_48', + isArchived: undefined, type: 'ISSUE', }, { @@ -2099,6 +2207,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue 49', }, id: 'PVTI_49', + isArchived: undefined, type: 'ISSUE', }, { @@ -2125,6 +2234,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue 50', }, id: 'PVTI_50', + isArchived: undefined, type: 'ISSUE', }, { @@ -2151,6 +2261,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue 51', }, id: 'PVTI_51', + isArchived: undefined, type: 'ISSUE', }, { @@ -2177,6 +2288,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue 52', }, id: 'PVTI_52', + isArchived: undefined, type: 'ISSUE', }, { @@ -2203,6 +2315,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue 53', }, id: 'PVTI_53', + isArchived: undefined, type: 'ISSUE', }, { @@ -2229,6 +2342,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue 54', }, id: 'PVTI_54', + isArchived: undefined, type: 'ISSUE', }, { @@ -2255,6 +2369,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue 55', }, id: 'PVTI_55', + isArchived: undefined, type: 'ISSUE', }, { @@ -2281,6 +2396,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue 56', }, id: 'PVTI_56', + isArchived: undefined, type: 'ISSUE', }, { @@ -2307,6 +2423,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue 57', }, id: 'PVTI_57', + isArchived: undefined, type: 'ISSUE', }, { @@ -2333,6 +2450,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue 58', }, id: 'PVTI_58', + isArchived: undefined, type: 'ISSUE', }, { @@ -2359,6 +2477,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue 59', }, id: 'PVTI_59', + isArchived: undefined, type: 'ISSUE', }, { @@ -2385,6 +2504,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue 60', }, id: 'PVTI_60', + isArchived: undefined, type: 'ISSUE', }, { @@ -2411,6 +2531,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue 61', }, id: 'PVTI_61', + isArchived: undefined, type: 'ISSUE', }, { @@ -2437,6 +2558,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue 62', }, id: 'PVTI_62', + isArchived: undefined, type: 'ISSUE', }, { @@ -2463,6 +2585,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue 63', }, id: 'PVTI_63', + isArchived: undefined, type: 'ISSUE', }, { @@ -2489,6 +2612,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue 64', }, id: 'PVTI_64', + isArchived: undefined, type: 'ISSUE', }, { @@ -2515,6 +2639,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue 65', }, id: 'PVTI_65', + isArchived: undefined, type: 'ISSUE', }, { @@ -2541,6 +2666,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue 66', }, id: 'PVTI_66', + isArchived: undefined, type: 'ISSUE', }, { @@ -2567,6 +2693,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue 67', }, id: 'PVTI_67', + isArchived: undefined, type: 'ISSUE', }, { @@ -2593,6 +2720,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue 68', }, id: 'PVTI_68', + isArchived: undefined, type: 'ISSUE', }, { @@ -2619,6 +2747,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue 69', }, id: 'PVTI_69', + isArchived: undefined, type: 'ISSUE', }, { @@ -2645,6 +2774,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue 70', }, id: 'PVTI_70', + isArchived: undefined, type: 'ISSUE', }, { @@ -2671,6 +2801,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue 71', }, id: 'PVTI_71', + isArchived: undefined, type: 'ISSUE', }, { @@ -2697,6 +2828,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue 72', }, id: 'PVTI_72', + isArchived: undefined, type: 'ISSUE', }, { @@ -2723,6 +2855,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue 73', }, id: 'PVTI_73', + isArchived: undefined, type: 'ISSUE', }, { @@ -2749,6 +2882,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue 74', }, id: 'PVTI_74', + isArchived: undefined, type: 'ISSUE', }, { @@ -2775,6 +2909,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue 75', }, id: 'PVTI_75', + isArchived: undefined, type: 'ISSUE', }, { @@ -2801,6 +2936,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue 76', }, id: 'PVTI_76', + isArchived: undefined, type: 'ISSUE', }, { @@ -2827,6 +2963,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue 77', }, id: 'PVTI_77', + isArchived: undefined, type: 'ISSUE', }, { @@ -2853,6 +2990,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue 78', }, id: 'PVTI_78', + isArchived: undefined, type: 'ISSUE', }, { @@ -2879,6 +3017,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue 79', }, id: 'PVTI_79', + isArchived: undefined, type: 'ISSUE', }, { @@ -2905,6 +3044,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue 80', }, id: 'PVTI_80', + isArchived: undefined, type: 'ISSUE', }, { @@ -2931,6 +3071,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue 81', }, id: 'PVTI_81', + isArchived: undefined, type: 'ISSUE', }, { @@ -2957,6 +3098,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue 82', }, id: 'PVTI_82', + isArchived: undefined, type: 'ISSUE', }, { @@ -2983,6 +3125,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue 83', }, id: 'PVTI_83', + isArchived: undefined, type: 'ISSUE', }, { @@ -3009,6 +3152,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue 84', }, id: 'PVTI_84', + isArchived: undefined, type: 'ISSUE', }, { @@ -3035,6 +3179,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue 85', }, id: 'PVTI_85', + isArchived: undefined, type: 'ISSUE', }, { @@ -3061,6 +3206,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue 86', }, id: 'PVTI_86', + isArchived: undefined, type: 'ISSUE', }, { @@ -3087,6 +3233,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue 87', }, id: 'PVTI_87', + isArchived: undefined, type: 'ISSUE', }, { @@ -3113,6 +3260,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue 88', }, id: 'PVTI_88', + isArchived: undefined, type: 'ISSUE', }, { @@ -3139,6 +3287,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue 89', }, id: 'PVTI_89', + isArchived: undefined, type: 'ISSUE', }, { @@ -3165,6 +3314,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue 90', }, id: 'PVTI_90', + isArchived: undefined, type: 'ISSUE', }, { @@ -3191,6 +3341,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue 91', }, id: 'PVTI_91', + isArchived: undefined, type: 'ISSUE', }, { @@ -3217,6 +3368,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue 92', }, id: 'PVTI_92', + isArchived: undefined, type: 'ISSUE', }, { @@ -3243,6 +3395,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue 93', }, id: 'PVTI_93', + isArchived: undefined, type: 'ISSUE', }, { @@ -3269,6 +3422,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue 94', }, id: 'PVTI_94', + isArchived: undefined, type: 'ISSUE', }, { @@ -3295,6 +3449,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue 95', }, id: 'PVTI_95', + isArchived: undefined, type: 'ISSUE', }, { @@ -3321,6 +3476,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue 96', }, id: 'PVTI_96', + isArchived: undefined, type: 'ISSUE', }, { @@ -3347,6 +3503,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue 97', }, id: 'PVTI_97', + isArchived: undefined, type: 'ISSUE', }, { @@ -3373,6 +3530,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue 98', }, id: 'PVTI_98', + isArchived: undefined, type: 'ISSUE', }, { @@ -3399,6 +3557,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue 99', }, id: 'PVTI_99', + isArchived: undefined, type: 'ISSUE', }, { @@ -3425,6 +3584,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue 100', }, id: 'PVTI_100', + isArchived: undefined, type: 'ISSUE', }, { @@ -3451,6 +3611,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue 101', }, id: 'PVTI_101', + isArchived: undefined, type: 'ISSUE', }, { @@ -3477,6 +3638,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue 102', }, id: 'PVTI_102', + isArchived: undefined, type: 'ISSUE', }, { @@ -3503,6 +3665,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue 103', }, id: 'PVTI_103', + isArchived: undefined, type: 'ISSUE', }, { @@ -3529,6 +3692,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue 104', }, id: 'PVTI_104', + isArchived: undefined, type: 'ISSUE', }, { @@ -3555,6 +3719,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue 105', }, id: 'PVTI_105', + isArchived: undefined, type: 'ISSUE', }, { @@ -3581,6 +3746,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue 106', }, id: 'PVTI_106', + isArchived: undefined, type: 'ISSUE', }, { @@ -3607,6 +3773,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue 107', }, id: 'PVTI_107', + isArchived: undefined, type: 'ISSUE', }, { @@ -3633,6 +3800,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue 108', }, id: 'PVTI_108', + isArchived: undefined, type: 'ISSUE', }, { @@ -3659,6 +3827,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue 109', }, id: 'PVTI_109', + isArchived: undefined, type: 'ISSUE', }, { @@ -3685,6 +3854,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue 110', }, id: 'PVTI_110', + isArchived: undefined, type: 'ISSUE', }, { @@ -3711,6 +3881,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue 111', }, id: 'PVTI_111', + isArchived: undefined, type: 'ISSUE', }, { @@ -3737,6 +3908,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue 112', }, id: 'PVTI_112', + isArchived: undefined, type: 'ISSUE', }, { @@ -3763,6 +3935,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue 113', }, id: 'PVTI_113', + isArchived: undefined, type: 'ISSUE', }, { @@ -3789,6 +3962,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue 114', }, id: 'PVTI_114', + isArchived: undefined, type: 'ISSUE', }, { @@ -3815,6 +3989,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue 115', }, id: 'PVTI_115', + isArchived: undefined, type: 'ISSUE', }, { @@ -3841,6 +4016,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue 116', }, id: 'PVTI_116', + isArchived: undefined, type: 'ISSUE', }, { @@ -3867,6 +4043,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue 117', }, id: 'PVTI_117', + isArchived: undefined, type: 'ISSUE', }, { @@ -3893,6 +4070,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue 118', }, id: 'PVTI_118', + isArchived: undefined, type: 'ISSUE', }, { @@ -3919,6 +4097,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue 119', }, id: 'PVTI_119', + isArchived: undefined, type: 'ISSUE', }, { @@ -3945,6 +4124,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue 120', }, id: 'PVTI_120', + isArchived: undefined, type: 'ISSUE', }, { @@ -3971,6 +4151,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue 121', }, id: 'PVTI_121', + isArchived: undefined, type: 'ISSUE', }, { @@ -3997,6 +4178,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue 122', }, id: 'PVTI_122', + isArchived: undefined, type: 'ISSUE', }, { @@ -4023,6 +4205,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue 123', }, id: 'PVTI_123', + isArchived: undefined, type: 'ISSUE', }, { @@ -4049,6 +4232,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue 124', }, id: 'PVTI_124', + isArchived: undefined, type: 'ISSUE', }, { @@ -4075,6 +4259,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue 125', }, id: 'PVTI_125', + isArchived: undefined, type: 'ISSUE', }, { @@ -4101,6 +4286,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue 126', }, id: 'PVTI_126', + isArchived: undefined, type: 'ISSUE', }, { @@ -4127,6 +4313,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue 127', }, id: 'PVTI_127', + isArchived: undefined, type: 'ISSUE', }, { @@ -4153,6 +4340,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue 128', }, id: 'PVTI_128', + isArchived: undefined, type: 'ISSUE', }, { @@ -4179,6 +4367,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue 129', }, id: 'PVTI_129', + isArchived: undefined, type: 'ISSUE', }, { @@ -4205,6 +4394,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue 130', }, id: 'PVTI_130', + isArchived: undefined, type: 'ISSUE', }, { @@ -4231,6 +4421,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue 131', }, id: 'PVTI_131', + isArchived: undefined, type: 'ISSUE', }, { @@ -4257,6 +4448,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue 132', }, id: 'PVTI_132', + isArchived: undefined, type: 'ISSUE', }, { @@ -4283,6 +4475,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue 133', }, id: 'PVTI_133', + isArchived: undefined, type: 'ISSUE', }, { @@ -4309,6 +4502,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue 134', }, id: 'PVTI_134', + isArchived: undefined, type: 'ISSUE', }, { @@ -4335,6 +4529,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue 135', }, id: 'PVTI_135', + isArchived: undefined, type: 'ISSUE', }, { @@ -4361,6 +4556,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue 136', }, id: 'PVTI_136', + isArchived: undefined, type: 'ISSUE', }, { @@ -4387,6 +4583,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue 137', }, id: 'PVTI_137', + isArchived: undefined, type: 'ISSUE', }, { @@ -4413,6 +4610,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue 138', }, id: 'PVTI_138', + isArchived: undefined, type: 'ISSUE', }, { @@ -4439,6 +4637,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue 139', }, id: 'PVTI_139', + isArchived: undefined, type: 'ISSUE', }, { @@ -4465,6 +4664,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue 140', }, id: 'PVTI_140', + isArchived: undefined, type: 'ISSUE', }, { @@ -4491,6 +4691,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue 141', }, id: 'PVTI_141', + isArchived: undefined, type: 'ISSUE', }, { @@ -4517,6 +4718,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue 142', }, id: 'PVTI_142', + isArchived: undefined, type: 'ISSUE', }, { @@ -4543,6 +4745,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue 143', }, id: 'PVTI_143', + isArchived: undefined, type: 'ISSUE', }, { @@ -4569,6 +4772,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue 144', }, id: 'PVTI_144', + isArchived: undefined, type: 'ISSUE', }, { @@ -4595,6 +4799,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue 145', }, id: 'PVTI_145', + isArchived: undefined, type: 'ISSUE', }, { @@ -4621,6 +4826,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue 146', }, id: 'PVTI_146', + isArchived: undefined, type: 'ISSUE', }, { @@ -4647,6 +4853,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue 147', }, id: 'PVTI_147', + isArchived: undefined, type: 'ISSUE', }, { @@ -4673,6 +4880,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue 148', }, id: 'PVTI_148', + isArchived: undefined, type: 'ISSUE', }, { @@ -4699,6 +4907,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue 149', }, id: 'PVTI_149', + isArchived: undefined, type: 'ISSUE', }, { @@ -4725,6 +4934,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue 150', }, id: 'PVTI_150', + isArchived: undefined, type: 'ISSUE', }, { @@ -4751,6 +4961,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue 151', }, id: 'PVTI_151', + isArchived: undefined, type: 'ISSUE', }, { @@ -4777,6 +4988,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue 152', }, id: 'PVTI_152', + isArchived: undefined, type: 'ISSUE', }, { @@ -4803,6 +5015,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue 153', }, id: 'PVTI_153', + isArchived: undefined, type: 'ISSUE', }, { @@ -4829,6 +5042,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue 154', }, id: 'PVTI_154', + isArchived: undefined, type: 'ISSUE', }, { @@ -4855,6 +5069,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue 155', }, id: 'PVTI_155', + isArchived: undefined, type: 'ISSUE', }, { @@ -4881,6 +5096,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue 156', }, id: 'PVTI_156', + isArchived: undefined, type: 'ISSUE', }, { @@ -4907,6 +5123,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue 157', }, id: 'PVTI_157', + isArchived: undefined, type: 'ISSUE', }, { @@ -4933,6 +5150,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue 158', }, id: 'PVTI_158', + isArchived: undefined, type: 'ISSUE', }, { @@ -4959,6 +5177,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue 159', }, id: 'PVTI_159', + isArchived: undefined, type: 'ISSUE', }, { @@ -4985,6 +5204,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue 160', }, id: 'PVTI_160', + isArchived: undefined, type: 'ISSUE', }, { @@ -5011,6 +5231,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue 161', }, id: 'PVTI_161', + isArchived: undefined, type: 'ISSUE', }, { @@ -5037,6 +5258,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue 162', }, id: 'PVTI_162', + isArchived: undefined, type: 'ISSUE', }, { @@ -5063,6 +5285,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue 163', }, id: 'PVTI_163', + isArchived: undefined, type: 'ISSUE', }, { @@ -5089,6 +5312,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue 164', }, id: 'PVTI_164', + isArchived: undefined, type: 'ISSUE', }, { @@ -5115,6 +5339,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue 165', }, id: 'PVTI_165', + isArchived: undefined, type: 'ISSUE', }, { @@ -5141,6 +5366,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue 166', }, id: 'PVTI_166', + isArchived: undefined, type: 'ISSUE', }, { @@ -5167,6 +5393,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue 167', }, id: 'PVTI_167', + isArchived: undefined, type: 'ISSUE', }, { @@ -5193,6 +5420,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue 168', }, id: 'PVTI_168', + isArchived: undefined, type: 'ISSUE', }, { @@ -5219,6 +5447,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue 169', }, id: 'PVTI_169', + isArchived: undefined, type: 'ISSUE', }, { @@ -5245,6 +5474,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue 170', }, id: 'PVTI_170', + isArchived: undefined, type: 'ISSUE', }, { @@ -5271,6 +5501,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue 171', }, id: 'PVTI_171', + isArchived: undefined, type: 'ISSUE', }, { @@ -5297,6 +5528,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue 172', }, id: 'PVTI_172', + isArchived: undefined, type: 'ISSUE', }, { @@ -5323,6 +5555,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue 173', }, id: 'PVTI_173', + isArchived: undefined, type: 'ISSUE', }, { @@ -5349,6 +5582,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue 174', }, id: 'PVTI_174', + isArchived: undefined, type: 'ISSUE', }, { @@ -5375,6 +5609,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue 175', }, id: 'PVTI_175', + isArchived: undefined, type: 'ISSUE', }, { @@ -5401,6 +5636,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue 176', }, id: 'PVTI_176', + isArchived: undefined, type: 'ISSUE', }, { @@ -5427,6 +5663,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue 177', }, id: 'PVTI_177', + isArchived: undefined, type: 'ISSUE', }, { @@ -5453,6 +5690,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue 178', }, id: 'PVTI_178', + isArchived: undefined, type: 'ISSUE', }, { @@ -5479,6 +5717,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue 179', }, id: 'PVTI_179', + isArchived: undefined, type: 'ISSUE', }, { @@ -5505,6 +5744,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue 180', }, id: 'PVTI_180', + isArchived: undefined, type: 'ISSUE', }, { @@ -5531,6 +5771,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue 181', }, id: 'PVTI_181', + isArchived: undefined, type: 'ISSUE', }, { @@ -5557,6 +5798,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue 182', }, id: 'PVTI_182', + isArchived: undefined, type: 'ISSUE', }, { @@ -5583,6 +5825,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue 183', }, id: 'PVTI_183', + isArchived: undefined, type: 'ISSUE', }, { @@ -5609,6 +5852,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue 184', }, id: 'PVTI_184', + isArchived: undefined, type: 'ISSUE', }, { @@ -5635,6 +5879,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue 185', }, id: 'PVTI_185', + isArchived: undefined, type: 'ISSUE', }, { @@ -5661,6 +5906,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue 186', }, id: 'PVTI_186', + isArchived: undefined, type: 'ISSUE', }, { @@ -5687,6 +5933,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue 187', }, id: 'PVTI_187', + isArchived: undefined, type: 'ISSUE', }, { @@ -5713,6 +5960,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue 188', }, id: 'PVTI_188', + isArchived: undefined, type: 'ISSUE', }, { @@ -5739,6 +5987,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue 189', }, id: 'PVTI_189', + isArchived: undefined, type: 'ISSUE', }, { @@ -5765,6 +6014,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue 190', }, id: 'PVTI_190', + isArchived: undefined, type: 'ISSUE', }, { @@ -5791,6 +6041,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue 191', }, id: 'PVTI_191', + isArchived: undefined, type: 'ISSUE', }, { @@ -5817,6 +6068,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue 192', }, id: 'PVTI_192', + isArchived: undefined, type: 'ISSUE', }, { @@ -5843,6 +6095,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue 193', }, id: 'PVTI_193', + isArchived: undefined, type: 'ISSUE', }, { @@ -5869,6 +6122,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue 194', }, id: 'PVTI_194', + isArchived: undefined, type: 'ISSUE', }, { @@ -5895,6 +6149,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue 195', }, id: 'PVTI_195', + isArchived: undefined, type: 'ISSUE', }, { @@ -5921,6 +6176,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue 196', }, id: 'PVTI_196', + isArchived: undefined, type: 'ISSUE', }, { @@ -5947,6 +6203,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue 197', }, id: 'PVTI_197', + isArchived: undefined, type: 'ISSUE', }, { @@ -5973,6 +6230,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue 198', }, id: 'PVTI_198', + isArchived: undefined, type: 'ISSUE', }, { @@ -5999,6 +6257,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue 199', }, id: 'PVTI_199', + isArchived: undefined, type: 'ISSUE', }, { @@ -6025,6 +6284,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue 200', }, id: 'PVTI_200', + isArchived: undefined, type: 'ISSUE', }, { @@ -6051,6 +6311,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue 201', }, id: 'PVTI_201', + isArchived: undefined, type: 'ISSUE', }, ] @@ -6080,6 +6341,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue 1', }, id: 'PVTI_1', + isArchived: undefined, type: 'ISSUE', }, { @@ -6102,6 +6364,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue 2', }, id: 'PVTI_2', + isArchived: undefined, type: 'ISSUE', }, ] @@ -6140,6 +6403,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue', }, id: 'PVTI_1', + isArchived: undefined, type: 'ISSUE', } @@ -6177,6 +6441,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue', }, id: 'PVTI_1', + isArchived: undefined, type: 'ISSUE', } @@ -6215,6 +6480,7 @@ Generated by [AVA](https://avajs.dev). text: 'new text', }, id: 'PVTI_1', + isArchived: undefined, type: 'ISSUE', } @@ -6249,6 +6515,7 @@ Generated by [AVA](https://avajs.dev). text: 'new text', }, id: 'PVTI_1', + isArchived: undefined, type: 'ISSUE', } @@ -6282,6 +6549,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue', }, id: 'PVTI_1', + isArchived: undefined, type: 'ISSUE', } @@ -6308,6 +6576,7 @@ Generated by [AVA](https://avajs.dev). text: 'new text', }, id: 'PVTI_1', + isArchived: undefined, type: 'ISSUE', } @@ -6341,6 +6610,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue', }, id: 'PVTI_1', + isArchived: undefined, type: 'ISSUE', } @@ -6374,6 +6644,7 @@ Generated by [AVA](https://avajs.dev). title: 'Issue', }, id: 'PVTI_1', + isArchived: undefined, type: 'ISSUE', } @@ -6400,6 +6671,7 @@ Generated by [AVA](https://avajs.dev). 'My Text': 'new text', }, id: 'PVTI_1', + isArchived: undefined, type: 'ISSUE', } @@ -6426,6 +6698,7 @@ Generated by [AVA](https://avajs.dev). status: 'In Progress', }, id: 'PVTI_1', + isArchived: undefined, type: 'ISSUE', } @@ -6452,6 +6725,7 @@ Generated by [AVA](https://avajs.dev). singleSelect: null, }, id: 'PVTI_1', + isArchived: undefined, type: 'ISSUE', } @@ -6478,6 +6752,7 @@ Generated by [AVA](https://avajs.dev). text: null, }, id: 'PVTI_1', + isArchived: undefined, type: 'ISSUE', } @@ -6531,6 +6806,7 @@ Generated by [AVA](https://avajs.dev). singleSelect: 'One', }, id: 'PVTI_1', + isArchived: undefined, type: 'ISSUE', }, } @@ -6558,6 +6834,7 @@ Generated by [AVA](https://avajs.dev). text: 'new text', }, id: 'PVTI_1', + isArchived: undefined, type: 'ISSUE', } @@ -6566,7 +6843,7 @@ Generated by [AVA](https://avajs.dev). > Snapshot 1 Error { - message: '[github-project] "Unknown" could not be matched with any of the existing field names: "Title", "Assignees", "Status", "Labels", "Linked pull requests", "Tracks", "Reviewers", "Repository", "Milestone", "Text", "Number", "Date", "Single select", "Iteration". If the field should be considered optional, then set it to "unknown: { name: "Unknown", optional: true}', + message: '[github-project] "Unknown" could not be matched with any of the existing field names: "Title", "Assignees", "Status", "Labels", "Linked pull requests", "Reviewers", "Repository", "Milestone", "Text", "Number", "Date", "Single select", "Iteration". If the field should be considered optional, then set it to "unknown: { name: "Unknown", optional: true}', } ## api.items.update-with-user-defined-status-field @@ -6592,31 +6869,6 @@ Generated by [AVA](https://avajs.dev). status: 'new text', }, id: 'PVTI_1', - type: 'ISSUE', - } - -## api.items.update-unsetting-field - -> Snapshot 1 - - { - content: { - assignees: [], - closed: false, - closedAt: undefined, - createdAt: '2022-02-02T12:00:00Z', - databaseId: 1001, - id: 'I_1', - labels: [], - milestone: null, - number: 1, - repository: 'test-repository', - title: 'Issue', - url: 'https://github.com/github-project-fixtures/test-repository/issues/1', - }, - fields: { - text: '', - }, - id: 'PVTI_1', + isArchived: undefined, type: 'ISSUE', } diff --git a/test/snapshots/recorded.test.js.snap b/test/snapshots/recorded.test.js.snap index 0a44b487..7539f905 100644 Binary files a/test/snapshots/recorded.test.js.snap and b/test/snapshots/recorded.test.js.snap differ