@memberjunction/core-entities 2.87.0 → 2.89.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.
@@ -9458,6 +9458,30 @@ exports.ComponentSchema = zod_1.z.object({
9458
9458
  * * Display Name: Technical Design Vector
9459
9459
  * * SQL Data Type: nvarchar(MAX)
9460
9460
  * * Description: Vector embedding of the technical design for similarity search`),
9461
+ HasCustomProps: zod_1.z.boolean().describe(`
9462
+ * * Field Name: HasCustomProps
9463
+ * * Display Name: Has Custom Props
9464
+ * * SQL Data Type: bit
9465
+ * * Default Value: 0
9466
+ * * Description: Indicates if the component has custom properties defined in its specification. Components with custom props cannot be used directly by deterministic containers.`),
9467
+ HasCustomEvents: zod_1.z.boolean().describe(`
9468
+ * * Field Name: HasCustomEvents
9469
+ * * Display Name: Has Custom Events
9470
+ * * SQL Data Type: bit
9471
+ * * Default Value: 0
9472
+ * * Description: Indicates if the component has custom events defined in its specification. Components with custom events may have limited functionality in generic containers.`),
9473
+ RequiresData: zod_1.z.boolean().describe(`
9474
+ * * Field Name: RequiresData
9475
+ * * Display Name: Requires Data
9476
+ * * SQL Data Type: bit
9477
+ * * Default Value: 0
9478
+ * * Description: Indicates if the component requires data access (utilities object with md, rv, rq). Used to determine if component needs data context.`),
9479
+ DependencyCount: zod_1.z.number().describe(`
9480
+ * * Field Name: DependencyCount
9481
+ * * Display Name: Dependency Count
9482
+ * * SQL Data Type: int
9483
+ * * Default Value: 0
9484
+ * * Description: Number of component dependencies defined in the specification. Used to assess component complexity.`),
9461
9485
  SourceRegistry: zod_1.z.string().nullable().describe(`
9462
9486
  * * Field Name: SourceRegistry
9463
9487
  * * Display Name: Source Registry
@@ -37443,6 +37467,58 @@ let ComponentEntity = class ComponentEntity extends core_1.BaseEntity {
37443
37467
  this.Set('TechnicalDesignVector', value);
37444
37468
  }
37445
37469
  /**
37470
+ * * Field Name: HasCustomProps
37471
+ * * Display Name: Has Custom Props
37472
+ * * SQL Data Type: bit
37473
+ * * Default Value: 0
37474
+ * * Description: Indicates if the component has custom properties defined in its specification. Components with custom props cannot be used directly by deterministic containers.
37475
+ */
37476
+ get HasCustomProps() {
37477
+ return this.Get('HasCustomProps');
37478
+ }
37479
+ set HasCustomProps(value) {
37480
+ this.Set('HasCustomProps', value);
37481
+ }
37482
+ /**
37483
+ * * Field Name: HasCustomEvents
37484
+ * * Display Name: Has Custom Events
37485
+ * * SQL Data Type: bit
37486
+ * * Default Value: 0
37487
+ * * Description: Indicates if the component has custom events defined in its specification. Components with custom events may have limited functionality in generic containers.
37488
+ */
37489
+ get HasCustomEvents() {
37490
+ return this.Get('HasCustomEvents');
37491
+ }
37492
+ set HasCustomEvents(value) {
37493
+ this.Set('HasCustomEvents', value);
37494
+ }
37495
+ /**
37496
+ * * Field Name: RequiresData
37497
+ * * Display Name: Requires Data
37498
+ * * SQL Data Type: bit
37499
+ * * Default Value: 0
37500
+ * * Description: Indicates if the component requires data access (utilities object with md, rv, rq). Used to determine if component needs data context.
37501
+ */
37502
+ get RequiresData() {
37503
+ return this.Get('RequiresData');
37504
+ }
37505
+ set RequiresData(value) {
37506
+ this.Set('RequiresData', value);
37507
+ }
37508
+ /**
37509
+ * * Field Name: DependencyCount
37510
+ * * Display Name: Dependency Count
37511
+ * * SQL Data Type: int
37512
+ * * Default Value: 0
37513
+ * * Description: Number of component dependencies defined in the specification. Used to assess component complexity.
37514
+ */
37515
+ get DependencyCount() {
37516
+ return this.Get('DependencyCount');
37517
+ }
37518
+ set DependencyCount(value) {
37519
+ this.Set('DependencyCount', value);
37520
+ }
37521
+ /**
37446
37522
  * * Field Name: SourceRegistry
37447
37523
  * * Display Name: Source Registry
37448
37524
  * * SQL Data Type: nvarchar(255)