Skip to content

Commit dcf3a73

Browse files
authored
fix: update BotListSpace (#202)
* fix(BotListSpace): update list to new name and URL * [auto] docs: update docs * [auto] docs: update docs * docs(DiscordListSpace): update name in JSDoc
1 parent 3b208ff commit dcf3a73

File tree

2 files changed

+27
-20
lines changed

2 files changed

+27
-20
lines changed

docs/general/services.md

+15-13
Original file line numberDiff line numberDiff line change
@@ -52,19 +52,6 @@ Class: [Blist](/#/docs/main/$$$ref/class/Blist)
5252
Website: https://blist.xyz
5353
</div>
5454

55-
<div align=center>
56-
<p>
57-
<img src="https://botlist.space/img/android-chrome-512x512.png" alt="botlistspace logo" width="100" align="left" />
58-
</p>
59-
<i id="botlistspace"></i>
60-
<i id="botlist.space"></i>
61-
<a href="https://botlist.space"><h1>botlist.space</h1></a>
62-
63-
Keys: `botlistspace`, `botlist.space`
64-
Class: [BotListSpace](/#/docs/main/$$$ref/class/BotListSpace)
65-
Website: https://botlist.space
66-
</div>
67-
6855
<div align=center>
6956
<p>
7057
<img src="https://botsdatabase.com/images/icons/favicon-96x96.png" alt="botsdatabase logo" width="100" align="left" />
@@ -235,6 +222,21 @@ Class: [DiscordLabs](/#/docs/main/$$$ref/class/DiscordLabs)
235222
Website: https://bots.discordlabs.org/
236223
</div>
237224

225+
<div align=center>
226+
<p>
227+
<img src="https://discordlist.space/img/android-chrome-512x512.png" alt="discordlistspace logo" width="100" align="left" />
228+
</p>
229+
<i id="discordlistspace"></i>
230+
<i id="discordlist.space"></i>
231+
<i id="botlistspace"></i>
232+
<i id="botlist.space"></i>
233+
<a href="https://discordlist.space"><h1>discordlist.space</h1></a>
234+
235+
Keys: `discordlistspace`, `discordlist.space`, `botlistspace`, `botlist.space`
236+
Class: [DiscordListSpace](/#/docs/main/$$$ref/class/DiscordListSpace)
237+
Website: https://discordlist.space
238+
</div>
239+
238240
<div align=center>
239241
<p>
240242
<img src="https://discordlistology.com/idiscord.png" alt="discordlistology logo" width="100" align="left" />

src/Interface/Lists/BotListSpace.ts src/Interface/Lists/DiscordListSpace.ts

+12-7
Original file line numberDiff line numberDiff line change
@@ -3,33 +3,38 @@ import { Util, CountResolvable, IDResolvable } from '../../Utils/Util'
33
import { Query } from '../../Utils/Constants'
44

55
/**
6-
* Represents the botlist.space service.
6+
* Represents the discordlist.space service.
77
* @see https://docs.botlist.space/
88
*/
9-
export default class BotListSpace extends Service {
9+
export default class DiscordListSpace extends Service {
1010
/** The values that can be used to select the service. */
1111
static get aliases() {
12-
return ['botlistspace', 'botlist.space']
12+
return [
13+
'discordlistspace',
14+
'discordlist.space',
15+
'botlistspace',
16+
'botlist.space'
17+
]
1318
}
1419

1520
/** The logo URL. */
1621
static get logoURL() {
17-
return 'https://botlist.space/img/android-chrome-512x512.png'
22+
return 'https://discordlist.space/img/android-chrome-512x512.png'
1823
}
1924

2025
/** Service's name. */
2126
static get serviceName() {
22-
return 'botlist.space'
27+
return 'discordlist.space'
2328
}
2429

2530
/** The website URL. */
2631
static get websiteURL() {
27-
return 'https://botlist.space'
32+
return 'https://discordlist.space'
2833
}
2934

3035
/** The base URL of the service's API. */
3136
static get baseURL() {
32-
return 'https://api.botlist.space/v1'
37+
return 'https://api.discordlist.space/v1'
3338
}
3439

3540
/**

0 commit comments

Comments
 (0)