@cinerino/sdk 3.33.0-alpha.2 → 3.33.0-alpha.3
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 +1 -0
- package/lib/bundle.js +20 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
package/lib/bundle.js
CHANGED
|
@@ -8553,6 +8553,26 @@ var PersonOwnershipInfoService = /** @class */ (function (_super) {
|
|
|
8553
8553
|
});
|
|
8554
8554
|
});
|
|
8555
8555
|
};
|
|
8556
|
+
/**
|
|
8557
|
+
* 会員所有権削除
|
|
8558
|
+
*/
|
|
8559
|
+
PersonOwnershipInfoService.prototype.deleteOwnershipInfoById = function (params) {
|
|
8560
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
8561
|
+
return __generator(this, function (_a) {
|
|
8562
|
+
switch (_a.label) {
|
|
8563
|
+
case 0: return [4 /*yield*/, this.fetch({
|
|
8564
|
+
uri: "/people/" + String(params.id) + "/ownershipInfos/" + String(params.ownershipInfoId),
|
|
8565
|
+
method: 'DELETE',
|
|
8566
|
+
expectedStatusCodes: [http_status_1.NO_CONTENT],
|
|
8567
|
+
qs: { iss: params.iss }
|
|
8568
|
+
})];
|
|
8569
|
+
case 1:
|
|
8570
|
+
_a.sent();
|
|
8571
|
+
return [2 /*return*/];
|
|
8572
|
+
}
|
|
8573
|
+
});
|
|
8574
|
+
});
|
|
8575
|
+
};
|
|
8556
8576
|
return PersonOwnershipInfoService;
|
|
8557
8577
|
}(service_1.Service));
|
|
8558
8578
|
exports.PersonOwnershipInfoService = PersonOwnershipInfoService;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cinerino/sdk",
|
|
3
|
-
"version": "3.33.0-alpha.
|
|
3
|
+
"version": "3.33.0-alpha.3",
|
|
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.33.0-alpha.
|
|
100
|
+
"@cinerino/api-abstract-client": "3.33.0-alpha.3",
|
|
101
101
|
"debug": "^3.2.6",
|
|
102
102
|
"http-status": "^1.4.2",
|
|
103
103
|
"idtoken-verifier": "^2.0.3",
|