@bitmovin/api-sdk 1.251.0 → 1.253.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 +540 -4
- package/dist/bitmovin-api-sdk.browser.min.js +1 -1
- package/dist/common/RestClient.js +1 -1
- package/dist/encoding/encodings/EncodingsApi.d.ts +2 -0
- package/dist/encoding/encodings/EncodingsApi.js +2 -0
- package/dist/encoding/encodings/kantarWatermark/KantarWatermarkApi.d.ts +35 -0
- package/dist/encoding/encodings/kantarWatermark/KantarWatermarkApi.js +78 -0
- 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/ClockSynchronizationMode.d.ts +10 -0
- package/dist/models/ClockSynchronizationMode.js +14 -0
- package/dist/models/DashManifest.d.ts +6 -0
- package/dist/models/DashManifest.js +1 -0
- package/dist/models/IABTaxonomy.d.ts +6 -1
- package/dist/models/IABTaxonomy.js +2 -1
- package/dist/models/KantarWatermark.d.ts +52 -0
- package/dist/models/KantarWatermark.js +45 -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 +42 -5
- package/dist/models/LiveEncodingStatsEventDetails.js +8 -2
- package/dist/models/RtmpUserIngestInfo.d.ts +45 -0
- package/dist/models/RtmpUserIngestInfo.js +25 -0
- package/dist/models/index.d.ts +10 -0
- package/dist/models/index.js +10 -0
- package/package.json +2 -2
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
import LiveEncodingHeartbeatIngestPoint from './LiveEncodingHeartbeatIngestPoint';
|
|
2
|
+
import LiveEncodingHeartbeatIngestStream from './LiveEncodingHeartbeatIngestStream';
|
|
3
|
+
import LiveEncodingStatus from './LiveEncodingStatus';
|
|
4
|
+
import RtmpUserIngestInfo from './RtmpUserIngestInfo';
|
|
5
|
+
/**
|
|
6
|
+
* Information about the live ingestion status
|
|
7
|
+
* @export
|
|
8
|
+
* @class LiveEncodingHeartbeatIngest
|
|
9
|
+
*/
|
|
10
|
+
export declare class LiveEncodingHeartbeatIngest {
|
|
11
|
+
/**
|
|
12
|
+
* @type {LiveEncodingStatus}
|
|
13
|
+
* @memberof LiveEncodingHeartbeatIngest
|
|
14
|
+
*/
|
|
15
|
+
status?: LiveEncodingStatus;
|
|
16
|
+
/**
|
|
17
|
+
* Indicates whether the ingest is healthy.
|
|
18
|
+
* @type {boolean}
|
|
19
|
+
* @memberof LiveEncodingHeartbeatIngest
|
|
20
|
+
*/
|
|
21
|
+
healthy?: boolean;
|
|
22
|
+
/**
|
|
23
|
+
* Data about individual ingestPoints within the active live ingest.
|
|
24
|
+
* @type {LiveEncodingHeartbeatIngestPoint[]}
|
|
25
|
+
* @memberof LiveEncodingHeartbeatIngest
|
|
26
|
+
*/
|
|
27
|
+
ingestPoints?: LiveEncodingHeartbeatIngestPoint[];
|
|
28
|
+
/**
|
|
29
|
+
* Data about individual streams within the active live ingest.
|
|
30
|
+
* @type {LiveEncodingHeartbeatIngestStream[]}
|
|
31
|
+
* @memberof LiveEncodingHeartbeatIngest
|
|
32
|
+
*/
|
|
33
|
+
streams?: LiveEncodingHeartbeatIngestStream[];
|
|
34
|
+
/**
|
|
35
|
+
* @type {RtmpUserIngestInfo}
|
|
36
|
+
* @memberof LiveEncodingHeartbeatIngest
|
|
37
|
+
*/
|
|
38
|
+
rtmpUserIngestInfo?: RtmpUserIngestInfo;
|
|
39
|
+
constructor(obj?: Partial<LiveEncodingHeartbeatIngest>);
|
|
40
|
+
}
|
|
41
|
+
export default LiveEncodingHeartbeatIngest;
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.LiveEncodingHeartbeatIngest = void 0;
|
|
4
|
+
var Mapper_1 = require("../common/Mapper");
|
|
5
|
+
var LiveEncodingHeartbeatIngestPoint_1 = require("./LiveEncodingHeartbeatIngestPoint");
|
|
6
|
+
var LiveEncodingHeartbeatIngestStream_1 = require("./LiveEncodingHeartbeatIngestStream");
|
|
7
|
+
var RtmpUserIngestInfo_1 = require("./RtmpUserIngestInfo");
|
|
8
|
+
/**
|
|
9
|
+
* Information about the live ingestion status
|
|
10
|
+
* @export
|
|
11
|
+
* @class LiveEncodingHeartbeatIngest
|
|
12
|
+
*/
|
|
13
|
+
var LiveEncodingHeartbeatIngest = /** @class */ (function () {
|
|
14
|
+
function LiveEncodingHeartbeatIngest(obj) {
|
|
15
|
+
if (!obj) {
|
|
16
|
+
return;
|
|
17
|
+
}
|
|
18
|
+
this.status = (0, Mapper_1.map)(obj.status);
|
|
19
|
+
this.healthy = (0, Mapper_1.map)(obj.healthy);
|
|
20
|
+
this.ingestPoints = (0, Mapper_1.mapArray)(obj.ingestPoints, LiveEncodingHeartbeatIngestPoint_1.default);
|
|
21
|
+
this.streams = (0, Mapper_1.mapArray)(obj.streams, LiveEncodingHeartbeatIngestStream_1.default);
|
|
22
|
+
this.rtmpUserIngestInfo = (0, Mapper_1.map)(obj.rtmpUserIngestInfo, RtmpUserIngestInfo_1.default);
|
|
23
|
+
}
|
|
24
|
+
return LiveEncodingHeartbeatIngest;
|
|
25
|
+
}());
|
|
26
|
+
exports.LiveEncodingHeartbeatIngest = LiveEncodingHeartbeatIngest;
|
|
27
|
+
exports.default = LiveEncodingHeartbeatIngest;
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import InputType from './InputType';
|
|
2
|
+
/**
|
|
3
|
+
* Details about an individual ingestPoint within the live ingest.
|
|
4
|
+
* @export
|
|
5
|
+
* @class LiveEncodingHeartbeatIngestPoint
|
|
6
|
+
*/
|
|
7
|
+
export declare class LiveEncodingHeartbeatIngestPoint {
|
|
8
|
+
/**
|
|
9
|
+
* The name of the ingestPoint of the original Input resource.
|
|
10
|
+
* @type {string}
|
|
11
|
+
* @memberof LiveEncodingHeartbeatIngestPoint
|
|
12
|
+
*/
|
|
13
|
+
name?: string;
|
|
14
|
+
/**
|
|
15
|
+
* Id of the original Input resource. Note that multiple input points (main and backup) can be part of a single Input resource.
|
|
16
|
+
* @type {string}
|
|
17
|
+
* @memberof LiveEncodingHeartbeatIngestPoint
|
|
18
|
+
*/
|
|
19
|
+
inputId?: string;
|
|
20
|
+
/**
|
|
21
|
+
* @type {InputType}
|
|
22
|
+
* @memberof LiveEncodingHeartbeatIngestPoint
|
|
23
|
+
*/
|
|
24
|
+
inputType?: InputType;
|
|
25
|
+
/**
|
|
26
|
+
* Indicates whether this particular input is active.
|
|
27
|
+
* @type {boolean}
|
|
28
|
+
* @memberof LiveEncodingHeartbeatIngestPoint
|
|
29
|
+
*/
|
|
30
|
+
isActive?: boolean;
|
|
31
|
+
/**
|
|
32
|
+
* Indicates whether this particular input is a backup input.
|
|
33
|
+
* @type {boolean}
|
|
34
|
+
* @memberof LiveEncodingHeartbeatIngestPoint
|
|
35
|
+
*/
|
|
36
|
+
isBackup?: boolean;
|
|
37
|
+
constructor(obj?: Partial<LiveEncodingHeartbeatIngestPoint>);
|
|
38
|
+
}
|
|
39
|
+
export default LiveEncodingHeartbeatIngestPoint;
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.LiveEncodingHeartbeatIngestPoint = void 0;
|
|
4
|
+
var Mapper_1 = require("../common/Mapper");
|
|
5
|
+
/**
|
|
6
|
+
* Details about an individual ingestPoint within the live ingest.
|
|
7
|
+
* @export
|
|
8
|
+
* @class LiveEncodingHeartbeatIngestPoint
|
|
9
|
+
*/
|
|
10
|
+
var LiveEncodingHeartbeatIngestPoint = /** @class */ (function () {
|
|
11
|
+
function LiveEncodingHeartbeatIngestPoint(obj) {
|
|
12
|
+
if (!obj) {
|
|
13
|
+
return;
|
|
14
|
+
}
|
|
15
|
+
this.name = (0, Mapper_1.map)(obj.name);
|
|
16
|
+
this.inputId = (0, Mapper_1.map)(obj.inputId);
|
|
17
|
+
this.inputType = (0, Mapper_1.map)(obj.inputType);
|
|
18
|
+
this.isActive = (0, Mapper_1.map)(obj.isActive);
|
|
19
|
+
this.isBackup = (0, Mapper_1.map)(obj.isBackup);
|
|
20
|
+
}
|
|
21
|
+
return LiveEncodingHeartbeatIngestPoint;
|
|
22
|
+
}());
|
|
23
|
+
exports.LiveEncodingHeartbeatIngestPoint = LiveEncodingHeartbeatIngestPoint;
|
|
24
|
+
exports.default = LiveEncodingHeartbeatIngestPoint;
|
|
@@ -0,0 +1,117 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Details about an individual stream within the live ingest.
|
|
3
|
+
* @export
|
|
4
|
+
* @class LiveEncodingHeartbeatIngestStream
|
|
5
|
+
*/
|
|
6
|
+
export declare class LiveEncodingHeartbeatIngestStream {
|
|
7
|
+
/**
|
|
8
|
+
* Unique identifier of the stream.
|
|
9
|
+
* @type {string}
|
|
10
|
+
* @memberof LiveEncodingHeartbeatIngestStream
|
|
11
|
+
*/
|
|
12
|
+
streamId?: string;
|
|
13
|
+
/**
|
|
14
|
+
* Media type for the stream (e.g., \"video\" or \"audio\").
|
|
15
|
+
* @type {string}
|
|
16
|
+
* @memberof LiveEncodingHeartbeatIngestStream
|
|
17
|
+
*/
|
|
18
|
+
mediaType?: string;
|
|
19
|
+
/**
|
|
20
|
+
* Width of the video stream in pixels.
|
|
21
|
+
* @type {number}
|
|
22
|
+
* @memberof LiveEncodingHeartbeatIngestStream
|
|
23
|
+
*/
|
|
24
|
+
width?: number;
|
|
25
|
+
/**
|
|
26
|
+
* Height of the video stream in pixels.
|
|
27
|
+
* @type {number}
|
|
28
|
+
* @memberof LiveEncodingHeartbeatIngestStream
|
|
29
|
+
*/
|
|
30
|
+
height?: number;
|
|
31
|
+
/**
|
|
32
|
+
* Frame rate of the video stream.
|
|
33
|
+
* @type {number}
|
|
34
|
+
* @memberof LiveEncodingHeartbeatIngestStream
|
|
35
|
+
*/
|
|
36
|
+
rate?: number;
|
|
37
|
+
/**
|
|
38
|
+
* Codec of the stream.
|
|
39
|
+
* @type {string}
|
|
40
|
+
* @memberof LiveEncodingHeartbeatIngestStream
|
|
41
|
+
*/
|
|
42
|
+
codec?: string;
|
|
43
|
+
/**
|
|
44
|
+
* Aspect ratio of the video.
|
|
45
|
+
* @type {string}
|
|
46
|
+
* @memberof LiveEncodingHeartbeatIngestStream
|
|
47
|
+
*/
|
|
48
|
+
aspectRatio?: string;
|
|
49
|
+
/**
|
|
50
|
+
* Container format's bitrate of the stream, in bits per second.
|
|
51
|
+
* @type {number}
|
|
52
|
+
* @memberof LiveEncodingHeartbeatIngestStream
|
|
53
|
+
*/
|
|
54
|
+
bitrate?: number;
|
|
55
|
+
/**
|
|
56
|
+
* Average number of samples/frames read per second.
|
|
57
|
+
* @type {number}
|
|
58
|
+
* @memberof LiveEncodingHeartbeatIngestStream
|
|
59
|
+
*/
|
|
60
|
+
samplesReadPerSecondAvg?: number;
|
|
61
|
+
/**
|
|
62
|
+
* Incoming bitrate measured in bits per second.
|
|
63
|
+
* @type {number}
|
|
64
|
+
* @memberof LiveEncodingHeartbeatIngestStream
|
|
65
|
+
*/
|
|
66
|
+
incomingBitrate?: number;
|
|
67
|
+
/**
|
|
68
|
+
* Largest encountered key-frame interval in milliseconds.
|
|
69
|
+
* @type {number}
|
|
70
|
+
* @memberof LiveEncodingHeartbeatIngestStream
|
|
71
|
+
*/
|
|
72
|
+
keyFrameIntervalMax?: number;
|
|
73
|
+
/**
|
|
74
|
+
* Average key-frame interval in milliseconds.
|
|
75
|
+
* @type {number}
|
|
76
|
+
* @memberof LiveEncodingHeartbeatIngestStream
|
|
77
|
+
*/
|
|
78
|
+
keyFrameIntervalAvg?: number;
|
|
79
|
+
/**
|
|
80
|
+
* Last presentation timestamp (PTS) of the stream.
|
|
81
|
+
* @type {number}
|
|
82
|
+
* @memberof LiveEncodingHeartbeatIngestStream
|
|
83
|
+
*/
|
|
84
|
+
lastTimestamp?: number;
|
|
85
|
+
/**
|
|
86
|
+
* Timescale of lastTimestamp
|
|
87
|
+
* @type {number}
|
|
88
|
+
* @memberof LiveEncodingHeartbeatIngestStream
|
|
89
|
+
*/
|
|
90
|
+
lastTimestampTimescale?: number;
|
|
91
|
+
/**
|
|
92
|
+
* Number of audio channels.
|
|
93
|
+
* @type {number}
|
|
94
|
+
* @memberof LiveEncodingHeartbeatIngestStream
|
|
95
|
+
*/
|
|
96
|
+
numberOfAudioChannels?: number;
|
|
97
|
+
/**
|
|
98
|
+
* Format of the audio channel.
|
|
99
|
+
* @type {string}
|
|
100
|
+
* @memberof LiveEncodingHeartbeatIngestStream
|
|
101
|
+
*/
|
|
102
|
+
audioChannelFormat?: string;
|
|
103
|
+
/**
|
|
104
|
+
* lastArrivalTime timestamp, returned as UTC expressed in ISO 8601 format: YYYY-MM-DDThh:mm:ssZ
|
|
105
|
+
* @type {Date}
|
|
106
|
+
* @memberof LiveEncodingHeartbeatIngestStream
|
|
107
|
+
*/
|
|
108
|
+
lastArrivalTime?: Date;
|
|
109
|
+
/**
|
|
110
|
+
* Indicates whether this particular stream is healthy.
|
|
111
|
+
* @type {boolean}
|
|
112
|
+
* @memberof LiveEncodingHeartbeatIngestStream
|
|
113
|
+
*/
|
|
114
|
+
healthy?: boolean;
|
|
115
|
+
constructor(obj?: Partial<LiveEncodingHeartbeatIngestStream>);
|
|
116
|
+
}
|
|
117
|
+
export default LiveEncodingHeartbeatIngestStream;
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.LiveEncodingHeartbeatIngestStream = void 0;
|
|
4
|
+
var Mapper_1 = require("../common/Mapper");
|
|
5
|
+
/**
|
|
6
|
+
* Details about an individual stream within the live ingest.
|
|
7
|
+
* @export
|
|
8
|
+
* @class LiveEncodingHeartbeatIngestStream
|
|
9
|
+
*/
|
|
10
|
+
var LiveEncodingHeartbeatIngestStream = /** @class */ (function () {
|
|
11
|
+
function LiveEncodingHeartbeatIngestStream(obj) {
|
|
12
|
+
if (!obj) {
|
|
13
|
+
return;
|
|
14
|
+
}
|
|
15
|
+
this.streamId = (0, Mapper_1.map)(obj.streamId);
|
|
16
|
+
this.mediaType = (0, Mapper_1.map)(obj.mediaType);
|
|
17
|
+
this.width = (0, Mapper_1.map)(obj.width);
|
|
18
|
+
this.height = (0, Mapper_1.map)(obj.height);
|
|
19
|
+
this.rate = (0, Mapper_1.map)(obj.rate);
|
|
20
|
+
this.codec = (0, Mapper_1.map)(obj.codec);
|
|
21
|
+
this.aspectRatio = (0, Mapper_1.map)(obj.aspectRatio);
|
|
22
|
+
this.bitrate = (0, Mapper_1.map)(obj.bitrate);
|
|
23
|
+
this.samplesReadPerSecondAvg = (0, Mapper_1.map)(obj.samplesReadPerSecondAvg);
|
|
24
|
+
this.incomingBitrate = (0, Mapper_1.map)(obj.incomingBitrate);
|
|
25
|
+
this.keyFrameIntervalMax = (0, Mapper_1.map)(obj.keyFrameIntervalMax);
|
|
26
|
+
this.keyFrameIntervalAvg = (0, Mapper_1.map)(obj.keyFrameIntervalAvg);
|
|
27
|
+
this.lastTimestamp = (0, Mapper_1.map)(obj.lastTimestamp);
|
|
28
|
+
this.lastTimestampTimescale = (0, Mapper_1.map)(obj.lastTimestampTimescale);
|
|
29
|
+
this.numberOfAudioChannels = (0, Mapper_1.map)(obj.numberOfAudioChannels);
|
|
30
|
+
this.audioChannelFormat = (0, Mapper_1.map)(obj.audioChannelFormat);
|
|
31
|
+
this.lastArrivalTime = (0, Mapper_1.map)(obj.lastArrivalTime, Date);
|
|
32
|
+
this.healthy = (0, Mapper_1.map)(obj.healthy);
|
|
33
|
+
}
|
|
34
|
+
return LiveEncodingHeartbeatIngestStream;
|
|
35
|
+
}());
|
|
36
|
+
exports.LiveEncodingHeartbeatIngestStream = LiveEncodingHeartbeatIngestStream;
|
|
37
|
+
exports.default = LiveEncodingHeartbeatIngestStream;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import ClockSynchronizationMode from './ClockSynchronizationMode';
|
|
1
2
|
import LiveEncodingEventName from './LiveEncodingEventName';
|
|
2
3
|
/**
|
|
3
4
|
* @export
|
|
@@ -16,17 +17,53 @@ export declare class LiveEncodingStatsEventDetails {
|
|
|
16
17
|
*/
|
|
17
18
|
message?: string;
|
|
18
19
|
/**
|
|
19
|
-
*
|
|
20
|
-
* @type {
|
|
20
|
+
* Source used for clock-synchronization
|
|
21
|
+
* @type {ClockSynchronizationMode}
|
|
21
22
|
* @memberof LiveEncodingStatsEventDetails
|
|
22
23
|
*/
|
|
23
|
-
|
|
24
|
+
source?: ClockSynchronizationMode;
|
|
24
25
|
/**
|
|
25
|
-
*
|
|
26
|
+
* Year specified in picture timing
|
|
26
27
|
* @type {number}
|
|
27
28
|
* @memberof LiveEncodingStatsEventDetails
|
|
28
29
|
*/
|
|
29
|
-
|
|
30
|
+
year?: number;
|
|
31
|
+
/**
|
|
32
|
+
* Month specified in picture timing
|
|
33
|
+
* @type {number}
|
|
34
|
+
* @memberof LiveEncodingStatsEventDetails
|
|
35
|
+
*/
|
|
36
|
+
month?: number;
|
|
37
|
+
/**
|
|
38
|
+
* Day specified in picture timing
|
|
39
|
+
* @type {number}
|
|
40
|
+
* @memberof LiveEncodingStatsEventDetails
|
|
41
|
+
*/
|
|
42
|
+
day?: number;
|
|
43
|
+
/**
|
|
44
|
+
* Hours specified in picture timing
|
|
45
|
+
* @type {number}
|
|
46
|
+
* @memberof LiveEncodingStatsEventDetails
|
|
47
|
+
*/
|
|
48
|
+
hours?: number;
|
|
49
|
+
/**
|
|
50
|
+
* Minutes specified in picture timing
|
|
51
|
+
* @type {number}
|
|
52
|
+
* @memberof LiveEncodingStatsEventDetails
|
|
53
|
+
*/
|
|
54
|
+
minutes?: number;
|
|
55
|
+
/**
|
|
56
|
+
* Seconds specified in picture timing
|
|
57
|
+
* @type {number}
|
|
58
|
+
* @memberof LiveEncodingStatsEventDetails
|
|
59
|
+
*/
|
|
60
|
+
seconds?: number;
|
|
61
|
+
/**
|
|
62
|
+
* Microseconds specified in picture timing
|
|
63
|
+
* @type {number}
|
|
64
|
+
* @memberof LiveEncodingStatsEventDetails
|
|
65
|
+
*/
|
|
66
|
+
microSeconds?: number;
|
|
30
67
|
constructor(obj?: Partial<LiveEncodingStatsEventDetails>);
|
|
31
68
|
}
|
|
32
69
|
export default LiveEncodingStatsEventDetails;
|
|
@@ -13,8 +13,14 @@ var LiveEncodingStatsEventDetails = /** @class */ (function () {
|
|
|
13
13
|
}
|
|
14
14
|
this.eventType = (0, Mapper_1.map)(obj.eventType);
|
|
15
15
|
this.message = (0, Mapper_1.map)(obj.message);
|
|
16
|
-
this.
|
|
17
|
-
this.
|
|
16
|
+
this.source = (0, Mapper_1.map)(obj.source);
|
|
17
|
+
this.year = (0, Mapper_1.map)(obj.year);
|
|
18
|
+
this.month = (0, Mapper_1.map)(obj.month);
|
|
19
|
+
this.day = (0, Mapper_1.map)(obj.day);
|
|
20
|
+
this.hours = (0, Mapper_1.map)(obj.hours);
|
|
21
|
+
this.minutes = (0, Mapper_1.map)(obj.minutes);
|
|
22
|
+
this.seconds = (0, Mapper_1.map)(obj.seconds);
|
|
23
|
+
this.microSeconds = (0, Mapper_1.map)(obj.microSeconds);
|
|
18
24
|
}
|
|
19
25
|
return LiveEncodingStatsEventDetails;
|
|
20
26
|
}());
|
|
@@ -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
|
@@ -211,6 +211,7 @@ export * from './CheckOutputPermissionsResponse';
|
|
|
211
211
|
export * from './ChromaLocation';
|
|
212
212
|
export * from './ChunkedTextMuxing';
|
|
213
213
|
export * from './ClearKeyDrm';
|
|
214
|
+
export * from './ClockSynchronizationMode';
|
|
214
215
|
export * from './ClosedCaptionsMediaInfo';
|
|
215
216
|
export * from './CloudRegion';
|
|
216
217
|
export * from './CmafMuxing';
|
|
@@ -477,6 +478,7 @@ export * from './InterlaceMode';
|
|
|
477
478
|
export * from './Invitation';
|
|
478
479
|
export * from './InvitationStatus';
|
|
479
480
|
export * from './IvSize';
|
|
481
|
+
export * from './KantarWatermark';
|
|
480
482
|
export * from './Keyframe';
|
|
481
483
|
export * from './Label';
|
|
482
484
|
export * from './LevelH262';
|
|
@@ -490,6 +492,13 @@ export * from './LiveDashManifest';
|
|
|
490
492
|
export * from './LiveEncoding';
|
|
491
493
|
export * from './LiveEncodingCodec';
|
|
492
494
|
export * from './LiveEncodingEventName';
|
|
495
|
+
export * from './LiveEncodingHeartbeat';
|
|
496
|
+
export * from './LiveEncodingHeartbeatEvent';
|
|
497
|
+
export * from './LiveEncodingHeartbeatEventDetails';
|
|
498
|
+
export * from './LiveEncodingHeartbeatEventType';
|
|
499
|
+
export * from './LiveEncodingHeartbeatIngest';
|
|
500
|
+
export * from './LiveEncodingHeartbeatIngestPoint';
|
|
501
|
+
export * from './LiveEncodingHeartbeatIngestStream';
|
|
493
502
|
export * from './LiveEncodingHeartbeatWebhook';
|
|
494
503
|
export * from './LiveEncodingOptionsStatistics';
|
|
495
504
|
export * from './LiveEncodingStats';
|
|
@@ -656,6 +665,7 @@ export * from './ReuploadSettings';
|
|
|
656
665
|
export * from './RotateFilter';
|
|
657
666
|
export * from './RtmpIngestPoint';
|
|
658
667
|
export * from './RtmpInput';
|
|
668
|
+
export * from './RtmpUserIngestInfo';
|
|
659
669
|
export * from './S3AccessStyle';
|
|
660
670
|
export * from './S3Input';
|
|
661
671
|
export * from './S3Output';
|
package/dist/models/index.js
CHANGED
|
@@ -227,6 +227,7 @@ __exportStar(require("./CheckOutputPermissionsResponse"), exports);
|
|
|
227
227
|
__exportStar(require("./ChromaLocation"), exports);
|
|
228
228
|
__exportStar(require("./ChunkedTextMuxing"), exports);
|
|
229
229
|
__exportStar(require("./ClearKeyDrm"), exports);
|
|
230
|
+
__exportStar(require("./ClockSynchronizationMode"), exports);
|
|
230
231
|
__exportStar(require("./ClosedCaptionsMediaInfo"), exports);
|
|
231
232
|
__exportStar(require("./CloudRegion"), exports);
|
|
232
233
|
__exportStar(require("./CmafMuxing"), exports);
|
|
@@ -493,6 +494,7 @@ __exportStar(require("./InterlaceMode"), exports);
|
|
|
493
494
|
__exportStar(require("./Invitation"), exports);
|
|
494
495
|
__exportStar(require("./InvitationStatus"), exports);
|
|
495
496
|
__exportStar(require("./IvSize"), exports);
|
|
497
|
+
__exportStar(require("./KantarWatermark"), exports);
|
|
496
498
|
__exportStar(require("./Keyframe"), exports);
|
|
497
499
|
__exportStar(require("./Label"), exports);
|
|
498
500
|
__exportStar(require("./LevelH262"), exports);
|
|
@@ -506,6 +508,13 @@ __exportStar(require("./LiveDashManifest"), exports);
|
|
|
506
508
|
__exportStar(require("./LiveEncoding"), exports);
|
|
507
509
|
__exportStar(require("./LiveEncodingCodec"), exports);
|
|
508
510
|
__exportStar(require("./LiveEncodingEventName"), exports);
|
|
511
|
+
__exportStar(require("./LiveEncodingHeartbeat"), exports);
|
|
512
|
+
__exportStar(require("./LiveEncodingHeartbeatEvent"), exports);
|
|
513
|
+
__exportStar(require("./LiveEncodingHeartbeatEventDetails"), exports);
|
|
514
|
+
__exportStar(require("./LiveEncodingHeartbeatEventType"), exports);
|
|
515
|
+
__exportStar(require("./LiveEncodingHeartbeatIngest"), exports);
|
|
516
|
+
__exportStar(require("./LiveEncodingHeartbeatIngestPoint"), exports);
|
|
517
|
+
__exportStar(require("./LiveEncodingHeartbeatIngestStream"), exports);
|
|
509
518
|
__exportStar(require("./LiveEncodingHeartbeatWebhook"), exports);
|
|
510
519
|
__exportStar(require("./LiveEncodingOptionsStatistics"), exports);
|
|
511
520
|
__exportStar(require("./LiveEncodingStats"), exports);
|
|
@@ -672,6 +681,7 @@ __exportStar(require("./ReuploadSettings"), exports);
|
|
|
672
681
|
__exportStar(require("./RotateFilter"), exports);
|
|
673
682
|
__exportStar(require("./RtmpIngestPoint"), exports);
|
|
674
683
|
__exportStar(require("./RtmpInput"), exports);
|
|
684
|
+
__exportStar(require("./RtmpUserIngestInfo"), exports);
|
|
675
685
|
__exportStar(require("./S3AccessStyle"), exports);
|
|
676
686
|
__exportStar(require("./S3Input"), exports);
|
|
677
687
|
__exportStar(require("./S3Output"), exports);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bitmovin/api-sdk",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.253.0",
|
|
4
4
|
"description": "Bitmovin JS/TS API SDK",
|
|
5
5
|
"author": "Bitmovin Inc",
|
|
6
6
|
"keywords": [
|
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
],
|
|
34
34
|
"devDependencies": {
|
|
35
35
|
"@types/isomorphic-fetch": ">=0.0.35",
|
|
36
|
-
"@types/node": "^
|
|
36
|
+
"@types/node": "^24.10.2",
|
|
37
37
|
"ts-loader": "^9.2.8",
|
|
38
38
|
"cross-env": "^5.2.0",
|
|
39
39
|
"prettier": "^1.16.4",
|