@memberjunction/core-entities 2.52.0 → 2.53.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.
@@ -572,6 +572,12 @@ exports.ActionSchema = zod_1.z.object({
572
572
  * * Display Name: Driver Class
573
573
  * * SQL Data Type: nvarchar(255)
574
574
  * * Description: For actions where Type='Custom', this specifies the fully qualified class name of the BaseAction sub-class that should be instantiated to handle the action execution. This provides a more reliable mechanism than relying on the Name field for class instantiation.`),
575
+ ParentID: zod_1.z.string().nullable().describe(`
576
+ * * Field Name: ParentID
577
+ * * Display Name: Parent ID
578
+ * * SQL Data Type: uniqueidentifier
579
+ * * Related Entity/Foreign Key: Actions (vwActions.ID)
580
+ * * Description: Optional ID of the parent action this action inherits from. Used for hierarchical action composition where child actions can specialize parent actions.`),
575
581
  Category: zod_1.z.string().nullable().describe(`
576
582
  * * Field Name: Category
577
583
  * * Display Name: Category
@@ -580,6 +586,10 @@ exports.ActionSchema = zod_1.z.object({
580
586
  * * Field Name: CodeApprovedByUser
581
587
  * * Display Name: Code Approved By User
582
588
  * * SQL Data Type: nvarchar(100)`),
589
+ Parent: zod_1.z.string().nullable().describe(`
590
+ * * Field Name: Parent
591
+ * * Display Name: Parent
592
+ * * SQL Data Type: nvarchar(425)`),
583
593
  });
584
594
  /**
585
595
  * zod schema definition for the entity AI Actions
@@ -10507,6 +10517,12 @@ exports.TemplateParamSchema = zod_1.z.object({
10507
10517
  * * Display Name: Order By
10508
10518
  * * SQL Data Type: nvarchar(MAX)
10509
10519
  * * Description: This field is used only when the Type of the TemplateParam table is "Entity". It is an optional field used to specify the sorting order for the related entity data that is used in the template for the Entity specified.`),
10520
+ TemplateContentID: zod_1.z.string().nullable().describe(`
10521
+ * * Field Name: TemplateContentID
10522
+ * * Display Name: Template Content ID
10523
+ * * SQL Data Type: uniqueidentifier
10524
+ * * Related Entity/Foreign Key: Template Contents (vwTemplateContents.ID)
10525
+ * * Description: Optional reference to a specific template content. When NULL, this parameter applies to all content items within the template. When set, this parameter applies only to the specified template content.`),
10510
10526
  Template: zod_1.z.string().describe(`
10511
10527
  * * Field Name: Template
10512
10528
  * * Display Name: Template
@@ -13059,6 +13075,19 @@ let ActionEntity = class ActionEntity extends core_1.BaseEntity {
13059
13075
  this.Set('DriverClass', value);
13060
13076
  }
13061
13077
  /**
13078
+ * * Field Name: ParentID
13079
+ * * Display Name: Parent ID
13080
+ * * SQL Data Type: uniqueidentifier
13081
+ * * Related Entity/Foreign Key: Actions (vwActions.ID)
13082
+ * * Description: Optional ID of the parent action this action inherits from. Used for hierarchical action composition where child actions can specialize parent actions.
13083
+ */
13084
+ get ParentID() {
13085
+ return this.Get('ParentID');
13086
+ }
13087
+ set ParentID(value) {
13088
+ this.Set('ParentID', value);
13089
+ }
13090
+ /**
13062
13091
  * * Field Name: Category
13063
13092
  * * Display Name: Category
13064
13093
  * * SQL Data Type: nvarchar(255)
@@ -13074,6 +13103,14 @@ let ActionEntity = class ActionEntity extends core_1.BaseEntity {
13074
13103
  get CodeApprovedByUser() {
13075
13104
  return this.Get('CodeApprovedByUser');
13076
13105
  }
13106
+ /**
13107
+ * * Field Name: Parent
13108
+ * * Display Name: Parent
13109
+ * * SQL Data Type: nvarchar(425)
13110
+ */
13111
+ get Parent() {
13112
+ return this.Get('Parent');
13113
+ }
13077
13114
  };
13078
13115
  exports.ActionEntity = ActionEntity;
13079
13116
  exports.ActionEntity = ActionEntity = __decorate([
@@ -39396,6 +39433,19 @@ let TemplateParamEntity = class TemplateParamEntity extends core_1.BaseEntity {
39396
39433
  this.Set('OrderBy', value);
39397
39434
  }
39398
39435
  /**
39436
+ * * Field Name: TemplateContentID
39437
+ * * Display Name: Template Content ID
39438
+ * * SQL Data Type: uniqueidentifier
39439
+ * * Related Entity/Foreign Key: Template Contents (vwTemplateContents.ID)
39440
+ * * Description: Optional reference to a specific template content. When NULL, this parameter applies to all content items within the template. When set, this parameter applies only to the specified template content.
39441
+ */
39442
+ get TemplateContentID() {
39443
+ return this.Get('TemplateContentID');
39444
+ }
39445
+ set TemplateContentID(value) {
39446
+ this.Set('TemplateContentID', value);
39447
+ }
39448
+ /**
39399
39449
  * * Field Name: Template
39400
39450
  * * Display Name: Template
39401
39451
  * * SQL Data Type: nvarchar(255)