@cinerino/sdk 3.157.0-alpha.3 → 3.157.0-alpha.5
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/lib/abstract/chevre/reservation.d.ts +0 -3
- package/lib/abstract/chevre/reservation.js +11 -16
- package/lib/bundle.js +166 -168
- package/package.json +2 -2
|
@@ -93,22 +93,17 @@ var ReservationService = /** @class */ (function (_super) {
|
|
|
93
93
|
/**
|
|
94
94
|
* 予約取得
|
|
95
95
|
*/
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
return [2 /*return*/, response.json()];
|
|
108
|
-
}); }); })];
|
|
109
|
-
});
|
|
110
|
-
});
|
|
111
|
-
};
|
|
96
|
+
// public async findById<T extends factory.reservationType>(params: {
|
|
97
|
+
// id: string;
|
|
98
|
+
// }): Promise<factory.reservation.IReservation<T>> {
|
|
99
|
+
// return this.fetch({
|
|
100
|
+
// uri: `/reservations/${encodeURIComponent(String(params.id))}`,
|
|
101
|
+
// method: 'GET',
|
|
102
|
+
// // qs: params,
|
|
103
|
+
// expectedStatusCodes: [OK]
|
|
104
|
+
// })
|
|
105
|
+
// .then(async (response) => response.json());
|
|
106
|
+
// }
|
|
112
107
|
/**
|
|
113
108
|
* 予約部分更新
|
|
114
109
|
*/
|