@cinerino/sdk 3.78.0 → 3.81.0

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.
@@ -3376,6 +3376,10 @@ var TaskName;
3376
3376
  * 決済資産取引確定
3377
3377
  */
3378
3378
  TaskName["ConfirmPayTransaction"] = "confirmPayTransaction";
3379
+ /**
3380
+ * 予約資産取引確定
3381
+ */
3382
+ TaskName["ConfirmReserveTransaction"] = "confirmReserveTransaction";
3379
3383
  /**
3380
3384
  * 会員削除
3381
3385
  */
@@ -21596,7 +21600,7 @@ module.exports = function inspect_(obj, options, depth, seen) {
21596
21600
  return inspect_(value, opts, depth + 1, seen);
21597
21601
  }
21598
21602
 
21599
- if (typeof obj === 'function') {
21603
+ if (typeof obj === 'function' && !isRegExp(obj)) { // in older engines, regexes are callable
21600
21604
  var name = nameOf(obj);
21601
21605
  var keys = arrObjKeys(obj, inspect);
21602
21606
  return '[Function' + (name ? ': ' + name : ' (anonymous)') + ']' + (keys.length > 0 ? ' { ' + $join.call(keys, ', ') + ' }' : '');
@@ -22,8 +22,7 @@ async function main() {
22
22
  object: {
23
23
  reservation: { id: 'CIN029375202258362-0' }
24
24
  },
25
- expires: new Date(),
26
- potentialActions: {}
25
+ expires: new Date()
27
26
  });
28
27
  console.log('canceled');
29
28
  }
package/lib/bundle.js CHANGED
@@ -3416,6 +3416,10 @@ var TaskName;
3416
3416
  * 決済資産取引確定
3417
3417
  */
3418
3418
  TaskName["ConfirmPayTransaction"] = "confirmPayTransaction";
3419
+ /**
3420
+ * 予約資産取引確定
3421
+ */
3422
+ TaskName["ConfirmReserveTransaction"] = "confirmReserveTransaction";
3419
3423
  /**
3420
3424
  * 会員削除
3421
3425
  */
@@ -21596,7 +21600,7 @@ module.exports = function inspect_(obj, options, depth, seen) {
21596
21600
  return inspect_(value, opts, depth + 1, seen);
21597
21601
  }
21598
21602
 
21599
- if (typeof obj === 'function') {
21603
+ if (typeof obj === 'function' && !isRegExp(obj)) { // in older engines, regexes are callable
21600
21604
  var name = nameOf(obj);
21601
21605
  var keys = arrObjKeys(obj, inspect);
21602
21606
  return '[Function' + (name ? ': ' + name : ' (anonymous)') + ']' + (keys.length > 0 ? ' { ' + $join.call(keys, ', ') + ' }' : '');
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cinerino/sdk",
3
- "version": "3.78.0",
3
+ "version": "3.81.0",
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.78.0",
100
+ "@cinerino/api-abstract-client": "3.81.0",
101
101
  "debug": "^3.2.6",
102
102
  "http-status": "^1.4.2",
103
103
  "idtoken-verifier": "^2.0.3",