Skip to content

Commit 475f1d4

Browse files
octokitbotgr2m
andauthored
feat: FundingPlatform#BUY_ME_A_COFFEE (#914)
Co-authored-by: Gregor Martynus <[email protected]>
1 parent 9d08d51 commit 475f1d4

File tree

3 files changed

+13
-0
lines changed

3 files changed

+13
-0
lines changed

schema.d.ts

+2
Original file line numberDiff line numberDiff line change
@@ -7928,6 +7928,8 @@ export type FundingLink = {
79287928

79297929
/** The possible funding platforms for repository funding links. */
79307930
export type FundingPlatform =
7931+
/** Buy Me a Coffee funding platform. */
7932+
| 'BUY_ME_A_COFFEE'
79317933
/** Community Bridge funding platform. */
79327934
| 'COMMUNITY_BRIDGE'
79337935
/** Custom funding platform. */

schema.graphql

+5
Original file line numberDiff line numberDiff line change
@@ -15442,6 +15442,11 @@ type FundingLink {
1544215442
The possible funding platforms for repository funding links.
1544315443
"""
1544415444
enum FundingPlatform {
15445+
"""
15446+
Buy Me a Coffee funding platform.
15447+
"""
15448+
BUY_ME_A_COFFEE
15449+
1544515450
"""
1544615451
Community Bridge funding platform.
1544715452
"""

schema.json

+6
Original file line numberDiff line numberDiff line change
@@ -38981,6 +38981,12 @@
3898138981
"isDeprecated": false,
3898238982
"deprecationReason": null
3898338983
},
38984+
{
38985+
"name": "BUY_ME_A_COFFEE",
38986+
"description": "Buy Me a Coffee funding platform.",
38987+
"isDeprecated": false,
38988+
"deprecationReason": null
38989+
},
3898438990
{
3898538991
"name": "CUSTOM",
3898638992
"description": "Custom funding platform.",

0 commit comments

Comments
 (0)