Skip to content

Commit 42b9c6a

Browse files
nipunn1313Convex, Inc.
authored and
Convex, Inc.
committed
Rename to centitokens (#36396)
GitOrigin-RevId: 688e99d08b2f2e482f8fa3558a60a42f3ff9588f
1 parent 50751ae commit 42b9c6a

File tree

2 files changed

+19
-3
lines changed

2 files changed

+19
-3
lines changed

npm-packages/dashboard/dashboard-openapi.json

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3439,9 +3439,21 @@
34393439
"required": [
34403440
"tokensUsed",
34413441
"tokensQuota",
3442+
"centitokensUsed",
3443+
"centitokensQuota",
34423444
"isTeamDisabled"
34433445
],
34443446
"properties": {
3447+
"centitokensQuota": {
3448+
"type": "integer",
3449+
"format": "int64",
3450+
"minimum": 0
3451+
},
3452+
"centitokensUsed": {
3453+
"type": "integer",
3454+
"format": "int64",
3455+
"minimum": 0
3456+
},
34453457
"isTeamDisabled": {
34463458
"type": "boolean"
34473459
},
@@ -4026,10 +4038,10 @@
40264038
"RecordTokensArgs": {
40274039
"type": "object",
40284040
"required": [
4029-
"tokens"
4041+
"centitokens"
40304042
],
40314043
"properties": {
4032-
"tokens": {
4044+
"centitokens": {
40334045
"type": "integer",
40344046
"format": "int64",
40354047
"minimum": 0

npm-packages/dashboard/src/generatedApi.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1632,6 +1632,10 @@ export interface components {
16321632
warningThresholdCents?: number | null;
16331633
};
16341634
GetTokenInfoResponse: {
1635+
/** Format: int64 */
1636+
centitokensQuota: number;
1637+
/** Format: int64 */
1638+
centitokensUsed: number;
16351639
isTeamDisabled: boolean;
16361640
/** Format: int64 */
16371641
tokensQuota: number;
@@ -1787,7 +1791,7 @@ export interface components {
17871791
};
17881792
RecordTokensArgs: {
17891793
/** Format: int64 */
1790-
tokens: number;
1794+
centitokens: number;
17911795
};
17921796
ReferralCode: string;
17931797
ReferralState: {

0 commit comments

Comments
 (0)