@chotot/ct-logic-uni-rev-order-v1 1.203.0 → 1.205.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.
|
@@ -16,7 +16,12 @@ message RequestChangeOrderStatusRequest {
|
|
|
16
16
|
}];
|
|
17
17
|
string payment_method = 3 [(validate.rules).string = {
|
|
18
18
|
min_len: 1,
|
|
19
|
-
in: [
|
|
19
|
+
in: [
|
|
20
|
+
"virtual_account",
|
|
21
|
+
"virtual_account_cake",
|
|
22
|
+
"bank_transfer",
|
|
23
|
+
"virtual_account_vpb_transfer"
|
|
24
|
+
],
|
|
20
25
|
}];
|
|
21
26
|
string customer_ticket_id = 4 [(validate.rules).string = {min_len: 1}];
|
|
22
27
|
string admin_id = 5 [(validate.rules).string = {min_len: 1}];
|
|
@@ -97,7 +102,7 @@ message ProcessOrderAsPostPaidRequest {
|
|
|
97
102
|
repeated PaymentStatusServiceMessage services = 12;
|
|
98
103
|
int64 payment_attempt_id = 13;
|
|
99
104
|
string vendor_order_id = 14;
|
|
100
|
-
int64 tax_amount = 15;
|
|
105
|
+
int64 tax_amount = 15;
|
|
101
106
|
int64 tax_rate = 16; // ex: 8% = 800, 8.5% = 850, 8.75% = 875
|
|
102
107
|
}
|
|
103
108
|
|
|
@@ -324,6 +324,7 @@ message GetDeliveryServiceByAdIdResponse {
|
|
|
324
324
|
repeated DeliveryTimeServiceAd intensive_bump = 9;
|
|
325
325
|
map<string, string> title_services = 10;
|
|
326
326
|
repeated AdStats ad_state = 11;
|
|
327
|
+
repeated ScheduleBumpAdStat auto_bump = 12;
|
|
327
328
|
}
|
|
328
329
|
|
|
329
330
|
message AdInfoAdStats {
|
|
@@ -1694,6 +1694,11 @@ export declare class GetDeliveryServiceByAdIdResponse extends Message<GetDeliver
|
|
|
1694
1694
|
*/
|
|
1695
1695
|
adState: AdStats[];
|
|
1696
1696
|
|
|
1697
|
+
/**
|
|
1698
|
+
* @generated from field: repeated ct_logic_uni_rev_order.v1.ScheduleBumpAdStat auto_bump = 12;
|
|
1699
|
+
*/
|
|
1700
|
+
autoBump: ScheduleBumpAdStat[];
|
|
1701
|
+
|
|
1697
1702
|
constructor(data?: PartialMessage<GetDeliveryServiceByAdIdResponse>);
|
|
1698
1703
|
|
|
1699
1704
|
static readonly runtime: typeof proto3;
|
|
@@ -479,6 +479,7 @@ export const GetDeliveryServiceByAdIdResponse = proto3.makeMessageType(
|
|
|
479
479
|
{ no: 9, name: "intensive_bump", kind: "message", T: DeliveryTimeServiceAd, repeated: true },
|
|
480
480
|
{ no: 10, name: "title_services", kind: "map", K: 9 /* ScalarType.STRING */, V: {kind: "scalar", T: 9 /* ScalarType.STRING */} },
|
|
481
481
|
{ no: 11, name: "ad_state", kind: "message", T: AdStats, repeated: true },
|
|
482
|
+
{ no: 12, name: "auto_bump", kind: "message", T: ScheduleBumpAdStat, repeated: true },
|
|
482
483
|
],
|
|
483
484
|
);
|
|
484
485
|
|