@cinerino/sdk 3.40.0-alpha.4 → 3.40.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/CHANGELOG.md CHANGED
@@ -15,6 +15,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/).
15
15
  - Chevreに会員(自分)削除を追加
16
16
  - Chevreにマイ注文検索を追加
17
17
  - Chevreにマイクレジットカード管理を追加
18
+ - Chevreにマイペイメントカード入出金検索を追加
18
19
 
19
20
  ### Changed
20
21
 
@@ -8727,6 +8727,36 @@ var PersonOwnershipInfoService = /** @class */ (function (_super) {
8727
8727
  });
8728
8728
  });
8729
8729
  };
8730
+ /**
8731
+ * マイペイメントカード入出金検索
8732
+ */
8733
+ PersonOwnershipInfoService.prototype.searchPaymentCardMoneyTransferActions = function (params) {
8734
+ return __awaiter(this, void 0, void 0, function () {
8735
+ var id;
8736
+ var _this = this;
8737
+ return __generator(this, function (_a) {
8738
+ id = (typeof params.id === 'string') ? params.id : 'me';
8739
+ return [2 /*return*/, this.fetch({
8740
+ uri: "/people/" + id + "/ownershipInfos/" + params.ownershipInfoId + "/actions/moneyTransfer",
8741
+ method: 'GET',
8742
+ qs: params,
8743
+ expectedStatusCodes: [http_status_1.OK]
8744
+ })
8745
+ .then(function (response) { return __awaiter(_this, void 0, void 0, function () {
8746
+ var _a;
8747
+ return __generator(this, function (_b) {
8748
+ switch (_b.label) {
8749
+ case 0:
8750
+ _a = {};
8751
+ return [4 /*yield*/, response.json()];
8752
+ case 1: return [2 /*return*/, (_a.data = _b.sent(),
8753
+ _a)];
8754
+ }
8755
+ });
8756
+ }); })];
8757
+ });
8758
+ });
8759
+ };
8730
8760
  return PersonOwnershipInfoService;
8731
8761
  }(service_1.Service));
8732
8762
  exports.PersonOwnershipInfoService = PersonOwnershipInfoService;
package/lib/bundle.js CHANGED
@@ -8727,6 +8727,36 @@ var PersonOwnershipInfoService = /** @class */ (function (_super) {
8727
8727
  });
8728
8728
  });
8729
8729
  };
8730
+ /**
8731
+ * マイペイメントカード入出金検索
8732
+ */
8733
+ PersonOwnershipInfoService.prototype.searchPaymentCardMoneyTransferActions = function (params) {
8734
+ return __awaiter(this, void 0, void 0, function () {
8735
+ var id;
8736
+ var _this = this;
8737
+ return __generator(this, function (_a) {
8738
+ id = (typeof params.id === 'string') ? params.id : 'me';
8739
+ return [2 /*return*/, this.fetch({
8740
+ uri: "/people/" + id + "/ownershipInfos/" + params.ownershipInfoId + "/actions/moneyTransfer",
8741
+ method: 'GET',
8742
+ qs: params,
8743
+ expectedStatusCodes: [http_status_1.OK]
8744
+ })
8745
+ .then(function (response) { return __awaiter(_this, void 0, void 0, function () {
8746
+ var _a;
8747
+ return __generator(this, function (_b) {
8748
+ switch (_b.label) {
8749
+ case 0:
8750
+ _a = {};
8751
+ return [4 /*yield*/, response.json()];
8752
+ case 1: return [2 /*return*/, (_a.data = _b.sent(),
8753
+ _a)];
8754
+ }
8755
+ });
8756
+ }); })];
8757
+ });
8758
+ });
8759
+ };
8730
8760
  return PersonOwnershipInfoService;
8731
8761
  }(service_1.Service));
8732
8762
  exports.PersonOwnershipInfoService = PersonOwnershipInfoService;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cinerino/sdk",
3
- "version": "3.40.0-alpha.4",
3
+ "version": "3.40.0-alpha.5",
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.40.0-alpha.4",
100
+ "@cinerino/api-abstract-client": "3.40.0-alpha.5",
101
101
  "debug": "^3.2.6",
102
102
  "http-status": "^1.4.2",
103
103
  "idtoken-verifier": "^2.0.3",