@ikonintegration/mod-license-client 2.0.32 → 2.0.33
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.
|
@@ -91,10 +91,10 @@ export default class License {
|
|
|
91
91
|
(expanded ? "?expanded=true" : "");
|
|
92
92
|
return await req.exec();
|
|
93
93
|
}
|
|
94
|
-
async transferOrgLicenses(
|
|
94
|
+
async transferOrgLicenses(sourceOrg, targetOrg) {
|
|
95
95
|
const req = await this.api.newBaseRequest("POST");
|
|
96
|
-
req.path = "/
|
|
97
|
-
req.body = {
|
|
96
|
+
req.path = "/licenses/transfer";
|
|
97
|
+
req.body = { sourceOrg, targetOrg };
|
|
98
98
|
return await req.exec();
|
|
99
99
|
}
|
|
100
100
|
}
|