@rian8337/osu-base 1.0.4 → 1.2.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -114,7 +114,7 @@ class APIRequestBuilder {
|
|
|
114
114
|
class DroidAPIRequestBuilder extends APIRequestBuilder {
|
|
115
115
|
constructor() {
|
|
116
116
|
super(...arguments);
|
|
117
|
-
this.host = "
|
|
117
|
+
this.host = "https://osudroid.moe/api/";
|
|
118
118
|
this.APIkey = process.env
|
|
119
119
|
.DROID_API_KEY;
|
|
120
120
|
this.APIkeyParam = `apiKey=${this.APIkey}&`;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rian8337/osu-base",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.2.8",
|
|
4
4
|
"description": "Base module for all osu! related modules.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"osu",
|
|
@@ -11,13 +11,13 @@
|
|
|
11
11
|
"license": "MIT",
|
|
12
12
|
"main": "dist/index.js",
|
|
13
13
|
"types": "typings/index.d.ts",
|
|
14
|
+
"typedocMain": "src/index.ts",
|
|
14
15
|
"files": [
|
|
15
16
|
"dist/**",
|
|
16
17
|
"typings/**"
|
|
17
18
|
],
|
|
18
19
|
"scripts": {
|
|
19
20
|
"build": "tsc",
|
|
20
|
-
"generate-docs": "typedoc src/index.ts",
|
|
21
21
|
"lint": "eslint --ext ts",
|
|
22
22
|
"prepare": "npm run build",
|
|
23
23
|
"test": "jest -i"
|
|
@@ -41,5 +41,5 @@
|
|
|
41
41
|
"publishConfig": {
|
|
42
42
|
"access": "public"
|
|
43
43
|
},
|
|
44
|
-
"gitHead": "
|
|
44
|
+
"gitHead": "3e633e510be04aca9c46b9361524251442049621"
|
|
45
45
|
}
|