@scout9/admin 1.0.0-alpha.0.0.65 → 1.0.0-alpha.0.0.66
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/build/api.d.ts +50 -2
- package/package.json +1 -1
- package/src/api.ts +9820 -9772
- package/tsconfig.tsbuildinfo +1 -1
package/build/api.d.ts
CHANGED
|
@@ -2201,10 +2201,10 @@ export interface EntityToken {
|
|
|
2201
2201
|
'end': number;
|
|
2202
2202
|
/**
|
|
2203
2203
|
* The entity token subtype, usually used a category tag to entity registry
|
|
2204
|
-
* @type {
|
|
2204
|
+
* @type {string}
|
|
2205
2205
|
* @memberof EntityToken
|
|
2206
2206
|
*/
|
|
2207
|
-
'subType'?:
|
|
2207
|
+
'subType'?: string;
|
|
2208
2208
|
/**
|
|
2209
2209
|
*
|
|
2210
2210
|
* @type {EntityTokenType}
|
|
@@ -2486,6 +2486,18 @@ export interface ForwardRequestLatestMessage {
|
|
|
2486
2486
|
* @memberof ForwardRequestLatestMessage
|
|
2487
2487
|
*/
|
|
2488
2488
|
'id': string;
|
|
2489
|
+
/**
|
|
2490
|
+
* The recorded content of the message created before the PMT transform (usually by a LLM, Application, or Agent)
|
|
2491
|
+
* @type {string}
|
|
2492
|
+
* @memberof ForwardRequestLatestMessage
|
|
2493
|
+
*/
|
|
2494
|
+
'contentGenerated'?: string;
|
|
2495
|
+
/**
|
|
2496
|
+
* The recorded content of the message after the PMT transform
|
|
2497
|
+
* @type {string}
|
|
2498
|
+
* @memberof ForwardRequestLatestMessage
|
|
2499
|
+
*/
|
|
2500
|
+
'contentTransformed'?: string;
|
|
2489
2501
|
/**
|
|
2490
2502
|
* If set to true, the PMT will not transform, message will be sent as is
|
|
2491
2503
|
* @type {boolean}
|
|
@@ -4940,6 +4952,18 @@ export interface Message {
|
|
|
4940
4952
|
* @memberof Message
|
|
4941
4953
|
*/
|
|
4942
4954
|
'id': string;
|
|
4955
|
+
/**
|
|
4956
|
+
* The recorded content of the message created before the PMT transform (usually by a LLM, Application, or Agent)
|
|
4957
|
+
* @type {string}
|
|
4958
|
+
* @memberof Message
|
|
4959
|
+
*/
|
|
4960
|
+
'contentGenerated'?: string;
|
|
4961
|
+
/**
|
|
4962
|
+
* The recorded content of the message after the PMT transform
|
|
4963
|
+
* @type {string}
|
|
4964
|
+
* @memberof Message
|
|
4965
|
+
*/
|
|
4966
|
+
'contentTransformed'?: string;
|
|
4943
4967
|
/**
|
|
4944
4968
|
* If set to true, the PMT will not transform, message will be sent as is
|
|
4945
4969
|
* @type {boolean}
|
|
@@ -5028,6 +5052,18 @@ export interface MessageAllOf {
|
|
|
5028
5052
|
* @memberof MessageAllOf
|
|
5029
5053
|
*/
|
|
5030
5054
|
'id': string;
|
|
5055
|
+
/**
|
|
5056
|
+
* The recorded content of the message created before the PMT transform (usually by a LLM, Application, or Agent)
|
|
5057
|
+
* @type {string}
|
|
5058
|
+
* @memberof MessageAllOf
|
|
5059
|
+
*/
|
|
5060
|
+
'contentGenerated'?: string;
|
|
5061
|
+
/**
|
|
5062
|
+
* The recorded content of the message after the PMT transform
|
|
5063
|
+
* @type {string}
|
|
5064
|
+
* @memberof MessageAllOf
|
|
5065
|
+
*/
|
|
5066
|
+
'contentTransformed'?: string;
|
|
5031
5067
|
/**
|
|
5032
5068
|
* If set to true, the PMT will not transform, message will be sent as is
|
|
5033
5069
|
* @type {boolean}
|
|
@@ -5300,6 +5336,18 @@ export interface MessageGetResponseInner {
|
|
|
5300
5336
|
* @memberof MessageGetResponseInner
|
|
5301
5337
|
*/
|
|
5302
5338
|
'id': string;
|
|
5339
|
+
/**
|
|
5340
|
+
* The recorded content of the message created before the PMT transform (usually by a LLM, Application, or Agent)
|
|
5341
|
+
* @type {string}
|
|
5342
|
+
* @memberof MessageGetResponseInner
|
|
5343
|
+
*/
|
|
5344
|
+
'contentGenerated'?: string;
|
|
5345
|
+
/**
|
|
5346
|
+
* The recorded content of the message after the PMT transform
|
|
5347
|
+
* @type {string}
|
|
5348
|
+
* @memberof MessageGetResponseInner
|
|
5349
|
+
*/
|
|
5350
|
+
'contentTransformed'?: string;
|
|
5303
5351
|
/**
|
|
5304
5352
|
* If set to true, the PMT will not transform, message will be sent as is
|
|
5305
5353
|
* @type {boolean}
|