@wolfstar/shared-http-pieces 1.2.6 → 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.
- package/README.md +1 -1
- package/dist/index.d.ts +1 -3
- package/dist/index.d.ts.map +1 -1
- package/dist/register.d.ts +1 -1
- package/dist/register.js.map +1 -1
- package/package.json +6 -5
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# `@wolfstar/shared-http-pieces` [](https://app.tolgee.io/projects/33773)
|
|
2
2
|
|
|
3
3
|
The shared commands used for Star Network's HTTP-only bots.
|
|
4
4
|
|
package/dist/index.d.ts
CHANGED
|
@@ -1,6 +1,4 @@
|
|
|
1
1
|
import * as Sentry from "@sentry/node";
|
|
2
|
-
|
|
3
|
-
//#region src/lib/i18n/LanguageKeys/Commands/Shared.d.ts
|
|
4
2
|
declare namespace Shared_d_exports {
|
|
5
3
|
export { DonateDescription, DonateName, DonateResponse, InfoButtonDonate, InfoButtonGitHub, InfoButtonInvite, InfoButtonSupport, InfoDescription, InfoEmbedDescription, InfoFieldServerUsageTitle, InfoFieldServerUsageValue, InfoFieldUptimeTitle, InfoFieldUptimeValue, InfoName };
|
|
6
4
|
}
|
|
@@ -53,7 +51,7 @@ declare module '@wolfstar/env-utilities' {
|
|
|
53
51
|
interface Env {
|
|
54
52
|
REGISTRY_GUILD_ID: string;
|
|
55
53
|
}
|
|
56
|
-
}
|
|
54
|
+
}
|
|
57
55
|
//#endregion
|
|
58
56
|
export { All_d_exports as LanguageKeys, Sentry, SentryOptions, getInvite, getRepository, initializeSentry, isSentryInitialized, registerCommands, setInvite, setRepository };
|
|
59
57
|
//# sourceMappingURL=index.d.ts.map
|
package/dist/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","names":[],"sources":["../src/lib/i18n/LanguageKeys/Commands/Shared.ts","../src/lib/i18n/LanguageKeys/Commands/All.ts","../src/lib/i18n/LanguageKeys/All.ts","../src/lib/information.ts","../src/lib/sentry.ts","../src/lib/utilities/register-command.ts"],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.d.ts","names":[],"sources":["../src/lib/i18n/LanguageKeys/Commands/Shared.ts","../src/lib/i18n/LanguageKeys/Commands/All.ts","../src/lib/i18n/LanguageKeys/All.ts","../src/lib/information.ts","../src/lib/sentry.ts","../src/lib/utilities/register-command.ts"],"mappings":";;;;cAEa,oDAAU;cACV,2DAAiB;cACjB,wDAAc;EAAc;;cAC5B,kDAAQ;cACR,yDAAe;cACf,8DAAoB;cACpB,8DAAoB;cACpB,8DAAoB;EAAc;EAAgB;;cAClD,mEAAyB;cACzB,mEAAyB;EAAa;EAAkB;EAAmB;;cAC3E,0DAAgB;cAChB,2DAAiB;cACjB,0DAAgB;cAChB,0DAAgB;;;;;;;;;iBGZb,cAAc;iBAId;iBAIA,UAAU,kBAAkB;iBAI5B;;;iBCTA;iBAIA,iBAAiB,UAAS;UAwCzB,sBAAsB,KAAK,OAAO;EAClD,OAAO;;;;iBChDc,oBAAgB;;YAS3B;IACT"}
|
package/dist/register.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
import "@wolfstar/http-framework";
|
package/dist/register.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"register.js","names":[],"sources":["../src/register.ts"],"sourcesContent":["import { load } from '@wolfstar/http-framework-i18n';\nimport './commands/_load.js';\nimport './listeners/_load.js';\n\nawait load(new URL('../src/locales', import.meta.url));\n"],"mappings":";;;AAIA,MAAM,KAAK,IAAI,IAAI,kBAAkB,
|
|
1
|
+
{"version":3,"file":"register.js","names":[],"sources":["../src/register.ts"],"sourcesContent":["import { load } from '@wolfstar/http-framework-i18n';\nimport './commands/_load.js';\nimport './listeners/_load.js';\n\nawait load(new URL('../src/locales', import.meta.url));\n"],"mappings":";;;AAIA,MAAM,KAAK,IAAI,IAAI,kBAAkB,YAAY,GAAG,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wolfstar/shared-http-pieces",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.8",
|
|
4
4
|
"description": "The common pieces for Star Network's HTTP-only bots",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"api",
|
|
@@ -43,7 +43,8 @@
|
|
|
43
43
|
}
|
|
44
44
|
},
|
|
45
45
|
"publishConfig": {
|
|
46
|
-
"access": "public"
|
|
46
|
+
"access": "public",
|
|
47
|
+
"provenance": true
|
|
47
48
|
},
|
|
48
49
|
"dependencies": {
|
|
49
50
|
"@discordjs/builders": "^1.14.1",
|
|
@@ -51,9 +52,9 @@
|
|
|
51
52
|
"@sentry/node": "^8.55.2",
|
|
52
53
|
"discord-api-types": "^0.38.8",
|
|
53
54
|
"tslib": "^2.8.1",
|
|
54
|
-
"@wolfstar/env-utilities": "^2.0.
|
|
55
|
-
"@wolfstar/http-framework": "^3.
|
|
56
|
-
"@wolfstar/http-framework-i18n": "^1.2.
|
|
55
|
+
"@wolfstar/env-utilities": "^2.0.5",
|
|
56
|
+
"@wolfstar/http-framework": "^3.1.2",
|
|
57
|
+
"@wolfstar/http-framework-i18n": "^1.2.5"
|
|
57
58
|
},
|
|
58
59
|
"devDependencies": {
|
|
59
60
|
"typescript": "~5.8.3"
|