@@ -1647,6 +1647,14 @@ export interface PaginatingEndpoints {
1647
1647
response : Endpoints [ "GET /user/repository_invitations" ] [ "response" ] ;
1648
1648
} ;
1649
1649
1650
+ /**
1651
+ * @see https://docs.github.com/rest/reference/users#list-public-ssh-signing-keys-for-the-authenticated-user
1652
+ */
1653
+ "GET /user/ssh_signing_keys" : {
1654
+ parameters : Endpoints [ "GET /user/ssh_signing_keys" ] [ "parameters" ] ;
1655
+ response : Endpoints [ "GET /user/ssh_signing_keys" ] [ "response" ] ;
1656
+ } ;
1657
+
1650
1658
/**
1651
1659
* @see https://docs.github.com/rest/reference/activity#list-repositories-starred-by-the-authenticated-user
1652
1660
*/
@@ -1791,6 +1799,14 @@ export interface PaginatingEndpoints {
1791
1799
response : Endpoints [ "GET /users/{username}/repos" ] [ "response" ] ;
1792
1800
} ;
1793
1801
1802
+ /**
1803
+ * @see https://docs.github.com/rest/reference/users#list-ssh-signing-keys-for-a-user
1804
+ */
1805
+ "GET /users/{username}/ssh_signing_keys" : {
1806
+ parameters : Endpoints [ "GET /users/{username}/ssh_signing_keys" ] [ "parameters" ] ;
1807
+ response : Endpoints [ "GET /users/{username}/ssh_signing_keys" ] [ "response" ] ;
1808
+ } ;
1809
+
1794
1810
/**
1795
1811
* @see https://docs.github.com/rest/reference/activity#list-repositories-starred-by-a-user
1796
1812
*/
@@ -2001,6 +2017,7 @@ export const paginatingEndpoints: (keyof PaginatingEndpoints)[] = [
2001
2017
"GET /user/public_emails" ,
2002
2018
"GET /user/repos" ,
2003
2019
"GET /user/repository_invitations" ,
2020
+ "GET /user/ssh_signing_keys" ,
2004
2021
"GET /user/starred" ,
2005
2022
"GET /user/subscriptions" ,
2006
2023
"GET /user/teams" ,
@@ -2019,6 +2036,7 @@ export const paginatingEndpoints: (keyof PaginatingEndpoints)[] = [
2019
2036
"GET /users/{username}/received_events" ,
2020
2037
"GET /users/{username}/received_events/public" ,
2021
2038
"GET /users/{username}/repos" ,
2039
+ "GET /users/{username}/ssh_signing_keys" ,
2022
2040
"GET /users/{username}/starred" ,
2023
2041
"GET /users/{username}/subscriptions" ,
2024
2042
] ;
0 commit comments