You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: tests/github/api/services/issues/guarded-issues-api-client.service.ts
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -24,11 +24,11 @@ export class GuardedIssuesAPIClient extends IssuesAPIClient {
24
24
25
25
getIssues(
26
26
args: {
27
-
filter: string,// Issues assigned to you / created by you / mentioning you / you're subscribed to updates for / All issues the authenticated user can see
28
-
state: string,
27
+
filter: 'assigned'|'created'|'mentioned'|'subscribed'|'all',// Issues assigned to you / created by you / mentioning you / you're subscribed to updates for / All issues the authenticated user can see
28
+
state: 'open'|'closed',
29
29
labels: string,// String list of comma separated Label names. Example - bug,ui,@high.
30
-
sort: string,
31
-
direction: string,
30
+
sort: 'created'|'updated'|'comments',
31
+
direction: 'asc'|'desc',
32
32
since?: string,// (optional) Optional string of a timestamp in ISO 8601 format: YYYY-MM-DDTHH:MM:SSZ. Only issues updated at or after this time are returned.
33
33
xGitHubMediaType?: string,// (optional) You can check the current version of media type in responses.
34
34
accept?: string,// (optional) Is used to set specified media type.
filter: string,// Issues assigned to you / created by you / mentioning you / you're subscribed to updates for / All issues the authenticated user can see
18
-
state: string,
17
+
filter: 'assigned'|'created'|'mentioned'|'subscribed'|'all',// Issues assigned to you / created by you / mentioning you / you're subscribed to updates for / All issues the authenticated user can see
18
+
state: 'open'|'closed',
19
19
labels: string,// String list of comma separated Label names. Example - bug,ui,@high.
20
-
sort: string,
21
-
direction: string,
20
+
sort: 'created'|'updated'|'comments',
21
+
direction: 'asc'|'desc',
22
22
since?: string,// (optional) Optional string of a timestamp in ISO 8601 format: YYYY-MM-DDTHH:MM:SSZ. Only issues updated at or after this time are returned.
23
23
xGitHubMediaType?: string,// (optional) You can check the current version of media type in responses.
24
24
accept?: string,// (optional) Is used to set specified media type.
Copy file name to clipboardExpand all lines: tests/github/api/services/issues/issues-api-client.service.ts
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -50,11 +50,11 @@ export class IssuesAPIClient implements IssuesAPIClientInterface {
50
50
*/
51
51
getIssues(
52
52
args: {
53
-
filter: string,// Issues assigned to you / created by you / mentioning you / you're subscribed to updates for / All issues the authenticated user can see
54
-
state: string,
53
+
filter: 'assigned'|'created'|'mentioned'|'subscribed'|'all',// Issues assigned to you / created by you / mentioning you / you're subscribed to updates for / All issues the authenticated user can see
54
+
state: 'open'|'closed',
55
55
labels: string,// String list of comma separated Label names. Example - bug,ui,@high.
56
-
sort: string,
57
-
direction: string,
56
+
sort: 'created'|'updated'|'comments',
57
+
direction: 'asc'|'desc',
58
58
since?: string,// (optional) Optional string of a timestamp in ISO 8601 format: YYYY-MM-DDTHH:MM:SSZ. Only issues updated at or after this time are returned.
59
59
xGitHubMediaType?: string,// (optional) You can check the current version of media type in responses.
60
60
accept?: string,// (optional) Is used to set specified media type.
0 commit comments