Skip to content

Commit 6b51158

Browse files
committed
Add missing bluesky social link type
1 parent 94d88fd commit 6b51158

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

lib/Model/SocialLinkType.php

+5-2
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
* SocialLinkType Class Doc Comment
3434
*
3535
* @category Class
36-
* @description * 1 = Mastodon * 2 = Discord * 3 = Website * 4 = Facebook * 5 = Twitter * 6 = Instagram * 7 = Patreon * 8 = Twitch * 9 = Reddit * 10 = Youtube * 11 = TikTok * 12 = Pinterest * 13 = Github
36+
* @description * 1 = Mastodon * 2 = Discord * 3 = Website * 4 = Facebook * 5 = Twitter * 6 = Instagram * 7 = Patreon * 8 = Twitch * 9 = Reddit * 10 = Youtube * 11 = TikTok * 12 = Pinterest * 13 = Github * 14 = Bluesky
3737
* @package Aternos\CurseForgeApi
3838
* @author OpenAPI Generator team
3939
* @link https://openapi-generator.tech
@@ -69,6 +69,8 @@ class SocialLinkType
6969

7070
public const NUMBER_13 = 13;
7171

72+
public const NUMBER_14 = 14;
73+
7274
/**
7375
* Gets allowable values of the enum
7476
* @return string[]
@@ -88,7 +90,8 @@ public static function getAllowableEnumValues()
8890
self::NUMBER_10,
8991
self::NUMBER_11,
9092
self::NUMBER_12,
91-
self::NUMBER_13
93+
self::NUMBER_13,
94+
self::NUMBER_14
9295
];
9396
}
9497
}

openapi.yaml

+3
Original file line numberDiff line numberDiff line change
@@ -2311,6 +2311,7 @@ components:
23112311
* 11 = TikTok
23122312
* 12 = Pinterest
23132313
* 13 = Github
2314+
* 14 = Bluesky
23142315
enum:
23152316
- 1
23162317
- 2
@@ -2325,6 +2326,7 @@ components:
23252326
- 11
23262327
- 12
23272328
- 13
2329+
- 14
23282330
x-enumNames:
23292331
- Mastodon
23302332
- Discord
@@ -2339,6 +2341,7 @@ components:
23392341
- TikTok
23402342
- Pinterest
23412343
- Github
2344+
- Bluesky
23422345
SortableGameVersion:
23432346
type: object
23442347
properties:

0 commit comments

Comments
 (0)