@bitmovin/api-sdk 1.251.0 → 1.252.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 +357 -3
- package/dist/bitmovin-api-sdk.browser.min.js +1 -1
- package/dist/common/RestClient.js +1 -1
- package/dist/encoding/encodings/live/LiveApi.d.ts +2 -0
- package/dist/encoding/encodings/live/LiveApi.js +2 -0
- package/dist/encoding/encodings/live/heartbeat/HeartbeatApi.d.ts +19 -0
- package/dist/encoding/encodings/live/heartbeat/HeartbeatApi.js +48 -0
- package/dist/models/DashManifest.d.ts +6 -0
- package/dist/models/DashManifest.js +1 -0
- package/dist/models/LiveEncodingEventName.d.ts +4 -1
- package/dist/models/LiveEncodingEventName.js +3 -0
- package/dist/models/LiveEncodingHeartbeat.d.ts +29 -0
- package/dist/models/LiveEncodingHeartbeat.js +24 -0
- package/dist/models/LiveEncodingHeartbeatEvent.d.ts +20 -0
- package/dist/models/LiveEncodingHeartbeatEvent.js +21 -0
- package/dist/models/LiveEncodingHeartbeatEventDetails.d.ts +20 -0
- package/dist/models/LiveEncodingHeartbeatEventDetails.js +20 -0
- package/dist/models/LiveEncodingHeartbeatEventType.d.ts +12 -0
- package/dist/models/LiveEncodingHeartbeatEventType.js +16 -0
- package/dist/models/LiveEncodingHeartbeatIngest.d.ts +41 -0
- package/dist/models/LiveEncodingHeartbeatIngest.js +27 -0
- package/dist/models/LiveEncodingHeartbeatIngestPoint.d.ts +39 -0
- package/dist/models/LiveEncodingHeartbeatIngestPoint.js +24 -0
- package/dist/models/LiveEncodingHeartbeatIngestStream.d.ts +117 -0
- package/dist/models/LiveEncodingHeartbeatIngestStream.js +37 -0
- package/dist/models/LiveEncodingStatsEventDetails.d.ts +3 -9
- package/dist/models/LiveEncodingStatsEventDetails.js +1 -2
- package/dist/models/RtmpUserIngestInfo.d.ts +45 -0
- package/dist/models/RtmpUserIngestInfo.js +25 -0
- package/dist/models/index.d.ts +8 -0
- package/dist/models/index.js +8 -0
- package/package.json +1 -1
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Details about user info from rtmp ingest.
|
|
3
|
+
* @export
|
|
4
|
+
* @class RtmpUserIngestInfo
|
|
5
|
+
*/
|
|
6
|
+
export declare class RtmpUserIngestInfo {
|
|
7
|
+
/**
|
|
8
|
+
* Client public IP address.
|
|
9
|
+
* @type {string}
|
|
10
|
+
* @memberof RtmpUserIngestInfo
|
|
11
|
+
*/
|
|
12
|
+
address?: string;
|
|
13
|
+
/**
|
|
14
|
+
* RTMP application name.
|
|
15
|
+
* @type {string}
|
|
16
|
+
* @memberof RtmpUserIngestInfo
|
|
17
|
+
*/
|
|
18
|
+
app?: string;
|
|
19
|
+
/**
|
|
20
|
+
* Client stream key.
|
|
21
|
+
* @type {string}
|
|
22
|
+
* @memberof RtmpUserIngestInfo
|
|
23
|
+
*/
|
|
24
|
+
streamKey?: string;
|
|
25
|
+
/**
|
|
26
|
+
* Flash version string / encoder identity.
|
|
27
|
+
* @type {string}
|
|
28
|
+
* @memberof RtmpUserIngestInfo
|
|
29
|
+
*/
|
|
30
|
+
flashVersion?: string;
|
|
31
|
+
/**
|
|
32
|
+
* Session/client connection ID.
|
|
33
|
+
* @type {string}
|
|
34
|
+
* @memberof RtmpUserIngestInfo
|
|
35
|
+
*/
|
|
36
|
+
clientId?: string;
|
|
37
|
+
/**
|
|
38
|
+
* Server action.
|
|
39
|
+
* @type {string}
|
|
40
|
+
* @memberof RtmpUserIngestInfo
|
|
41
|
+
*/
|
|
42
|
+
eventType?: string;
|
|
43
|
+
constructor(obj?: Partial<RtmpUserIngestInfo>);
|
|
44
|
+
}
|
|
45
|
+
export default RtmpUserIngestInfo;
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.RtmpUserIngestInfo = void 0;
|
|
4
|
+
var Mapper_1 = require("../common/Mapper");
|
|
5
|
+
/**
|
|
6
|
+
* Details about user info from rtmp ingest.
|
|
7
|
+
* @export
|
|
8
|
+
* @class RtmpUserIngestInfo
|
|
9
|
+
*/
|
|
10
|
+
var RtmpUserIngestInfo = /** @class */ (function () {
|
|
11
|
+
function RtmpUserIngestInfo(obj) {
|
|
12
|
+
if (!obj) {
|
|
13
|
+
return;
|
|
14
|
+
}
|
|
15
|
+
this.address = (0, Mapper_1.map)(obj.address);
|
|
16
|
+
this.app = (0, Mapper_1.map)(obj.app);
|
|
17
|
+
this.streamKey = (0, Mapper_1.map)(obj.streamKey);
|
|
18
|
+
this.flashVersion = (0, Mapper_1.map)(obj.flashVersion);
|
|
19
|
+
this.clientId = (0, Mapper_1.map)(obj.clientId);
|
|
20
|
+
this.eventType = (0, Mapper_1.map)(obj.eventType);
|
|
21
|
+
}
|
|
22
|
+
return RtmpUserIngestInfo;
|
|
23
|
+
}());
|
|
24
|
+
exports.RtmpUserIngestInfo = RtmpUserIngestInfo;
|
|
25
|
+
exports.default = RtmpUserIngestInfo;
|
package/dist/models/index.d.ts
CHANGED
|
@@ -490,6 +490,13 @@ export * from './LiveDashManifest';
|
|
|
490
490
|
export * from './LiveEncoding';
|
|
491
491
|
export * from './LiveEncodingCodec';
|
|
492
492
|
export * from './LiveEncodingEventName';
|
|
493
|
+
export * from './LiveEncodingHeartbeat';
|
|
494
|
+
export * from './LiveEncodingHeartbeatEvent';
|
|
495
|
+
export * from './LiveEncodingHeartbeatEventDetails';
|
|
496
|
+
export * from './LiveEncodingHeartbeatEventType';
|
|
497
|
+
export * from './LiveEncodingHeartbeatIngest';
|
|
498
|
+
export * from './LiveEncodingHeartbeatIngestPoint';
|
|
499
|
+
export * from './LiveEncodingHeartbeatIngestStream';
|
|
493
500
|
export * from './LiveEncodingHeartbeatWebhook';
|
|
494
501
|
export * from './LiveEncodingOptionsStatistics';
|
|
495
502
|
export * from './LiveEncodingStats';
|
|
@@ -656,6 +663,7 @@ export * from './ReuploadSettings';
|
|
|
656
663
|
export * from './RotateFilter';
|
|
657
664
|
export * from './RtmpIngestPoint';
|
|
658
665
|
export * from './RtmpInput';
|
|
666
|
+
export * from './RtmpUserIngestInfo';
|
|
659
667
|
export * from './S3AccessStyle';
|
|
660
668
|
export * from './S3Input';
|
|
661
669
|
export * from './S3Output';
|
package/dist/models/index.js
CHANGED
|
@@ -506,6 +506,13 @@ __exportStar(require("./LiveDashManifest"), exports);
|
|
|
506
506
|
__exportStar(require("./LiveEncoding"), exports);
|
|
507
507
|
__exportStar(require("./LiveEncodingCodec"), exports);
|
|
508
508
|
__exportStar(require("./LiveEncodingEventName"), exports);
|
|
509
|
+
__exportStar(require("./LiveEncodingHeartbeat"), exports);
|
|
510
|
+
__exportStar(require("./LiveEncodingHeartbeatEvent"), exports);
|
|
511
|
+
__exportStar(require("./LiveEncodingHeartbeatEventDetails"), exports);
|
|
512
|
+
__exportStar(require("./LiveEncodingHeartbeatEventType"), exports);
|
|
513
|
+
__exportStar(require("./LiveEncodingHeartbeatIngest"), exports);
|
|
514
|
+
__exportStar(require("./LiveEncodingHeartbeatIngestPoint"), exports);
|
|
515
|
+
__exportStar(require("./LiveEncodingHeartbeatIngestStream"), exports);
|
|
509
516
|
__exportStar(require("./LiveEncodingHeartbeatWebhook"), exports);
|
|
510
517
|
__exportStar(require("./LiveEncodingOptionsStatistics"), exports);
|
|
511
518
|
__exportStar(require("./LiveEncodingStats"), exports);
|
|
@@ -672,6 +679,7 @@ __exportStar(require("./ReuploadSettings"), exports);
|
|
|
672
679
|
__exportStar(require("./RotateFilter"), exports);
|
|
673
680
|
__exportStar(require("./RtmpIngestPoint"), exports);
|
|
674
681
|
__exportStar(require("./RtmpInput"), exports);
|
|
682
|
+
__exportStar(require("./RtmpUserIngestInfo"), exports);
|
|
675
683
|
__exportStar(require("./S3AccessStyle"), exports);
|
|
676
684
|
__exportStar(require("./S3Input"), exports);
|
|
677
685
|
__exportStar(require("./S3Output"), exports);
|