@cinerino/sdk 3.135.0-alpha.2 → 3.135.0-alpha.4
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.
|
@@ -123,7 +123,7 @@ async function main() {
|
|
|
123
123
|
console.log('予約を開始しました', transaction.object.subReservation?.map((r) => r.id)
|
|
124
124
|
.join(','));
|
|
125
125
|
console.log(transaction.object.subReservation?.map((r) => {
|
|
126
|
-
return `${r.id} ${r.reservationNumber} ${r.reservationStatus} ${r.
|
|
126
|
+
return `${r.id} ${r.reservationNumber} ${r.reservationStatus} ${r.underName?.name}`;
|
|
127
127
|
})
|
|
128
128
|
.join('\n'));
|
|
129
129
|
|
|
@@ -176,7 +176,7 @@ async function main() {
|
|
|
176
176
|
console.log('予約を開始しました', transaction.object.subReservation?.map((r) => r.id)
|
|
177
177
|
.join(','));
|
|
178
178
|
console.log(transaction.object.subReservation?.map((r) => {
|
|
179
|
-
return `${r.id} ${r.reservationNumber} ${r.reservationStatus} ${r.
|
|
179
|
+
return `${r.id} ${r.reservationNumber} ${r.reservationStatus} ${r.underName?.name}`;
|
|
180
180
|
})
|
|
181
181
|
.join('\n'));
|
|
182
182
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cinerino/sdk",
|
|
3
|
-
"version": "3.135.0-alpha.
|
|
3
|
+
"version": "3.135.0-alpha.4",
|
|
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
|
-
"@cinerino/api-abstract-client": "3.135.0-alpha.
|
|
100
|
+
"@cinerino/api-abstract-client": "3.135.0-alpha.4",
|
|
101
101
|
"debug": "^3.2.6",
|
|
102
102
|
"http-status": "^1.4.2",
|
|
103
103
|
"idtoken-verifier": "^2.0.3",
|