@scout9/admin 1.0.0-alpha.0.0.64 → 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 +55 -1
- package/package.json +1 -1
- package/src/api.ts +9820 -9766
- package/tsconfig.tsbuildinfo +1 -1
package/build/api.d.ts
CHANGED
|
@@ -2199,6 +2199,12 @@ export interface EntityToken {
|
|
|
2199
2199
|
* @memberof EntityToken
|
|
2200
2200
|
*/
|
|
2201
2201
|
'end': number;
|
|
2202
|
+
/**
|
|
2203
|
+
* The entity token subtype, usually used a category tag to entity registry
|
|
2204
|
+
* @type {string}
|
|
2205
|
+
* @memberof EntityToken
|
|
2206
|
+
*/
|
|
2207
|
+
'subType'?: string;
|
|
2202
2208
|
/**
|
|
2203
2209
|
*
|
|
2204
2210
|
* @type {EntityTokenType}
|
|
@@ -2206,7 +2212,7 @@ export interface EntityToken {
|
|
|
2206
2212
|
*/
|
|
2207
2213
|
'type': EntityTokenType;
|
|
2208
2214
|
/**
|
|
2209
|
-
* The unique id associated with the
|
|
2215
|
+
* The unique id associated with the entity token type
|
|
2210
2216
|
* @type {string}
|
|
2211
2217
|
* @memberof EntityToken
|
|
2212
2218
|
*/
|
|
@@ -2480,6 +2486,18 @@ export interface ForwardRequestLatestMessage {
|
|
|
2480
2486
|
* @memberof ForwardRequestLatestMessage
|
|
2481
2487
|
*/
|
|
2482
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;
|
|
2483
2501
|
/**
|
|
2484
2502
|
* If set to true, the PMT will not transform, message will be sent as is
|
|
2485
2503
|
* @type {boolean}
|
|
@@ -4934,6 +4952,18 @@ export interface Message {
|
|
|
4934
4952
|
* @memberof Message
|
|
4935
4953
|
*/
|
|
4936
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;
|
|
4937
4967
|
/**
|
|
4938
4968
|
* If set to true, the PMT will not transform, message will be sent as is
|
|
4939
4969
|
* @type {boolean}
|
|
@@ -5022,6 +5052,18 @@ export interface MessageAllOf {
|
|
|
5022
5052
|
* @memberof MessageAllOf
|
|
5023
5053
|
*/
|
|
5024
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;
|
|
5025
5067
|
/**
|
|
5026
5068
|
* If set to true, the PMT will not transform, message will be sent as is
|
|
5027
5069
|
* @type {boolean}
|
|
@@ -5294,6 +5336,18 @@ export interface MessageGetResponseInner {
|
|
|
5294
5336
|
* @memberof MessageGetResponseInner
|
|
5295
5337
|
*/
|
|
5296
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;
|
|
5297
5351
|
/**
|
|
5298
5352
|
* If set to true, the PMT will not transform, message will be sent as is
|
|
5299
5353
|
* @type {boolean}
|