@be-link/cs-cli-nodejs 0.0.63 → 0.0.64
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.
|
@@ -8,7 +8,7 @@ declare class ShuttleBusSupplierService extends BaseService implements ShuttleBu
|
|
|
8
8
|
upsertShuttleBusPickupPoint(request: ShuttleBusSupplier.Request.UpsertShuttleBusPickupPoint): Promise<ShuttleBusSupplier.Response.UpsertShuttleBusPickupPoint>;
|
|
9
9
|
getProductAssociatedShuttleSupplierList(request: ShuttleBusSupplier.Request.GetProductAssociatedShuttleSupplierList): Promise<ShuttleBusSupplier.Response.GetProductAssociatedShuttleSupplierList>;
|
|
10
10
|
bindShuttleBus(request: ShuttleBusSupplier.Request.BindShuttleBus): Promise<void>;
|
|
11
|
-
editShuttleBusProduct(request: ShuttleBusSupplier.Request.
|
|
11
|
+
editShuttleBusProduct(request: ShuttleBusSupplier.Request.EditShuttleBusProduct): Promise<void>;
|
|
12
12
|
}
|
|
13
13
|
declare const shuttleBusSupplierService: ShuttleBusSupplierService;
|
|
14
14
|
export default shuttleBusSupplierService;
|
|
@@ -122,7 +122,7 @@ export declare namespace ShuttleBusSupplier {
|
|
|
122
122
|
bindRouteIds: string[];
|
|
123
123
|
unbindRouteIds: string[];
|
|
124
124
|
}
|
|
125
|
-
interface
|
|
125
|
+
interface EditShuttleBusProduct {
|
|
126
126
|
itemId: string;
|
|
127
127
|
routeId: string;
|
|
128
128
|
/** 销售价 */
|
|
@@ -181,6 +181,6 @@ export declare namespace ShuttleBusSupplier {
|
|
|
181
181
|
/** 绑定班车供应商 */
|
|
182
182
|
bindShuttleBus(request: Request.BindShuttleBus): Promise<void>;
|
|
183
183
|
/** 编辑班车供应商 */
|
|
184
|
-
editShuttleBusProduct(request: Request.
|
|
184
|
+
editShuttleBusProduct(request: Request.EditShuttleBusProduct): Promise<void>;
|
|
185
185
|
}
|
|
186
186
|
}
|