@memberjunction/core-entities 2.115.0 → 2.117.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.
@@ -3851,6 +3851,9 @@ export declare const EntityFieldSchema: z.ZodObject<{
3851
3851
  AutoUpdateRelatedEntityInfo: z.ZodBoolean;
3852
3852
  ValuesToPackWithSchema: z.ZodUnion<[z.ZodLiteral<"All">, z.ZodLiteral<"Auto">, z.ZodLiteral<"None">]>;
3853
3853
  Status: z.ZodUnion<[z.ZodLiteral<"Active">, z.ZodLiteral<"Deprecated">, z.ZodLiteral<"Disabled">]>;
3854
+ AutoUpdateIsNameField: z.ZodBoolean;
3855
+ AutoUpdateDefaultInView: z.ZodBoolean;
3856
+ AutoUpdateCategory: z.ZodBoolean;
3854
3857
  FieldCodeName: z.ZodNullable<z.ZodString>;
3855
3858
  Entity: z.ZodString;
3856
3859
  SchemaName: z.ZodString;
@@ -3915,6 +3918,9 @@ export declare const EntityFieldSchema: z.ZodObject<{
3915
3918
  EntityIDFieldName?: string;
3916
3919
  AutoUpdateRelatedEntityInfo?: boolean;
3917
3920
  ValuesToPackWithSchema?: "None" | "All" | "Auto";
3921
+ AutoUpdateIsNameField?: boolean;
3922
+ AutoUpdateDefaultInView?: boolean;
3923
+ AutoUpdateCategory?: boolean;
3918
3924
  FieldCodeName?: string;
3919
3925
  RelatedEntity?: string;
3920
3926
  RelatedEntitySchemaName?: string;
@@ -3973,6 +3979,9 @@ export declare const EntityFieldSchema: z.ZodObject<{
3973
3979
  EntityIDFieldName?: string;
3974
3980
  AutoUpdateRelatedEntityInfo?: boolean;
3975
3981
  ValuesToPackWithSchema?: "None" | "All" | "Auto";
3982
+ AutoUpdateIsNameField?: boolean;
3983
+ AutoUpdateDefaultInView?: boolean;
3984
+ AutoUpdateCategory?: boolean;
3976
3985
  FieldCodeName?: string;
3977
3986
  RelatedEntity?: string;
3978
3987
  RelatedEntitySchemaName?: string;
@@ -4153,6 +4162,8 @@ export declare const EntityRelationshipSchema: z.ZodObject<{
4153
4162
  __mj_CreatedAt: z.ZodDate;
4154
4163
  __mj_UpdatedAt: z.ZodDate;
4155
4164
  AutoUpdateFromSchema: z.ZodBoolean;
4165
+ AdditionalFieldsToInclude: z.ZodNullable<z.ZodString>;
4166
+ AutoUpdateAdditionalFieldsToInclude: z.ZodBoolean;
4156
4167
  Entity: z.ZodString;
4157
4168
  EntityBaseTable: z.ZodString;
4158
4169
  EntityBaseView: z.ZodString;
@@ -4194,6 +4205,8 @@ export declare const EntityRelationshipSchema: z.ZodObject<{
4194
4205
  DisplayComponentID?: string;
4195
4206
  DisplayComponentConfiguration?: string;
4196
4207
  AutoUpdateFromSchema?: boolean;
4208
+ AdditionalFieldsToInclude?: string;
4209
+ AutoUpdateAdditionalFieldsToInclude?: boolean;
4197
4210
  EntityBaseView?: string;
4198
4211
  RelatedEntityBaseTableCodeName?: string;
4199
4212
  DisplayUserViewName?: string;
@@ -4228,6 +4241,8 @@ export declare const EntityRelationshipSchema: z.ZodObject<{
4228
4241
  DisplayComponentID?: string;
4229
4242
  DisplayComponentConfiguration?: string;
4230
4243
  AutoUpdateFromSchema?: boolean;
4244
+ AdditionalFieldsToInclude?: string;
4245
+ AutoUpdateAdditionalFieldsToInclude?: boolean;
4231
4246
  EntityBaseView?: string;
4232
4247
  RelatedEntityBaseTableCodeName?: string;
4233
4248
  DisplayUserViewName?: string;
@@ -9056,11 +9071,13 @@ export declare const SchemaInfoSchema: z.ZodObject<{
9056
9071
  Comments: z.ZodNullable<z.ZodString>;
9057
9072
  __mj_CreatedAt: z.ZodDate;
9058
9073
  __mj_UpdatedAt: z.ZodDate;
9074
+ Description: z.ZodNullable<z.ZodString>;
9059
9075
  }, "strip", z.ZodTypeAny, {
9060
9076
  ID?: string;
9061
9077
  Comments?: string;
9062
9078
  __mj_CreatedAt?: Date;
9063
9079
  __mj_UpdatedAt?: Date;
9080
+ Description?: string;
9064
9081
  SchemaName?: string;
9065
9082
  EntityIDMin?: number;
9066
9083
  EntityIDMax?: number;
@@ -9069,6 +9086,7 @@ export declare const SchemaInfoSchema: z.ZodObject<{
9069
9086
  Comments?: string;
9070
9087
  __mj_CreatedAt?: Date;
9071
9088
  __mj_UpdatedAt?: Date;
9089
+ Description?: string;
9072
9090
  SchemaName?: string;
9073
9091
  EntityIDMin?: number;
9074
9092
  EntityIDMax?: number;
@@ -21353,6 +21371,33 @@ export declare class EntityFieldEntity extends BaseEntity<EntityFieldEntityType>
21353
21371
  get Status(): 'Active' | 'Deprecated' | 'Disabled';
21354
21372
  set Status(value: 'Active' | 'Deprecated' | 'Disabled');
21355
21373
  /**
21374
+ * * Field Name: AutoUpdateIsNameField
21375
+ * * Display Name: Auto Update Is Name Field
21376
+ * * SQL Data Type: bit
21377
+ * * Default Value: 1
21378
+ * * Description: When 1, allows system/LLM to auto-update IsNameField; when 0, user has locked this field
21379
+ */
21380
+ get AutoUpdateIsNameField(): boolean;
21381
+ set AutoUpdateIsNameField(value: boolean);
21382
+ /**
21383
+ * * Field Name: AutoUpdateDefaultInView
21384
+ * * Display Name: Auto Update Default In View
21385
+ * * SQL Data Type: bit
21386
+ * * Default Value: 1
21387
+ * * Description: When 1, allows system/LLM to auto-update DefaultInView; when 0, user has locked this field
21388
+ */
21389
+ get AutoUpdateDefaultInView(): boolean;
21390
+ set AutoUpdateDefaultInView(value: boolean);
21391
+ /**
21392
+ * * Field Name: AutoUpdateCategory
21393
+ * * Display Name: Auto Update Category
21394
+ * * SQL Data Type: bit
21395
+ * * Default Value: 1
21396
+ * * Description: When 1, allows system/LLM to auto-update Category; when 0, user has locked this field
21397
+ */
21398
+ get AutoUpdateCategory(): boolean;
21399
+ set AutoUpdateCategory(value: boolean);
21400
+ /**
21356
21401
  * * Field Name: FieldCodeName
21357
21402
  * * Display Name: Field Code Name
21358
21403
  * * SQL Data Type: nvarchar(MAX)
@@ -22030,6 +22075,23 @@ export declare class EntityRelationshipEntity extends BaseEntity<EntityRelations
22030
22075
  get AutoUpdateFromSchema(): boolean;
22031
22076
  set AutoUpdateFromSchema(value: boolean);
22032
22077
  /**
22078
+ * * Field Name: AdditionalFieldsToInclude
22079
+ * * Display Name: Additional Fields To Include
22080
+ * * SQL Data Type: nvarchar(MAX)
22081
+ * * Description: JSON array of additional field names to include when joining through this relationship (for junction tables, e.g., ["RoleName", "UserEmail"])
22082
+ */
22083
+ get AdditionalFieldsToInclude(): string | null;
22084
+ set AdditionalFieldsToInclude(value: string | null);
22085
+ /**
22086
+ * * Field Name: AutoUpdateAdditionalFieldsToInclude
22087
+ * * Display Name: Auto Update Additional Fields To Include
22088
+ * * SQL Data Type: bit
22089
+ * * Default Value: 1
22090
+ * * Description: When 1, allows system/LLM to auto-update AdditionalFieldsToInclude; when 0, user has locked this field
22091
+ */
22092
+ get AutoUpdateAdditionalFieldsToInclude(): boolean;
22093
+ set AutoUpdateAdditionalFieldsToInclude(value: boolean);
22094
+ /**
22033
22095
  * * Field Name: Entity
22034
22096
  * * SQL Data Type: nvarchar(255)
22035
22097
  */
@@ -35986,6 +36048,13 @@ export declare class SchemaInfoEntity extends BaseEntity<SchemaInfoEntityType> {
35986
36048
  * * Default Value: getutcdate()
35987
36049
  */
35988
36050
  get __mj_UpdatedAt(): Date;
36051
+ /**
36052
+ * * Field Name: Description
36053
+ * * Display Name: Description
36054
+ * * SQL Data Type: nvarchar(MAX)
36055
+ */
36056
+ get Description(): string | null;
36057
+ set Description(value: string | null);
35989
36058
  }
35990
36059
  /**
35991
36060
  * Skills - strongly typed entity sub-class