@memberjunction/core-entities 2.42.1 → 2.43.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.
@@ -5391,6 +5391,17 @@ exports.EntityFieldSchema = zod_1.z.object({
5391
5391
  * * None
5392
5392
  * * All
5393
5393
  * * Description: Determines whether values for the field should be included when the schema is packed. Options: Auto (include manually set or auto-derived values), None (exclude all values), All (include all distinct values from the table). Defaults to Auto.`),
5394
+ Status: zod_1.z.union([zod_1.z.literal('Active'), zod_1.z.literal('Deprecated'), zod_1.z.literal('Disabled')]).describe(`
5395
+ * * Field Name: Status
5396
+ * * Display Name: Status
5397
+ * * SQL Data Type: nvarchar(25)
5398
+ * * Default Value: Active
5399
+ * * Value List Type: List
5400
+ * * Possible Values
5401
+ * * Active
5402
+ * * Deprecated
5403
+ * * Disabled
5404
+ * * Description: Current status of the entity field - Active fields are available for use, Deprecated fields are discouraged but still functional, Disabled fields are not available for use`),
5394
5405
  FieldCodeName: zod_1.z.string().nullable().describe(`
5395
5406
  * * Field Name: FieldCodeName
5396
5407
  * * Display Name: Field Code Name
@@ -12333,6 +12344,7 @@ exports.ActionEntity = ActionEntity = __decorate([
12333
12344
  * @extends {BaseEntity}
12334
12345
  * @class
12335
12346
  * @public
12347
+ * @deprecated This entity is deprecated and will be removed in a future version. Using it will result in console warnings.
12336
12348
  */
12337
12349
  let AIActionEntity = class AIActionEntity extends core_1.BaseEntity {
12338
12350
  /**
@@ -12714,6 +12726,7 @@ exports.AIAgentLearningCycleEntity = AIAgentLearningCycleEntity = __decorate([
12714
12726
  * @extends {BaseEntity}
12715
12727
  * @class
12716
12728
  * @public
12729
+ * @deprecated This entity is deprecated and will be removed in a future version. Using it will result in console warnings.
12717
12730
  */
12718
12731
  let AIAgentModelEntity = class AIAgentModelEntity extends core_1.BaseEntity {
12719
12732
  /**
@@ -13530,6 +13543,7 @@ exports.AIAgentEntity = AIAgentEntity = __decorate([
13530
13543
  * @extends {BaseEntity}
13531
13544
  * @class
13532
13545
  * @public
13546
+ * @deprecated This entity is deprecated and will be removed in a future version. Using it will result in console warnings.
13533
13547
  */
13534
13548
  let AIModelActionEntity = class AIModelActionEntity extends core_1.BaseEntity {
13535
13549
  /**
@@ -23007,6 +23021,7 @@ exports.EntityActionEntity = EntityActionEntity = __decorate([
23007
23021
  * @extends {BaseEntity}
23008
23022
  * @class
23009
23023
  * @public
23024
+ * @deprecated This entity is deprecated and will be removed in a future version. Using it will result in console warnings.
23010
23025
  */
23011
23026
  let EntityAIActionEntity = class EntityAIActionEntity extends core_1.BaseEntity {
23012
23027
  /**
@@ -24722,6 +24737,24 @@ let EntityFieldEntity = class EntityFieldEntity extends core_1.BaseEntity {
24722
24737
  this.Set('ValuesToPackWithSchema', value);
24723
24738
  }
24724
24739
  /**
24740
+ * * Field Name: Status
24741
+ * * Display Name: Status
24742
+ * * SQL Data Type: nvarchar(25)
24743
+ * * Default Value: Active
24744
+ * * Value List Type: List
24745
+ * * Possible Values
24746
+ * * Active
24747
+ * * Deprecated
24748
+ * * Disabled
24749
+ * * Description: Current status of the entity field - Active fields are available for use, Deprecated fields are discouraged but still functional, Disabled fields are not available for use
24750
+ */
24751
+ get Status() {
24752
+ return this.Get('Status');
24753
+ }
24754
+ set Status(value) {
24755
+ this.Set('Status', value);
24756
+ }
24757
+ /**
24725
24758
  * * Field Name: FieldCodeName
24726
24759
  * * Display Name: Field Code Name
24727
24760
  * * SQL Data Type: nvarchar(MAX)