@yakumoryo/minimax-plan-usage 0.1.0 → 0.1.1

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 CHANGED
@@ -14,7 +14,6 @@ After installation, run:
14
14
  The plugin uses the same `ANTHROPIC_AUTH_TOKEN` and `ANTHROPIC_BASE_URL` that Claude Code uses. Based on the base URL, it determines the correct MiniMax API endpoint:
15
15
 
16
16
  - If `ANTHROPIC_BASE_URL` contains `minimax.io` → uses `https://minimax.io`
17
- - If `ANTHROPIC_BASE_URL` contains `minimaxi.cn` → uses `https://minimaxi.cn`
18
17
  - Otherwise → uses `https://api.minimaxi.com` (default)
19
18
 
20
19
  ## Requirements
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yakumoryo/minimax-plan-usage",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "Claude Code plugin for MiniMax Coding Plan usage statistics",
5
5
  "keywords": ["claude", "claude-code", "plugin", "minimax"],
6
6
  "files": [
@@ -23,9 +23,7 @@ let apiHost = 'https://api.minimaxi.com';
23
23
 
24
24
  if (baseUrl.includes('minimax.io')) {
25
25
  apiHost = 'https://minimax.io';
26
- } else if (baseUrl.includes('minimaxi.cn')) {
27
- apiHost = 'https://minimaxi.cn';
28
- } else if (baseUrl.includes('minimaxi.com')) {
26
+ } else {
29
27
  apiHost = 'https://api.minimaxi.com';
30
28
  }
31
29