diff --git a/README.md b/README.md
index 9de62cb..5b3f23d 100644
--- a/README.md
+++ b/README.md
@@ -1,14 +1,13 @@
-
-
+
-The official API for the community driven Helldivers Companion app.
+The Official API For The Community Driven HellHub App.
Written 100% in Typescript, running on Bun. Pulls data from the official API and acts as cache/transformer relay.
-## Whats is the Helldivers Companion API?
+## Whats is the HellHub API?
The unofficial API was not explicitly made usable by Arrowhead Game Studios for third parties, may be subject to change at any time. This API will be updated to reflect any changes to the game API.
@@ -18,7 +17,7 @@ The API is written in Typescript and runs on the Bun framework. It pulls data fr
## Rate limit
-The Helldivers Companion API has a rate limit of 200 requests per minute. To avoid hitting rate limits in your clients check the following headers in your response:
+The HellHub API has a rate limit of 200 requests per minute. To avoid hitting rate limits in your clients check the following headers in your response:
- `X-Rate-Limit`: The maximum number of requests per minute.
- `X-Rate-Count`: The number of requests made in the current minute.
@@ -27,7 +26,7 @@ The Helldivers Companion API has a rate limit of 200 requests per minute. To avo
## API Entities and Endpoints
-We have a few entities that we can interact with in the API. Here is a brief overview of each of them. These are all created from the source data of the Helldivers 2 API and merely modified to be more usable.
+For the full full documentation, check out the [postman collection](./postman.json) inside the repository root.
### Sectors
diff --git a/assets/logo-dark.png b/assets/logo-dark.png
deleted file mode 100644
index 1748357..0000000
Binary files a/assets/logo-dark.png and /dev/null differ
diff --git a/assets/logo-light.png b/assets/logo-light.png
deleted file mode 100644
index bd83464..0000000
Binary files a/assets/logo-light.png and /dev/null differ
diff --git a/assets/logo.png b/assets/logo.png
new file mode 100644
index 0000000..7592f01
Binary files /dev/null and b/assets/logo.png differ
diff --git a/package.json b/package.json
index d06b71c..2f7d8f8 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
- "name": "@helldivers-companion/api",
- "description": "The official API for the community driven Helldivers Companion app",
+ "name": "@hellhub/api",
+ "description": "The official API for the community driven HellHub app",
"module": "./src/index.ts",
"main": "build/index.mjs",
"types": "build/index.d.ts",
@@ -24,7 +24,7 @@
"dev": "bun run --hot ./src/index.ts",
"refresh": "bun run ./scripts/refresh.ts",
"clean": "rm -rf prisma/database prisma/migrations",
- "serve": "pm2 start --name=\"@helldivers-companion/api\" --interpreter ~/.bun/bin/bun build/index.js",
+ "serve": "pm2 start --name=\"@hellhub/api\" --interpreter ~/.bun/bin/bun build/index.js",
"generate": "bun run ./scripts/generate.ts"
},
"devDependencies": {
diff --git a/postman.json b/postman.json
index d60b083..ab40f10 100644
--- a/postman.json
+++ b/postman.json
@@ -1,8 +1,8 @@
{
"info": {
"_postman_id": "92940ded-affa-4260-a27b-f12888c76b5d",
- "name": "Helldivers Companion API",
- "description": "## Whats is the Helldivers Companion API?\n\nThe API is written in Typescript and runs on the Bun framework. It pulls data from the Helldivers 2 API and transforms it into a more user-friendly format. It also caches the data so that the app can pull data from the API without having to worry about rate limits or slow response times.\n\n## Statement\n\nThe unofficial API was not explicitly made usable by Arrowhead Game Studios for third parties, may be subject to change at any time. This API will be updated to reflect any changes to the game API.",
+ "name": "HellHub API",
+ "description": "## Whats is the HellHub API?\n\nThe API is written in Typescript and runs on the Bun framework. It pulls data from the Helldivers 2 API and transforms it into a more user-friendly format. It also caches the data so that the app can pull data from the API without having to worry about rate limits or slow response times.\n\n## Statement\n\nThe unofficial API was not explicitly made usable by Arrowhead Game Studios for third parties, may be subject to change at any time. This API will be updated to reflect any changes to the game API.",
"schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json",
"_exporter_id": "6421438"
},
@@ -4390,7 +4390,7 @@
},
{
"key": "api_url",
- "value": "https://api-helldivers-companion.koyeb.app",
+ "value": "https://api-hellhub-collective.koyeb.app",
"type": "string"
}
]
diff --git a/src/routes/stratagems.ts b/src/routes/stratagems.ts
index f559afd..36242d0 100644
--- a/src/routes/stratagems.ts
+++ b/src/routes/stratagems.ts
@@ -6,4 +6,3 @@ export default async function stratagems(app: Hono) {
app.get("/stratagems", Stratagems.getAllStratagems);
app.get("/stratagems/:id", Stratagems.getStratagemById);
}
-//https://api-helldivers-companion.koyeb.app