@cbm-common/cbm-types 0.0.324 → 0.0.325
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.
|
@@ -90,18 +90,12 @@ export declare namespace CbmChargesForOrderVehicleModel {
|
|
|
90
90
|
}
|
|
91
91
|
}
|
|
92
92
|
interface ListDetailParams {
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
order_vehicle_id: string;
|
|
96
|
-
charges_type: TChargesType;
|
|
93
|
+
order_vehicle_id?: string;
|
|
94
|
+
charges_type?: TChargesType;
|
|
97
95
|
}
|
|
98
96
|
interface ListDetailResponse {
|
|
99
97
|
success: boolean;
|
|
100
|
-
|
|
101
|
-
pageSize: number;
|
|
102
|
-
pages: number;
|
|
103
|
-
total: number;
|
|
104
|
-
items: ListDetailResponse.Item[];
|
|
98
|
+
data: ListDetailResponse.Item[];
|
|
105
99
|
}
|
|
106
100
|
namespace ListDetailResponse {
|
|
107
101
|
interface Item {
|