diff --git a/schema.d.ts b/schema.d.ts index 0e0e40087..333c53075 100644 --- a/schema.d.ts +++ b/schema.d.ts @@ -7928,6 +7928,8 @@ export type FundingLink = { /** The possible funding platforms for repository funding links. */ export type FundingPlatform = + /** Buy Me a Coffee funding platform. */ + | 'BUY_ME_A_COFFEE' /** Community Bridge funding platform. */ | 'COMMUNITY_BRIDGE' /** Custom funding platform. */ diff --git a/schema.graphql b/schema.graphql index ad01807ad..0e900b8a5 100644 --- a/schema.graphql +++ b/schema.graphql @@ -15442,6 +15442,11 @@ type FundingLink { The possible funding platforms for repository funding links. """ enum FundingPlatform { + """ + Buy Me a Coffee funding platform. + """ + BUY_ME_A_COFFEE + """ Community Bridge funding platform. """ diff --git a/schema.json b/schema.json index d27bf3dbc..e86f776e5 100644 --- a/schema.json +++ b/schema.json @@ -38981,6 +38981,12 @@ "isDeprecated": false, "deprecationReason": null }, + { + "name": "BUY_ME_A_COFFEE", + "description": "Buy Me a Coffee funding platform.", + "isDeprecated": false, + "deprecationReason": null + }, { "name": "CUSTOM", "description": "Custom funding platform.",