@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.
|
@@ -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
|
*/
|
package/lib/bundle.js
CHANGED
|
@@ -8238,22 +8238,17 @@ var ReservationService = /** @class */ (function (_super) {
|
|
|
8238
8238
|
/**
|
|
8239
8239
|
* 予約取得
|
|
8240
8240
|
*/
|
|
8241
|
-
|
|
8242
|
-
|
|
8243
|
-
|
|
8244
|
-
|
|
8245
|
-
|
|
8246
|
-
|
|
8247
|
-
|
|
8248
|
-
|
|
8249
|
-
|
|
8250
|
-
|
|
8251
|
-
|
|
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.
|
|
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.
|
|
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",
|