Skip to content

Commit b7ee2fb

Browse files
authored
fix(Lists)!: update InfinityBots (#199)
* fix(InfinityBots)!: update list name and website BREAKING CHANGE: the exported class name has been changed, along with the old aliases. * [auto] docs: update docs
1 parent b9eee20 commit b7ee2fb

File tree

2 files changed

+13
-13
lines changed

2 files changed

+13
-13
lines changed

docs/general/services.md

+7-7
Original file line numberDiff line numberDiff line change
@@ -302,15 +302,15 @@ Website: https://glennbotlist.xyz
302302

303303
<div align=center>
304304
<p>
305-
<img src="https://i.imgur.com/x0LCfAh.png" alt="infinitybots logo" width="100" align="left" />
305+
<img src="https://i.imgur.com/x0LCfAh.png" alt="infinitybotlist logo" width="100" align="left" />
306306
</p>
307-
<i id="infinitybots"></i>
308-
<i id="infinitybots.xyz"></i>
309-
<a href="https://infinitybots.xyz"><h1>Infinity Bot List</h1></a>
307+
<i id="infinitybotlist"></i>
308+
<i id="infinitybotlist.com"></i>
309+
<a href="https://infinitybotlist.com/"><h1>Infinity Bot List</h1></a>
310310

311-
Keys: `infinitybots`, `infinitybots.xyz`
312-
Class: [InfinityBots](/#/docs/main/$$$ref/class/InfinityBots)
313-
Website: https://infinitybots.xyz
311+
Keys: `infinitybotlist`, `infinitybotlist.com`
312+
Class: [InfinityBotList](/#/docs/main/$$$ref/class/InfinityBotList)
313+
Website: https://infinitybotlist.com/
314314
</div>
315315

316316
<div align=center>

src/Interface/Lists/InfinityBots.ts renamed to src/Interface/Lists/InfinityBotList.ts

+6-6
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@ import { Service, ServicePostOptions } from '../Service'
22
import { IDResolvable, Util } from '../../Utils/Util'
33

44
/**
5-
* Represents the Infinity Bots service.
6-
* @see https://docs.infinitybots.xyz
5+
* Represents the Infinity Bot List service.
6+
* @see https://docs.infinitybotlist.com/
77
*/
8-
export default class InfinityBots extends Service {
8+
export default class InfinityBotList extends Service {
99
/** The values that can be used to select the service. */
1010
static get aliases() {
11-
return ['infinitybots', 'infinitybots.xyz']
11+
return ['infinitybotlist', 'infinitybotlist.com']
1212
}
1313

1414
/** The logo URL. */
@@ -23,12 +23,12 @@ export default class InfinityBots extends Service {
2323

2424
/** The website URL. */
2525
static get websiteURL() {
26-
return 'https://infinitybots.xyz'
26+
return 'https://infinitybotlist.com/'
2727
}
2828

2929
/** The base URL of the service's API. */
3030
static get baseURL() {
31-
return 'https://api.infinitybots.xyz'
31+
return 'https://api.infinitybotlist.com'
3232
}
3333

3434
/**

0 commit comments

Comments
 (0)