@autohq/cli 0.1.231 → 0.1.233

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.
@@ -23340,7 +23340,7 @@ Object.assign(lookup, {
23340
23340
  // package.json
23341
23341
  var package_default = {
23342
23342
  name: "@autohq/cli",
23343
- version: "0.1.231",
23343
+ version: "0.1.233",
23344
23344
  license: "SEE LICENSE IN README.md",
23345
23345
  publishConfig: {
23346
23346
  access: "public"
@@ -26656,7 +26656,17 @@ var RATE_CARD_2026_06_23 = {
26656
26656
  "claude-sonnet-4-6": tier(3, 15),
26657
26657
  "claude-haiku-4-5": tier(1, 5),
26658
26658
  "claude-haiku-4-5-20251001": tier(1, 5),
26659
- "claude-fable-5": tier(10, 50)
26659
+ "claude-fable-5": tier(10, 50),
26660
+ // OpenAI gpt-5.3-codex, standard tier: input $1.75/Mtok, cached input
26661
+ // $0.175/Mtok, output $14.00/Mtok. Source (verified 2026-06-23):
26662
+ // https://developers.openai.com/api/docs/models/gpt-5.3-codex and
26663
+ // https://developers.openai.com/api/docs/pricing (priority tier is 2x; we
26664
+ // bill standard).
26665
+ "gpt-5.3-codex": openAiTier({
26666
+ input: 1.75,
26667
+ cachedInput: 0.175,
26668
+ output: 14
26669
+ })
26660
26670
  }
26661
26671
  };
26662
26672
  var PRICING_RATE_CARDS = {
@@ -26674,6 +26684,14 @@ function tier(inputUsdPerMtok, outputUsdPerMtok) {
26674
26684
  function opusTier() {
26675
26685
  return tier(5, 25);
26676
26686
  }
26687
+ function openAiTier(rates) {
26688
+ return {
26689
+ inputUsdPerMtok: rates.input,
26690
+ outputUsdPerMtok: rates.output,
26691
+ cacheWrite5mUsdPerMtok: rates.input,
26692
+ cacheReadUsdPerMtok: rates.cachedInput
26693
+ };
26694
+ }
26677
26695
 
26678
26696
  // ../../packages/schemas/src/project-service-accounts.ts
26679
26697
  var ProjectServiceAccountSchema = external_exports.object({
package/dist/index.js CHANGED
@@ -18361,6 +18361,14 @@ function tier(inputUsdPerMtok, outputUsdPerMtok) {
18361
18361
  function opusTier() {
18362
18362
  return tier(5, 25);
18363
18363
  }
18364
+ function openAiTier(rates) {
18365
+ return {
18366
+ inputUsdPerMtok: rates.input,
18367
+ outputUsdPerMtok: rates.output,
18368
+ cacheWrite5mUsdPerMtok: rates.input,
18369
+ cacheReadUsdPerMtok: rates.cachedInput
18370
+ };
18371
+ }
18364
18372
  var RATE_CARD_2026_06_23, PRICING_RATE_CARDS, CURRENT_PRICING_VERSION;
18365
18373
  var init_pricing = __esm({
18366
18374
  "../../packages/schemas/src/pricing.ts"() {
@@ -18375,7 +18383,17 @@ var init_pricing = __esm({
18375
18383
  "claude-sonnet-4-6": tier(3, 15),
18376
18384
  "claude-haiku-4-5": tier(1, 5),
18377
18385
  "claude-haiku-4-5-20251001": tier(1, 5),
18378
- "claude-fable-5": tier(10, 50)
18386
+ "claude-fable-5": tier(10, 50),
18387
+ // OpenAI gpt-5.3-codex, standard tier: input $1.75/Mtok, cached input
18388
+ // $0.175/Mtok, output $14.00/Mtok. Source (verified 2026-06-23):
18389
+ // https://developers.openai.com/api/docs/models/gpt-5.3-codex and
18390
+ // https://developers.openai.com/api/docs/pricing (priority tier is 2x; we
18391
+ // bill standard).
18392
+ "gpt-5.3-codex": openAiTier({
18393
+ input: 1.75,
18394
+ cachedInput: 0.175,
18395
+ output: 14
18396
+ })
18379
18397
  }
18380
18398
  };
18381
18399
  PRICING_RATE_CARDS = {
@@ -22321,7 +22339,7 @@ var init_package = __esm({
22321
22339
  "package.json"() {
22322
22340
  package_default = {
22323
22341
  name: "@autohq/cli",
22324
- version: "0.1.231",
22342
+ version: "0.1.233",
22325
22343
  license: "SEE LICENSE IN README.md",
22326
22344
  publishConfig: {
22327
22345
  access: "public"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@autohq/cli",
3
- "version": "0.1.231",
3
+ "version": "0.1.233",
4
4
  "license": "SEE LICENSE IN README.md",
5
5
  "publishConfig": {
6
6
  "access": "public"