From 9f6db3178580d483f2a77f3589acd62cbc69e040 Mon Sep 17 00:00:00 2001 From: Prospector <6166773+Prospector@users.noreply.github.com> Date: Tue, 20 Jan 2026 12:40:11 -0800 Subject: [PATCH] update Modrinth Hosting issue template + misc comments (#5166) --- .../ISSUE_TEMPLATE/{3-servers-bug.yml => 3-hosting-bug.yml} | 6 +++--- .github/ISSUE_TEMPLATE/5-feature-request.yml | 2 +- packages/api-client/README.md | 2 +- packages/api-client/src/types/client.ts | 2 +- packages/api-client/src/types/request.ts | 2 +- 5 files changed, 7 insertions(+), 7 deletions(-) rename .github/ISSUE_TEMPLATE/{3-servers-bug.yml => 3-hosting-bug.yml} (94%) diff --git a/.github/ISSUE_TEMPLATE/3-servers-bug.yml b/.github/ISSUE_TEMPLATE/3-hosting-bug.yml similarity index 94% rename from .github/ISSUE_TEMPLATE/3-servers-bug.yml rename to .github/ISSUE_TEMPLATE/3-hosting-bug.yml index 39214a8f..dbb4dca0 100644 --- a/.github/ISSUE_TEMPLATE/3-servers-bug.yml +++ b/.github/ISSUE_TEMPLATE/3-hosting-bug.yml @@ -1,6 +1,6 @@ -name: 👥 Bug with Modrinth Servers -description: For issues with a Modrinth Servers product. -labels: [servers] +name: 👥 Bug with Modrinth Hosting +description: For issues with a Modrinth Hosting product. +labels: [hosting] type: 'bug' body: - type: checkboxes diff --git a/.github/ISSUE_TEMPLATE/5-feature-request.yml b/.github/ISSUE_TEMPLATE/5-feature-request.yml index 0b358e9b..78162f75 100644 --- a/.github/ISSUE_TEMPLATE/5-feature-request.yml +++ b/.github/ISSUE_TEMPLATE/5-feature-request.yml @@ -19,7 +19,7 @@ body: options: - Modrinth App - Modrinth.com website - - Modrinth Servers + - Modrinth Hosting - Modrinth API for developers - type: textarea attributes: diff --git a/packages/api-client/README.md b/packages/api-client/README.md index e69f78a5..29592885 100644 --- a/packages/api-client/README.md +++ b/packages/api-client/README.md @@ -32,7 +32,7 @@ const client = new GenericModrinthClient({ // Explicitly make a request using client.request const project: any = await client.request('/project/sodium', { api: 'labrinth', version: 2 }) -// Example for archon (Modrinth Servers) +// Example for archon (Modrinth Hosting) const servers = await client.request('/servers?limit=10', { api: 'archon', version: 0 }) // Or use the provided wrappers for better type support. diff --git a/packages/api-client/src/types/client.ts b/packages/api-client/src/types/client.ts index 8080c311..fa9d20a3 100644 --- a/packages/api-client/src/types/client.ts +++ b/packages/api-client/src/types/client.ts @@ -39,7 +39,7 @@ export interface ClientConfig { labrinthBaseUrl?: string /** - * Base URL for Archon API (Modrinth Servers API) + * Base URL for Archon API (Modrinth Hosting API) * @default 'https://archon.modrinth.com' */ archonBaseUrl?: string diff --git a/packages/api-client/src/types/request.ts b/packages/api-client/src/types/request.ts index b0c1beb0..c1545e57 100644 --- a/packages/api-client/src/types/request.ts +++ b/packages/api-client/src/types/request.ts @@ -10,7 +10,7 @@ export type RequestOptions = { /** * API to use for this request * - 'labrinth': Main Modrinth API (resolves to labrinthBaseUrl) - * - 'archon': Modrinth Servers API (resolves to archonBaseUrl) + * - 'archon': Modrinth Hosting API (resolves to archonBaseUrl) * - string: Custom base URL (e.g., 'https://custom-api.com') */ api: 'labrinth' | 'archon' | string