@bitmovin/api-sdk 1.171.0 → 1.172.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.
- package/README.md +1 -1
- package/dist/bitmovin-api-sdk.browser.js +29 -1
- package/dist/bitmovin-api-sdk.browser.min.js +1 -1
- package/dist/common/RestClient.js +1 -1
- package/dist/models/AccountInformation.d.ts +6 -0
- package/dist/models/AccountInformation.js +1 -0
- package/dist/models/AnalyticsAttribute.d.ts +1 -0
- package/dist/models/AnalyticsAttribute.js +1 -0
- package/dist/models/Marketplace.d.ts +10 -0
- package/dist/models/Marketplace.js +14 -0
- package/dist/models/index.d.ts +1 -0
- package/dist/models/index.js +1 -0
- package/package.json +1 -1
|
@@ -240,7 +240,7 @@ var HeaderHandler = /** @class */ (function (_super) {
|
|
|
240
240
|
var headers = {
|
|
241
241
|
'X-Api-Key': apiKey,
|
|
242
242
|
'X-Api-Client': 'bitmovin-api-sdk-javascript',
|
|
243
|
-
'X-Api-Client-Version': '1.
|
|
243
|
+
'X-Api-Client-Version': '1.172.0',
|
|
244
244
|
'Content-Type': 'application/json'
|
|
245
245
|
};
|
|
246
246
|
if (tenantOrgId) {
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import AccountApiKey from './AccountApiKey';
|
|
2
2
|
import BitmovinResource from './BitmovinResource';
|
|
3
|
+
import Marketplace from './Marketplace';
|
|
3
4
|
/**
|
|
4
5
|
* @export
|
|
5
6
|
* @class AccountInformation
|
|
@@ -46,6 +47,11 @@ export declare class AccountInformation extends BitmovinResource {
|
|
|
46
47
|
* @memberof AccountInformation
|
|
47
48
|
*/
|
|
48
49
|
verified?: boolean;
|
|
50
|
+
/**
|
|
51
|
+
* @type {Marketplace}
|
|
52
|
+
* @memberof AccountInformation
|
|
53
|
+
*/
|
|
54
|
+
marketplace?: Marketplace;
|
|
49
55
|
constructor(obj?: Partial<AccountInformation>);
|
|
50
56
|
}
|
|
51
57
|
export default AccountInformation;
|
|
@@ -37,6 +37,7 @@ var AccountInformation = /** @class */ (function (_super) {
|
|
|
37
37
|
_this.phone = (0, Mapper_1.map)(obj.phone);
|
|
38
38
|
_this.company = (0, Mapper_1.map)(obj.company);
|
|
39
39
|
_this.verified = (0, Mapper_1.map)(obj.verified);
|
|
40
|
+
_this.marketplace = (0, Mapper_1.map)(obj.marketplace);
|
|
40
41
|
return _this;
|
|
41
42
|
}
|
|
42
43
|
return AccountInformation;
|
|
@@ -61,6 +61,7 @@ export declare enum AnalyticsAttribute {
|
|
|
61
61
|
ERROR_CODE = "ERROR_CODE",
|
|
62
62
|
ERROR_MESSAGE = "ERROR_MESSAGE",
|
|
63
63
|
ERROR_RATE = "ERROR_RATE",
|
|
64
|
+
ERROR_PERCENTAGE = "ERROR_PERCENTAGE",
|
|
64
65
|
EXPERIMENT_NAME = "EXPERIMENT_NAME",
|
|
65
66
|
FUNCTION = "FUNCTION",
|
|
66
67
|
HOUR = "HOUR",
|
|
@@ -65,6 +65,7 @@ var AnalyticsAttribute;
|
|
|
65
65
|
AnalyticsAttribute["ERROR_CODE"] = "ERROR_CODE";
|
|
66
66
|
AnalyticsAttribute["ERROR_MESSAGE"] = "ERROR_MESSAGE";
|
|
67
67
|
AnalyticsAttribute["ERROR_RATE"] = "ERROR_RATE";
|
|
68
|
+
AnalyticsAttribute["ERROR_PERCENTAGE"] = "ERROR_PERCENTAGE";
|
|
68
69
|
AnalyticsAttribute["EXPERIMENT_NAME"] = "EXPERIMENT_NAME";
|
|
69
70
|
AnalyticsAttribute["FUNCTION"] = "FUNCTION";
|
|
70
71
|
AnalyticsAttribute["HOUR"] = "HOUR";
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.Marketplace = void 0;
|
|
4
|
+
/**
|
|
5
|
+
* Type of signup marketplace
|
|
6
|
+
* @export
|
|
7
|
+
* @enum {string}
|
|
8
|
+
*/
|
|
9
|
+
var Marketplace;
|
|
10
|
+
(function (Marketplace) {
|
|
11
|
+
Marketplace["AWS"] = "AWS";
|
|
12
|
+
Marketplace["AZURE"] = "AZURE";
|
|
13
|
+
})(Marketplace = exports.Marketplace || (exports.Marketplace = {}));
|
|
14
|
+
exports.default = Marketplace;
|
package/dist/models/index.d.ts
CHANGED
|
@@ -478,6 +478,7 @@ export * from './ManifestGenerator';
|
|
|
478
478
|
export * from './ManifestResource';
|
|
479
479
|
export * from './ManifestType';
|
|
480
480
|
export * from './ManifestTypeResponse';
|
|
481
|
+
export * from './Marketplace';
|
|
481
482
|
export * from './MarlinDrm';
|
|
482
483
|
export * from './MaxCtuSize';
|
|
483
484
|
export * from './MaxTransformUnitSize';
|
package/dist/models/index.js
CHANGED
|
@@ -494,6 +494,7 @@ __exportStar(require("./ManifestGenerator"), exports);
|
|
|
494
494
|
__exportStar(require("./ManifestResource"), exports);
|
|
495
495
|
__exportStar(require("./ManifestType"), exports);
|
|
496
496
|
__exportStar(require("./ManifestTypeResponse"), exports);
|
|
497
|
+
__exportStar(require("./Marketplace"), exports);
|
|
497
498
|
__exportStar(require("./MarlinDrm"), exports);
|
|
498
499
|
__exportStar(require("./MaxCtuSize"), exports);
|
|
499
500
|
__exportStar(require("./MaxTransformUnitSize"), exports);
|