@chotot/ct-logic-uni-rev-order-v1 1.197.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 (62) hide show
  1. package/cart_service-LogicUniRevOrderCartService_connectquery.d.ts +88 -0
  2. package/cart_service-LogicUniRevOrderCartService_connectquery.js +131 -0
  3. package/cart_service.proto +108 -0
  4. package/cart_service_connect.d.ts +80 -0
  5. package/cart_service_connect.js +80 -0
  6. package/cart_service_pb.d.ts +525 -0
  7. package/cart_service_pb.js +194 -0
  8. package/change_order_status.proto +110 -0
  9. package/change_order_status_pb.d.ts +494 -0
  10. package/change_order_status_pb.js +163 -0
  11. package/invoice.proto +565 -0
  12. package/invoice_entities.proto +205 -0
  13. package/invoice_entities_pb.d.ts +414 -0
  14. package/invoice_entities_pb.js +113 -0
  15. package/invoice_pb.d.ts +2875 -0
  16. package/invoice_pb.js +917 -0
  17. package/invoice_service-LogicUniRevOrderInvoiceService_connectquery.d.ts +238 -0
  18. package/invoice_service-LogicUniRevOrderInvoiceService_connectquery.js +371 -0
  19. package/invoice_service.proto +240 -0
  20. package/invoice_service_connect.d.ts +215 -0
  21. package/invoice_service_connect.js +215 -0
  22. package/onbehalf_service-LogicUniRevOrderOnBehalfService_connectquery.d.ts +108 -0
  23. package/onbehalf_service-LogicUniRevOrderOnBehalfService_connectquery.js +163 -0
  24. package/onbehalf_service.proto +355 -0
  25. package/onbehalf_service_connect.d.ts +98 -0
  26. package/onbehalf_service_connect.js +98 -0
  27. package/onbehalf_service_pb.d.ts +1789 -0
  28. package/onbehalf_service_pb.js +568 -0
  29. package/order_entities.proto +75 -0
  30. package/order_entities_pb.d.ts +366 -0
  31. package/order_entities_pb.js +111 -0
  32. package/order_history_order_service_detail.proto +485 -0
  33. package/order_history_order_service_detail_pb.d.ts +2599 -0
  34. package/order_history_order_service_detail_pb.js +768 -0
  35. package/order_history_paid_order.proto +224 -0
  36. package/order_history_paid_order_pb.d.ts +1139 -0
  37. package/order_history_paid_order_pb.js +343 -0
  38. package/order_history_revamp.proto +107 -0
  39. package/order_history_revamp_pb.d.ts +577 -0
  40. package/order_history_revamp_pb.js +164 -0
  41. package/order_info.proto +74 -0
  42. package/order_info_pb.d.ts +381 -0
  43. package/order_info_pb.js +138 -0
  44. package/package.json +10 -0
  45. package/paid_product.proto +94 -0
  46. package/paid_product_order.proto +430 -0
  47. package/paid_product_order_pb.d.ts +2120 -0
  48. package/paid_product_order_pb.js +698 -0
  49. package/paid_product_pb.d.ts +287 -0
  50. package/paid_product_pb.js +105 -0
  51. package/rabbit_mq.proto +69 -0
  52. package/rabbit_mq_pb.d.ts +251 -0
  53. package/rabbit_mq_pb.js +94 -0
  54. package/refund_order.proto +195 -0
  55. package/refund_order_pb.d.ts +1030 -0
  56. package/refund_order_pb.js +359 -0
  57. package/scripts/modify_package_json.js +50 -0
  58. package/service-LogicUniRevOrderService_connectquery.d.ts +638 -0
  59. package/service-LogicUniRevOrderService_connectquery.js +1014 -0
  60. package/service.proto +179 -0
  61. package/service_connect.d.ts +578 -0
  62. package/service_connect.js +578 -0
@@ -0,0 +1,366 @@
1
+ // general
2
+
3
+ // @generated by protoc-gen-es v1.3.1 with parameter "target=js+dts"
4
+ // @generated from file ct-logic-uni-rev-order/v1/order_entities.proto (package ct_logic_uni_rev_order.v1, syntax proto3)
5
+ /* eslint-disable */
6
+ // @ts-nocheck
7
+
8
+ import type { BinaryReadOptions, FieldList, JsonReadOptions, JsonValue, PartialMessage, PlainMessage, Timestamp } from "@bufbuild/protobuf";
9
+ import { Message, proto3 } from "@bufbuild/protobuf";
10
+
11
+ /**
12
+ * @generated from message ct_logic_uni_rev_order.v1.PaidProductOrder
13
+ */
14
+ export declare class PaidProductOrder extends Message<PaidProductOrder> {
15
+ /**
16
+ * @generated from field: int64 order_id = 1;
17
+ */
18
+ orderId: bigint;
19
+
20
+ /**
21
+ * @generated from field: string payment_code = 2;
22
+ */
23
+ paymentCode: string;
24
+
25
+ /**
26
+ * @generated from field: string status = 3;
27
+ */
28
+ status: string;
29
+
30
+ /**
31
+ * @generated from field: int64 account_id = 4;
32
+ */
33
+ accountId: bigint;
34
+
35
+ /**
36
+ * @generated from field: string phone = 5;
37
+ */
38
+ phone: string;
39
+
40
+ /**
41
+ * @generated from field: int64 value = 6;
42
+ */
43
+ value: bigint;
44
+
45
+ /**
46
+ * @generated from field: int64 service_fee = 7;
47
+ */
48
+ serviceFee: bigint;
49
+
50
+ /**
51
+ * @generated from field: string source = 8;
52
+ */
53
+ source: string;
54
+
55
+ /**
56
+ * @generated from field: string unit = 9;
57
+ */
58
+ unit: string;
59
+
60
+ /**
61
+ * @generated from field: google.protobuf.Timestamp payment_expired_at = 10;
62
+ */
63
+ paymentExpiredAt?: Timestamp;
64
+
65
+ /**
66
+ * @generated from field: string vertical_creator = 11;
67
+ */
68
+ verticalCreator: string;
69
+
70
+ /**
71
+ * @generated from field: string gateway = 12;
72
+ */
73
+ gateway: string;
74
+
75
+ /**
76
+ * @generated from field: string gateway_name = 13;
77
+ */
78
+ gatewayName: string;
79
+
80
+ /**
81
+ * @generated from field: google.protobuf.Timestamp created_at = 14;
82
+ */
83
+ createdAt?: Timestamp;
84
+
85
+ /**
86
+ * @generated from field: int64 tax_value = 15;
87
+ */
88
+ taxValue: bigint;
89
+
90
+ constructor(data?: PartialMessage<PaidProductOrder>);
91
+
92
+ static readonly runtime: typeof proto3;
93
+ static readonly typeName = "ct_logic_uni_rev_order.v1.PaidProductOrder";
94
+ static readonly fields: FieldList;
95
+
96
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): PaidProductOrder;
97
+
98
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): PaidProductOrder;
99
+
100
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): PaidProductOrder;
101
+
102
+ static equals(a: PaidProductOrder | PlainMessage<PaidProductOrder> | undefined, b: PaidProductOrder | PlainMessage<PaidProductOrder> | undefined): boolean;
103
+ }
104
+
105
+ /**
106
+ * @generated from message ct_logic_uni_rev_order.v1.PaidProductOrderService
107
+ */
108
+ export declare class PaidProductOrderService extends Message<PaidProductOrderService> {
109
+ /**
110
+ * @generated from field: int64 service_id = 1;
111
+ */
112
+ serviceId: bigint;
113
+
114
+ /**
115
+ * @generated from field: string type = 2;
116
+ */
117
+ type: string;
118
+
119
+ /**
120
+ * @generated from field: ct_logic_uni_rev_order.v1.PaidProductServiceType paid_product_service_type = 3;
121
+ */
122
+ paidProductServiceType?: PaidProductServiceType;
123
+
124
+ /**
125
+ * @generated from field: int64 ad_id = 4;
126
+ */
127
+ adId: bigint;
128
+
129
+ /**
130
+ * @generated from field: int64 price = 5;
131
+ */
132
+ price: bigint;
133
+
134
+ /**
135
+ * Google Billing charge additional fee, other payment_method this is 0
136
+ *
137
+ * @generated from field: int64 service_fee = 6;
138
+ */
139
+ serviceFee: bigint;
140
+
141
+ /**
142
+ * @generated from field: google.protobuf.Timestamp expected_delivery_time = 7;
143
+ */
144
+ expectedDeliveryTime?: Timestamp;
145
+
146
+ /**
147
+ * @generated from field: google.protobuf.Timestamp delivery_time = 8;
148
+ */
149
+ deliveryTime?: Timestamp;
150
+
151
+ /**
152
+ * @generated from field: string service_params = 9;
153
+ */
154
+ serviceParams: string;
155
+
156
+ /**
157
+ * @generated from field: string service_status = 10;
158
+ */
159
+ serviceStatus: string;
160
+
161
+ /**
162
+ * @generated from field: int64 total_quantity_fulfillment = 11;
163
+ */
164
+ totalQuantityFulfillment: bigint;
165
+
166
+ /**
167
+ * @generated from field: string service_description = 12;
168
+ */
169
+ serviceDescription: string;
170
+
171
+ /**
172
+ * @generated from field: int64 duration_seconds = 13;
173
+ */
174
+ durationSeconds: bigint;
175
+
176
+ /**
177
+ * @generated from field: string duration_name = 14;
178
+ */
179
+ durationName: string;
180
+
181
+ /**
182
+ * @generated from field: string unit_name = 15;
183
+ */
184
+ unitName: string;
185
+
186
+ /**
187
+ * @generated from field: int64 tax_price = 16;
188
+ */
189
+ taxPrice: bigint;
190
+
191
+ constructor(data?: PartialMessage<PaidProductOrderService>);
192
+
193
+ static readonly runtime: typeof proto3;
194
+ static readonly typeName = "ct_logic_uni_rev_order.v1.PaidProductOrderService";
195
+ static readonly fields: FieldList;
196
+
197
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): PaidProductOrderService;
198
+
199
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): PaidProductOrderService;
200
+
201
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): PaidProductOrderService;
202
+
203
+ static equals(a: PaidProductOrderService | PlainMessage<PaidProductOrderService> | undefined, b: PaidProductOrderService | PlainMessage<PaidProductOrderService> | undefined): boolean;
204
+ }
205
+
206
+ /**
207
+ * @generated from message ct_logic_uni_rev_order.v1.PaidProductServiceType
208
+ */
209
+ export declare class PaidProductServiceType extends Message<PaidProductServiceType> {
210
+ /**
211
+ * @generated from field: string type = 1;
212
+ */
213
+ type: string;
214
+
215
+ /**
216
+ * @generated from field: string name = 2;
217
+ */
218
+ name: string;
219
+
220
+ /**
221
+ * @generated from field: string status = 3;
222
+ */
223
+ status: string;
224
+
225
+ /**
226
+ * @generated from field: string delivery_type = 4;
227
+ */
228
+ deliveryType: string;
229
+
230
+ /**
231
+ * @generated from field: string delivery_name = 5;
232
+ */
233
+ deliveryName: string;
234
+
235
+ /**
236
+ * @generated from field: string vertical = 6;
237
+ */
238
+ vertical: string;
239
+
240
+ /**
241
+ * @generated from field: string image_url = 7;
242
+ */
243
+ imageUrl: string;
244
+
245
+ /**
246
+ * @generated from field: string metadata = 8;
247
+ */
248
+ metadata: string;
249
+
250
+ constructor(data?: PartialMessage<PaidProductServiceType>);
251
+
252
+ static readonly runtime: typeof proto3;
253
+ static readonly typeName = "ct_logic_uni_rev_order.v1.PaidProductServiceType";
254
+ static readonly fields: FieldList;
255
+
256
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): PaidProductServiceType;
257
+
258
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): PaidProductServiceType;
259
+
260
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): PaidProductServiceType;
261
+
262
+ static equals(a: PaidProductServiceType | PlainMessage<PaidProductServiceType> | undefined, b: PaidProductServiceType | PlainMessage<PaidProductServiceType> | undefined): boolean;
263
+ }
264
+
265
+ /**
266
+ * @generated from message ct_logic_uni_rev_order.v1.PaidProductOrderAction
267
+ */
268
+ export declare class PaidProductOrderAction extends Message<PaidProductOrderAction> {
269
+ /**
270
+ * @generated from field: int64 action_id = 1;
271
+ */
272
+ actionId: bigint;
273
+
274
+ /**
275
+ * @generated from field: string action_type = 2;
276
+ */
277
+ actionType: string;
278
+
279
+ /**
280
+ * @generated from field: google.protobuf.Timestamp action_time = 3;
281
+ */
282
+ actionTime?: Timestamp;
283
+
284
+ /**
285
+ * @generated from field: repeated ct_logic_uni_rev_order.v1.ActionParam action_params = 4;
286
+ */
287
+ actionParams: ActionParam[];
288
+
289
+ constructor(data?: PartialMessage<PaidProductOrderAction>);
290
+
291
+ static readonly runtime: typeof proto3;
292
+ static readonly typeName = "ct_logic_uni_rev_order.v1.PaidProductOrderAction";
293
+ static readonly fields: FieldList;
294
+
295
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): PaidProductOrderAction;
296
+
297
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): PaidProductOrderAction;
298
+
299
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): PaidProductOrderAction;
300
+
301
+ static equals(a: PaidProductOrderAction | PlainMessage<PaidProductOrderAction> | undefined, b: PaidProductOrderAction | PlainMessage<PaidProductOrderAction> | undefined): boolean;
302
+ }
303
+
304
+ /**
305
+ * @generated from message ct_logic_uni_rev_order.v1.ActionParam
306
+ */
307
+ export declare class ActionParam extends Message<ActionParam> {
308
+ /**
309
+ * @generated from field: string name = 1;
310
+ */
311
+ name: string;
312
+
313
+ /**
314
+ * @generated from field: string value = 2;
315
+ */
316
+ value: string;
317
+
318
+ constructor(data?: PartialMessage<ActionParam>);
319
+
320
+ static readonly runtime: typeof proto3;
321
+ static readonly typeName = "ct_logic_uni_rev_order.v1.ActionParam";
322
+ static readonly fields: FieldList;
323
+
324
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): ActionParam;
325
+
326
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): ActionParam;
327
+
328
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): ActionParam;
329
+
330
+ static equals(a: ActionParam | PlainMessage<ActionParam> | undefined, b: ActionParam | PlainMessage<ActionParam> | undefined): boolean;
331
+ }
332
+
333
+ /**
334
+ * @generated from message ct_logic_uni_rev_order.v1.PaidProductOrderFull
335
+ */
336
+ export declare class PaidProductOrderFull extends Message<PaidProductOrderFull> {
337
+ /**
338
+ * @generated from field: ct_logic_uni_rev_order.v1.PaidProductOrder order = 1;
339
+ */
340
+ order?: PaidProductOrder;
341
+
342
+ /**
343
+ * @generated from field: repeated ct_logic_uni_rev_order.v1.PaidProductOrderService order_services = 2;
344
+ */
345
+ orderServices: PaidProductOrderService[];
346
+
347
+ /**
348
+ * @generated from field: repeated ct_logic_uni_rev_order.v1.PaidProductOrderAction order_actions = 3;
349
+ */
350
+ orderActions: PaidProductOrderAction[];
351
+
352
+ constructor(data?: PartialMessage<PaidProductOrderFull>);
353
+
354
+ static readonly runtime: typeof proto3;
355
+ static readonly typeName = "ct_logic_uni_rev_order.v1.PaidProductOrderFull";
356
+ static readonly fields: FieldList;
357
+
358
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): PaidProductOrderFull;
359
+
360
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): PaidProductOrderFull;
361
+
362
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): PaidProductOrderFull;
363
+
364
+ static equals(a: PaidProductOrderFull | PlainMessage<PaidProductOrderFull> | undefined, b: PaidProductOrderFull | PlainMessage<PaidProductOrderFull> | undefined): boolean;
365
+ }
366
+
@@ -0,0 +1,111 @@
1
+ // general
2
+
3
+ // @generated by protoc-gen-es v1.3.1 with parameter "target=js+dts"
4
+ // @generated from file ct-logic-uni-rev-order/v1/order_entities.proto (package ct_logic_uni_rev_order.v1, syntax proto3)
5
+ /* eslint-disable */
6
+ // @ts-nocheck
7
+
8
+ import { proto3, Timestamp } from "@bufbuild/protobuf";
9
+
10
+ /**
11
+ * @generated from message ct_logic_uni_rev_order.v1.PaidProductOrder
12
+ */
13
+ export const PaidProductOrder = proto3.makeMessageType(
14
+ "ct_logic_uni_rev_order.v1.PaidProductOrder",
15
+ () => [
16
+ { no: 1, name: "order_id", kind: "scalar", T: 3 /* ScalarType.INT64 */ },
17
+ { no: 2, name: "payment_code", kind: "scalar", T: 9 /* ScalarType.STRING */ },
18
+ { no: 3, name: "status", kind: "scalar", T: 9 /* ScalarType.STRING */ },
19
+ { no: 4, name: "account_id", kind: "scalar", T: 3 /* ScalarType.INT64 */ },
20
+ { no: 5, name: "phone", kind: "scalar", T: 9 /* ScalarType.STRING */ },
21
+ { no: 6, name: "value", kind: "scalar", T: 3 /* ScalarType.INT64 */ },
22
+ { no: 7, name: "service_fee", kind: "scalar", T: 3 /* ScalarType.INT64 */ },
23
+ { no: 8, name: "source", kind: "scalar", T: 9 /* ScalarType.STRING */ },
24
+ { no: 9, name: "unit", kind: "scalar", T: 9 /* ScalarType.STRING */ },
25
+ { no: 10, name: "payment_expired_at", kind: "message", T: Timestamp },
26
+ { no: 11, name: "vertical_creator", kind: "scalar", T: 9 /* ScalarType.STRING */ },
27
+ { no: 12, name: "gateway", kind: "scalar", T: 9 /* ScalarType.STRING */ },
28
+ { no: 13, name: "gateway_name", kind: "scalar", T: 9 /* ScalarType.STRING */ },
29
+ { no: 14, name: "created_at", kind: "message", T: Timestamp },
30
+ { no: 15, name: "tax_value", kind: "scalar", T: 3 /* ScalarType.INT64 */ },
31
+ ],
32
+ );
33
+
34
+ /**
35
+ * @generated from message ct_logic_uni_rev_order.v1.PaidProductOrderService
36
+ */
37
+ export const PaidProductOrderService = proto3.makeMessageType(
38
+ "ct_logic_uni_rev_order.v1.PaidProductOrderService",
39
+ () => [
40
+ { no: 1, name: "service_id", kind: "scalar", T: 3 /* ScalarType.INT64 */ },
41
+ { no: 2, name: "type", kind: "scalar", T: 9 /* ScalarType.STRING */ },
42
+ { no: 3, name: "paid_product_service_type", kind: "message", T: PaidProductServiceType },
43
+ { no: 4, name: "ad_id", kind: "scalar", T: 3 /* ScalarType.INT64 */ },
44
+ { no: 5, name: "price", kind: "scalar", T: 3 /* ScalarType.INT64 */ },
45
+ { no: 6, name: "service_fee", kind: "scalar", T: 3 /* ScalarType.INT64 */ },
46
+ { no: 7, name: "expected_delivery_time", kind: "message", T: Timestamp },
47
+ { no: 8, name: "delivery_time", kind: "message", T: Timestamp },
48
+ { no: 9, name: "service_params", kind: "scalar", T: 9 /* ScalarType.STRING */ },
49
+ { no: 10, name: "service_status", kind: "scalar", T: 9 /* ScalarType.STRING */ },
50
+ { no: 11, name: "total_quantity_fulfillment", kind: "scalar", T: 3 /* ScalarType.INT64 */ },
51
+ { no: 12, name: "service_description", kind: "scalar", T: 9 /* ScalarType.STRING */ },
52
+ { no: 13, name: "duration_seconds", kind: "scalar", T: 3 /* ScalarType.INT64 */ },
53
+ { no: 14, name: "duration_name", kind: "scalar", T: 9 /* ScalarType.STRING */ },
54
+ { no: 15, name: "unit_name", kind: "scalar", T: 9 /* ScalarType.STRING */ },
55
+ { no: 16, name: "tax_price", kind: "scalar", T: 3 /* ScalarType.INT64 */ },
56
+ ],
57
+ );
58
+
59
+ /**
60
+ * @generated from message ct_logic_uni_rev_order.v1.PaidProductServiceType
61
+ */
62
+ export const PaidProductServiceType = proto3.makeMessageType(
63
+ "ct_logic_uni_rev_order.v1.PaidProductServiceType",
64
+ () => [
65
+ { no: 1, name: "type", kind: "scalar", T: 9 /* ScalarType.STRING */ },
66
+ { no: 2, name: "name", kind: "scalar", T: 9 /* ScalarType.STRING */ },
67
+ { no: 3, name: "status", kind: "scalar", T: 9 /* ScalarType.STRING */ },
68
+ { no: 4, name: "delivery_type", kind: "scalar", T: 9 /* ScalarType.STRING */ },
69
+ { no: 5, name: "delivery_name", kind: "scalar", T: 9 /* ScalarType.STRING */ },
70
+ { no: 6, name: "vertical", kind: "scalar", T: 9 /* ScalarType.STRING */ },
71
+ { no: 7, name: "image_url", kind: "scalar", T: 9 /* ScalarType.STRING */ },
72
+ { no: 8, name: "metadata", kind: "scalar", T: 9 /* ScalarType.STRING */ },
73
+ ],
74
+ );
75
+
76
+ /**
77
+ * @generated from message ct_logic_uni_rev_order.v1.PaidProductOrderAction
78
+ */
79
+ export const PaidProductOrderAction = proto3.makeMessageType(
80
+ "ct_logic_uni_rev_order.v1.PaidProductOrderAction",
81
+ () => [
82
+ { no: 1, name: "action_id", kind: "scalar", T: 3 /* ScalarType.INT64 */ },
83
+ { no: 2, name: "action_type", kind: "scalar", T: 9 /* ScalarType.STRING */ },
84
+ { no: 3, name: "action_time", kind: "message", T: Timestamp },
85
+ { no: 4, name: "action_params", kind: "message", T: ActionParam, repeated: true },
86
+ ],
87
+ );
88
+
89
+ /**
90
+ * @generated from message ct_logic_uni_rev_order.v1.ActionParam
91
+ */
92
+ export const ActionParam = proto3.makeMessageType(
93
+ "ct_logic_uni_rev_order.v1.ActionParam",
94
+ () => [
95
+ { no: 1, name: "name", kind: "scalar", T: 9 /* ScalarType.STRING */ },
96
+ { no: 2, name: "value", kind: "scalar", T: 9 /* ScalarType.STRING */ },
97
+ ],
98
+ );
99
+
100
+ /**
101
+ * @generated from message ct_logic_uni_rev_order.v1.PaidProductOrderFull
102
+ */
103
+ export const PaidProductOrderFull = proto3.makeMessageType(
104
+ "ct_logic_uni_rev_order.v1.PaidProductOrderFull",
105
+ () => [
106
+ { no: 1, name: "order", kind: "message", T: PaidProductOrder },
107
+ { no: 2, name: "order_services", kind: "message", T: PaidProductOrderService, repeated: true },
108
+ { no: 3, name: "order_actions", kind: "message", T: PaidProductOrderAction, repeated: true },
109
+ ],
110
+ );
111
+