Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -320,6 +320,7 @@ Outlook login often shows interstitial pages after password entry:
- `OPENCODE_MULTI_AUTH_TOKEN_FAILURE_COOLDOWN_MS`
- `OPENCODE_MULTI_AUTH_PROBE_EFFORT`
- `OPENCODE_MULTI_AUTH_LIMITS_PROBE_MODELS`
- `OPENCODE_MULTI_AUTH_CREDIT_ACCOUNT_ALIASES` -> comma-separated aliases allowed to spend paid credits after included Codex limits are exhausted. Unset means all accounts; `none` disables paid-credit fallback; `all` or `*` allows all.

### Model mapping and runtime behavior

Expand Down
6 changes: 6 additions & 0 deletions dist/credits-policy.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
import { type AccountCredentials } from './types.js';
export declare function parseCreditAccountAliases(raw: string | undefined): string[] | undefined;
export declare function getCreditAccountAliases(): string[] | undefined;
export declare function isCreditsAllowedForAlias(alias: string, creditAccountAliases?: string[] | undefined): boolean;
export declare function hasUsableAllowedCredits(account: AccountCredentials, creditAccountAliases?: string[] | undefined): boolean;
//# sourceMappingURL=credits-policy.d.ts.map
1 change: 1 addition & 0 deletions dist/credits-policy.d.ts.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

40 changes: 40 additions & 0 deletions dist/credits-policy.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions dist/credits-policy.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/index.d.ts.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

28 changes: 26 additions & 2 deletions dist/index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/index.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/limits-refresh.d.ts.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

18 changes: 12 additions & 6 deletions dist/limits-refresh.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading