@bitmovin/api-sdk 1.258.0 → 1.259.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.
- package/README.md +1 -1
- package/dist/bitmovin-api-sdk.browser.js +123 -2
- package/dist/bitmovin-api-sdk.browser.min.js +1 -1
- package/dist/common/RestClient.js +1 -1
- package/dist/models/AgentChatDynamicToolPart.d.ts +57 -0
- package/dist/models/AgentChatDynamicToolPart.js +50 -0
- package/dist/models/AgentChatDynamicToolState.d.ts +11 -0
- package/dist/models/AgentChatDynamicToolState.js +15 -0
- package/dist/models/AgentChatMessagePart.d.ts +2 -1
- package/dist/models/AgentChatMessagePart.js +2 -1
- package/dist/models/AgentChatMessagePartType.d.ts +2 -1
- package/dist/models/AgentChatMessagePartType.js +1 -0
- package/dist/models/S3Output.d.ts +7 -0
- package/dist/models/S3Output.js +1 -0
- package/dist/models/S3StorageClass.d.ts +13 -0
- package/dist/models/S3StorageClass.js +17 -0
- package/dist/models/index.d.ts +3 -0
- package/dist/models/index.js +3 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -6657,7 +6657,7 @@ var HeaderHandler = /** @class */ (function (_super) {
|
|
|
6657
6657
|
var headers = {
|
|
6658
6658
|
'X-Api-Key': apiKey,
|
|
6659
6659
|
'X-Api-Client': 'bitmovin-api-sdk-javascript',
|
|
6660
|
-
'X-Api-Client-Version': '1.
|
|
6660
|
+
'X-Api-Client-Version': '1.259.1',
|
|
6661
6661
|
'Content-Type': 'application/json'
|
|
6662
6662
|
};
|
|
6663
6663
|
if (tenantOrgId) {
|
|
@@ -58896,6 +58896,93 @@ exports.AgentChatAttachmentsPart = AgentChatAttachmentsPart;
|
|
|
58896
58896
|
exports["default"] = AgentChatAttachmentsPart;
|
|
58897
58897
|
|
|
58898
58898
|
|
|
58899
|
+
/***/ },
|
|
58900
|
+
|
|
58901
|
+
/***/ "./models/AgentChatDynamicToolPart.ts"
|
|
58902
|
+
/*!********************************************!*\
|
|
58903
|
+
!*** ./models/AgentChatDynamicToolPart.ts ***!
|
|
58904
|
+
\********************************************/
|
|
58905
|
+
(__unused_webpack_module, exports, __webpack_require__) {
|
|
58906
|
+
|
|
58907
|
+
"use strict";
|
|
58908
|
+
|
|
58909
|
+
var __extends = (this && this.__extends) || (function () {
|
|
58910
|
+
var extendStatics = function (d, b) {
|
|
58911
|
+
extendStatics = Object.setPrototypeOf ||
|
|
58912
|
+
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
58913
|
+
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
|
|
58914
|
+
return extendStatics(d, b);
|
|
58915
|
+
};
|
|
58916
|
+
return function (d, b) {
|
|
58917
|
+
if (typeof b !== "function" && b !== null)
|
|
58918
|
+
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
|
|
58919
|
+
extendStatics(d, b);
|
|
58920
|
+
function __() { this.constructor = d; }
|
|
58921
|
+
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
58922
|
+
};
|
|
58923
|
+
})();
|
|
58924
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
58925
|
+
exports.AgentChatDynamicToolPart = void 0;
|
|
58926
|
+
var Mapper_1 = __webpack_require__(/*! ../common/Mapper */ "./common/Mapper.ts");
|
|
58927
|
+
var AgentChatMessagePart_1 = __webpack_require__(/*! ./AgentChatMessagePart */ "./models/AgentChatMessagePart.ts");
|
|
58928
|
+
var AgentChatMessagePartType_1 = __webpack_require__(/*! ./AgentChatMessagePartType */ "./models/AgentChatMessagePartType.ts");
|
|
58929
|
+
/**
|
|
58930
|
+
* @export
|
|
58931
|
+
* @class AgentChatDynamicToolPart
|
|
58932
|
+
*/
|
|
58933
|
+
var AgentChatDynamicToolPart = /** @class */ (function (_super) {
|
|
58934
|
+
__extends(AgentChatDynamicToolPart, _super);
|
|
58935
|
+
function AgentChatDynamicToolPart(obj) {
|
|
58936
|
+
var _this = _super.call(this, obj) || this;
|
|
58937
|
+
/**
|
|
58938
|
+
* Discriminator property for AgentChatMessagePart
|
|
58939
|
+
* @type {string}
|
|
58940
|
+
* @memberof AgentChatDynamicToolPart
|
|
58941
|
+
*/
|
|
58942
|
+
_this.type = AgentChatMessagePartType_1.default.DYNAMIC_TOOL;
|
|
58943
|
+
if (!obj) {
|
|
58944
|
+
return _this;
|
|
58945
|
+
}
|
|
58946
|
+
_this.toolName = (0, Mapper_1.map)(obj.toolName);
|
|
58947
|
+
_this.toolCallId = (0, Mapper_1.map)(obj.toolCallId);
|
|
58948
|
+
_this.state = (0, Mapper_1.map)(obj.state);
|
|
58949
|
+
_this.input = (0, Mapper_1.map)(obj.input);
|
|
58950
|
+
_this.output = (0, Mapper_1.map)(obj.output);
|
|
58951
|
+
_this.errorText = (0, Mapper_1.map)(obj.errorText);
|
|
58952
|
+
return _this;
|
|
58953
|
+
}
|
|
58954
|
+
return AgentChatDynamicToolPart;
|
|
58955
|
+
}(AgentChatMessagePart_1.default));
|
|
58956
|
+
exports.AgentChatDynamicToolPart = AgentChatDynamicToolPart;
|
|
58957
|
+
exports["default"] = AgentChatDynamicToolPart;
|
|
58958
|
+
|
|
58959
|
+
|
|
58960
|
+
/***/ },
|
|
58961
|
+
|
|
58962
|
+
/***/ "./models/AgentChatDynamicToolState.ts"
|
|
58963
|
+
/*!*********************************************!*\
|
|
58964
|
+
!*** ./models/AgentChatDynamicToolState.ts ***!
|
|
58965
|
+
\*********************************************/
|
|
58966
|
+
(__unused_webpack_module, exports) {
|
|
58967
|
+
|
|
58968
|
+
"use strict";
|
|
58969
|
+
|
|
58970
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
58971
|
+
exports.AgentChatDynamicToolState = void 0;
|
|
58972
|
+
/**
|
|
58973
|
+
* @export
|
|
58974
|
+
* @enum {string}
|
|
58975
|
+
*/
|
|
58976
|
+
var AgentChatDynamicToolState;
|
|
58977
|
+
(function (AgentChatDynamicToolState) {
|
|
58978
|
+
AgentChatDynamicToolState["INPUT_STREAMING"] = "input-streaming";
|
|
58979
|
+
AgentChatDynamicToolState["INPUT_AVAILABLE"] = "input-available";
|
|
58980
|
+
AgentChatDynamicToolState["OUTPUT_AVAILABLE"] = "output-available";
|
|
58981
|
+
AgentChatDynamicToolState["OUTPUT_ERROR"] = "output-error";
|
|
58982
|
+
})(AgentChatDynamicToolState || (exports.AgentChatDynamicToolState = AgentChatDynamicToolState = {}));
|
|
58983
|
+
exports["default"] = AgentChatDynamicToolState;
|
|
58984
|
+
|
|
58985
|
+
|
|
58899
58986
|
/***/ },
|
|
58900
58987
|
|
|
58901
58988
|
/***/ "./models/AgentChatMessage.ts"
|
|
@@ -58954,7 +59041,8 @@ var AgentChatMessagePart = /** @class */ (function () {
|
|
|
58954
59041
|
AgentChatMessagePart._discriminatorName = 'type';
|
|
58955
59042
|
AgentChatMessagePart._discriminatorMapping = {
|
|
58956
59043
|
"text": 'AgentChatTextPart',
|
|
58957
|
-
"data-attachments": 'AgentChatAttachmentsPart'
|
|
59044
|
+
"data-attachments": 'AgentChatAttachmentsPart',
|
|
59045
|
+
"dynamic-tool": 'AgentChatDynamicToolPart'
|
|
58958
59046
|
};
|
|
58959
59047
|
return AgentChatMessagePart;
|
|
58960
59048
|
}());
|
|
@@ -58982,6 +59070,7 @@ var AgentChatMessagePartType;
|
|
|
58982
59070
|
(function (AgentChatMessagePartType) {
|
|
58983
59071
|
AgentChatMessagePartType["TEXT"] = "text";
|
|
58984
59072
|
AgentChatMessagePartType["DATA_ATTACHMENTS"] = "data-attachments";
|
|
59073
|
+
AgentChatMessagePartType["DYNAMIC_TOOL"] = "dynamic-tool";
|
|
58985
59074
|
})(AgentChatMessagePartType || (exports.AgentChatMessagePartType = AgentChatMessagePartType = {}));
|
|
58986
59075
|
exports["default"] = AgentChatMessagePartType;
|
|
58987
59076
|
|
|
@@ -84819,6 +84908,7 @@ var S3Output = /** @class */ (function (_super) {
|
|
|
84819
84908
|
_this.md5MetaTag = (0, Mapper_1.map)(obj.md5MetaTag);
|
|
84820
84909
|
_this.cloudRegion = (0, Mapper_1.map)(obj.cloudRegion);
|
|
84821
84910
|
_this.signatureVersion = (0, Mapper_1.map)(obj.signatureVersion);
|
|
84911
|
+
_this.storageClass = (0, Mapper_1.map)(obj.storageClass);
|
|
84822
84912
|
return _this;
|
|
84823
84913
|
}
|
|
84824
84914
|
return S3Output;
|
|
@@ -84973,6 +85063,34 @@ var S3SignatureVersion;
|
|
|
84973
85063
|
exports["default"] = S3SignatureVersion;
|
|
84974
85064
|
|
|
84975
85065
|
|
|
85066
|
+
/***/ },
|
|
85067
|
+
|
|
85068
|
+
/***/ "./models/S3StorageClass.ts"
|
|
85069
|
+
/*!**********************************!*\
|
|
85070
|
+
!*** ./models/S3StorageClass.ts ***!
|
|
85071
|
+
\**********************************/
|
|
85072
|
+
(__unused_webpack_module, exports) {
|
|
85073
|
+
|
|
85074
|
+
"use strict";
|
|
85075
|
+
|
|
85076
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
85077
|
+
exports.S3StorageClass = void 0;
|
|
85078
|
+
/**
|
|
85079
|
+
* @export
|
|
85080
|
+
* @enum {string}
|
|
85081
|
+
*/
|
|
85082
|
+
var S3StorageClass;
|
|
85083
|
+
(function (S3StorageClass) {
|
|
85084
|
+
S3StorageClass["GLACIER_IR"] = "GLACIER_IR";
|
|
85085
|
+
S3StorageClass["INTELLIGENT_TIERING"] = "INTELLIGENT_TIERING";
|
|
85086
|
+
S3StorageClass["ONEZONE_IA"] = "ONEZONE_IA";
|
|
85087
|
+
S3StorageClass["REDUCED_REDUNDANCY"] = "REDUCED_REDUNDANCY";
|
|
85088
|
+
S3StorageClass["STANDARD"] = "STANDARD";
|
|
85089
|
+
S3StorageClass["STANDARD_IA"] = "STANDARD_IA";
|
|
85090
|
+
})(S3StorageClass || (exports.S3StorageClass = S3StorageClass = {}));
|
|
85091
|
+
exports["default"] = S3StorageClass;
|
|
85092
|
+
|
|
85093
|
+
|
|
84976
85094
|
/***/ },
|
|
84977
85095
|
|
|
84978
85096
|
/***/ "./models/ScaleFilter.ts"
|
|
@@ -92604,6 +92722,8 @@ __exportStar(__webpack_require__(/*! ./AesEncryptionMethod */ "./models/AesEncry
|
|
|
92604
92722
|
__exportStar(__webpack_require__(/*! ./AgentChatAttachment */ "./models/AgentChatAttachment.ts"), exports);
|
|
92605
92723
|
__exportStar(__webpack_require__(/*! ./AgentChatAttachmentsData */ "./models/AgentChatAttachmentsData.ts"), exports);
|
|
92606
92724
|
__exportStar(__webpack_require__(/*! ./AgentChatAttachmentsPart */ "./models/AgentChatAttachmentsPart.ts"), exports);
|
|
92725
|
+
__exportStar(__webpack_require__(/*! ./AgentChatDynamicToolPart */ "./models/AgentChatDynamicToolPart.ts"), exports);
|
|
92726
|
+
__exportStar(__webpack_require__(/*! ./AgentChatDynamicToolState */ "./models/AgentChatDynamicToolState.ts"), exports);
|
|
92607
92727
|
__exportStar(__webpack_require__(/*! ./AgentChatMessage */ "./models/AgentChatMessage.ts"), exports);
|
|
92608
92728
|
__exportStar(__webpack_require__(/*! ./AgentChatMessagePart */ "./models/AgentChatMessagePart.ts"), exports);
|
|
92609
92729
|
__exportStar(__webpack_require__(/*! ./AgentChatMessagePartType */ "./models/AgentChatMessagePartType.ts"), exports);
|
|
@@ -93251,6 +93371,7 @@ __exportStar(__webpack_require__(/*! ./S3Output */ "./models/S3Output.ts"), expo
|
|
|
93251
93371
|
__exportStar(__webpack_require__(/*! ./S3RoleBasedInput */ "./models/S3RoleBasedInput.ts"), exports);
|
|
93252
93372
|
__exportStar(__webpack_require__(/*! ./S3RoleBasedOutput */ "./models/S3RoleBasedOutput.ts"), exports);
|
|
93253
93373
|
__exportStar(__webpack_require__(/*! ./S3SignatureVersion */ "./models/S3SignatureVersion.ts"), exports);
|
|
93374
|
+
__exportStar(__webpack_require__(/*! ./S3StorageClass */ "./models/S3StorageClass.ts"), exports);
|
|
93254
93375
|
__exportStar(__webpack_require__(/*! ./ScaleFilter */ "./models/ScaleFilter.ts"), exports);
|
|
93255
93376
|
__exportStar(__webpack_require__(/*! ./ScalingAlgorithm */ "./models/ScalingAlgorithm.ts"), exports);
|
|
93256
93377
|
__exportStar(__webpack_require__(/*! ./SccCaption */ "./models/SccCaption.ts"), exports);
|