@bitmovin/api-sdk 1.257.0 → 1.259.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.
@@ -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.257.0',
243
+ 'X-Api-Client-Version': '1.259.0',
244
244
  'Content-Type': 'application/json'
245
245
  };
246
246
  if (tenantOrgId) {
@@ -111,6 +111,21 @@ export declare enum AdAnalyticsAttribute {
111
111
  CUSTOM_DATA_58 = "CUSTOM_DATA_58",
112
112
  CUSTOM_DATA_59 = "CUSTOM_DATA_59",
113
113
  CUSTOM_DATA_60 = "CUSTOM_DATA_60",
114
+ CUSTOM_DATA_61 = "CUSTOM_DATA_61",
115
+ CUSTOM_DATA_62 = "CUSTOM_DATA_62",
116
+ CUSTOM_DATA_63 = "CUSTOM_DATA_63",
117
+ CUSTOM_DATA_64 = "CUSTOM_DATA_64",
118
+ CUSTOM_DATA_65 = "CUSTOM_DATA_65",
119
+ CUSTOM_DATA_66 = "CUSTOM_DATA_66",
120
+ CUSTOM_DATA_67 = "CUSTOM_DATA_67",
121
+ CUSTOM_DATA_68 = "CUSTOM_DATA_68",
122
+ CUSTOM_DATA_69 = "CUSTOM_DATA_69",
123
+ CUSTOM_DATA_70 = "CUSTOM_DATA_70",
124
+ CUSTOM_DATA_71 = "CUSTOM_DATA_71",
125
+ CUSTOM_DATA_72 = "CUSTOM_DATA_72",
126
+ CUSTOM_DATA_73 = "CUSTOM_DATA_73",
127
+ CUSTOM_DATA_74 = "CUSTOM_DATA_74",
128
+ CUSTOM_DATA_75 = "CUSTOM_DATA_75",
114
129
  CUSTOM_USER_ID = "CUSTOM_USER_ID",
115
130
  DAY = "DAY",
116
131
  DEAL_ID = "DEAL_ID",
@@ -115,6 +115,21 @@ var AdAnalyticsAttribute;
115
115
  AdAnalyticsAttribute["CUSTOM_DATA_58"] = "CUSTOM_DATA_58";
116
116
  AdAnalyticsAttribute["CUSTOM_DATA_59"] = "CUSTOM_DATA_59";
117
117
  AdAnalyticsAttribute["CUSTOM_DATA_60"] = "CUSTOM_DATA_60";
118
+ AdAnalyticsAttribute["CUSTOM_DATA_61"] = "CUSTOM_DATA_61";
119
+ AdAnalyticsAttribute["CUSTOM_DATA_62"] = "CUSTOM_DATA_62";
120
+ AdAnalyticsAttribute["CUSTOM_DATA_63"] = "CUSTOM_DATA_63";
121
+ AdAnalyticsAttribute["CUSTOM_DATA_64"] = "CUSTOM_DATA_64";
122
+ AdAnalyticsAttribute["CUSTOM_DATA_65"] = "CUSTOM_DATA_65";
123
+ AdAnalyticsAttribute["CUSTOM_DATA_66"] = "CUSTOM_DATA_66";
124
+ AdAnalyticsAttribute["CUSTOM_DATA_67"] = "CUSTOM_DATA_67";
125
+ AdAnalyticsAttribute["CUSTOM_DATA_68"] = "CUSTOM_DATA_68";
126
+ AdAnalyticsAttribute["CUSTOM_DATA_69"] = "CUSTOM_DATA_69";
127
+ AdAnalyticsAttribute["CUSTOM_DATA_70"] = "CUSTOM_DATA_70";
128
+ AdAnalyticsAttribute["CUSTOM_DATA_71"] = "CUSTOM_DATA_71";
129
+ AdAnalyticsAttribute["CUSTOM_DATA_72"] = "CUSTOM_DATA_72";
130
+ AdAnalyticsAttribute["CUSTOM_DATA_73"] = "CUSTOM_DATA_73";
131
+ AdAnalyticsAttribute["CUSTOM_DATA_74"] = "CUSTOM_DATA_74";
132
+ AdAnalyticsAttribute["CUSTOM_DATA_75"] = "CUSTOM_DATA_75";
118
133
  AdAnalyticsAttribute["CUSTOM_USER_ID"] = "CUSTOM_USER_ID";
119
134
  AdAnalyticsAttribute["DAY"] = "DAY";
120
135
  AdAnalyticsAttribute["DEAL_ID"] = "DEAL_ID";
@@ -0,0 +1,57 @@
1
+ import AgentChatDynamicToolState from './AgentChatDynamicToolState';
2
+ import AgentChatMessagePart from './AgentChatMessagePart';
3
+ import AgentChatMessagePartType from './AgentChatMessagePartType';
4
+ /**
5
+ * @export
6
+ * @class AgentChatDynamicToolPart
7
+ */
8
+ export declare class AgentChatDynamicToolPart extends AgentChatMessagePart {
9
+ /**
10
+ * Discriminator property for AgentChatMessagePart
11
+ * @type {string}
12
+ * @memberof AgentChatDynamicToolPart
13
+ */
14
+ readonly type: AgentChatMessagePartType;
15
+ /**
16
+ * Tool name (required)
17
+ * @type {string}
18
+ * @memberof AgentChatDynamicToolPart
19
+ */
20
+ toolName?: string;
21
+ /**
22
+ * Tool call identifier (required)
23
+ * @type {string}
24
+ * @memberof AgentChatDynamicToolPart
25
+ */
26
+ toolCallId?: string;
27
+ /**
28
+ * Tool invocation lifecycle state (required)
29
+ * @type {AgentChatDynamicToolState}
30
+ * @memberof AgentChatDynamicToolPart
31
+ */
32
+ state?: AgentChatDynamicToolState;
33
+ /**
34
+ * Tool input payload.
35
+ * @type {{ [key: string]: any; }}
36
+ * @memberof AgentChatDynamicToolPart
37
+ */
38
+ input?: {
39
+ [key: string]: any;
40
+ };
41
+ /**
42
+ * Tool output payload.
43
+ * @type {{ [key: string]: any; }}
44
+ * @memberof AgentChatDynamicToolPart
45
+ */
46
+ output?: {
47
+ [key: string]: any;
48
+ };
49
+ /**
50
+ * Error text for failed tool completion.
51
+ * @type {string}
52
+ * @memberof AgentChatDynamicToolPart
53
+ */
54
+ errorText?: string;
55
+ constructor(obj?: Partial<AgentChatDynamicToolPart>);
56
+ }
57
+ export default AgentChatDynamicToolPart;
@@ -0,0 +1,50 @@
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.AgentChatDynamicToolPart = void 0;
19
+ var Mapper_1 = require("../common/Mapper");
20
+ var AgentChatMessagePart_1 = require("./AgentChatMessagePart");
21
+ var AgentChatMessagePartType_1 = require("./AgentChatMessagePartType");
22
+ /**
23
+ * @export
24
+ * @class AgentChatDynamicToolPart
25
+ */
26
+ var AgentChatDynamicToolPart = /** @class */ (function (_super) {
27
+ __extends(AgentChatDynamicToolPart, _super);
28
+ function AgentChatDynamicToolPart(obj) {
29
+ var _this = _super.call(this, obj) || this;
30
+ /**
31
+ * Discriminator property for AgentChatMessagePart
32
+ * @type {string}
33
+ * @memberof AgentChatDynamicToolPart
34
+ */
35
+ _this.type = AgentChatMessagePartType_1.default.DYNAMIC_TOOL;
36
+ if (!obj) {
37
+ return _this;
38
+ }
39
+ _this.toolName = (0, Mapper_1.map)(obj.toolName);
40
+ _this.toolCallId = (0, Mapper_1.map)(obj.toolCallId);
41
+ _this.state = (0, Mapper_1.map)(obj.state);
42
+ _this.input = (0, Mapper_1.map)(obj.input);
43
+ _this.output = (0, Mapper_1.map)(obj.output);
44
+ _this.errorText = (0, Mapper_1.map)(obj.errorText);
45
+ return _this;
46
+ }
47
+ return AgentChatDynamicToolPart;
48
+ }(AgentChatMessagePart_1.default));
49
+ exports.AgentChatDynamicToolPart = AgentChatDynamicToolPart;
50
+ exports.default = AgentChatDynamicToolPart;
@@ -0,0 +1,11 @@
1
+ /**
2
+ * @export
3
+ * @enum {string}
4
+ */
5
+ export declare enum AgentChatDynamicToolState {
6
+ INPUT_STREAMING = "input-streaming",
7
+ INPUT_AVAILABLE = "input-available",
8
+ OUTPUT_AVAILABLE = "output-available",
9
+ OUTPUT_ERROR = "output-error"
10
+ }
11
+ export default AgentChatDynamicToolState;
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.AgentChatDynamicToolState = void 0;
4
+ /**
5
+ * @export
6
+ * @enum {string}
7
+ */
8
+ var AgentChatDynamicToolState;
9
+ (function (AgentChatDynamicToolState) {
10
+ AgentChatDynamicToolState["INPUT_STREAMING"] = "input-streaming";
11
+ AgentChatDynamicToolState["INPUT_AVAILABLE"] = "input-available";
12
+ AgentChatDynamicToolState["OUTPUT_AVAILABLE"] = "output-available";
13
+ AgentChatDynamicToolState["OUTPUT_ERROR"] = "output-error";
14
+ })(AgentChatDynamicToolState || (exports.AgentChatDynamicToolState = AgentChatDynamicToolState = {}));
15
+ exports.default = AgentChatDynamicToolState;
@@ -1,6 +1,7 @@
1
1
  import AgentChatAttachmentsPart from './AgentChatAttachmentsPart';
2
+ import AgentChatDynamicToolPart from './AgentChatDynamicToolPart';
2
3
  import AgentChatTextPart from './AgentChatTextPart';
3
- export type AgentChatMessagePartUnion = AgentChatTextPart | AgentChatAttachmentsPart;
4
+ export type AgentChatMessagePartUnion = AgentChatTextPart | AgentChatAttachmentsPart | AgentChatDynamicToolPart;
4
5
  /**
5
6
  * @export
6
7
  * @class AgentChatMessagePart
@@ -14,7 +14,8 @@ var AgentChatMessagePart = /** @class */ (function () {
14
14
  AgentChatMessagePart._discriminatorName = 'type';
15
15
  AgentChatMessagePart._discriminatorMapping = {
16
16
  "text": 'AgentChatTextPart',
17
- "data-attachments": 'AgentChatAttachmentsPart'
17
+ "data-attachments": 'AgentChatAttachmentsPart',
18
+ "dynamic-tool": 'AgentChatDynamicToolPart'
18
19
  };
19
20
  return AgentChatMessagePart;
20
21
  }());
@@ -4,6 +4,7 @@
4
4
  */
5
5
  export declare enum AgentChatMessagePartType {
6
6
  TEXT = "text",
7
- DATA_ATTACHMENTS = "data-attachments"
7
+ DATA_ATTACHMENTS = "data-attachments",
8
+ DYNAMIC_TOOL = "dynamic-tool"
8
9
  }
9
10
  export default AgentChatMessagePartType;
@@ -9,5 +9,6 @@ var AgentChatMessagePartType;
9
9
  (function (AgentChatMessagePartType) {
10
10
  AgentChatMessagePartType["TEXT"] = "text";
11
11
  AgentChatMessagePartType["DATA_ATTACHMENTS"] = "data-attachments";
12
+ AgentChatMessagePartType["DYNAMIC_TOOL"] = "dynamic-tool";
12
13
  })(AgentChatMessagePartType || (exports.AgentChatMessagePartType = AgentChatMessagePartType = {}));
13
14
  exports.default = AgentChatMessagePartType;
@@ -79,6 +79,21 @@ export declare enum AnalyticsAttribute {
79
79
  CUSTOM_DATA_58 = "CUSTOM_DATA_58",
80
80
  CUSTOM_DATA_59 = "CUSTOM_DATA_59",
81
81
  CUSTOM_DATA_60 = "CUSTOM_DATA_60",
82
+ CUSTOM_DATA_61 = "CUSTOM_DATA_61",
83
+ CUSTOM_DATA_62 = "CUSTOM_DATA_62",
84
+ CUSTOM_DATA_63 = "CUSTOM_DATA_63",
85
+ CUSTOM_DATA_64 = "CUSTOM_DATA_64",
86
+ CUSTOM_DATA_65 = "CUSTOM_DATA_65",
87
+ CUSTOM_DATA_66 = "CUSTOM_DATA_66",
88
+ CUSTOM_DATA_67 = "CUSTOM_DATA_67",
89
+ CUSTOM_DATA_68 = "CUSTOM_DATA_68",
90
+ CUSTOM_DATA_69 = "CUSTOM_DATA_69",
91
+ CUSTOM_DATA_70 = "CUSTOM_DATA_70",
92
+ CUSTOM_DATA_71 = "CUSTOM_DATA_71",
93
+ CUSTOM_DATA_72 = "CUSTOM_DATA_72",
94
+ CUSTOM_DATA_73 = "CUSTOM_DATA_73",
95
+ CUSTOM_DATA_74 = "CUSTOM_DATA_74",
96
+ CUSTOM_DATA_75 = "CUSTOM_DATA_75",
82
97
  CUSTOM_USER_ID = "CUSTOM_USER_ID",
83
98
  DAY = "DAY",
84
99
  DEVICE_CLASS = "DEVICE_CLASS",
@@ -83,6 +83,21 @@ var AnalyticsAttribute;
83
83
  AnalyticsAttribute["CUSTOM_DATA_58"] = "CUSTOM_DATA_58";
84
84
  AnalyticsAttribute["CUSTOM_DATA_59"] = "CUSTOM_DATA_59";
85
85
  AnalyticsAttribute["CUSTOM_DATA_60"] = "CUSTOM_DATA_60";
86
+ AnalyticsAttribute["CUSTOM_DATA_61"] = "CUSTOM_DATA_61";
87
+ AnalyticsAttribute["CUSTOM_DATA_62"] = "CUSTOM_DATA_62";
88
+ AnalyticsAttribute["CUSTOM_DATA_63"] = "CUSTOM_DATA_63";
89
+ AnalyticsAttribute["CUSTOM_DATA_64"] = "CUSTOM_DATA_64";
90
+ AnalyticsAttribute["CUSTOM_DATA_65"] = "CUSTOM_DATA_65";
91
+ AnalyticsAttribute["CUSTOM_DATA_66"] = "CUSTOM_DATA_66";
92
+ AnalyticsAttribute["CUSTOM_DATA_67"] = "CUSTOM_DATA_67";
93
+ AnalyticsAttribute["CUSTOM_DATA_68"] = "CUSTOM_DATA_68";
94
+ AnalyticsAttribute["CUSTOM_DATA_69"] = "CUSTOM_DATA_69";
95
+ AnalyticsAttribute["CUSTOM_DATA_70"] = "CUSTOM_DATA_70";
96
+ AnalyticsAttribute["CUSTOM_DATA_71"] = "CUSTOM_DATA_71";
97
+ AnalyticsAttribute["CUSTOM_DATA_72"] = "CUSTOM_DATA_72";
98
+ AnalyticsAttribute["CUSTOM_DATA_73"] = "CUSTOM_DATA_73";
99
+ AnalyticsAttribute["CUSTOM_DATA_74"] = "CUSTOM_DATA_74";
100
+ AnalyticsAttribute["CUSTOM_DATA_75"] = "CUSTOM_DATA_75";
86
101
  AnalyticsAttribute["CUSTOM_USER_ID"] = "CUSTOM_USER_ID";
87
102
  AnalyticsAttribute["DAY"] = "DAY";
88
103
  AnalyticsAttribute["DEVICE_CLASS"] = "DEVICE_CLASS";
@@ -1,4 +1,3 @@
1
- import EsamCondition from './EsamCondition';
2
1
  import EsamSignal from './EsamSignal';
3
2
  /**
4
3
  * ESAM media point following the SCTE-250 standard
@@ -18,12 +17,6 @@ export declare class EsamMediaPoint {
18
17
  * @memberof EsamMediaPoint
19
18
  */
20
19
  signals?: EsamSignal[];
21
- /**
22
- * Optional array of ESAM conditions with timing offsets and directional markers (OUT/IN) for signaling content boundaries
23
- * @type {EsamCondition[]}
24
- * @memberof EsamMediaPoint
25
- */
26
- conditions?: EsamCondition[];
27
20
  constructor(obj?: Partial<EsamMediaPoint>);
28
21
  }
29
22
  export default EsamMediaPoint;
@@ -2,7 +2,6 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.EsamMediaPoint = void 0;
4
4
  var Mapper_1 = require("../common/Mapper");
5
- var EsamCondition_1 = require("./EsamCondition");
6
5
  var EsamSignal_1 = require("./EsamSignal");
7
6
  /**
8
7
  * ESAM media point following the SCTE-250 standard
@@ -16,7 +15,6 @@ var EsamMediaPoint = /** @class */ (function () {
16
15
  }
17
16
  this.matchTime = (0, Mapper_1.map)(obj.matchTime, Date);
18
17
  this.signals = (0, Mapper_1.mapArray)(obj.signals, EsamSignal_1.default);
19
- this.conditions = (0, Mapper_1.mapArray)(obj.conditions, EsamCondition_1.default);
20
18
  }
21
19
  return EsamMediaPoint;
22
20
  }());
@@ -16,18 +16,6 @@ export declare class EsamSignal {
16
16
  * @memberof EsamSignal
17
17
  */
18
18
  binary?: string;
19
- /**
20
- * Interval in ISO 8601 duration format for which the signal should be repeated. A signal may be specified as repeating when the interval and end attributes are present. In this case, the signal is executed at the time specified by offset and again at the time specified by adding interval to offset. This should be continued until reaching the duration of offset + end.
21
- * @type {string}
22
- * @memberof EsamSignal
23
- */
24
- interval?: string;
25
- /**
26
- * End duration in ISO 8601 duration format when a repeated signal should stop being repeated
27
- * @type {string}
28
- * @memberof EsamSignal
29
- */
30
- end?: string;
31
19
  constructor(obj?: Partial<EsamSignal>);
32
20
  }
33
21
  export default EsamSignal;
@@ -14,8 +14,6 @@ var EsamSignal = /** @class */ (function () {
14
14
  }
15
15
  this.offset = (0, Mapper_1.map)(obj.offset);
16
16
  this.binary = (0, Mapper_1.map)(obj.binary);
17
- this.interval = (0, Mapper_1.map)(obj.interval);
18
- this.end = (0, Mapper_1.map)(obj.end);
19
17
  }
20
18
  return EsamSignal;
21
19
  }());
@@ -2,6 +2,7 @@ import AwsCloudRegion from './AwsCloudRegion';
2
2
  import Output from './Output';
3
3
  import OutputType from './OutputType';
4
4
  import S3SignatureVersion from './S3SignatureVersion';
5
+ import S3StorageClass from './S3StorageClass';
5
6
  /**
6
7
  * @export
7
8
  * @class S3Output
@@ -49,6 +50,12 @@ export declare class S3Output extends Output {
49
50
  * @memberof S3Output
50
51
  */
51
52
  signatureVersion?: S3SignatureVersion;
53
+ /**
54
+ * Specifies the storage class used for the bucket. This depends on the requirements of workloads, like performance, data access, resiliency, and cost.
55
+ * @type {S3StorageClass}
56
+ * @memberof S3Output
57
+ */
58
+ storageClass?: S3StorageClass;
52
59
  constructor(obj?: Partial<S3Output>);
53
60
  }
54
61
  export default S3Output;
@@ -42,6 +42,7 @@ var S3Output = /** @class */ (function (_super) {
42
42
  _this.md5MetaTag = (0, Mapper_1.map)(obj.md5MetaTag);
43
43
  _this.cloudRegion = (0, Mapper_1.map)(obj.cloudRegion);
44
44
  _this.signatureVersion = (0, Mapper_1.map)(obj.signatureVersion);
45
+ _this.storageClass = (0, Mapper_1.map)(obj.storageClass);
45
46
  return _this;
46
47
  }
47
48
  return S3Output;
@@ -0,0 +1,13 @@
1
+ /**
2
+ * @export
3
+ * @enum {string}
4
+ */
5
+ export declare enum S3StorageClass {
6
+ GLACIER_IR = "GLACIER_IR",
7
+ INTELLIGENT_TIERING = "INTELLIGENT_TIERING",
8
+ ONEZONE_IA = "ONEZONE_IA",
9
+ REDUCED_REDUNDANCY = "REDUCED_REDUNDANCY",
10
+ STANDARD = "STANDARD",
11
+ STANDARD_IA = "STANDARD_IA"
12
+ }
13
+ export default S3StorageClass;
@@ -0,0 +1,17 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.S3StorageClass = void 0;
4
+ /**
5
+ * @export
6
+ * @enum {string}
7
+ */
8
+ var S3StorageClass;
9
+ (function (S3StorageClass) {
10
+ S3StorageClass["GLACIER_IR"] = "GLACIER_IR";
11
+ S3StorageClass["INTELLIGENT_TIERING"] = "INTELLIGENT_TIERING";
12
+ S3StorageClass["ONEZONE_IA"] = "ONEZONE_IA";
13
+ S3StorageClass["REDUCED_REDUNDANCY"] = "REDUCED_REDUNDANCY";
14
+ S3StorageClass["STANDARD"] = "STANDARD";
15
+ S3StorageClass["STANDARD_IA"] = "STANDARD_IA";
16
+ })(S3StorageClass || (exports.S3StorageClass = S3StorageClass = {}));
17
+ exports.default = S3StorageClass;
@@ -46,6 +46,8 @@ export * from './AesEncryptionMethod';
46
46
  export * from './AgentChatAttachment';
47
47
  export * from './AgentChatAttachmentsData';
48
48
  export * from './AgentChatAttachmentsPart';
49
+ export * from './AgentChatDynamicToolPart';
50
+ export * from './AgentChatDynamicToolState';
49
51
  export * from './AgentChatMessage';
50
52
  export * from './AgentChatMessagePart';
51
53
  export * from './AgentChatMessagePartType';
@@ -405,8 +407,6 @@ export * from './EnhancedDeinterlaceParity';
405
407
  export * from './EnhancedWatermarkFilter';
406
408
  export * from './ErrorDetails';
407
409
  export * from './ErrorRetryHint';
408
- export * from './EsamCondition';
409
- export * from './EsamDirection';
410
410
  export * from './EsamMediaPoint';
411
411
  export * from './EsamSettings';
412
412
  export * from './EsamSignal';
@@ -695,6 +695,7 @@ export * from './S3Output';
695
695
  export * from './S3RoleBasedInput';
696
696
  export * from './S3RoleBasedOutput';
697
697
  export * from './S3SignatureVersion';
698
+ export * from './S3StorageClass';
698
699
  export * from './ScaleFilter';
699
700
  export * from './ScalingAlgorithm';
700
701
  export * from './SccCaption';
@@ -62,6 +62,8 @@ __exportStar(require("./AesEncryptionMethod"), exports);
62
62
  __exportStar(require("./AgentChatAttachment"), exports);
63
63
  __exportStar(require("./AgentChatAttachmentsData"), exports);
64
64
  __exportStar(require("./AgentChatAttachmentsPart"), exports);
65
+ __exportStar(require("./AgentChatDynamicToolPart"), exports);
66
+ __exportStar(require("./AgentChatDynamicToolState"), exports);
65
67
  __exportStar(require("./AgentChatMessage"), exports);
66
68
  __exportStar(require("./AgentChatMessagePart"), exports);
67
69
  __exportStar(require("./AgentChatMessagePartType"), exports);
@@ -421,8 +423,6 @@ __exportStar(require("./EnhancedDeinterlaceParity"), exports);
421
423
  __exportStar(require("./EnhancedWatermarkFilter"), exports);
422
424
  __exportStar(require("./ErrorDetails"), exports);
423
425
  __exportStar(require("./ErrorRetryHint"), exports);
424
- __exportStar(require("./EsamCondition"), exports);
425
- __exportStar(require("./EsamDirection"), exports);
426
426
  __exportStar(require("./EsamMediaPoint"), exports);
427
427
  __exportStar(require("./EsamSettings"), exports);
428
428
  __exportStar(require("./EsamSignal"), exports);
@@ -711,6 +711,7 @@ __exportStar(require("./S3Output"), exports);
711
711
  __exportStar(require("./S3RoleBasedInput"), exports);
712
712
  __exportStar(require("./S3RoleBasedOutput"), exports);
713
713
  __exportStar(require("./S3SignatureVersion"), exports);
714
+ __exportStar(require("./S3StorageClass"), exports);
714
715
  __exportStar(require("./ScaleFilter"), exports);
715
716
  __exportStar(require("./ScalingAlgorithm"), exports);
716
717
  __exportStar(require("./SccCaption"), exports);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bitmovin/api-sdk",
3
- "version": "1.257.0",
3
+ "version": "1.259.0",
4
4
  "description": "Bitmovin JS/TS API SDK",
5
5
  "author": "Bitmovin Inc",
6
6
  "keywords": [
@@ -1,22 +0,0 @@
1
- import EsamDirection from './EsamDirection';
2
- /**
3
- * ESAM condition following the SCTE-250 standard with timing offset and directional marker (OUT/IN) for signaling content boundaries
4
- * @export
5
- * @class EsamCondition
6
- */
7
- export declare class EsamCondition {
8
- /**
9
- * The offset from the matched signal when this condition applies in ISO 8601 duration format, accurate to milliseconds (required)
10
- * @type {string}
11
- * @memberof EsamCondition
12
- */
13
- offset?: string;
14
- /**
15
- * Direction marker indicating the boundary type (OUT for start, IN for end) (required)
16
- * @type {EsamDirection}
17
- * @memberof EsamCondition
18
- */
19
- direction?: EsamDirection;
20
- constructor(obj?: Partial<EsamCondition>);
21
- }
22
- export default EsamCondition;
@@ -1,21 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.EsamCondition = void 0;
4
- var Mapper_1 = require("../common/Mapper");
5
- /**
6
- * ESAM condition following the SCTE-250 standard with timing offset and directional marker (OUT/IN) for signaling content boundaries
7
- * @export
8
- * @class EsamCondition
9
- */
10
- var EsamCondition = /** @class */ (function () {
11
- function EsamCondition(obj) {
12
- if (!obj) {
13
- return;
14
- }
15
- this.offset = (0, Mapper_1.map)(obj.offset);
16
- this.direction = (0, Mapper_1.map)(obj.direction);
17
- }
18
- return EsamCondition;
19
- }());
20
- exports.EsamCondition = EsamCondition;
21
- exports.default = EsamCondition;
@@ -1,11 +0,0 @@
1
- /**
2
- * ESAM direction indicator following the SCTE-250 standard
3
- * @export
4
- * @enum {string}
5
- */
6
- export declare enum EsamDirection {
7
- OUT = "OUT",
8
- IN = "IN",
9
- BOTH = "BOTH"
10
- }
11
- export default EsamDirection;
@@ -1,15 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.EsamDirection = void 0;
4
- /**
5
- * ESAM direction indicator following the SCTE-250 standard
6
- * @export
7
- * @enum {string}
8
- */
9
- var EsamDirection;
10
- (function (EsamDirection) {
11
- EsamDirection["OUT"] = "OUT";
12
- EsamDirection["IN"] = "IN";
13
- EsamDirection["BOTH"] = "BOTH";
14
- })(EsamDirection || (exports.EsamDirection = EsamDirection = {}));
15
- exports.default = EsamDirection;