@memberjunction/core-entities 2.98.0 → 2.99.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.
|
@@ -1225,6 +1225,16 @@ if this limit is exceeded.`),
|
|
|
1225
1225
|
* * Display Name: Default Prompt Effort Level
|
|
1226
1226
|
* * SQL Data Type: int
|
|
1227
1227
|
* * Description: Default effort level for all prompts executed by this agent (1-100, where 1=minimal effort, 100=maximum effort). Takes precedence over individual prompt EffortLevel settings but can be overridden by runtime parameters. Inherited by sub-agents unless explicitly overridden.`),
|
|
1228
|
+
ChatHandlingOption: zod_1.z.union([zod_1.z.literal('Success'), zod_1.z.literal('Failed'), zod_1.z.literal('Retry')]).nullable().describe(`
|
|
1229
|
+
* * Field Name: ChatHandlingOption
|
|
1230
|
+
* * Display Name: Chat Handling Option
|
|
1231
|
+
* * SQL Data Type: nvarchar(30)
|
|
1232
|
+
* * Value List Type: List
|
|
1233
|
+
* * Possible Values
|
|
1234
|
+
* * Success
|
|
1235
|
+
* * Failed
|
|
1236
|
+
* * Retry
|
|
1237
|
+
* * Description: Controls how Chat next steps are handled. When null (default), Chat propagates to caller. When set to Success, Failed, or Retry, Chat steps are remapped to that value and re-validated.`),
|
|
1228
1238
|
Parent: zod_1.z.string().nullable().describe(`
|
|
1229
1239
|
* * Field Name: Parent
|
|
1230
1240
|
* * Display Name: Parent
|
|
@@ -9268,6 +9278,17 @@ exports.ComponentLibrarySchema = zod_1.z.object({
|
|
|
9268
9278
|
* * Display Name: Dependencies
|
|
9269
9279
|
* * SQL Data Type: nvarchar(MAX)
|
|
9270
9280
|
* * Description: JSON object defining dependencies for this component library. Format: { "libraryName": "versionSpec", ... }. Version specifications follow NPM-style syntax (e.g., "~1.0.0", "^1.2.3", "2.3.4"). Dependencies are loaded before this library to ensure proper execution context.`),
|
|
9281
|
+
UsageType: zod_1.z.union([zod_1.z.literal('Direct'), zod_1.z.literal('Dependency'), zod_1.z.literal('Both')]).describe(`
|
|
9282
|
+
* * Field Name: UsageType
|
|
9283
|
+
* * Display Name: Usage Type
|
|
9284
|
+
* * SQL Data Type: nvarchar(50)
|
|
9285
|
+
* * Default Value: Both
|
|
9286
|
+
* * Value List Type: List
|
|
9287
|
+
* * Possible Values
|
|
9288
|
+
* * Direct
|
|
9289
|
+
* * Dependency
|
|
9290
|
+
* * Both
|
|
9291
|
+
* * Description: Controls how the library can be used: Direct (by components), Dependency (only as dependency), or Both`),
|
|
9271
9292
|
});
|
|
9272
9293
|
/**
|
|
9273
9294
|
* zod schema definition for the entity MJ: Component Library Links
|
|
@@ -16543,6 +16564,23 @@ if this limit is exceeded.
|
|
|
16543
16564
|
this.Set('DefaultPromptEffortLevel', value);
|
|
16544
16565
|
}
|
|
16545
16566
|
/**
|
|
16567
|
+
* * Field Name: ChatHandlingOption
|
|
16568
|
+
* * Display Name: Chat Handling Option
|
|
16569
|
+
* * SQL Data Type: nvarchar(30)
|
|
16570
|
+
* * Value List Type: List
|
|
16571
|
+
* * Possible Values
|
|
16572
|
+
* * Success
|
|
16573
|
+
* * Failed
|
|
16574
|
+
* * Retry
|
|
16575
|
+
* * Description: Controls how Chat next steps are handled. When null (default), Chat propagates to caller. When set to Success, Failed, or Retry, Chat steps are remapped to that value and re-validated.
|
|
16576
|
+
*/
|
|
16577
|
+
get ChatHandlingOption() {
|
|
16578
|
+
return this.Get('ChatHandlingOption');
|
|
16579
|
+
}
|
|
16580
|
+
set ChatHandlingOption(value) {
|
|
16581
|
+
this.Set('ChatHandlingOption', value);
|
|
16582
|
+
}
|
|
16583
|
+
/**
|
|
16546
16584
|
* * Field Name: Parent
|
|
16547
16585
|
* * Display Name: Parent
|
|
16548
16586
|
* * SQL Data Type: nvarchar(255)
|
|
@@ -37074,6 +37112,24 @@ let ComponentLibraryEntity = class ComponentLibraryEntity extends core_1.BaseEnt
|
|
|
37074
37112
|
set Dependencies(value) {
|
|
37075
37113
|
this.Set('Dependencies', value);
|
|
37076
37114
|
}
|
|
37115
|
+
/**
|
|
37116
|
+
* * Field Name: UsageType
|
|
37117
|
+
* * Display Name: Usage Type
|
|
37118
|
+
* * SQL Data Type: nvarchar(50)
|
|
37119
|
+
* * Default Value: Both
|
|
37120
|
+
* * Value List Type: List
|
|
37121
|
+
* * Possible Values
|
|
37122
|
+
* * Direct
|
|
37123
|
+
* * Dependency
|
|
37124
|
+
* * Both
|
|
37125
|
+
* * Description: Controls how the library can be used: Direct (by components), Dependency (only as dependency), or Both
|
|
37126
|
+
*/
|
|
37127
|
+
get UsageType() {
|
|
37128
|
+
return this.Get('UsageType');
|
|
37129
|
+
}
|
|
37130
|
+
set UsageType(value) {
|
|
37131
|
+
this.Set('UsageType', value);
|
|
37132
|
+
}
|
|
37077
37133
|
};
|
|
37078
37134
|
exports.ComponentLibraryEntity = ComponentLibraryEntity;
|
|
37079
37135
|
exports.ComponentLibraryEntity = ComponentLibraryEntity = __decorate([
|