@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.
- package/cart_service-LogicUniRevOrderCartService_connectquery.d.ts +88 -0
- package/cart_service-LogicUniRevOrderCartService_connectquery.js +131 -0
- package/cart_service.proto +108 -0
- package/cart_service_connect.d.ts +80 -0
- package/cart_service_connect.js +80 -0
- package/cart_service_pb.d.ts +525 -0
- package/cart_service_pb.js +194 -0
- package/change_order_status.proto +110 -0
- package/change_order_status_pb.d.ts +494 -0
- package/change_order_status_pb.js +163 -0
- package/invoice.proto +565 -0
- package/invoice_entities.proto +205 -0
- package/invoice_entities_pb.d.ts +414 -0
- package/invoice_entities_pb.js +113 -0
- package/invoice_pb.d.ts +2875 -0
- package/invoice_pb.js +917 -0
- package/invoice_service-LogicUniRevOrderInvoiceService_connectquery.d.ts +238 -0
- package/invoice_service-LogicUniRevOrderInvoiceService_connectquery.js +371 -0
- package/invoice_service.proto +240 -0
- package/invoice_service_connect.d.ts +215 -0
- package/invoice_service_connect.js +215 -0
- package/onbehalf_service-LogicUniRevOrderOnBehalfService_connectquery.d.ts +108 -0
- package/onbehalf_service-LogicUniRevOrderOnBehalfService_connectquery.js +163 -0
- package/onbehalf_service.proto +355 -0
- package/onbehalf_service_connect.d.ts +98 -0
- package/onbehalf_service_connect.js +98 -0
- package/onbehalf_service_pb.d.ts +1789 -0
- package/onbehalf_service_pb.js +568 -0
- package/order_entities.proto +75 -0
- package/order_entities_pb.d.ts +366 -0
- package/order_entities_pb.js +111 -0
- package/order_history_order_service_detail.proto +485 -0
- package/order_history_order_service_detail_pb.d.ts +2599 -0
- package/order_history_order_service_detail_pb.js +768 -0
- package/order_history_paid_order.proto +224 -0
- package/order_history_paid_order_pb.d.ts +1139 -0
- package/order_history_paid_order_pb.js +343 -0
- package/order_history_revamp.proto +107 -0
- package/order_history_revamp_pb.d.ts +577 -0
- package/order_history_revamp_pb.js +164 -0
- package/order_info.proto +74 -0
- package/order_info_pb.d.ts +381 -0
- package/order_info_pb.js +138 -0
- package/package.json +10 -0
- package/paid_product.proto +94 -0
- package/paid_product_order.proto +430 -0
- package/paid_product_order_pb.d.ts +2120 -0
- package/paid_product_order_pb.js +698 -0
- package/paid_product_pb.d.ts +287 -0
- package/paid_product_pb.js +105 -0
- package/rabbit_mq.proto +69 -0
- package/rabbit_mq_pb.d.ts +251 -0
- package/rabbit_mq_pb.js +94 -0
- package/refund_order.proto +195 -0
- package/refund_order_pb.d.ts +1030 -0
- package/refund_order_pb.js +359 -0
- package/scripts/modify_package_json.js +50 -0
- package/service-LogicUniRevOrderService_connectquery.d.ts +638 -0
- package/service-LogicUniRevOrderService_connectquery.js +1014 -0
- package/service.proto +179 -0
- package/service_connect.d.ts +578 -0
- package/service_connect.js +578 -0
|
@@ -0,0 +1,525 @@
|
|
|
1
|
+
// @generated by protoc-gen-es v1.3.1 with parameter "target=js+dts"
|
|
2
|
+
// @generated from file ct-logic-uni-rev-order/v1/cart_service.proto (package ct_logic_uni_rev_order.v1, syntax proto3)
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
// @ts-nocheck
|
|
5
|
+
|
|
6
|
+
import type { BinaryReadOptions, Duration, FieldList, JsonReadOptions, JsonValue, PartialMessage, PlainMessage } from "@bufbuild/protobuf";
|
|
7
|
+
import { Message, proto3 } from "@bufbuild/protobuf";
|
|
8
|
+
|
|
9
|
+
/**
|
|
10
|
+
* @generated from message ct_logic_uni_rev_order.v1.AddServicesRequest
|
|
11
|
+
*/
|
|
12
|
+
export declare class AddServicesRequest extends Message<AddServicesRequest> {
|
|
13
|
+
/**
|
|
14
|
+
* @generated from field: int64 account_id = 1;
|
|
15
|
+
*/
|
|
16
|
+
accountId: bigint;
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
* @generated from field: string cart_type = 2;
|
|
20
|
+
*/
|
|
21
|
+
cartType: string;
|
|
22
|
+
|
|
23
|
+
/**
|
|
24
|
+
* @generated from field: repeated ct_logic_uni_rev_order.v1.CartService services = 3;
|
|
25
|
+
*/
|
|
26
|
+
services: CartService[];
|
|
27
|
+
|
|
28
|
+
/**
|
|
29
|
+
* @generated from field: string platform = 4;
|
|
30
|
+
*/
|
|
31
|
+
platform: string;
|
|
32
|
+
|
|
33
|
+
/**
|
|
34
|
+
* @generated from field: string version = 5;
|
|
35
|
+
*/
|
|
36
|
+
version: string;
|
|
37
|
+
|
|
38
|
+
/**
|
|
39
|
+
* @generated from field: int64 ttl = 6;
|
|
40
|
+
*/
|
|
41
|
+
ttl: bigint;
|
|
42
|
+
|
|
43
|
+
constructor(data?: PartialMessage<AddServicesRequest>);
|
|
44
|
+
|
|
45
|
+
static readonly runtime: typeof proto3;
|
|
46
|
+
static readonly typeName = "ct_logic_uni_rev_order.v1.AddServicesRequest";
|
|
47
|
+
static readonly fields: FieldList;
|
|
48
|
+
|
|
49
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): AddServicesRequest;
|
|
50
|
+
|
|
51
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): AddServicesRequest;
|
|
52
|
+
|
|
53
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): AddServicesRequest;
|
|
54
|
+
|
|
55
|
+
static equals(a: AddServicesRequest | PlainMessage<AddServicesRequest> | undefined, b: AddServicesRequest | PlainMessage<AddServicesRequest> | undefined): boolean;
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
/**
|
|
59
|
+
* @generated from message ct_logic_uni_rev_order.v1.CartService
|
|
60
|
+
*/
|
|
61
|
+
export declare class CartService extends Message<CartService> {
|
|
62
|
+
/**
|
|
63
|
+
* @generated from field: optional int64 ad_id = 1;
|
|
64
|
+
*/
|
|
65
|
+
adId?: bigint;
|
|
66
|
+
|
|
67
|
+
/**
|
|
68
|
+
* @generated from field: optional string shop_alias = 2;
|
|
69
|
+
*/
|
|
70
|
+
shopAlias?: string;
|
|
71
|
+
|
|
72
|
+
/**
|
|
73
|
+
* @generated from field: string type = 3;
|
|
74
|
+
*/
|
|
75
|
+
type: string;
|
|
76
|
+
|
|
77
|
+
/**
|
|
78
|
+
* @generated from field: string params = 4;
|
|
79
|
+
*/
|
|
80
|
+
params: string;
|
|
81
|
+
|
|
82
|
+
/**
|
|
83
|
+
* @generated from field: ct_logic_uni_rev_order.v1.ServicePrice service_price = 5;
|
|
84
|
+
*/
|
|
85
|
+
servicePrice?: ServicePrice;
|
|
86
|
+
|
|
87
|
+
/**
|
|
88
|
+
* legacy
|
|
89
|
+
*
|
|
90
|
+
* @generated from field: int64 price = 6;
|
|
91
|
+
*/
|
|
92
|
+
price: bigint;
|
|
93
|
+
|
|
94
|
+
/**
|
|
95
|
+
* legacy
|
|
96
|
+
*
|
|
97
|
+
* @generated from field: ct_logic_uni_rev_order.v1.ServicePrice price_unit = 7;
|
|
98
|
+
*/
|
|
99
|
+
priceUnit?: ServicePrice;
|
|
100
|
+
|
|
101
|
+
/**
|
|
102
|
+
* @generated from field: string error_msg = 8;
|
|
103
|
+
*/
|
|
104
|
+
errorMsg: string;
|
|
105
|
+
|
|
106
|
+
constructor(data?: PartialMessage<CartService>);
|
|
107
|
+
|
|
108
|
+
static readonly runtime: typeof proto3;
|
|
109
|
+
static readonly typeName = "ct_logic_uni_rev_order.v1.CartService";
|
|
110
|
+
static readonly fields: FieldList;
|
|
111
|
+
|
|
112
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): CartService;
|
|
113
|
+
|
|
114
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): CartService;
|
|
115
|
+
|
|
116
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): CartService;
|
|
117
|
+
|
|
118
|
+
static equals(a: CartService | PlainMessage<CartService> | undefined, b: CartService | PlainMessage<CartService> | undefined): boolean;
|
|
119
|
+
}
|
|
120
|
+
|
|
121
|
+
/**
|
|
122
|
+
* @generated from message ct_logic_uni_rev_order.v1.ServicePrice
|
|
123
|
+
*/
|
|
124
|
+
export declare class ServicePrice extends Message<ServicePrice> {
|
|
125
|
+
/**
|
|
126
|
+
* @generated from field: int64 vnd = 1;
|
|
127
|
+
*/
|
|
128
|
+
vnd: bigint;
|
|
129
|
+
|
|
130
|
+
/**
|
|
131
|
+
* @generated from field: int64 credit = 2;
|
|
132
|
+
*/
|
|
133
|
+
credit: bigint;
|
|
134
|
+
|
|
135
|
+
/**
|
|
136
|
+
* @generated from field: int64 promotion = 3;
|
|
137
|
+
*/
|
|
138
|
+
promotion: bigint;
|
|
139
|
+
|
|
140
|
+
constructor(data?: PartialMessage<ServicePrice>);
|
|
141
|
+
|
|
142
|
+
static readonly runtime: typeof proto3;
|
|
143
|
+
static readonly typeName = "ct_logic_uni_rev_order.v1.ServicePrice";
|
|
144
|
+
static readonly fields: FieldList;
|
|
145
|
+
|
|
146
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): ServicePrice;
|
|
147
|
+
|
|
148
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): ServicePrice;
|
|
149
|
+
|
|
150
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): ServicePrice;
|
|
151
|
+
|
|
152
|
+
static equals(a: ServicePrice | PlainMessage<ServicePrice> | undefined, b: ServicePrice | PlainMessage<ServicePrice> | undefined): boolean;
|
|
153
|
+
}
|
|
154
|
+
|
|
155
|
+
/**
|
|
156
|
+
* @generated from message ct_logic_uni_rev_order.v1.CartTimerBumpBlockTime
|
|
157
|
+
*/
|
|
158
|
+
export declare class CartTimerBumpBlockTime extends Message<CartTimerBumpBlockTime> {
|
|
159
|
+
/**
|
|
160
|
+
* @generated from field: int64 start = 1;
|
|
161
|
+
*/
|
|
162
|
+
start: bigint;
|
|
163
|
+
|
|
164
|
+
/**
|
|
165
|
+
* @generated from field: int64 end = 2;
|
|
166
|
+
*/
|
|
167
|
+
end: bigint;
|
|
168
|
+
|
|
169
|
+
constructor(data?: PartialMessage<CartTimerBumpBlockTime>);
|
|
170
|
+
|
|
171
|
+
static readonly runtime: typeof proto3;
|
|
172
|
+
static readonly typeName = "ct_logic_uni_rev_order.v1.CartTimerBumpBlockTime";
|
|
173
|
+
static readonly fields: FieldList;
|
|
174
|
+
|
|
175
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): CartTimerBumpBlockTime;
|
|
176
|
+
|
|
177
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): CartTimerBumpBlockTime;
|
|
178
|
+
|
|
179
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): CartTimerBumpBlockTime;
|
|
180
|
+
|
|
181
|
+
static equals(a: CartTimerBumpBlockTime | PlainMessage<CartTimerBumpBlockTime> | undefined, b: CartTimerBumpBlockTime | PlainMessage<CartTimerBumpBlockTime> | undefined): boolean;
|
|
182
|
+
}
|
|
183
|
+
|
|
184
|
+
/**
|
|
185
|
+
* @generated from message ct_logic_uni_rev_order.v1.AddServicesResponse
|
|
186
|
+
*/
|
|
187
|
+
export declare class AddServicesResponse extends Message<AddServicesResponse> {
|
|
188
|
+
/**
|
|
189
|
+
* @generated from field: repeated ct_logic_uni_rev_order.v1.CartService success = 1;
|
|
190
|
+
*/
|
|
191
|
+
success: CartService[];
|
|
192
|
+
|
|
193
|
+
/**
|
|
194
|
+
* @generated from field: repeated ct_logic_uni_rev_order.v1.CartService fail = 2;
|
|
195
|
+
*/
|
|
196
|
+
fail: CartService[];
|
|
197
|
+
|
|
198
|
+
constructor(data?: PartialMessage<AddServicesResponse>);
|
|
199
|
+
|
|
200
|
+
static readonly runtime: typeof proto3;
|
|
201
|
+
static readonly typeName = "ct_logic_uni_rev_order.v1.AddServicesResponse";
|
|
202
|
+
static readonly fields: FieldList;
|
|
203
|
+
|
|
204
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): AddServicesResponse;
|
|
205
|
+
|
|
206
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): AddServicesResponse;
|
|
207
|
+
|
|
208
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): AddServicesResponse;
|
|
209
|
+
|
|
210
|
+
static equals(a: AddServicesResponse | PlainMessage<AddServicesResponse> | undefined, b: AddServicesResponse | PlainMessage<AddServicesResponse> | undefined): boolean;
|
|
211
|
+
}
|
|
212
|
+
|
|
213
|
+
/**
|
|
214
|
+
* @generated from message ct_logic_uni_rev_order.v1.GetServicesRequest
|
|
215
|
+
*/
|
|
216
|
+
export declare class GetServicesRequest extends Message<GetServicesRequest> {
|
|
217
|
+
/**
|
|
218
|
+
* @generated from field: int64 account_id = 1;
|
|
219
|
+
*/
|
|
220
|
+
accountId: bigint;
|
|
221
|
+
|
|
222
|
+
/**
|
|
223
|
+
* @generated from field: string cart_type = 2;
|
|
224
|
+
*/
|
|
225
|
+
cartType: string;
|
|
226
|
+
|
|
227
|
+
constructor(data?: PartialMessage<GetServicesRequest>);
|
|
228
|
+
|
|
229
|
+
static readonly runtime: typeof proto3;
|
|
230
|
+
static readonly typeName = "ct_logic_uni_rev_order.v1.GetServicesRequest";
|
|
231
|
+
static readonly fields: FieldList;
|
|
232
|
+
|
|
233
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): GetServicesRequest;
|
|
234
|
+
|
|
235
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): GetServicesRequest;
|
|
236
|
+
|
|
237
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GetServicesRequest;
|
|
238
|
+
|
|
239
|
+
static equals(a: GetServicesRequest | PlainMessage<GetServicesRequest> | undefined, b: GetServicesRequest | PlainMessage<GetServicesRequest> | undefined): boolean;
|
|
240
|
+
}
|
|
241
|
+
|
|
242
|
+
/**
|
|
243
|
+
* @generated from message ct_logic_uni_rev_order.v1.GetServicesResponse
|
|
244
|
+
*/
|
|
245
|
+
export declare class GetServicesResponse extends Message<GetServicesResponse> {
|
|
246
|
+
/**
|
|
247
|
+
* @generated from field: repeated ct_logic_uni_rev_order.v1.CartService services = 1;
|
|
248
|
+
*/
|
|
249
|
+
services: CartService[];
|
|
250
|
+
|
|
251
|
+
constructor(data?: PartialMessage<GetServicesResponse>);
|
|
252
|
+
|
|
253
|
+
static readonly runtime: typeof proto3;
|
|
254
|
+
static readonly typeName = "ct_logic_uni_rev_order.v1.GetServicesResponse";
|
|
255
|
+
static readonly fields: FieldList;
|
|
256
|
+
|
|
257
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): GetServicesResponse;
|
|
258
|
+
|
|
259
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): GetServicesResponse;
|
|
260
|
+
|
|
261
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GetServicesResponse;
|
|
262
|
+
|
|
263
|
+
static equals(a: GetServicesResponse | PlainMessage<GetServicesResponse> | undefined, b: GetServicesResponse | PlainMessage<GetServicesResponse> | undefined): boolean;
|
|
264
|
+
}
|
|
265
|
+
|
|
266
|
+
/**
|
|
267
|
+
* @generated from message ct_logic_uni_rev_order.v1.DeleteServicesRequest
|
|
268
|
+
*/
|
|
269
|
+
export declare class DeleteServicesRequest extends Message<DeleteServicesRequest> {
|
|
270
|
+
/**
|
|
271
|
+
* @generated from field: int64 account_id = 1;
|
|
272
|
+
*/
|
|
273
|
+
accountId: bigint;
|
|
274
|
+
|
|
275
|
+
/**
|
|
276
|
+
* @generated from field: string cart_type = 2;
|
|
277
|
+
*/
|
|
278
|
+
cartType: string;
|
|
279
|
+
|
|
280
|
+
/**
|
|
281
|
+
* @generated from field: repeated ct_logic_uni_rev_order.v1.CartService services = 3;
|
|
282
|
+
*/
|
|
283
|
+
services: CartService[];
|
|
284
|
+
|
|
285
|
+
constructor(data?: PartialMessage<DeleteServicesRequest>);
|
|
286
|
+
|
|
287
|
+
static readonly runtime: typeof proto3;
|
|
288
|
+
static readonly typeName = "ct_logic_uni_rev_order.v1.DeleteServicesRequest";
|
|
289
|
+
static readonly fields: FieldList;
|
|
290
|
+
|
|
291
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): DeleteServicesRequest;
|
|
292
|
+
|
|
293
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): DeleteServicesRequest;
|
|
294
|
+
|
|
295
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): DeleteServicesRequest;
|
|
296
|
+
|
|
297
|
+
static equals(a: DeleteServicesRequest | PlainMessage<DeleteServicesRequest> | undefined, b: DeleteServicesRequest | PlainMessage<DeleteServicesRequest> | undefined): boolean;
|
|
298
|
+
}
|
|
299
|
+
|
|
300
|
+
/**
|
|
301
|
+
* @generated from message ct_logic_uni_rev_order.v1.DeleteServicesResponse
|
|
302
|
+
*/
|
|
303
|
+
export declare class DeleteServicesResponse extends Message<DeleteServicesResponse> {
|
|
304
|
+
/**
|
|
305
|
+
* @generated from field: repeated ct_logic_uni_rev_order.v1.CartService success = 1;
|
|
306
|
+
*/
|
|
307
|
+
success: CartService[];
|
|
308
|
+
|
|
309
|
+
/**
|
|
310
|
+
* @generated from field: repeated ct_logic_uni_rev_order.v1.CartService fail = 2;
|
|
311
|
+
*/
|
|
312
|
+
fail: CartService[];
|
|
313
|
+
|
|
314
|
+
constructor(data?: PartialMessage<DeleteServicesResponse>);
|
|
315
|
+
|
|
316
|
+
static readonly runtime: typeof proto3;
|
|
317
|
+
static readonly typeName = "ct_logic_uni_rev_order.v1.DeleteServicesResponse";
|
|
318
|
+
static readonly fields: FieldList;
|
|
319
|
+
|
|
320
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): DeleteServicesResponse;
|
|
321
|
+
|
|
322
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): DeleteServicesResponse;
|
|
323
|
+
|
|
324
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): DeleteServicesResponse;
|
|
325
|
+
|
|
326
|
+
static equals(a: DeleteServicesResponse | PlainMessage<DeleteServicesResponse> | undefined, b: DeleteServicesResponse | PlainMessage<DeleteServicesResponse> | undefined): boolean;
|
|
327
|
+
}
|
|
328
|
+
|
|
329
|
+
/**
|
|
330
|
+
* @generated from message ct_logic_uni_rev_order.v1.DeleteCartRequest
|
|
331
|
+
*/
|
|
332
|
+
export declare class DeleteCartRequest extends Message<DeleteCartRequest> {
|
|
333
|
+
/**
|
|
334
|
+
* @generated from field: int64 account_id = 1;
|
|
335
|
+
*/
|
|
336
|
+
accountId: bigint;
|
|
337
|
+
|
|
338
|
+
/**
|
|
339
|
+
* @generated from field: string cart_type = 2;
|
|
340
|
+
*/
|
|
341
|
+
cartType: string;
|
|
342
|
+
|
|
343
|
+
constructor(data?: PartialMessage<DeleteCartRequest>);
|
|
344
|
+
|
|
345
|
+
static readonly runtime: typeof proto3;
|
|
346
|
+
static readonly typeName = "ct_logic_uni_rev_order.v1.DeleteCartRequest";
|
|
347
|
+
static readonly fields: FieldList;
|
|
348
|
+
|
|
349
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): DeleteCartRequest;
|
|
350
|
+
|
|
351
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): DeleteCartRequest;
|
|
352
|
+
|
|
353
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): DeleteCartRequest;
|
|
354
|
+
|
|
355
|
+
static equals(a: DeleteCartRequest | PlainMessage<DeleteCartRequest> | undefined, b: DeleteCartRequest | PlainMessage<DeleteCartRequest> | undefined): boolean;
|
|
356
|
+
}
|
|
357
|
+
|
|
358
|
+
/**
|
|
359
|
+
* @generated from message ct_logic_uni_rev_order.v1.DeleteCartResponse
|
|
360
|
+
*/
|
|
361
|
+
export declare class DeleteCartResponse extends Message<DeleteCartResponse> {
|
|
362
|
+
constructor(data?: PartialMessage<DeleteCartResponse>);
|
|
363
|
+
|
|
364
|
+
static readonly runtime: typeof proto3;
|
|
365
|
+
static readonly typeName = "ct_logic_uni_rev_order.v1.DeleteCartResponse";
|
|
366
|
+
static readonly fields: FieldList;
|
|
367
|
+
|
|
368
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): DeleteCartResponse;
|
|
369
|
+
|
|
370
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): DeleteCartResponse;
|
|
371
|
+
|
|
372
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): DeleteCartResponse;
|
|
373
|
+
|
|
374
|
+
static equals(a: DeleteCartResponse | PlainMessage<DeleteCartResponse> | undefined, b: DeleteCartResponse | PlainMessage<DeleteCartResponse> | undefined): boolean;
|
|
375
|
+
}
|
|
376
|
+
|
|
377
|
+
/**
|
|
378
|
+
* @generated from message ct_logic_uni_rev_order.v1.DeleteCartsRequest
|
|
379
|
+
*/
|
|
380
|
+
export declare class DeleteCartsRequest extends Message<DeleteCartsRequest> {
|
|
381
|
+
/**
|
|
382
|
+
* @generated from field: int64 account_id = 1;
|
|
383
|
+
*/
|
|
384
|
+
accountId: bigint;
|
|
385
|
+
|
|
386
|
+
constructor(data?: PartialMessage<DeleteCartsRequest>);
|
|
387
|
+
|
|
388
|
+
static readonly runtime: typeof proto3;
|
|
389
|
+
static readonly typeName = "ct_logic_uni_rev_order.v1.DeleteCartsRequest";
|
|
390
|
+
static readonly fields: FieldList;
|
|
391
|
+
|
|
392
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): DeleteCartsRequest;
|
|
393
|
+
|
|
394
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): DeleteCartsRequest;
|
|
395
|
+
|
|
396
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): DeleteCartsRequest;
|
|
397
|
+
|
|
398
|
+
static equals(a: DeleteCartsRequest | PlainMessage<DeleteCartsRequest> | undefined, b: DeleteCartsRequest | PlainMessage<DeleteCartsRequest> | undefined): boolean;
|
|
399
|
+
}
|
|
400
|
+
|
|
401
|
+
/**
|
|
402
|
+
* @generated from message ct_logic_uni_rev_order.v1.DeleteCartsResponse
|
|
403
|
+
*/
|
|
404
|
+
export declare class DeleteCartsResponse extends Message<DeleteCartsResponse> {
|
|
405
|
+
constructor(data?: PartialMessage<DeleteCartsResponse>);
|
|
406
|
+
|
|
407
|
+
static readonly runtime: typeof proto3;
|
|
408
|
+
static readonly typeName = "ct_logic_uni_rev_order.v1.DeleteCartsResponse";
|
|
409
|
+
static readonly fields: FieldList;
|
|
410
|
+
|
|
411
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): DeleteCartsResponse;
|
|
412
|
+
|
|
413
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): DeleteCartsResponse;
|
|
414
|
+
|
|
415
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): DeleteCartsResponse;
|
|
416
|
+
|
|
417
|
+
static equals(a: DeleteCartsResponse | PlainMessage<DeleteCartsResponse> | undefined, b: DeleteCartsResponse | PlainMessage<DeleteCartsResponse> | undefined): boolean;
|
|
418
|
+
}
|
|
419
|
+
|
|
420
|
+
/**
|
|
421
|
+
* @generated from message ct_logic_uni_rev_order.v1.DeleteServicesOfAdRequest
|
|
422
|
+
*/
|
|
423
|
+
export declare class DeleteServicesOfAdRequest extends Message<DeleteServicesOfAdRequest> {
|
|
424
|
+
/**
|
|
425
|
+
* @generated from field: int64 account_id = 1;
|
|
426
|
+
*/
|
|
427
|
+
accountId: bigint;
|
|
428
|
+
|
|
429
|
+
/**
|
|
430
|
+
* @generated from field: string cart_type = 2;
|
|
431
|
+
*/
|
|
432
|
+
cartType: string;
|
|
433
|
+
|
|
434
|
+
/**
|
|
435
|
+
* @generated from field: int64 ad_id = 3;
|
|
436
|
+
*/
|
|
437
|
+
adId: bigint;
|
|
438
|
+
|
|
439
|
+
constructor(data?: PartialMessage<DeleteServicesOfAdRequest>);
|
|
440
|
+
|
|
441
|
+
static readonly runtime: typeof proto3;
|
|
442
|
+
static readonly typeName = "ct_logic_uni_rev_order.v1.DeleteServicesOfAdRequest";
|
|
443
|
+
static readonly fields: FieldList;
|
|
444
|
+
|
|
445
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): DeleteServicesOfAdRequest;
|
|
446
|
+
|
|
447
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): DeleteServicesOfAdRequest;
|
|
448
|
+
|
|
449
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): DeleteServicesOfAdRequest;
|
|
450
|
+
|
|
451
|
+
static equals(a: DeleteServicesOfAdRequest | PlainMessage<DeleteServicesOfAdRequest> | undefined, b: DeleteServicesOfAdRequest | PlainMessage<DeleteServicesOfAdRequest> | undefined): boolean;
|
|
452
|
+
}
|
|
453
|
+
|
|
454
|
+
/**
|
|
455
|
+
* @generated from message ct_logic_uni_rev_order.v1.DeleteServicesOfAdResponse
|
|
456
|
+
*/
|
|
457
|
+
export declare class DeleteServicesOfAdResponse extends Message<DeleteServicesOfAdResponse> {
|
|
458
|
+
constructor(data?: PartialMessage<DeleteServicesOfAdResponse>);
|
|
459
|
+
|
|
460
|
+
static readonly runtime: typeof proto3;
|
|
461
|
+
static readonly typeName = "ct_logic_uni_rev_order.v1.DeleteServicesOfAdResponse";
|
|
462
|
+
static readonly fields: FieldList;
|
|
463
|
+
|
|
464
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): DeleteServicesOfAdResponse;
|
|
465
|
+
|
|
466
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): DeleteServicesOfAdResponse;
|
|
467
|
+
|
|
468
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): DeleteServicesOfAdResponse;
|
|
469
|
+
|
|
470
|
+
static equals(a: DeleteServicesOfAdResponse | PlainMessage<DeleteServicesOfAdResponse> | undefined, b: DeleteServicesOfAdResponse | PlainMessage<DeleteServicesOfAdResponse> | undefined): boolean;
|
|
471
|
+
}
|
|
472
|
+
|
|
473
|
+
/**
|
|
474
|
+
* @generated from message ct_logic_uni_rev_order.v1.CreateMappingOrderAndCartRequest
|
|
475
|
+
*/
|
|
476
|
+
export declare class CreateMappingOrderAndCartRequest extends Message<CreateMappingOrderAndCartRequest> {
|
|
477
|
+
/**
|
|
478
|
+
* @generated from field: int64 order_id = 1;
|
|
479
|
+
*/
|
|
480
|
+
orderId: bigint;
|
|
481
|
+
|
|
482
|
+
/**
|
|
483
|
+
* @generated from field: string cart_type = 2;
|
|
484
|
+
*/
|
|
485
|
+
cartType: string;
|
|
486
|
+
|
|
487
|
+
/**
|
|
488
|
+
* @generated from field: google.protobuf.Duration ttl = 3;
|
|
489
|
+
*/
|
|
490
|
+
ttl?: Duration;
|
|
491
|
+
|
|
492
|
+
constructor(data?: PartialMessage<CreateMappingOrderAndCartRequest>);
|
|
493
|
+
|
|
494
|
+
static readonly runtime: typeof proto3;
|
|
495
|
+
static readonly typeName = "ct_logic_uni_rev_order.v1.CreateMappingOrderAndCartRequest";
|
|
496
|
+
static readonly fields: FieldList;
|
|
497
|
+
|
|
498
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): CreateMappingOrderAndCartRequest;
|
|
499
|
+
|
|
500
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): CreateMappingOrderAndCartRequest;
|
|
501
|
+
|
|
502
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): CreateMappingOrderAndCartRequest;
|
|
503
|
+
|
|
504
|
+
static equals(a: CreateMappingOrderAndCartRequest | PlainMessage<CreateMappingOrderAndCartRequest> | undefined, b: CreateMappingOrderAndCartRequest | PlainMessage<CreateMappingOrderAndCartRequest> | undefined): boolean;
|
|
505
|
+
}
|
|
506
|
+
|
|
507
|
+
/**
|
|
508
|
+
* @generated from message ct_logic_uni_rev_order.v1.CreateMappingOrderAndCartResponse
|
|
509
|
+
*/
|
|
510
|
+
export declare class CreateMappingOrderAndCartResponse extends Message<CreateMappingOrderAndCartResponse> {
|
|
511
|
+
constructor(data?: PartialMessage<CreateMappingOrderAndCartResponse>);
|
|
512
|
+
|
|
513
|
+
static readonly runtime: typeof proto3;
|
|
514
|
+
static readonly typeName = "ct_logic_uni_rev_order.v1.CreateMappingOrderAndCartResponse";
|
|
515
|
+
static readonly fields: FieldList;
|
|
516
|
+
|
|
517
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): CreateMappingOrderAndCartResponse;
|
|
518
|
+
|
|
519
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): CreateMappingOrderAndCartResponse;
|
|
520
|
+
|
|
521
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): CreateMappingOrderAndCartResponse;
|
|
522
|
+
|
|
523
|
+
static equals(a: CreateMappingOrderAndCartResponse | PlainMessage<CreateMappingOrderAndCartResponse> | undefined, b: CreateMappingOrderAndCartResponse | PlainMessage<CreateMappingOrderAndCartResponse> | undefined): boolean;
|
|
524
|
+
}
|
|
525
|
+
|