@memberjunction/core-entities 2.69.1 → 2.70.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.
|
@@ -9232,35 +9232,35 @@ export declare class AIAgentActionEntity extends BaseEntity<AIAgentActionEntityT
|
|
|
9232
9232
|
Load(ID: string, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
|
|
9233
9233
|
/**
|
|
9234
9234
|
* Validate() method override for AI Agent Actions entity. This is an auto-generated method that invokes the generated validators for this entity for the following fields:
|
|
9235
|
+
* * MinExecutionsPerRun: This rule ensures that if a value for 'Minimum Executions Per Run' is provided, it must be zero or greater. If the value is not provided (left blank), that's also allowed.
|
|
9235
9236
|
* * MaxExecutionsPerRun: This rule ensures that if a value for the maximum number of executions per run is provided, it must be greater than zero. If no value is provided, that's acceptable.
|
|
9236
9237
|
* * Table-Level: This rule ensures that the minimum number of executions per run cannot be greater than the maximum number of executions per run. If either value is not specified, the rule is considered satisfied.
|
|
9237
|
-
* * MinExecutionsPerRun: This rule ensures that if a value for 'Minimum Executions Per Run' is provided, it must be zero or greater. If the value is not provided (left blank), that's also allowed.
|
|
9238
9238
|
* @public
|
|
9239
9239
|
* @method
|
|
9240
9240
|
* @override
|
|
9241
9241
|
*/
|
|
9242
9242
|
Validate(): ValidationResult;
|
|
9243
9243
|
/**
|
|
9244
|
-
* This rule ensures that if a value for
|
|
9244
|
+
* This rule ensures that if a value for 'Minimum Executions Per Run' is provided, it must be zero or greater. If the value is not provided (left blank), that's also allowed.
|
|
9245
9245
|
* @param result - the ValidationResult object to add any errors or warnings to
|
|
9246
9246
|
* @public
|
|
9247
9247
|
* @method
|
|
9248
9248
|
*/
|
|
9249
|
-
|
|
9249
|
+
ValidateMinExecutionsPerRunIsNonNegative(result: ValidationResult): void;
|
|
9250
9250
|
/**
|
|
9251
|
-
* This rule ensures that the
|
|
9251
|
+
* This rule ensures that if a value for the maximum number of executions per run is provided, it must be greater than zero. If no value is provided, that's acceptable.
|
|
9252
9252
|
* @param result - the ValidationResult object to add any errors or warnings to
|
|
9253
9253
|
* @public
|
|
9254
9254
|
* @method
|
|
9255
9255
|
*/
|
|
9256
|
-
|
|
9256
|
+
ValidateMaxExecutionsPerRunGreaterThanZero(result: ValidationResult): void;
|
|
9257
9257
|
/**
|
|
9258
|
-
* This rule ensures that
|
|
9258
|
+
* This rule ensures that the minimum number of executions per run cannot be greater than the maximum number of executions per run. If either value is not specified, the rule is considered satisfied.
|
|
9259
9259
|
* @param result - the ValidationResult object to add any errors or warnings to
|
|
9260
9260
|
* @public
|
|
9261
9261
|
* @method
|
|
9262
9262
|
*/
|
|
9263
|
-
|
|
9263
|
+
ValidateMinExecutionsPerRunLessThanOrEqualToMax(result: ValidationResult): void;
|
|
9264
9264
|
/**
|
|
9265
9265
|
* * Field Name: ID
|
|
9266
9266
|
* * Display Name: ID
|
|
@@ -9880,51 +9880,51 @@ export declare class AIAgentEntity extends BaseEntity<AIAgentEntityType> {
|
|
|
9880
9880
|
Load(ID: string, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
|
|
9881
9881
|
/**
|
|
9882
9882
|
* Validate() method override for AI Agents entity. This is an auto-generated method that invokes the generated validators for this entity for the following fields:
|
|
9883
|
-
* * Table-Level: This rule makes sure that if the ParentID is set (not empty), then the ExposeAsAction option must be disabled. If ExposeAsAction is enabled, ParentID must be empty.
|
|
9884
|
-
* * Table-Level: This rule ensures that if context compression is enabled, all related settings (message threshold, prompt ID, and message retention count) must be specified. If context compression is not enabled, these settings may be left unspecified.
|
|
9885
9883
|
* * MinExecutionsPerRun: This rule ensures that if the minimum executions per run value is provided, it must be zero or greater.
|
|
9886
|
-
* * Table-Level: This rule ensures that if both 'Minimum Executions Per Run' and 'Maximum Executions Per Run' are specified, the minimum must not be greater than the maximum. If either field is not specified, this rule does not apply.
|
|
9887
9884
|
* * MaxExecutionsPerRun: This rule ensures that the maximum number of executions per run can either be left blank (unspecified) or, if provided, it must be a positive number greater than zero.
|
|
9885
|
+
* * Table-Level: This rule ensures that if both 'Minimum Executions Per Run' and 'Maximum Executions Per Run' are specified, the minimum must not be greater than the maximum. If either field is not specified, this rule does not apply.
|
|
9886
|
+
* * Table-Level: This rule makes sure that if the ParentID is set (not empty), then the ExposeAsAction option must be disabled. If ExposeAsAction is enabled, ParentID must be empty.
|
|
9887
|
+
* * Table-Level: This rule ensures that if context compression is enabled, all related settings (message threshold, prompt ID, and message retention count) must be specified. If context compression is not enabled, these settings may be left unspecified.
|
|
9888
9888
|
* @public
|
|
9889
9889
|
* @method
|
|
9890
9890
|
* @override
|
|
9891
9891
|
*/
|
|
9892
9892
|
Validate(): ValidationResult;
|
|
9893
9893
|
/**
|
|
9894
|
-
* This rule
|
|
9894
|
+
* This rule ensures that if the minimum executions per run value is provided, it must be zero or greater.
|
|
9895
9895
|
* @param result - the ValidationResult object to add any errors or warnings to
|
|
9896
9896
|
* @public
|
|
9897
9897
|
* @method
|
|
9898
9898
|
*/
|
|
9899
|
-
|
|
9899
|
+
ValidateMinExecutionsPerRunIsNonNegative(result: ValidationResult): void;
|
|
9900
9900
|
/**
|
|
9901
|
-
* This rule ensures that
|
|
9901
|
+
* This rule ensures that the maximum number of executions per run can either be left blank (unspecified) or, if provided, it must be a positive number greater than zero.
|
|
9902
9902
|
* @param result - the ValidationResult object to add any errors or warnings to
|
|
9903
9903
|
* @public
|
|
9904
9904
|
* @method
|
|
9905
9905
|
*/
|
|
9906
|
-
|
|
9906
|
+
ValidateMaxExecutionsPerRunIsNullOrPositive(result: ValidationResult): void;
|
|
9907
9907
|
/**
|
|
9908
|
-
* This rule ensures that if
|
|
9908
|
+
* This rule ensures that if both 'Minimum Executions Per Run' and 'Maximum Executions Per Run' are specified, the minimum must not be greater than the maximum. If either field is not specified, this rule does not apply.
|
|
9909
9909
|
* @param result - the ValidationResult object to add any errors or warnings to
|
|
9910
9910
|
* @public
|
|
9911
9911
|
* @method
|
|
9912
9912
|
*/
|
|
9913
|
-
|
|
9913
|
+
ValidateMinExecutionsPerRunLessThanOrEqualToMaxExecutionsPerRun(result: ValidationResult): void;
|
|
9914
9914
|
/**
|
|
9915
|
-
* This rule
|
|
9915
|
+
* This rule makes sure that if the ParentID is set (not empty), then the ExposeAsAction option must be disabled. If ExposeAsAction is enabled, ParentID must be empty.
|
|
9916
9916
|
* @param result - the ValidationResult object to add any errors or warnings to
|
|
9917
9917
|
* @public
|
|
9918
9918
|
* @method
|
|
9919
9919
|
*/
|
|
9920
|
-
|
|
9920
|
+
ValidateParentIDMustBeNullIfExposeAsActionTrue(result: ValidationResult): void;
|
|
9921
9921
|
/**
|
|
9922
|
-
* This rule ensures that
|
|
9922
|
+
* This rule ensures that if context compression is enabled, all related settings (message threshold, prompt ID, and message retention count) must be specified. If context compression is not enabled, these settings may be left unspecified.
|
|
9923
9923
|
* @param result - the ValidationResult object to add any errors or warnings to
|
|
9924
9924
|
* @public
|
|
9925
9925
|
* @method
|
|
9926
9926
|
*/
|
|
9927
|
-
|
|
9927
|
+
ValidateEnableContextCompressionRequiresContextFields(result: ValidationResult): void;
|
|
9928
9928
|
/**
|
|
9929
9929
|
* * Field Name: ID
|
|
9930
9930
|
* * Display Name: ID
|