@cinerino/sdk 3.157.0-alpha.4 → 3.157.0-alpha.6

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.
@@ -15,9 +15,6 @@ export declare class ReservationService extends Service {
15
15
  /**
16
16
  * 予約取得
17
17
  */
18
- findById<T extends factory.reservationType>(params: {
19
- id: string;
20
- }): Promise<factory.reservation.IReservation<T>>;
21
18
  /**
22
19
  * 予約部分更新
23
20
  */
@@ -93,22 +93,17 @@ var ReservationService = /** @class */ (function (_super) {
93
93
  /**
94
94
  * 予約取得
95
95
  */
96
- ReservationService.prototype.findById = function (params) {
97
- return __awaiter(this, void 0, void 0, function () {
98
- var _this = this;
99
- return __generator(this, function (_a) {
100
- return [2 /*return*/, this.fetch({
101
- uri: "/reservations/" + encodeURIComponent(String(params.id)),
102
- method: 'GET',
103
- // qs: params,
104
- expectedStatusCodes: [http_status_1.OK]
105
- })
106
- .then(function (response) { return __awaiter(_this, void 0, void 0, function () { return __generator(this, function (_a) {
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
  */
package/lib/bundle.js CHANGED
@@ -8238,22 +8238,17 @@ var ReservationService = /** @class */ (function (_super) {
8238
8238
  /**
8239
8239
  * 予約取得
8240
8240
  */
8241
- ReservationService.prototype.findById = function (params) {
8242
- return __awaiter(this, void 0, void 0, function () {
8243
- var _this = this;
8244
- return __generator(this, function (_a) {
8245
- return [2 /*return*/, this.fetch({
8246
- uri: "/reservations/" + encodeURIComponent(String(params.id)),
8247
- method: 'GET',
8248
- // qs: params,
8249
- expectedStatusCodes: [http_status_1.OK]
8250
- })
8251
- .then(function (response) { return __awaiter(_this, void 0, void 0, function () { return __generator(this, function (_a) {
8252
- return [2 /*return*/, response.json()];
8253
- }); }); })];
8254
- });
8255
- });
8256
- };
8241
+ // public async findById<T extends factory.reservationType>(params: {
8242
+ // id: string;
8243
+ // }): Promise<factory.reservation.IReservation<T>> {
8244
+ // return this.fetch({
8245
+ // uri: `/reservations/${encodeURIComponent(String(params.id))}`,
8246
+ // method: 'GET',
8247
+ // // qs: params,
8248
+ // expectedStatusCodes: [OK]
8249
+ // })
8250
+ // .then(async (response) => response.json());
8251
+ // }
8257
8252
  /**
8258
8253
  * 予約部分更新
8259
8254
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cinerino/sdk",
3
- "version": "3.157.0-alpha.4",
3
+ "version": "3.157.0-alpha.6",
4
4
  "description": "Cinerino SDK",
5
5
  "main": "./lib/index.js",
6
6
  "browser": {
@@ -97,7 +97,7 @@
97
97
  "watchify": "^3.11.1"
98
98
  },
99
99
  "dependencies": {
100
- "@chevre/factory": "4.313.0-alpha.18",
100
+ "@chevre/factory": "4.313.0-alpha.23",
101
101
  "debug": "^3.2.6",
102
102
  "http-status": "^1.4.2",
103
103
  "idtoken-verifier": "^2.0.3",