@drawbridge/drawbridge-utils 0.0.98 → 0.0.100

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/dist/ai.cjs CHANGED
@@ -168,6 +168,16 @@ var cost = {
168
168
  input: 150,
169
169
  output: 900
170
170
  },
171
+ // gemini-3.5-flash-lite — verified against Google's pricing page 2026-08-20:
172
+ // $0.03 cached / $0.30 input / $2.50 output per 1M tokens (thinking billed at
173
+ // output). A fifth of flash on input, ~a quarter on output. Growth's assistant
174
+ // ranks the feed on this tier — one call per page — so its rows were the
175
+ // unpriced ones until now.
176
+ "gemini-3.5-flash-lite": {
177
+ cached: 3,
178
+ input: 30,
179
+ output: 250
180
+ },
171
181
  "gemini-2.5-flash": {
172
182
  cached: 3,
173
183
  input: 30,
package/dist/ai.js CHANGED
@@ -134,6 +134,16 @@ var cost = {
134
134
  input: 150,
135
135
  output: 900
136
136
  },
137
+ // gemini-3.5-flash-lite — verified against Google's pricing page 2026-08-20:
138
+ // $0.03 cached / $0.30 input / $2.50 output per 1M tokens (thinking billed at
139
+ // output). A fifth of flash on input, ~a quarter on output. Growth's assistant
140
+ // ranks the feed on this tier — one call per page — so its rows were the
141
+ // unpriced ones until now.
142
+ "gemini-3.5-flash-lite": {
143
+ cached: 3,
144
+ input: 30,
145
+ output: 250
146
+ },
137
147
  "gemini-2.5-flash": {
138
148
  cached: 3,
139
149
  input: 30,
package/dist/billing.cjs CHANGED
@@ -168,6 +168,16 @@ var cost = {
168
168
  input: 150,
169
169
  output: 900
170
170
  },
171
+ // gemini-3.5-flash-lite — verified against Google's pricing page 2026-08-20:
172
+ // $0.03 cached / $0.30 input / $2.50 output per 1M tokens (thinking billed at
173
+ // output). A fifth of flash on input, ~a quarter on output. Growth's assistant
174
+ // ranks the feed on this tier — one call per page — so its rows were the
175
+ // unpriced ones until now.
176
+ "gemini-3.5-flash-lite": {
177
+ cached: 3,
178
+ input: 30,
179
+ output: 250
180
+ },
171
181
  "gemini-2.5-flash": {
172
182
  cached: 3,
173
183
  input: 30,
@@ -39,6 +39,16 @@ const cost = {
39
39
  input : 150,
40
40
  output : 900
41
41
  },
42
+ // gemini-3.5-flash-lite — verified against Google's pricing page 2026-08-20:
43
+ // $0.03 cached / $0.30 input / $2.50 output per 1M tokens (thinking billed at
44
+ // output). A fifth of flash on input, ~a quarter on output. Growth's assistant
45
+ // ranks the feed on this tier — one call per page — so its rows were the
46
+ // unpriced ones until now.
47
+ 'gemini-3.5-flash-lite' : {
48
+ cached : 3,
49
+ input : 30,
50
+ output : 250
51
+ },
42
52
  'gemini-2.5-flash' : {
43
53
  cached : 3,
44
54
  input : 30,
package/dist/billing.d.ts CHANGED
@@ -39,6 +39,16 @@ const cost = {
39
39
  input : 150,
40
40
  output : 900
41
41
  },
42
+ // gemini-3.5-flash-lite — verified against Google's pricing page 2026-08-20:
43
+ // $0.03 cached / $0.30 input / $2.50 output per 1M tokens (thinking billed at
44
+ // output). A fifth of flash on input, ~a quarter on output. Growth's assistant
45
+ // ranks the feed on this tier — one call per page — so its rows were the
46
+ // unpriced ones until now.
47
+ 'gemini-3.5-flash-lite' : {
48
+ cached : 3,
49
+ input : 30,
50
+ output : 250
51
+ },
42
52
  'gemini-2.5-flash' : {
43
53
  cached : 3,
44
54
  input : 30,
package/dist/billing.js CHANGED
@@ -138,6 +138,16 @@ var cost = {
138
138
  input: 150,
139
139
  output: 900
140
140
  },
141
+ // gemini-3.5-flash-lite — verified against Google's pricing page 2026-08-20:
142
+ // $0.03 cached / $0.30 input / $2.50 output per 1M tokens (thinking billed at
143
+ // output). A fifth of flash on input, ~a quarter on output. Growth's assistant
144
+ // ranks the feed on this tier — one call per page — so its rows were the
145
+ // unpriced ones until now.
146
+ "gemini-3.5-flash-lite": {
147
+ cached: 3,
148
+ input: 30,
149
+ output: 250
150
+ },
141
151
  "gemini-2.5-flash": {
142
152
  cached: 3,
143
153
  input: 30,
package/package.json CHANGED
@@ -13,7 +13,7 @@
13
13
  "tinycolor2": "1.6.0"
14
14
  },
15
15
  "devDependencies": {
16
- "@drawbridge/drawbridge-agents": "0.1.31",
16
+ "@drawbridge/drawbridge-agents": "0.1.33",
17
17
  "@node-oauth/oauth2-server": "5.3.0",
18
18
  "tsup": "8.5.1",
19
19
  "typescript": "5.9.3"
@@ -179,5 +179,5 @@
179
179
  "test": ". \"$HOME/.nvm/nvm.sh\" && nvm use && node --test"
180
180
  },
181
181
  "types": "dist/index.d.ts",
182
- "version": "0.0.98"
182
+ "version": "0.0.100"
183
183
  }