@metagptx/wallet 1.0.0 → 1.3.0
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 +1 -31
- package/dist/google/api/http_pb.js +1 -1
- package/dist/index.d.ts +4 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +7 -1
- package/dist/v1/account/quota_service_pb.d.ts +361 -1
- package/dist/v1/account/quota_service_pb.d.ts.map +1 -1
- package/dist/v1/account/quota_service_pb.js +76 -12
- package/dist/v1/common/code_pb.d.ts +16 -0
- package/dist/v1/common/code_pb.d.ts.map +1 -1
- package/dist/v1/common/code_pb.js +17 -1
- package/dist/v1/config/config_service_pb.d.ts +226 -0
- package/dist/v1/config/config_service_pb.d.ts.map +1 -0
- package/dist/v1/config/config_service_pb.js +55 -0
- package/dist/v1/task/task_service_pb.d.ts +268 -0
- package/dist/v1/task/task_service_pb.d.ts.map +1 -0
- package/dist/v1/task/task_service_pb.js +57 -0
- package/dist/v1/topup/order_service_pb.d.ts +31 -1
- package/dist/v1/topup/order_service_pb.d.ts.map +1 -1
- package/dist/v1/topup/order_service_pb.js +13 -1
- package/dist/v1/webhook/payment_webhook_pb.d.ts +227 -0
- package/dist/v1/webhook/payment_webhook_pb.d.ts.map +1 -0
- package/dist/v1/webhook/payment_webhook_pb.js +33 -0
- package/dist/v1/webhook/webhook_service_pb.d.ts +20 -0
- package/dist/v1/webhook/webhook_service_pb.d.ts.map +1 -0
- package/dist/v1/webhook/webhook_service_pb.js +14 -0
- package/package.json +4 -1
- package/src/google/api/http_pb.ts +1 -1
- package/src/index.ts +10 -1
- package/src/v1/account/quota_service_pb.ts +433 -13
- package/src/v1/common/code_pb.ts +21 -1
- package/src/v1/config/config_service_pb.ts +283 -0
- package/src/v1/task/task_service_pb.ts +320 -0
- package/src/v1/topup/order_service_pb.ts +36 -1
- package/src/v1/webhook/payment_webhook_pb.ts +272 -0
- package/src/v1/webhook/webhook_service_pb.ts +31 -0
- package/src/v1/common/base_pb.ts +0 -51
package/README.md
CHANGED
|
@@ -39,36 +39,6 @@ npm run build
|
|
|
39
39
|
|
|
40
40
|
## Publishing
|
|
41
41
|
|
|
42
|
-
发布到 npm 的 `@metagptx` 命名空间:
|
|
43
|
-
|
|
44
42
|
```bash
|
|
45
|
-
# 构建项目
|
|
46
|
-
npm run build
|
|
47
|
-
|
|
48
|
-
# 发布到 npm(如果是公开包)
|
|
49
|
-
npm publish --access public
|
|
50
|
-
|
|
51
|
-
# 或者如果是私有包(需要 npm 账户权限)
|
|
52
43
|
npm publish
|
|
53
|
-
```
|
|
54
|
-
|
|
55
|
-
**注意:**
|
|
56
|
-
- 确保你已经登录到 npm:`npm login`
|
|
57
|
-
- 确保你有 `@metagptx` 命名空间的发布权限
|
|
58
|
-
- 如果是首次发布 scoped package,需要使用 `--access public` 标志
|
|
59
|
-
- **重要**:npm 要求发布包时必须启用双因素认证(2FA)或使用具有 bypass 2fa 权限的访问令牌
|
|
60
|
-
|
|
61
|
-
### 解决 2FA 问题
|
|
62
|
-
|
|
63
|
-
如果遇到 `Two-factor authentication or granular access token with bypass 2fa enabled is required` 错误:
|
|
64
|
-
|
|
65
|
-
**方案 1:启用 2FA(推荐)**
|
|
66
|
-
1. 访问 https://www.npmjs.com/settings/[你的用户名]/two-factor-auth
|
|
67
|
-
2. 启用双因素认证(推荐使用 Authenticator App)
|
|
68
|
-
3. 重新登录:`npm login`(会要求输入 2FA 代码)
|
|
69
|
-
|
|
70
|
-
**方案 2:使用 Granular Access Token**
|
|
71
|
-
1. 访问 https://www.npmjs.com/settings/[你的用户名]/tokens
|
|
72
|
-
2. 创建新的 "Granular Access Token"
|
|
73
|
-
3. 选择 "Publish" 权限,并启用 "Bypass 2FA" 选项
|
|
74
|
-
4. 使用 token 登录:`npm login --auth-type=legacy`,然后输入 token 作为密码
|
|
44
|
+
```
|
package/dist/index.d.ts
CHANGED
|
@@ -1,9 +1,12 @@
|
|
|
1
1
|
export * from "./google/api/annotations_pb.js";
|
|
2
2
|
export * from "./google/api/http_pb.js";
|
|
3
3
|
export * from "./v1/account/quota_service_pb.js";
|
|
4
|
-
export * from "./v1/common/base_pb.js";
|
|
5
4
|
export * from "./v1/common/code_pb.js";
|
|
6
5
|
export * from "./v1/common/enums_pb.js";
|
|
6
|
+
export * from "./v1/config/config_service_pb.js";
|
|
7
7
|
export * from "./v1/server_pb.js";
|
|
8
|
+
export * from "./v1/task/task_service_pb.js";
|
|
8
9
|
export * from "./v1/topup/order_service_pb.js";
|
|
10
|
+
export * from "./v1/webhook/payment_webhook_pb.js";
|
|
11
|
+
export * from "./v1/webhook/webhook_service_pb.js";
|
|
9
12
|
//# sourceMappingURL=index.d.ts.map
|
package/dist/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAIA,cAAc,gCAAgC,CAAC;AAC/C,cAAc,yBAAyB,CAAC;AAGxC,cAAc,kCAAkC,CAAC;AAGjD,cAAc,wBAAwB,CAAC;AACvC,cAAc,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAIA,cAAc,gCAAgC,CAAC;AAC/C,cAAc,yBAAyB,CAAC;AAGxC,cAAc,kCAAkC,CAAC;AAGjD,cAAc,wBAAwB,CAAC;AACvC,cAAc,yBAAyB,CAAC;AAGxC,cAAc,kCAAkC,CAAC;AAGjD,cAAc,mBAAmB,CAAC;AAGlC,cAAc,8BAA8B,CAAC;AAG7C,cAAc,gCAAgC,CAAC;AAG/C,cAAc,oCAAoC,CAAC;AACnD,cAAc,oCAAoC,CAAC"}
|
package/dist/index.js
CHANGED
|
@@ -5,10 +5,16 @@ export * from "./google/api/http_pb.js";
|
|
|
5
5
|
// v1 account
|
|
6
6
|
export * from "./v1/account/quota_service_pb.js";
|
|
7
7
|
// v1 common
|
|
8
|
-
export * from "./v1/common/base_pb.js";
|
|
9
8
|
export * from "./v1/common/code_pb.js";
|
|
10
9
|
export * from "./v1/common/enums_pb.js";
|
|
10
|
+
// v1 config
|
|
11
|
+
export * from "./v1/config/config_service_pb.js";
|
|
11
12
|
// v1
|
|
12
13
|
export * from "./v1/server_pb.js";
|
|
14
|
+
// v1 task
|
|
15
|
+
export * from "./v1/task/task_service_pb.js";
|
|
13
16
|
// v1 topup
|
|
14
17
|
export * from "./v1/topup/order_service_pb.js";
|
|
18
|
+
// v1 webhook
|
|
19
|
+
export * from "./v1/webhook/payment_webhook_pb.js";
|
|
20
|
+
export * from "./v1/webhook/webhook_service_pb.js";
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import type { GenEnum, GenFile, GenMessage, GenService } from "@bufbuild/protobuf/codegenv2";
|
|
2
|
+
import type { Timestamp } from "@bufbuild/protobuf/wkt";
|
|
2
3
|
import type { Code } from "../common/code_pb";
|
|
3
4
|
import type { AccountType, QuotaCategory } from "../common/enums_pb";
|
|
4
5
|
import type { Message } from "@bufbuild/protobuf";
|
|
@@ -133,6 +134,134 @@ export type DecreaseResponse_Data = Message<"mgx.wallet.v1.account.DecreaseRespo
|
|
|
133
134
|
*/
|
|
134
135
|
export declare const DecreaseResponse_DataSchema: GenMessage<DecreaseResponse_Data>;
|
|
135
136
|
/**
|
|
137
|
+
* @generated from message mgx.wallet.v1.account.RollbackRequest
|
|
138
|
+
*/
|
|
139
|
+
export type RollbackRequest = Message<"mgx.wallet.v1.account.RollbackRequest"> & {
|
|
140
|
+
/**
|
|
141
|
+
* User ID (must match the original Decrease)
|
|
142
|
+
*
|
|
143
|
+
* @generated from field: int64 user_id = 1;
|
|
144
|
+
*/
|
|
145
|
+
userId: bigint;
|
|
146
|
+
/**
|
|
147
|
+
* Quota to roll back (integer), actual = quota / 10^scale
|
|
148
|
+
*
|
|
149
|
+
* @generated from field: int64 quota = 2;
|
|
150
|
+
*/
|
|
151
|
+
quota: bigint;
|
|
152
|
+
/**
|
|
153
|
+
* Decimal places for quota, actual = quota / 10^scale
|
|
154
|
+
*
|
|
155
|
+
* @generated from field: optional int32 scale = 3;
|
|
156
|
+
*/
|
|
157
|
+
scale?: number;
|
|
158
|
+
/**
|
|
159
|
+
* Caller / biz name for this rollback
|
|
160
|
+
*
|
|
161
|
+
* @generated from field: string biz_name = 4;
|
|
162
|
+
*/
|
|
163
|
+
bizName: string;
|
|
164
|
+
/**
|
|
165
|
+
* Quota category (must match the original Decrease)
|
|
166
|
+
*
|
|
167
|
+
* @generated from field: mgx.wallet.v1.common.QuotaCategory category = 5;
|
|
168
|
+
*/
|
|
169
|
+
category: QuotaCategory;
|
|
170
|
+
/**
|
|
171
|
+
* Business order number for this rollback
|
|
172
|
+
*
|
|
173
|
+
* @generated from field: string biz_no = 6;
|
|
174
|
+
*/
|
|
175
|
+
bizNo: string;
|
|
176
|
+
/**
|
|
177
|
+
* Original Decrease biz_name
|
|
178
|
+
*
|
|
179
|
+
* @generated from field: string ref_biz_name = 7;
|
|
180
|
+
*/
|
|
181
|
+
refBizName: string;
|
|
182
|
+
/**
|
|
183
|
+
* Original Decrease biz_no
|
|
184
|
+
*
|
|
185
|
+
* @generated from field: string ref_biz_no = 8;
|
|
186
|
+
*/
|
|
187
|
+
refBizNo: string;
|
|
188
|
+
/**
|
|
189
|
+
* Rollback reason (optional, for audit)
|
|
190
|
+
*
|
|
191
|
+
* @generated from field: string reason = 9;
|
|
192
|
+
*/
|
|
193
|
+
reason: string;
|
|
194
|
+
};
|
|
195
|
+
/**
|
|
196
|
+
* Describes the message mgx.wallet.v1.account.RollbackRequest.
|
|
197
|
+
* Use `create(RollbackRequestSchema)` to create a new message.
|
|
198
|
+
*/
|
|
199
|
+
export declare const RollbackRequestSchema: GenMessage<RollbackRequest>;
|
|
200
|
+
/**
|
|
201
|
+
* @generated from message mgx.wallet.v1.account.RollbackResponse
|
|
202
|
+
*/
|
|
203
|
+
export type RollbackResponse = Message<"mgx.wallet.v1.account.RollbackResponse"> & {
|
|
204
|
+
/**
|
|
205
|
+
* Response code: SUCCESS / INVALID_ARGUMENT / NOT_FOUND / ALREADY_ROLLED_BACK / WINDOW_EXPIRED etc.
|
|
206
|
+
*
|
|
207
|
+
* @generated from field: optional mgx.wallet.v1.common.Code code = 1;
|
|
208
|
+
*/
|
|
209
|
+
code?: Code;
|
|
210
|
+
/**
|
|
211
|
+
* Message (for client display)
|
|
212
|
+
*
|
|
213
|
+
* @generated from field: optional string message = 2;
|
|
214
|
+
*/
|
|
215
|
+
message?: string;
|
|
216
|
+
/**
|
|
217
|
+
* Rollback result data
|
|
218
|
+
*
|
|
219
|
+
* @generated from field: mgx.wallet.v1.account.RollbackResponse.Data data = 3;
|
|
220
|
+
*/
|
|
221
|
+
data?: RollbackResponse_Data;
|
|
222
|
+
};
|
|
223
|
+
/**
|
|
224
|
+
* Describes the message mgx.wallet.v1.account.RollbackResponse.
|
|
225
|
+
* Use `create(RollbackResponseSchema)` to create a new message.
|
|
226
|
+
*/
|
|
227
|
+
export declare const RollbackResponseSchema: GenMessage<RollbackResponse>;
|
|
228
|
+
/**
|
|
229
|
+
* @generated from message mgx.wallet.v1.account.RollbackResponse.Data
|
|
230
|
+
*/
|
|
231
|
+
export type RollbackResponse_Data = Message<"mgx.wallet.v1.account.RollbackResponse.Data"> & {
|
|
232
|
+
/**
|
|
233
|
+
* Business order number (echo from request)
|
|
234
|
+
*
|
|
235
|
+
* @generated from field: string biz_no = 1;
|
|
236
|
+
*/
|
|
237
|
+
bizNo: string;
|
|
238
|
+
/**
|
|
239
|
+
* Ledger entries produced by rollback (multi-account when applicable)
|
|
240
|
+
*
|
|
241
|
+
* @generated from field: repeated mgx.wallet.v1.account.LedgerDetail ledger_details = 2;
|
|
242
|
+
*/
|
|
243
|
+
ledgerDetails: LedgerDetail[];
|
|
244
|
+
/**
|
|
245
|
+
* Whether monthly limit is reached (may change from true to false after rollback)
|
|
246
|
+
*
|
|
247
|
+
* @generated from field: optional bool monthly_limit_reached = 3;
|
|
248
|
+
*/
|
|
249
|
+
monthlyLimitReached?: boolean;
|
|
250
|
+
/**
|
|
251
|
+
* Monthly limit action when triggered
|
|
252
|
+
*
|
|
253
|
+
* @generated from field: mgx.wallet.v1.account.MonthlyLimitAction monthly_limit_action = 4;
|
|
254
|
+
*/
|
|
255
|
+
monthlyLimitAction: MonthlyLimitAction;
|
|
256
|
+
};
|
|
257
|
+
/**
|
|
258
|
+
* Describes the message mgx.wallet.v1.account.RollbackResponse.Data.
|
|
259
|
+
* Use `create(RollbackResponse_DataSchema)` to create a new message.
|
|
260
|
+
*/
|
|
261
|
+
export declare const RollbackResponse_DataSchema: GenMessage<RollbackResponse_Data>;
|
|
262
|
+
/**
|
|
263
|
+
* LedgerDetail: single ledger entry; used in Decrease, Rollback responses, etc.
|
|
264
|
+
*
|
|
136
265
|
* @generated from message mgx.wallet.v1.account.LedgerDetail
|
|
137
266
|
*/
|
|
138
267
|
export type LedgerDetail = Message<"mgx.wallet.v1.account.LedgerDetail"> & {
|
|
@@ -149,7 +278,7 @@ export type LedgerDetail = Message<"mgx.wallet.v1.account.LedgerDetail"> & {
|
|
|
149
278
|
*/
|
|
150
279
|
accountType: AccountType;
|
|
151
280
|
/**
|
|
152
|
-
* Quota
|
|
281
|
+
* Quota amount, always positive; combined with direction for increase/decrease
|
|
153
282
|
*
|
|
154
283
|
* @generated from field: optional int64 quota = 3;
|
|
155
284
|
*/
|
|
@@ -166,6 +295,194 @@ export type LedgerDetail = Message<"mgx.wallet.v1.account.LedgerDetail"> & {
|
|
|
166
295
|
* Use `create(LedgerDetailSchema)` to create a new message.
|
|
167
296
|
*/
|
|
168
297
|
export declare const LedgerDetailSchema: GenMessage<LedgerDetail>;
|
|
298
|
+
/**
|
|
299
|
+
* @generated from message mgx.wallet.v1.account.QueryLedgerRequest
|
|
300
|
+
*/
|
|
301
|
+
export type QueryLedgerRequest = Message<"mgx.wallet.v1.account.QueryLedgerRequest"> & {
|
|
302
|
+
/**
|
|
303
|
+
* User ID (required: ledger tables are sharded by user_id)
|
|
304
|
+
*
|
|
305
|
+
* @generated from field: int64 user_id = 1;
|
|
306
|
+
*/
|
|
307
|
+
userId: bigint;
|
|
308
|
+
/**
|
|
309
|
+
* Caller, e.g. oneapi / infra
|
|
310
|
+
*
|
|
311
|
+
* @generated from field: string biz_name = 2;
|
|
312
|
+
*/
|
|
313
|
+
bizName: string;
|
|
314
|
+
/**
|
|
315
|
+
* Business order number (idempotent key with biz_name)
|
|
316
|
+
*
|
|
317
|
+
* @generated from field: string biz_no = 3;
|
|
318
|
+
*/
|
|
319
|
+
bizNo: string;
|
|
320
|
+
};
|
|
321
|
+
/**
|
|
322
|
+
* Describes the message mgx.wallet.v1.account.QueryLedgerRequest.
|
|
323
|
+
* Use `create(QueryLedgerRequestSchema)` to create a new message.
|
|
324
|
+
*/
|
|
325
|
+
export declare const QueryLedgerRequestSchema: GenMessage<QueryLedgerRequest>;
|
|
326
|
+
/**
|
|
327
|
+
* @generated from message mgx.wallet.v1.account.QueryLedgerResponse
|
|
328
|
+
*/
|
|
329
|
+
export type QueryLedgerResponse = Message<"mgx.wallet.v1.account.QueryLedgerResponse"> & {
|
|
330
|
+
/**
|
|
331
|
+
* Response code
|
|
332
|
+
*
|
|
333
|
+
* @generated from field: optional mgx.wallet.v1.common.Code code = 1;
|
|
334
|
+
*/
|
|
335
|
+
code?: Code;
|
|
336
|
+
/**
|
|
337
|
+
* Message
|
|
338
|
+
*
|
|
339
|
+
* @generated from field: optional string message = 2;
|
|
340
|
+
*/
|
|
341
|
+
message?: string;
|
|
342
|
+
/**
|
|
343
|
+
* Response data
|
|
344
|
+
*
|
|
345
|
+
* @generated from field: mgx.wallet.v1.account.QueryLedgerResponse.Data data = 3;
|
|
346
|
+
*/
|
|
347
|
+
data?: QueryLedgerResponse_Data;
|
|
348
|
+
};
|
|
349
|
+
/**
|
|
350
|
+
* Describes the message mgx.wallet.v1.account.QueryLedgerResponse.
|
|
351
|
+
* Use `create(QueryLedgerResponseSchema)` to create a new message.
|
|
352
|
+
*/
|
|
353
|
+
export declare const QueryLedgerResponseSchema: GenMessage<QueryLedgerResponse>;
|
|
354
|
+
/**
|
|
355
|
+
* @generated from message mgx.wallet.v1.account.QueryLedgerResponse.Data
|
|
356
|
+
*/
|
|
357
|
+
export type QueryLedgerResponse_Data = Message<"mgx.wallet.v1.account.QueryLedgerResponse.Data"> & {
|
|
358
|
+
/**
|
|
359
|
+
* Business order number (echo from request)
|
|
360
|
+
*
|
|
361
|
+
* @generated from field: string biz_no = 1;
|
|
362
|
+
*/
|
|
363
|
+
bizNo: string;
|
|
364
|
+
/**
|
|
365
|
+
* Ledger entries for this biz_name + biz_no (multiple when multi-account)
|
|
366
|
+
*
|
|
367
|
+
* @generated from field: repeated mgx.wallet.v1.account.LedgerRecord ledger_records = 2;
|
|
368
|
+
*/
|
|
369
|
+
ledgerRecords: LedgerRecord[];
|
|
370
|
+
};
|
|
371
|
+
/**
|
|
372
|
+
* Describes the message mgx.wallet.v1.account.QueryLedgerResponse.Data.
|
|
373
|
+
* Use `create(QueryLedgerResponse_DataSchema)` to create a new message.
|
|
374
|
+
*/
|
|
375
|
+
export declare const QueryLedgerResponse_DataSchema: GenMessage<QueryLedgerResponse_Data>;
|
|
376
|
+
/**
|
|
377
|
+
* LedgerRecord: single ledger entry for QueryLedger response only. Not shared with LedgerDetail:
|
|
378
|
+
* Decrease/Rollback are hot paths and use a minimal 4-field shape (caller already has direction/category etc.);
|
|
379
|
+
* Query is a cold path with low call rate and returns full ledger (direction, category, ref, etc.), so LedgerRecord is defined separately.
|
|
380
|
+
*
|
|
381
|
+
* @generated from message mgx.wallet.v1.account.LedgerRecord
|
|
382
|
+
*/
|
|
383
|
+
export type LedgerRecord = Message<"mgx.wallet.v1.account.LedgerRecord"> & {
|
|
384
|
+
/**
|
|
385
|
+
* Ledger ID
|
|
386
|
+
*
|
|
387
|
+
* @generated from field: int64 ledger_id = 1;
|
|
388
|
+
*/
|
|
389
|
+
ledgerId: bigint;
|
|
390
|
+
/**
|
|
391
|
+
* Account type
|
|
392
|
+
*
|
|
393
|
+
* @generated from field: mgx.wallet.v1.common.AccountType account_type = 2;
|
|
394
|
+
*/
|
|
395
|
+
accountType: AccountType;
|
|
396
|
+
/**
|
|
397
|
+
* Quota amount (always positive); see direction for in/out
|
|
398
|
+
*
|
|
399
|
+
* @generated from field: optional int64 quota = 3;
|
|
400
|
+
*/
|
|
401
|
+
quota?: bigint;
|
|
402
|
+
/**
|
|
403
|
+
* Account balance before operation
|
|
404
|
+
*
|
|
405
|
+
* @generated from field: optional int64 balance_before = 4;
|
|
406
|
+
*/
|
|
407
|
+
balanceBefore?: bigint;
|
|
408
|
+
/**
|
|
409
|
+
* Account balance after operation
|
|
410
|
+
*
|
|
411
|
+
* @generated from field: optional int64 balance_after = 5;
|
|
412
|
+
*/
|
|
413
|
+
balanceAfter?: bigint;
|
|
414
|
+
/**
|
|
415
|
+
* Direction: increase or decrease (quota is always positive)
|
|
416
|
+
*
|
|
417
|
+
* @generated from field: mgx.wallet.v1.account.LedgerDirection direction = 6;
|
|
418
|
+
*/
|
|
419
|
+
direction: LedgerDirection;
|
|
420
|
+
/**
|
|
421
|
+
* Whether this ledger entry has been rolled back (for Decrease entries)
|
|
422
|
+
*
|
|
423
|
+
* @generated from field: optional bool rolled_back = 7;
|
|
424
|
+
*/
|
|
425
|
+
rolledBack?: boolean;
|
|
426
|
+
/**
|
|
427
|
+
* Quota rolled back (for Decrease entries when partially/fully rolled back)
|
|
428
|
+
*
|
|
429
|
+
* @generated from field: optional int64 rolled_back_quota = 8;
|
|
430
|
+
*/
|
|
431
|
+
rolledBackQuota?: bigint;
|
|
432
|
+
/**
|
|
433
|
+
* Quota category (Cloud/AI/General)
|
|
434
|
+
*
|
|
435
|
+
* @generated from field: mgx.wallet.v1.common.QuotaCategory category = 9;
|
|
436
|
+
*/
|
|
437
|
+
category: QuotaCategory;
|
|
438
|
+
/**
|
|
439
|
+
* Caller, e.g. oneapi / infra
|
|
440
|
+
*
|
|
441
|
+
* @generated from field: string biz_name = 10;
|
|
442
|
+
*/
|
|
443
|
+
bizName: string;
|
|
444
|
+
/**
|
|
445
|
+
* Business order number (idempotent key with biz_name)
|
|
446
|
+
*
|
|
447
|
+
* @generated from field: string biz_no = 11;
|
|
448
|
+
*/
|
|
449
|
+
bizNo: string;
|
|
450
|
+
/**
|
|
451
|
+
* Billing item
|
|
452
|
+
*
|
|
453
|
+
* @generated from field: string item = 12;
|
|
454
|
+
*/
|
|
455
|
+
item: string;
|
|
456
|
+
/**
|
|
457
|
+
* Chat ID, for per-chat usage stats
|
|
458
|
+
*
|
|
459
|
+
* @generated from field: string chat_id = 13;
|
|
460
|
+
*/
|
|
461
|
+
chatId: string;
|
|
462
|
+
/**
|
|
463
|
+
* Creation time
|
|
464
|
+
*
|
|
465
|
+
* @generated from field: google.protobuf.Timestamp created_at = 14;
|
|
466
|
+
*/
|
|
467
|
+
createdAt?: Timestamp;
|
|
468
|
+
/**
|
|
469
|
+
* Original Decrease biz_name (for Rollback entries, the Decrease being rolled back)
|
|
470
|
+
*
|
|
471
|
+
* @generated from field: optional string ref_biz_name = 15;
|
|
472
|
+
*/
|
|
473
|
+
refBizName?: string;
|
|
474
|
+
/**
|
|
475
|
+
* Original Decrease biz_no (for Rollback entries)
|
|
476
|
+
*
|
|
477
|
+
* @generated from field: optional string ref_biz_no = 16;
|
|
478
|
+
*/
|
|
479
|
+
refBizNo?: string;
|
|
480
|
+
};
|
|
481
|
+
/**
|
|
482
|
+
* Describes the message mgx.wallet.v1.account.LedgerRecord.
|
|
483
|
+
* Use `create(LedgerRecordSchema)` to create a new message.
|
|
484
|
+
*/
|
|
485
|
+
export declare const LedgerRecordSchema: GenMessage<LedgerRecord>;
|
|
169
486
|
/**
|
|
170
487
|
* @generated from message mgx.wallet.v1.account.GetBalanceRequest
|
|
171
488
|
*/
|
|
@@ -569,6 +886,33 @@ export declare enum MonthlyLimitAction {
|
|
|
569
886
|
* Describes the enum mgx.wallet.v1.account.MonthlyLimitAction.
|
|
570
887
|
*/
|
|
571
888
|
export declare const MonthlyLimitActionSchema: GenEnum<MonthlyLimitAction>;
|
|
889
|
+
/**
|
|
890
|
+
* Ledger direction: quota is always positive, direction indicates increase or decrease.
|
|
891
|
+
*
|
|
892
|
+
* @generated from enum mgx.wallet.v1.account.LedgerDirection
|
|
893
|
+
*/
|
|
894
|
+
export declare enum LedgerDirection {
|
|
895
|
+
/**
|
|
896
|
+
* @generated from enum value: LEDGER_DIRECTION_UNSPECIFIED = 0;
|
|
897
|
+
*/
|
|
898
|
+
UNSPECIFIED = 0,
|
|
899
|
+
/**
|
|
900
|
+
* Quota added (e.g. Increase, rollback credit)
|
|
901
|
+
*
|
|
902
|
+
* @generated from enum value: LEDGER_DIRECTION_INCREASE = 1;
|
|
903
|
+
*/
|
|
904
|
+
INCREASE = 1,
|
|
905
|
+
/**
|
|
906
|
+
* Quota deducted (e.g. Decrease)
|
|
907
|
+
*
|
|
908
|
+
* @generated from enum value: LEDGER_DIRECTION_DECREASE = 2;
|
|
909
|
+
*/
|
|
910
|
+
DECREASE = 2
|
|
911
|
+
}
|
|
912
|
+
/**
|
|
913
|
+
* Describes the enum mgx.wallet.v1.account.LedgerDirection.
|
|
914
|
+
*/
|
|
915
|
+
export declare const LedgerDirectionSchema: GenEnum<LedgerDirection>;
|
|
572
916
|
/**
|
|
573
917
|
* Core service definition
|
|
574
918
|
*
|
|
@@ -583,6 +927,22 @@ export declare const QuotaService: GenService<{
|
|
|
583
927
|
input: typeof DecreaseRequestSchema;
|
|
584
928
|
output: typeof DecreaseResponseSchema;
|
|
585
929
|
};
|
|
930
|
+
/**
|
|
931
|
+
* @generated from rpc mgx.wallet.v1.account.QuotaService.Rollback
|
|
932
|
+
*/
|
|
933
|
+
rollback: {
|
|
934
|
+
methodKind: "unary";
|
|
935
|
+
input: typeof RollbackRequestSchema;
|
|
936
|
+
output: typeof RollbackResponseSchema;
|
|
937
|
+
};
|
|
938
|
+
/**
|
|
939
|
+
* @generated from rpc mgx.wallet.v1.account.QuotaService.QueryLedger
|
|
940
|
+
*/
|
|
941
|
+
queryLedger: {
|
|
942
|
+
methodKind: "unary";
|
|
943
|
+
input: typeof QueryLedgerRequestSchema;
|
|
944
|
+
output: typeof QueryLedgerResponseSchema;
|
|
945
|
+
};
|
|
586
946
|
/**
|
|
587
947
|
* @generated from rpc mgx.wallet.v1.account.QuotaService.GetBalance
|
|
588
948
|
*/
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"quota_service_pb.d.ts","sourceRoot":"","sources":["../../../src/v1/account/quota_service_pb.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,EAAE,OAAO,EAAE,OAAO,EAAE,UAAU,EAAE,UAAU,EAAE,MAAM,8BAA8B,CAAC;AAG7F,OAAO,KAAK,EAAE,IAAI,EAAE,MAAM,mBAAmB,CAAC;AAE9C,OAAO,KAAK,EAAE,WAAW,EAAE,aAAa,EAAE,MAAM,oBAAoB,CAAC;AAErE,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,oBAAoB,CAAC;AAElD;;GAEG;AACH,eAAO,MAAM,6BAA6B,EAAE,
|
|
1
|
+
{"version":3,"file":"quota_service_pb.d.ts","sourceRoot":"","sources":["../../../src/v1/account/quota_service_pb.ts"],"names":[],"mappings":"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"}
|