@metagptx/wallet 1.0.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.
Files changed (38) hide show
  1. package/README.md +74 -0
  2. package/dist/google/api/annotations_pb.d.ts +14 -0
  3. package/dist/google/api/annotations_pb.d.ts.map +1 -0
  4. package/dist/google/api/annotations_pb.js +26 -0
  5. package/dist/google/api/http_pb.d.ts +441 -0
  6. package/dist/google/api/http_pb.d.ts.map +1 -0
  7. package/dist/google/api/http_pb.js +33 -0
  8. package/dist/index.d.ts +9 -0
  9. package/dist/index.d.ts.map +1 -0
  10. package/dist/index.js +14 -0
  11. package/dist/v1/account/quota_service_pb.d.ts +603 -0
  12. package/dist/v1/account/quota_service_pb.d.ts.map +1 -0
  13. package/dist/v1/account/quota_service_pb.js +117 -0
  14. package/dist/v1/common/base_pb.d.ts +38 -0
  15. package/dist/v1/common/base_pb.d.ts.map +1 -0
  16. package/dist/v1/common/base_pb.js +14 -0
  17. package/dist/v1/common/code_pb.d.ts +69 -0
  18. package/dist/v1/common/code_pb.d.ts.map +1 -0
  19. package/dist/v1/common/code_pb.js +72 -0
  20. package/dist/v1/common/enums_pb.d.ts +76 -0
  21. package/dist/v1/common/enums_pb.d.ts.map +1 -0
  22. package/dist/v1/common/enums_pb.js +80 -0
  23. package/dist/v1/server_pb.d.ts +67 -0
  24. package/dist/v1/server_pb.d.ts.map +1 -0
  25. package/dist/v1/server_pb.js +41 -0
  26. package/dist/v1/topup/order_service_pb.d.ts +585 -0
  27. package/dist/v1/topup/order_service_pb.d.ts.map +1 -0
  28. package/dist/v1/topup/order_service_pb.js +171 -0
  29. package/package.json +42 -0
  30. package/src/google/api/annotations_pb.ts +39 -0
  31. package/src/google/api/http_pb.ts +474 -0
  32. package/src/index.ts +21 -0
  33. package/src/v1/account/quota_service_pb.ts +713 -0
  34. package/src/v1/common/base_pb.ts +51 -0
  35. package/src/v1/common/code_pb.ts +89 -0
  36. package/src/v1/common/enums_pb.ts +95 -0
  37. package/src/v1/server_pb.ts +87 -0
  38. package/src/v1/topup/order_service_pb.ts +695 -0
@@ -0,0 +1,585 @@
1
+ import type { GenEnum, GenFile, GenMessage, GenService } from "@bufbuild/protobuf/codegenv2";
2
+ import type { Timestamp } from "@bufbuild/protobuf/wkt";
3
+ import type { Code } from "../common/code_pb";
4
+ import type { AccountType } from "../common/enums_pb";
5
+ import type { Message } from "@bufbuild/protobuf";
6
+ /**
7
+ * Describes the file v1/topup/order_service.proto.
8
+ */
9
+ export declare const file_v1_topup_order_service: GenFile;
10
+ /**
11
+ * @generated from message mgx.wallet.v1.topup.ListOrdersRequest
12
+ */
13
+ export type ListOrdersRequest = Message<"mgx.wallet.v1.topup.ListOrdersRequest"> & {
14
+ /**
15
+ * User ID (platform common user_id)
16
+ *
17
+ * @generated from field: int64 user_id = 1;
18
+ */
19
+ userId: bigint;
20
+ /**
21
+ * Optional, order type filter, 0 = all
22
+ *
23
+ * @generated from field: mgx.wallet.v1.topup.OrderType type = 2;
24
+ */
25
+ type: OrderType;
26
+ /**
27
+ * Optional, order status filter, 0 = all
28
+ *
29
+ * @generated from field: mgx.wallet.v1.topup.OrderStatus status = 3;
30
+ */
31
+ status: OrderStatus;
32
+ /**
33
+ * Optional, comma-separated fields to include in response, e.g. "order_id,amount,status", empty = all fields
34
+ *
35
+ * @generated from field: string include_fields = 4;
36
+ */
37
+ includeFields: string;
38
+ /**
39
+ * Optional, page number, default 1
40
+ *
41
+ * @generated from field: int32 page = 5;
42
+ */
43
+ page: number;
44
+ /**
45
+ * Optional, page size, default 20
46
+ *
47
+ * @generated from field: int32 page_size = 6;
48
+ */
49
+ pageSize: number;
50
+ };
51
+ /**
52
+ * Describes the message mgx.wallet.v1.topup.ListOrdersRequest.
53
+ * Use `create(ListOrdersRequestSchema)` to create a new message.
54
+ */
55
+ export declare const ListOrdersRequestSchema: GenMessage<ListOrdersRequest>;
56
+ /**
57
+ * @generated from message mgx.wallet.v1.topup.ListOrdersResponse
58
+ */
59
+ export type ListOrdersResponse = Message<"mgx.wallet.v1.topup.ListOrdersResponse"> & {
60
+ /**
61
+ * Response code
62
+ *
63
+ * @generated from field: optional mgx.wallet.v1.common.Code code = 1;
64
+ */
65
+ code?: Code;
66
+ /**
67
+ * Message
68
+ *
69
+ * @generated from field: optional string message = 2;
70
+ */
71
+ message?: string;
72
+ /**
73
+ * Response data
74
+ *
75
+ * @generated from field: mgx.wallet.v1.topup.ListOrdersResponse.Data data = 3;
76
+ */
77
+ data?: ListOrdersResponse_Data;
78
+ };
79
+ /**
80
+ * Describes the message mgx.wallet.v1.topup.ListOrdersResponse.
81
+ * Use `create(ListOrdersResponseSchema)` to create a new message.
82
+ */
83
+ export declare const ListOrdersResponseSchema: GenMessage<ListOrdersResponse>;
84
+ /**
85
+ * @generated from message mgx.wallet.v1.topup.ListOrdersResponse.Data
86
+ */
87
+ export type ListOrdersResponse_Data = Message<"mgx.wallet.v1.topup.ListOrdersResponse.Data"> & {
88
+ /**
89
+ * Order list
90
+ *
91
+ * @generated from field: repeated mgx.wallet.v1.topup.OrderDetail items = 1;
92
+ */
93
+ items: OrderDetail[];
94
+ /**
95
+ * Total count
96
+ *
97
+ * @generated from field: optional int64 total = 2;
98
+ */
99
+ total?: bigint;
100
+ /**
101
+ * Current page number
102
+ *
103
+ * @generated from field: int32 page = 3;
104
+ */
105
+ page: number;
106
+ /**
107
+ * Page size
108
+ *
109
+ * @generated from field: int32 page_size = 4;
110
+ */
111
+ pageSize: number;
112
+ };
113
+ /**
114
+ * Describes the message mgx.wallet.v1.topup.ListOrdersResponse.Data.
115
+ * Use `create(ListOrdersResponse_DataSchema)` to create a new message.
116
+ */
117
+ export declare const ListOrdersResponse_DataSchema: GenMessage<ListOrdersResponse_Data>;
118
+ /**
119
+ * @generated from message mgx.wallet.v1.topup.OrderDetail
120
+ */
121
+ export type OrderDetail = Message<"mgx.wallet.v1.topup.OrderDetail"> & {
122
+ /**
123
+ * Order ID
124
+ *
125
+ * @generated from field: string order_id = 1;
126
+ */
127
+ orderId: string;
128
+ /**
129
+ * User ID
130
+ *
131
+ * @generated from field: int64 user_id = 2;
132
+ */
133
+ userId: bigint;
134
+ /**
135
+ * Caller, e.g. web_client
136
+ *
137
+ * @generated from field: string biz_name = 3;
138
+ */
139
+ bizName: string;
140
+ /**
141
+ * Business order number (idempotent key)
142
+ *
143
+ * @generated from field: string biz_no = 4;
144
+ */
145
+ bizNo: string;
146
+ /**
147
+ * Order type: manual_topup / auto_topup / platform_grant
148
+ *
149
+ * @generated from field: mgx.wallet.v1.topup.OrderType type = 5;
150
+ */
151
+ type: OrderType;
152
+ /**
153
+ * Amount
154
+ *
155
+ * @generated from field: string amount = 6;
156
+ */
157
+ amount: string;
158
+ /**
159
+ * Currency, e.g. USD
160
+ *
161
+ * @generated from field: string currency = 7;
162
+ */
163
+ currency: string;
164
+ /**
165
+ * Quota (amount × 500000)
166
+ *
167
+ * @generated from field: optional int64 quota = 8;
168
+ */
169
+ quota?: bigint;
170
+ /**
171
+ * Order status
172
+ *
173
+ * @generated from field: mgx.wallet.v1.topup.OrderStatus status = 9;
174
+ */
175
+ status: OrderStatus;
176
+ /**
177
+ * Top-up related fields (empty for platform_grant)
178
+ *
179
+ * Payment method info (for user top-up)
180
+ *
181
+ * @generated from field: mgx.wallet.v1.topup.PaymentMethodInfo payment_method_info = 10;
182
+ */
183
+ paymentMethodInfo?: PaymentMethodInfo;
184
+ /**
185
+ * Transaction-module associated transaction ID (for user top-up)
186
+ *
187
+ * @generated from field: string external_trans_id = 11;
188
+ */
189
+ externalTransId: string;
190
+ /**
191
+ * Grant related fields (empty for user top-up)
192
+ *
193
+ * Account type
194
+ *
195
+ * @generated from field: mgx.wallet.v1.common.AccountType account_type = 12;
196
+ */
197
+ accountType: AccountType;
198
+ /**
199
+ * Grant type (for grant): init_bonus / promotion / compensation
200
+ *
201
+ * @generated from field: mgx.wallet.v1.topup.GrantType grant_type = 13;
202
+ */
203
+ grantType: GrantType;
204
+ /**
205
+ * Grant reason (for grant)
206
+ *
207
+ * @generated from field: string grant_reason = 14;
208
+ */
209
+ grantReason: string;
210
+ /**
211
+ * Operator (for grant, admin)
212
+ *
213
+ * @generated from field: string operator = 15;
214
+ */
215
+ operator: string;
216
+ /**
217
+ * Common fields
218
+ *
219
+ * Failure reason
220
+ *
221
+ * @generated from field: string failure_reason = 16;
222
+ */
223
+ failureReason: string;
224
+ /**
225
+ * Whether balance has been increased
226
+ *
227
+ * @generated from field: optional bool balance_increased = 17;
228
+ */
229
+ balanceIncreased?: boolean;
230
+ /**
231
+ * Creation time
232
+ *
233
+ * @generated from field: google.protobuf.Timestamp created_at = 18;
234
+ */
235
+ createdAt?: Timestamp;
236
+ };
237
+ /**
238
+ * Describes the message mgx.wallet.v1.topup.OrderDetail.
239
+ * Use `create(OrderDetailSchema)` to create a new message.
240
+ */
241
+ export declare const OrderDetailSchema: GenMessage<OrderDetail>;
242
+ /**
243
+ * @generated from message mgx.wallet.v1.topup.PaymentMethodInfo
244
+ */
245
+ export type PaymentMethodInfo = Message<"mgx.wallet.v1.topup.PaymentMethodInfo"> & {
246
+ /**
247
+ * Payment method ID, e.g. pm_xxx (not returned in query responses)
248
+ *
249
+ * @generated from field: string payment_method_id = 1;
250
+ */
251
+ paymentMethodId: string;
252
+ /**
253
+ * Payment method type, e.g. card, alipay, amazon_pay
254
+ *
255
+ * @generated from field: string type = 2;
256
+ */
257
+ type: string;
258
+ /**
259
+ * Last 4 digits of card number or e-wallet account
260
+ *
261
+ * @generated from field: string last4 = 3;
262
+ */
263
+ last4: string;
264
+ /**
265
+ * Brand, e.g. visa / mastercard / amex
266
+ *
267
+ * @generated from field: string card_brand = 4;
268
+ */
269
+ cardBrand: string;
270
+ /**
271
+ * First 6 digits of card number, can be empty
272
+ *
273
+ * @generated from field: string card_bin = 5;
274
+ */
275
+ cardBin: string;
276
+ /**
277
+ * Wallet type, e.g. apple_pay / google_pay / link
278
+ *
279
+ * @generated from field: string wallet_type = 6;
280
+ */
281
+ walletType: string;
282
+ };
283
+ /**
284
+ * Describes the message mgx.wallet.v1.topup.PaymentMethodInfo.
285
+ * Use `create(PaymentMethodInfoSchema)` to create a new message.
286
+ */
287
+ export declare const PaymentMethodInfoSchema: GenMessage<PaymentMethodInfo>;
288
+ /**
289
+ * @generated from message mgx.wallet.v1.topup.PaymentResultData
290
+ */
291
+ export type PaymentResultData = Message<"mgx.wallet.v1.topup.PaymentResultData"> & {
292
+ /**
293
+ * Required. User ID to credit; used when no pre-created order
294
+ *
295
+ * @generated from field: int64 user_id = 1;
296
+ */
297
+ userId: bigint;
298
+ /**
299
+ * Payment scene; wallet only processes when scene == "wallet_manual_topup"
300
+ *
301
+ * @generated from field: string scene = 2;
302
+ */
303
+ scene: string;
304
+ /**
305
+ * Business name, e.g. wallet
306
+ *
307
+ * @generated from field: string biz_name = 3;
308
+ */
309
+ bizName: string;
310
+ /**
311
+ * Optional. Business order ID (may be empty in new flow; wallet generates from event_id)
312
+ *
313
+ * @generated from field: string biz_order_id = 4;
314
+ */
315
+ bizOrderId: string;
316
+ /**
317
+ * Payment/transaction order ID (idempotency and reconciliation)
318
+ *
319
+ * @generated from field: string order_id = 5;
320
+ */
321
+ orderId: string;
322
+ /**
323
+ * Payment result status: success / failed; other values ignored
324
+ *
325
+ * @generated from field: string status = 6;
326
+ */
327
+ status: string;
328
+ /**
329
+ * Stripe PaymentIntent ID
330
+ *
331
+ * @generated from field: string payment_intent_id = 7;
332
+ */
333
+ paymentIntentId: string;
334
+ /**
335
+ * Payment method info
336
+ *
337
+ * @generated from field: mgx.wallet.v1.topup.PaymentMethodInfo payment_method_info = 8;
338
+ */
339
+ paymentMethodInfo?: PaymentMethodInfo;
340
+ /**
341
+ * Payment amount (minor unit), e.g. 100 for $1.00
342
+ *
343
+ * @generated from field: optional int64 amount = 9;
344
+ */
345
+ amount?: bigint;
346
+ /**
347
+ * Currency, e.g. USD
348
+ *
349
+ * @generated from field: string currency = 10;
350
+ */
351
+ currency: string;
352
+ /**
353
+ * Failure error code (only for failed)
354
+ *
355
+ * @generated from field: string failure_code = 11;
356
+ */
357
+ failureCode: string;
358
+ /**
359
+ * Failure reason (only for failed)
360
+ *
361
+ * @generated from field: string failure_message = 12;
362
+ */
363
+ failureMessage: string;
364
+ /**
365
+ * Payment time (only for success), format: ISO 8601 (2026-01-22T10:00:00Z)
366
+ *
367
+ * @generated from field: string paid_at = 13;
368
+ */
369
+ paidAt: string;
370
+ };
371
+ /**
372
+ * Describes the message mgx.wallet.v1.topup.PaymentResultData.
373
+ * Use `create(PaymentResultDataSchema)` to create a new message.
374
+ */
375
+ export declare const PaymentResultDataSchema: GenMessage<PaymentResultData>;
376
+ /**
377
+ * Top-up payment event notification request (payment module → wallet)
378
+ *
379
+ * @generated from message mgx.wallet.v1.topup.NotifyTopupPaymentEventRequest
380
+ */
381
+ export type NotifyTopupPaymentEventRequest = Message<"mgx.wallet.v1.topup.NotifyTopupPaymentEventRequest"> & {
382
+ /**
383
+ * Event unique ID (idempotency)
384
+ *
385
+ * @generated from field: string event_id = 1;
386
+ */
387
+ eventId: string;
388
+ /**
389
+ * Event type: payment.success / payment.failed
390
+ *
391
+ * @generated from field: string event_type = 2;
392
+ */
393
+ eventType: string;
394
+ /**
395
+ * Event occurrence time, ISO 8601
396
+ *
397
+ * @generated from field: string event_time = 3;
398
+ */
399
+ eventTime: string;
400
+ /**
401
+ * Payment result data
402
+ *
403
+ * @generated from field: mgx.wallet.v1.topup.PaymentResultData data = 4;
404
+ */
405
+ data?: PaymentResultData;
406
+ /**
407
+ * Signature (optional, for verification)
408
+ *
409
+ * @generated from field: string signature = 5;
410
+ */
411
+ signature: string;
412
+ };
413
+ /**
414
+ * Describes the message mgx.wallet.v1.topup.NotifyTopupPaymentEventRequest.
415
+ * Use `create(NotifyTopupPaymentEventRequestSchema)` to create a new message.
416
+ */
417
+ export declare const NotifyTopupPaymentEventRequestSchema: GenMessage<NotifyTopupPaymentEventRequest>;
418
+ /**
419
+ * @generated from message mgx.wallet.v1.topup.NotifyTopupPaymentEventResponse
420
+ */
421
+ export type NotifyTopupPaymentEventResponse = Message<"mgx.wallet.v1.topup.NotifyTopupPaymentEventResponse"> & {
422
+ /**
423
+ * Response code
424
+ *
425
+ * @generated from field: optional mgx.wallet.v1.common.Code code = 1;
426
+ */
427
+ code?: Code;
428
+ /**
429
+ * Message
430
+ *
431
+ * @generated from field: optional string message = 2;
432
+ */
433
+ message?: string;
434
+ /**
435
+ * Response data
436
+ *
437
+ * @generated from field: mgx.wallet.v1.topup.NotifyTopupPaymentEventResponse.Data data = 3;
438
+ */
439
+ data?: NotifyTopupPaymentEventResponse_Data;
440
+ };
441
+ /**
442
+ * Describes the message mgx.wallet.v1.topup.NotifyTopupPaymentEventResponse.
443
+ * Use `create(NotifyTopupPaymentEventResponseSchema)` to create a new message.
444
+ */
445
+ export declare const NotifyTopupPaymentEventResponseSchema: GenMessage<NotifyTopupPaymentEventResponse>;
446
+ /**
447
+ * @generated from message mgx.wallet.v1.topup.NotifyTopupPaymentEventResponse.Data
448
+ */
449
+ export type NotifyTopupPaymentEventResponse_Data = Message<"mgx.wallet.v1.topup.NotifyTopupPaymentEventResponse.Data"> & {};
450
+ /**
451
+ * Describes the message mgx.wallet.v1.topup.NotifyTopupPaymentEventResponse.Data.
452
+ * Use `create(NotifyTopupPaymentEventResponse_DataSchema)` to create a new message.
453
+ */
454
+ export declare const NotifyTopupPaymentEventResponse_DataSchema: GenMessage<NotifyTopupPaymentEventResponse_Data>;
455
+ /**
456
+ * Order type enumeration
457
+ *
458
+ * @generated from enum mgx.wallet.v1.topup.OrderType
459
+ */
460
+ export declare enum OrderType {
461
+ /**
462
+ * @generated from enum value: ORDER_TYPE_UNSPECIFIED = 0;
463
+ */
464
+ UNSPECIFIED = 0,
465
+ /**
466
+ * Manual top-up
467
+ *
468
+ * @generated from enum value: ORDER_TYPE_MANUAL_TOPUP = 1;
469
+ */
470
+ MANUAL_TOPUP = 1,
471
+ /**
472
+ * Auto top-up
473
+ *
474
+ * @generated from enum value: ORDER_TYPE_AUTO_TOPUP = 2;
475
+ */
476
+ AUTO_TOPUP = 2,
477
+ /**
478
+ * Platform grant
479
+ *
480
+ * @generated from enum value: ORDER_TYPE_PLATFORM_GRANT = 3;
481
+ */
482
+ PLATFORM_GRANT = 3
483
+ }
484
+ /**
485
+ * Describes the enum mgx.wallet.v1.topup.OrderType.
486
+ */
487
+ export declare const OrderTypeSchema: GenEnum<OrderType>;
488
+ /**
489
+ * Grant type enumeration
490
+ *
491
+ * @generated from enum mgx.wallet.v1.topup.GrantType
492
+ */
493
+ export declare enum GrantType {
494
+ /**
495
+ * @generated from enum value: GRANT_TYPE_UNSPECIFIED = 0;
496
+ */
497
+ UNSPECIFIED = 0,
498
+ /**
499
+ * Initial bonus
500
+ *
501
+ * @generated from enum value: GRANT_TYPE_INIT_BONUS = 1;
502
+ */
503
+ INIT_BONUS = 1,
504
+ /**
505
+ * Promotion
506
+ *
507
+ * @generated from enum value: GRANT_TYPE_PROMOTION = 2;
508
+ */
509
+ PROMOTION = 2,
510
+ /**
511
+ * Compensation
512
+ *
513
+ * @generated from enum value: GRANT_TYPE_COMPENSATION = 3;
514
+ */
515
+ COMPENSATION = 3
516
+ }
517
+ /**
518
+ * Describes the enum mgx.wallet.v1.topup.GrantType.
519
+ */
520
+ export declare const GrantTypeSchema: GenEnum<GrantType>;
521
+ /**
522
+ * Order status enumeration
523
+ *
524
+ * @generated from enum mgx.wallet.v1.topup.OrderStatus
525
+ */
526
+ export declare enum OrderStatus {
527
+ /**
528
+ * @generated from enum value: ORDER_STATUS_UNSPECIFIED = 0;
529
+ */
530
+ UNSPECIFIED = 0,
531
+ /**
532
+ * Pending payment
533
+ *
534
+ * @generated from enum value: ORDER_STATUS_PENDING = 1;
535
+ */
536
+ PENDING = 1,
537
+ /**
538
+ * Processing
539
+ *
540
+ * @generated from enum value: ORDER_STATUS_PROCESSING = 2;
541
+ */
542
+ PROCESSING = 2,
543
+ /**
544
+ * Success
545
+ *
546
+ * @generated from enum value: ORDER_STATUS_SUCCESS = 3;
547
+ */
548
+ SUCCESS = 3,
549
+ /**
550
+ * Failed
551
+ *
552
+ * @generated from enum value: ORDER_STATUS_FAILED = 4;
553
+ */
554
+ FAILED = 4
555
+ }
556
+ /**
557
+ * Describes the enum mgx.wallet.v1.topup.OrderStatus.
558
+ */
559
+ export declare const OrderStatusSchema: GenEnum<OrderStatus>;
560
+ /**
561
+ * Core service definition
562
+ *
563
+ * @generated from service mgx.wallet.v1.topup.OrderService
564
+ */
565
+ export declare const OrderService: GenService<{
566
+ /**
567
+ * @generated from rpc mgx.wallet.v1.topup.OrderService.ListOrders
568
+ */
569
+ listOrders: {
570
+ methodKind: "unary";
571
+ input: typeof ListOrdersRequestSchema;
572
+ output: typeof ListOrdersResponseSchema;
573
+ };
574
+ /**
575
+ * Top-up payment event notification: payment module calls this on success/failure; wallet credits account or records failure.
576
+ *
577
+ * @generated from rpc mgx.wallet.v1.topup.OrderService.NotifyTopupPaymentEvent
578
+ */
579
+ notifyTopupPaymentEvent: {
580
+ methodKind: "unary";
581
+ input: typeof NotifyTopupPaymentEventRequestSchema;
582
+ output: typeof NotifyTopupPaymentEventResponseSchema;
583
+ };
584
+ }>;
585
+ //# sourceMappingURL=order_service_pb.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"order_service_pb.d.ts","sourceRoot":"","sources":["../../../src/v1/topup/order_service_pb.ts"],"names":[],"mappings":"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"}