@bitmovin/api-sdk 1.269.0 → 1.271.1

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.
Files changed (29) hide show
  1. package/README.md +1 -1
  2. package/dist/bitmovin-api-sdk.browser.js +93 -195
  3. package/dist/bitmovin-api-sdk.browser.min.js +1 -1
  4. package/dist/common/RestClient.js +1 -1
  5. package/dist/encoding/encodings/EncodingsApi.d.ts +0 -2
  6. package/dist/encoding/encodings/EncodingsApi.js +0 -2
  7. package/dist/encoding/encodings/live/LiveApi.d.ts +2 -0
  8. package/dist/encoding/encodings/live/LiveApi.js +2 -0
  9. package/dist/encoding/encodings/live/heartbeatFinal/HeartbeatFinalApi.d.ts +19 -0
  10. package/dist/encoding/encodings/live/heartbeatFinal/HeartbeatFinalApi.js +48 -0
  11. package/dist/encoding/encodings/muxings/fmp4/drm/cenc/CencDrmListQueryParams.d.ts +6 -6
  12. package/dist/encoding/encodings/muxings/fmp4/drm/speke/SpekeDrmListQueryParams.d.ts +6 -6
  13. package/dist/encoding/encodings/muxings/mp4/drm/speke/SpekeDrmListQueryParams.d.ts +6 -6
  14. package/dist/encoding/encodings/muxings/progressiveTs/drm/speke/SpekeDrmListQueryParams.d.ts +6 -6
  15. package/dist/encoding/encodings/muxings/progressiveWebm/drm/speke/SpekeDrmListQueryParams.d.ts +6 -6
  16. package/dist/encoding/encodings/muxings/ts/drm/speke/SpekeDrmListQueryParams.d.ts +6 -6
  17. package/dist/encoding/encodings/muxings/webm/drm/cenc/CencDrmListQueryParams.d.ts +6 -6
  18. package/dist/encoding/encodings/muxings/webm/drm/speke/SpekeDrmListQueryParams.d.ts +6 -6
  19. package/dist/models/LiveEncodingHeartbeatUrlResponse.d.ts +14 -0
  20. package/dist/models/LiveEncodingHeartbeatUrlResponse.js +19 -0
  21. package/dist/models/index.d.ts +1 -1
  22. package/dist/models/index.js +1 -1
  23. package/package.json +1 -1
  24. package/dist/encoding/encodings/transferRetries/TransferRetriesApi.d.ts +0 -37
  25. package/dist/encoding/encodings/transferRetries/TransferRetriesApi.js +0 -88
  26. package/dist/encoding/encodings/transferRetries/TransferRetryListQueryParams.d.ts +0 -28
  27. package/dist/encoding/encodings/transferRetries/TransferRetryListQueryParams.js +0 -29
  28. package/dist/models/TransferRetry.d.ts +0 -34
  29. package/dist/models/TransferRetry.js +0 -41
@@ -1,28 +0,0 @@
1
- export interface TransferRetryListQueryParams {
2
- /**
3
- * Index of the first item to return, starting at 0. Default is 0
4
- * @type {number}
5
- * @memberof TransferRetryListQueryParams
6
- */
7
- offset?: number | undefined;
8
- /**
9
- * Maximum number of items to return. Default is 25, maximum is 100
10
- * @type {number}
11
- * @memberof TransferRetryListQueryParams
12
- */
13
- limit?: number | undefined;
14
- }
15
- export declare class TransferRetryListQueryParamsBuilder {
16
- private internalParams;
17
- /**
18
- *
19
- * @param offset Index of the first item to return, starting at 0. Default is 0
20
- */
21
- offset(offset: number): this;
22
- /**
23
- *
24
- * @param limit Maximum number of items to return. Default is 25, maximum is 100
25
- */
26
- limit(limit: number): this;
27
- buildQueryParams(): TransferRetryListQueryParams;
28
- }
@@ -1,29 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.TransferRetryListQueryParamsBuilder = void 0;
4
- var TransferRetryListQueryParamsBuilder = /** @class */ (function () {
5
- function TransferRetryListQueryParamsBuilder() {
6
- this.internalParams = {};
7
- }
8
- /**
9
- *
10
- * @param offset Index of the first item to return, starting at 0. Default is 0
11
- */
12
- TransferRetryListQueryParamsBuilder.prototype.offset = function (offset) {
13
- this.internalParams.offset = offset;
14
- return this;
15
- };
16
- /**
17
- *
18
- * @param limit Maximum number of items to return. Default is 25, maximum is 100
19
- */
20
- TransferRetryListQueryParamsBuilder.prototype.limit = function (limit) {
21
- this.internalParams.limit = limit;
22
- return this;
23
- };
24
- TransferRetryListQueryParamsBuilder.prototype.buildQueryParams = function () {
25
- return this.internalParams;
26
- };
27
- return TransferRetryListQueryParamsBuilder;
28
- }());
29
- exports.TransferRetryListQueryParamsBuilder = TransferRetryListQueryParamsBuilder;
@@ -1,34 +0,0 @@
1
- import BitmovinResource from './BitmovinResource';
2
- import Status from './Status';
3
- /**
4
- * @export
5
- * @class TransferRetry
6
- */
7
- export declare class TransferRetry extends BitmovinResource {
8
- /**
9
- * The current status of the transfer-retry.
10
- * @type {Status}
11
- * @memberof TransferRetry
12
- */
13
- status?: Status;
14
- /**
15
- * Timestamp when the transfer-retry was started, returned as UTC expressed in ISO 8601 format: YYYY-MM-DDThh:mm:ssZ
16
- * @type {Date}
17
- * @memberof TransferRetry
18
- */
19
- startedAt?: Date;
20
- /**
21
- * Timestamp when the transfer-retry status changed to 'FINISHED', returned as UTC expressed in ISO 8601 format: YYYY-MM-DDThh:mm:ssZ
22
- * @type {Date}
23
- * @memberof TransferRetry
24
- */
25
- finishedAt?: Date;
26
- /**
27
- * Timestamp when the transfer-retry status changed to 'ERROR', returned as UTC expressed in ISO 8601 format: YYYY-MM-DDThh:mm:ssZ
28
- * @type {Date}
29
- * @memberof TransferRetry
30
- */
31
- errorAt?: Date;
32
- constructor(obj?: Partial<TransferRetry>);
33
- }
34
- export default TransferRetry;
@@ -1,41 +0,0 @@
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.TransferRetry = void 0;
19
- var Mapper_1 = require("../common/Mapper");
20
- var BitmovinResource_1 = require("./BitmovinResource");
21
- /**
22
- * @export
23
- * @class TransferRetry
24
- */
25
- var TransferRetry = /** @class */ (function (_super) {
26
- __extends(TransferRetry, _super);
27
- function TransferRetry(obj) {
28
- var _this = _super.call(this, obj) || this;
29
- if (!obj) {
30
- return _this;
31
- }
32
- _this.status = (0, Mapper_1.map)(obj.status);
33
- _this.startedAt = (0, Mapper_1.map)(obj.startedAt, Date);
34
- _this.finishedAt = (0, Mapper_1.map)(obj.finishedAt, Date);
35
- _this.errorAt = (0, Mapper_1.map)(obj.errorAt, Date);
36
- return _this;
37
- }
38
- return TransferRetry;
39
- }(BitmovinResource_1.default));
40
- exports.TransferRetry = TransferRetry;
41
- exports.default = TransferRetry;