@memberjunction/core-entities 2.115.0 → 2.116.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.
@@ -6280,6 +6280,24 @@ exports.EntityFieldSchema = zod_1.z.object({
6280
6280
  * * Deprecated
6281
6281
  * * Disabled
6282
6282
  * * 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`),
6283
+ AutoUpdateIsNameField: zod_1.z.boolean().describe(`
6284
+ * * Field Name: AutoUpdateIsNameField
6285
+ * * Display Name: Auto Update Is Name Field
6286
+ * * SQL Data Type: bit
6287
+ * * Default Value: 1
6288
+ * * Description: When 1, allows system/LLM to auto-update IsNameField; when 0, user has locked this field`),
6289
+ AutoUpdateDefaultInView: zod_1.z.boolean().describe(`
6290
+ * * Field Name: AutoUpdateDefaultInView
6291
+ * * Display Name: Auto Update Default In View
6292
+ * * SQL Data Type: bit
6293
+ * * Default Value: 1
6294
+ * * Description: When 1, allows system/LLM to auto-update DefaultInView; when 0, user has locked this field`),
6295
+ AutoUpdateCategory: zod_1.z.boolean().describe(`
6296
+ * * Field Name: AutoUpdateCategory
6297
+ * * Display Name: Auto Update Category
6298
+ * * SQL Data Type: bit
6299
+ * * Default Value: 1
6300
+ * * Description: When 1, allows system/LLM to auto-update Category; when 0, user has locked this field`),
6283
6301
  FieldCodeName: zod_1.z.string().nullable().describe(`
6284
6302
  * * Field Name: FieldCodeName
6285
6303
  * * Display Name: Field Code Name
@@ -6681,6 +6699,17 @@ exports.EntityRelationshipSchema = zod_1.z.object({
6681
6699
  * * SQL Data Type: bit
6682
6700
  * * Default Value: 1
6683
6701
  * * Description: Indicates whether this relationship should be automatically updated by CodeGen. When set to 0, the record will not be modified by CodeGen. Defaults to 1.`),
6702
+ AdditionalFieldsToInclude: zod_1.z.string().nullable().describe(`
6703
+ * * Field Name: AdditionalFieldsToInclude
6704
+ * * Display Name: Additional Fields To Include
6705
+ * * SQL Data Type: nvarchar(MAX)
6706
+ * * Description: JSON array of additional field names to include when joining through this relationship (for junction tables, e.g., ["RoleName", "UserEmail"])`),
6707
+ AutoUpdateAdditionalFieldsToInclude: zod_1.z.boolean().describe(`
6708
+ * * Field Name: AutoUpdateAdditionalFieldsToInclude
6709
+ * * Display Name: Auto Update Additional Fields To Include
6710
+ * * SQL Data Type: bit
6711
+ * * Default Value: 1
6712
+ * * Description: When 1, allows system/LLM to auto-update AdditionalFieldsToInclude; when 0, user has locked this field`),
6684
6713
  Entity: zod_1.z.string().describe(`
6685
6714
  * * Field Name: Entity
6686
6715
  * * SQL Data Type: nvarchar(255)`),
@@ -14362,6 +14391,10 @@ exports.SchemaInfoSchema = zod_1.z.object({
14362
14391
  * * Display Name: Updated At
14363
14392
  * * SQL Data Type: datetimeoffset
14364
14393
  * * Default Value: getutcdate()`),
14394
+ Description: zod_1.z.string().nullable().describe(`
14395
+ * * Field Name: Description
14396
+ * * Display Name: Description
14397
+ * * SQL Data Type: nvarchar(MAX)`),
14365
14398
  });
14366
14399
  /**
14367
14400
  * zod schema definition for the entity Skills
@@ -31676,6 +31709,45 @@ let EntityFieldEntity = class EntityFieldEntity extends core_1.BaseEntity {
31676
31709
  this.Set('Status', value);
31677
31710
  }
31678
31711
  /**
31712
+ * * Field Name: AutoUpdateIsNameField
31713
+ * * Display Name: Auto Update Is Name Field
31714
+ * * SQL Data Type: bit
31715
+ * * Default Value: 1
31716
+ * * Description: When 1, allows system/LLM to auto-update IsNameField; when 0, user has locked this field
31717
+ */
31718
+ get AutoUpdateIsNameField() {
31719
+ return this.Get('AutoUpdateIsNameField');
31720
+ }
31721
+ set AutoUpdateIsNameField(value) {
31722
+ this.Set('AutoUpdateIsNameField', value);
31723
+ }
31724
+ /**
31725
+ * * Field Name: AutoUpdateDefaultInView
31726
+ * * Display Name: Auto Update Default In View
31727
+ * * SQL Data Type: bit
31728
+ * * Default Value: 1
31729
+ * * Description: When 1, allows system/LLM to auto-update DefaultInView; when 0, user has locked this field
31730
+ */
31731
+ get AutoUpdateDefaultInView() {
31732
+ return this.Get('AutoUpdateDefaultInView');
31733
+ }
31734
+ set AutoUpdateDefaultInView(value) {
31735
+ this.Set('AutoUpdateDefaultInView', value);
31736
+ }
31737
+ /**
31738
+ * * Field Name: AutoUpdateCategory
31739
+ * * Display Name: Auto Update Category
31740
+ * * SQL Data Type: bit
31741
+ * * Default Value: 1
31742
+ * * Description: When 1, allows system/LLM to auto-update Category; when 0, user has locked this field
31743
+ */
31744
+ get AutoUpdateCategory() {
31745
+ return this.Get('AutoUpdateCategory');
31746
+ }
31747
+ set AutoUpdateCategory(value) {
31748
+ this.Set('AutoUpdateCategory', value);
31749
+ }
31750
+ /**
31679
31751
  * * Field Name: FieldCodeName
31680
31752
  * * Display Name: Field Code Name
31681
31753
  * * SQL Data Type: nvarchar(MAX)
@@ -32625,6 +32697,31 @@ let EntityRelationshipEntity = class EntityRelationshipEntity extends core_1.Bas
32625
32697
  this.Set('AutoUpdateFromSchema', value);
32626
32698
  }
32627
32699
  /**
32700
+ * * Field Name: AdditionalFieldsToInclude
32701
+ * * Display Name: Additional Fields To Include
32702
+ * * SQL Data Type: nvarchar(MAX)
32703
+ * * Description: JSON array of additional field names to include when joining through this relationship (for junction tables, e.g., ["RoleName", "UserEmail"])
32704
+ */
32705
+ get AdditionalFieldsToInclude() {
32706
+ return this.Get('AdditionalFieldsToInclude');
32707
+ }
32708
+ set AdditionalFieldsToInclude(value) {
32709
+ this.Set('AdditionalFieldsToInclude', value);
32710
+ }
32711
+ /**
32712
+ * * Field Name: AutoUpdateAdditionalFieldsToInclude
32713
+ * * Display Name: Auto Update Additional Fields To Include
32714
+ * * SQL Data Type: bit
32715
+ * * Default Value: 1
32716
+ * * Description: When 1, allows system/LLM to auto-update AdditionalFieldsToInclude; when 0, user has locked this field
32717
+ */
32718
+ get AutoUpdateAdditionalFieldsToInclude() {
32719
+ return this.Get('AutoUpdateAdditionalFieldsToInclude');
32720
+ }
32721
+ set AutoUpdateAdditionalFieldsToInclude(value) {
32722
+ this.Set('AutoUpdateAdditionalFieldsToInclude', value);
32723
+ }
32724
+ /**
32628
32725
  * * Field Name: Entity
32629
32726
  * * SQL Data Type: nvarchar(255)
32630
32727
  */
@@ -52444,6 +52541,17 @@ let SchemaInfoEntity = class SchemaInfoEntity extends core_1.BaseEntity {
52444
52541
  get __mj_UpdatedAt() {
52445
52542
  return this.Get('__mj_UpdatedAt');
52446
52543
  }
52544
+ /**
52545
+ * * Field Name: Description
52546
+ * * Display Name: Description
52547
+ * * SQL Data Type: nvarchar(MAX)
52548
+ */
52549
+ get Description() {
52550
+ return this.Get('Description');
52551
+ }
52552
+ set Description(value) {
52553
+ this.Set('Description', value);
52554
+ }
52447
52555
  };
52448
52556
  exports.SchemaInfoEntity = SchemaInfoEntity;
52449
52557
  exports.SchemaInfoEntity = SchemaInfoEntity = __decorate([