@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.
@@ -3502,6 +3502,7 @@ export declare const EntityFieldSchema: z.ZodObject<{
3502
3502
  ScopeDefault: z.ZodNullable<z.ZodString>;
3503
3503
  AutoUpdateRelatedEntityInfo: z.ZodBoolean;
3504
3504
  ValuesToPackWithSchema: z.ZodUnion<[z.ZodLiteral<"Auto">, z.ZodLiteral<"None">, z.ZodLiteral<"All">]>;
3505
+ Status: z.ZodUnion<[z.ZodLiteral<"Active">, z.ZodLiteral<"Deprecated">, z.ZodLiteral<"Disabled">]>;
3505
3506
  FieldCodeName: z.ZodNullable<z.ZodString>;
3506
3507
  Entity: z.ZodString;
3507
3508
  SchemaName: z.ZodString;
@@ -3522,6 +3523,7 @@ export declare const EntityFieldSchema: z.ZodObject<{
3522
3523
  __mj_UpdatedAt?: Date;
3523
3524
  Name?: string;
3524
3525
  Description?: string;
3526
+ Status?: "Active" | "Deprecated" | "Disabled";
3525
3527
  DefaultValue?: string;
3526
3528
  Type?: string;
3527
3529
  EntityID?: string;
@@ -3579,6 +3581,7 @@ export declare const EntityFieldSchema: z.ZodObject<{
3579
3581
  __mj_UpdatedAt?: Date;
3580
3582
  Name?: string;
3581
3583
  Description?: string;
3584
+ Status?: "Active" | "Deprecated" | "Disabled";
3582
3585
  DefaultValue?: string;
3583
3586
  Type?: string;
3584
3587
  EntityID?: string;
@@ -8460,6 +8463,7 @@ export declare class ActionEntity extends BaseEntity<ActionEntityType> {
8460
8463
  * @extends {BaseEntity}
8461
8464
  * @class
8462
8465
  * @public
8466
+ * @deprecated This entity is deprecated and will be removed in a future version. Using it will result in console warnings.
8463
8467
  */
8464
8468
  export declare class AIActionEntity extends BaseEntity<AIActionEntityType> {
8465
8469
  /**
@@ -8739,6 +8743,7 @@ export declare class AIAgentLearningCycleEntity extends BaseEntity<AIAgentLearni
8739
8743
  * @extends {BaseEntity}
8740
8744
  * @class
8741
8745
  * @public
8746
+ * @deprecated This entity is deprecated and will be removed in a future version. Using it will result in console warnings.
8742
8747
  */
8743
8748
  export declare class AIAgentModelEntity extends BaseEntity<AIAgentModelEntityType> {
8744
8749
  /**
@@ -9320,6 +9325,7 @@ export declare class AIAgentEntity extends BaseEntity<AIAgentEntityType> {
9320
9325
  * @extends {BaseEntity}
9321
9326
  * @class
9322
9327
  * @public
9328
+ * @deprecated This entity is deprecated and will be removed in a future version. Using it will result in console warnings.
9323
9329
  */
9324
9330
  export declare class AIModelActionEntity extends BaseEntity<AIModelActionEntityType> {
9325
9331
  /**
@@ -16109,6 +16115,7 @@ export declare class EntityActionEntity extends BaseEntity<EntityActionEntityTyp
16109
16115
  * @extends {BaseEntity}
16110
16116
  * @class
16111
16117
  * @public
16118
+ * @deprecated This entity is deprecated and will be removed in a future version. Using it will result in console warnings.
16112
16119
  */
16113
16120
  export declare class EntityAIActionEntity extends BaseEntity<EntityAIActionEntityType> {
16114
16121
  /**
@@ -17344,6 +17351,20 @@ export declare class EntityFieldEntity extends BaseEntity<EntityFieldEntityType>
17344
17351
  get ValuesToPackWithSchema(): 'Auto' | 'None' | 'All';
17345
17352
  set ValuesToPackWithSchema(value: 'Auto' | 'None' | 'All');
17346
17353
  /**
17354
+ * * Field Name: Status
17355
+ * * Display Name: Status
17356
+ * * SQL Data Type: nvarchar(25)
17357
+ * * Default Value: Active
17358
+ * * Value List Type: List
17359
+ * * Possible Values
17360
+ * * Active
17361
+ * * Deprecated
17362
+ * * Disabled
17363
+ * * 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
17364
+ */
17365
+ get Status(): 'Active' | 'Deprecated' | 'Disabled';
17366
+ set Status(value: 'Active' | 'Deprecated' | 'Disabled');
17367
+ /**
17347
17368
  * * Field Name: FieldCodeName
17348
17369
  * * Display Name: Field Code Name
17349
17370
  * * SQL Data Type: nvarchar(MAX)