@bitmovin/api-sdk 1.255.1 → 1.256.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 +536 -1
- package/dist/bitmovin-api-sdk.browser.min.js +1 -1
- package/dist/common/RestClient.js +1 -1
- package/dist/encoding/live/LiveApi.d.ts +4 -0
- package/dist/encoding/live/LiveApi.js +4 -0
- package/dist/encoding/live/dnsMappings/DnsMappingResponseListQueryParams.d.ts +28 -0
- package/dist/encoding/live/dnsMappings/DnsMappingResponseListQueryParams.js +29 -0
- package/dist/encoding/live/dnsMappings/DnsMappingsApi.d.ts +21 -0
- package/dist/encoding/live/dnsMappings/DnsMappingsApi.js +53 -0
- package/dist/encoding/live/encodings/EncodingsApi.d.ts +15 -0
- package/dist/encoding/live/encodings/EncodingsApi.js +37 -0
- package/dist/encoding/live/encodings/actions/ActionsApi.d.ts +21 -0
- package/dist/encoding/live/encodings/actions/ActionsApi.js +49 -0
- package/dist/encoding/live/encodings/dnsMappings/DnsMappingResponseListQueryParams.d.ts +28 -0
- package/dist/encoding/live/encodings/dnsMappings/DnsMappingResponseListQueryParams.js +29 -0
- package/dist/encoding/live/encodings/dnsMappings/DnsMappingsApi.d.ts +56 -0
- package/dist/encoding/live/encodings/dnsMappings/DnsMappingsApi.js +121 -0
- package/dist/models/DnsMappingRequest.d.ts +26 -0
- package/dist/models/DnsMappingRequest.js +21 -0
- package/dist/models/DnsMappingResponse.d.ts +33 -0
- package/dist/models/DnsMappingResponse.js +41 -0
- package/dist/models/UpdateEncodingRtmpIngestPointRequest.d.ts +15 -0
- package/dist/models/UpdateEncodingRtmpIngestPointRequest.js +20 -0
- package/dist/models/UpdateEncodingRtmpIngestPointResponse.d.ts +8 -0
- package/dist/models/UpdateEncodingRtmpIngestPointResponse.js +17 -0
- package/dist/models/index.d.ts +4 -0
- package/dist/models/index.js +4 -0
- package/package.json +1 -1
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __extends = (this && this.__extends) || (function () {
|
|
3
|
+
var extendStatics = function (d, b) {
|
|
4
|
+
extendStatics = Object.setPrototypeOf ||
|
|
5
|
+
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
6
|
+
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
|
|
7
|
+
return extendStatics(d, b);
|
|
8
|
+
};
|
|
9
|
+
return function (d, b) {
|
|
10
|
+
if (typeof b !== "function" && b !== null)
|
|
11
|
+
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
|
|
12
|
+
extendStatics(d, b);
|
|
13
|
+
function __() { this.constructor = d; }
|
|
14
|
+
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
15
|
+
};
|
|
16
|
+
})();
|
|
17
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
18
|
+
exports.DnsMappingResponse = void 0;
|
|
19
|
+
var Mapper_1 = require("../common/Mapper");
|
|
20
|
+
var BitmovinResource_1 = require("./BitmovinResource");
|
|
21
|
+
/**
|
|
22
|
+
* @export
|
|
23
|
+
* @class DnsMappingResponse
|
|
24
|
+
*/
|
|
25
|
+
var DnsMappingResponse = /** @class */ (function (_super) {
|
|
26
|
+
__extends(DnsMappingResponse, _super);
|
|
27
|
+
function DnsMappingResponse(obj) {
|
|
28
|
+
var _this = _super.call(this, obj) || this;
|
|
29
|
+
if (!obj) {
|
|
30
|
+
return _this;
|
|
31
|
+
}
|
|
32
|
+
_this.subdomain = (0, Mapper_1.map)(obj.subdomain);
|
|
33
|
+
_this.hostname = (0, Mapper_1.map)(obj.hostname);
|
|
34
|
+
_this.encodingId = (0, Mapper_1.map)(obj.encodingId);
|
|
35
|
+
_this.ip = (0, Mapper_1.map)(obj.ip);
|
|
36
|
+
return _this;
|
|
37
|
+
}
|
|
38
|
+
return DnsMappingResponse;
|
|
39
|
+
}(BitmovinResource_1.default));
|
|
40
|
+
exports.DnsMappingResponse = DnsMappingResponse;
|
|
41
|
+
exports.default = DnsMappingResponse;
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import RtmpIngestPoint from './RtmpIngestPoint';
|
|
2
|
+
/**
|
|
3
|
+
* @export
|
|
4
|
+
* @class UpdateEncodingRtmpIngestPointRequest
|
|
5
|
+
*/
|
|
6
|
+
export declare class UpdateEncodingRtmpIngestPointRequest {
|
|
7
|
+
/**
|
|
8
|
+
* List of ingest points to be updated for the encoding. The RTMPs application name and streamKey will be assigned to the encoding.
|
|
9
|
+
* @type {RtmpIngestPoint[]}
|
|
10
|
+
* @memberof UpdateEncodingRtmpIngestPointRequest
|
|
11
|
+
*/
|
|
12
|
+
ingestPoints?: RtmpIngestPoint[];
|
|
13
|
+
constructor(obj?: Partial<UpdateEncodingRtmpIngestPointRequest>);
|
|
14
|
+
}
|
|
15
|
+
export default UpdateEncodingRtmpIngestPointRequest;
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.UpdateEncodingRtmpIngestPointRequest = void 0;
|
|
4
|
+
var Mapper_1 = require("../common/Mapper");
|
|
5
|
+
var RtmpIngestPoint_1 = require("./RtmpIngestPoint");
|
|
6
|
+
/**
|
|
7
|
+
* @export
|
|
8
|
+
* @class UpdateEncodingRtmpIngestPointRequest
|
|
9
|
+
*/
|
|
10
|
+
var UpdateEncodingRtmpIngestPointRequest = /** @class */ (function () {
|
|
11
|
+
function UpdateEncodingRtmpIngestPointRequest(obj) {
|
|
12
|
+
if (!obj) {
|
|
13
|
+
return;
|
|
14
|
+
}
|
|
15
|
+
this.ingestPoints = (0, Mapper_1.mapArray)(obj.ingestPoints, RtmpIngestPoint_1.default);
|
|
16
|
+
}
|
|
17
|
+
return UpdateEncodingRtmpIngestPointRequest;
|
|
18
|
+
}());
|
|
19
|
+
exports.UpdateEncodingRtmpIngestPointRequest = UpdateEncodingRtmpIngestPointRequest;
|
|
20
|
+
exports.default = UpdateEncodingRtmpIngestPointRequest;
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.UpdateEncodingRtmpIngestPointResponse = void 0;
|
|
4
|
+
/**
|
|
5
|
+
* @export
|
|
6
|
+
* @class UpdateEncodingRtmpIngestPointResponse
|
|
7
|
+
*/
|
|
8
|
+
var UpdateEncodingRtmpIngestPointResponse = /** @class */ (function () {
|
|
9
|
+
function UpdateEncodingRtmpIngestPointResponse(obj) {
|
|
10
|
+
if (!obj) {
|
|
11
|
+
return;
|
|
12
|
+
}
|
|
13
|
+
}
|
|
14
|
+
return UpdateEncodingRtmpIngestPointResponse;
|
|
15
|
+
}());
|
|
16
|
+
exports.UpdateEncodingRtmpIngestPointResponse = UpdateEncodingRtmpIngestPointResponse;
|
|
17
|
+
exports.default = UpdateEncodingRtmpIngestPointResponse;
|
package/dist/models/index.d.ts
CHANGED
|
@@ -288,6 +288,8 @@ export * from './DeinterlaceMode';
|
|
|
288
288
|
export * from './DenoiseHqdn3dFilter';
|
|
289
289
|
export * from './DirectFileUploadInput';
|
|
290
290
|
export * from './DisplayAspectRatio';
|
|
291
|
+
export * from './DnsMappingRequest';
|
|
292
|
+
export * from './DnsMappingResponse';
|
|
291
293
|
export * from './DolbyAtmosAudioConfiguration';
|
|
292
294
|
export * from './DolbyAtmosDialogueIntelligence';
|
|
293
295
|
export * from './DolbyAtmosDynamicRangeCompression';
|
|
@@ -828,6 +830,8 @@ export * from './TuInterDepth';
|
|
|
828
830
|
export * from './TuIntraDepth';
|
|
829
831
|
export * from './Tweaks';
|
|
830
832
|
export * from './UnsharpFilter';
|
|
833
|
+
export * from './UpdateEncodingRtmpIngestPointRequest';
|
|
834
|
+
export * from './UpdateEncodingRtmpIngestPointResponse';
|
|
831
835
|
export * from './UpdateOrganizationRequest';
|
|
832
836
|
export * from './UtcTiming';
|
|
833
837
|
export * from './VariantStreamDroppingMode';
|
package/dist/models/index.js
CHANGED
|
@@ -304,6 +304,8 @@ __exportStar(require("./DeinterlaceMode"), exports);
|
|
|
304
304
|
__exportStar(require("./DenoiseHqdn3dFilter"), exports);
|
|
305
305
|
__exportStar(require("./DirectFileUploadInput"), exports);
|
|
306
306
|
__exportStar(require("./DisplayAspectRatio"), exports);
|
|
307
|
+
__exportStar(require("./DnsMappingRequest"), exports);
|
|
308
|
+
__exportStar(require("./DnsMappingResponse"), exports);
|
|
307
309
|
__exportStar(require("./DolbyAtmosAudioConfiguration"), exports);
|
|
308
310
|
__exportStar(require("./DolbyAtmosDialogueIntelligence"), exports);
|
|
309
311
|
__exportStar(require("./DolbyAtmosDynamicRangeCompression"), exports);
|
|
@@ -844,6 +846,8 @@ __exportStar(require("./TuInterDepth"), exports);
|
|
|
844
846
|
__exportStar(require("./TuIntraDepth"), exports);
|
|
845
847
|
__exportStar(require("./Tweaks"), exports);
|
|
846
848
|
__exportStar(require("./UnsharpFilter"), exports);
|
|
849
|
+
__exportStar(require("./UpdateEncodingRtmpIngestPointRequest"), exports);
|
|
850
|
+
__exportStar(require("./UpdateEncodingRtmpIngestPointResponse"), exports);
|
|
847
851
|
__exportStar(require("./UpdateOrganizationRequest"), exports);
|
|
848
852
|
__exportStar(require("./UtcTiming"), exports);
|
|
849
853
|
__exportStar(require("./VariantStreamDroppingMode"), exports);
|