@be-link/cs-cli-nodejs 0.0.44 → 0.0.45
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/package.json +1 -1
- package/types.d.ts +3 -3
package/package.json
CHANGED
package/types.d.ts
CHANGED
|
@@ -146,9 +146,9 @@ export interface IHotelItemInfo {
|
|
|
146
146
|
supplierId: string;
|
|
147
147
|
/** 娱乐信息 */
|
|
148
148
|
entertainmentInfo: {
|
|
149
|
-
ktv
|
|
150
|
-
card
|
|
151
|
-
swimmingPool
|
|
149
|
+
ktv?: EntertainmentInfo;
|
|
150
|
+
card?: EntertainmentInfo;
|
|
151
|
+
swimmingPool?: EntertainmentInfo;
|
|
152
152
|
};
|
|
153
153
|
}
|
|
154
154
|
/**
|