@memberjunction/core-entities 2.92.0 → 2.94.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.
@@ -7432,6 +7432,17 @@ permanently, Warn means validation failed but execution continues.`),
7432
7432
  * * SQL Data Type: nvarchar(MAX)
7433
7433
  * * Description: Validation error messages or warnings from final payload validation. Contains
7434
7434
  detailed information about what validation rules failed.`),
7435
+ ParentID: zod_1.z.string().nullable().describe(`
7436
+ * * Field Name: ParentID
7437
+ * * Display Name: Parent ID
7438
+ * * SQL Data Type: uniqueidentifier
7439
+ * * Related Entity/Foreign Key: MJ: AI Agent Run Steps (vwAIAgentRunSteps.ID)
7440
+ * * Description: Optional reference to parent step for tracking hierarchical relationships like code->test->fix->code cycles`),
7441
+ Comments: zod_1.z.string().nullable().describe(`
7442
+ * * Field Name: Comments
7443
+ * * Display Name: Comments
7444
+ * * SQL Data Type: nvarchar(MAX)
7445
+ * * Description: Human-readable notes and comments about this agent run step`),
7435
7446
  });
7436
7447
  /**
7437
7448
  * zod schema definition for the entity MJ: AI Agent Runs
@@ -7659,6 +7670,16 @@ each time the agent processes a prompt step.`),
7659
7670
  * * Display Name: Effort Level
7660
7671
  * * SQL Data Type: int
7661
7672
  * * Description: Effort level that was actually used during this agent run execution (1-100, where 1=minimal effort, 100=maximum effort). This is the resolved effort level after applying the precedence hierarchy: runtime override > agent default > prompt defaults.`),
7673
+ RunName: zod_1.z.string().nullable().describe(`
7674
+ * * Field Name: RunName
7675
+ * * Display Name: Run Name
7676
+ * * SQL Data Type: nvarchar(255)
7677
+ * * Description: Optional name for the agent run to help identify and tag runs for easier reference`),
7678
+ Comments: zod_1.z.string().nullable().describe(`
7679
+ * * Field Name: Comments
7680
+ * * Display Name: Comments
7681
+ * * SQL Data Type: nvarchar(MAX)
7682
+ * * Description: Human-readable notes and comments about this agent run`),
7662
7683
  Agent: zod_1.z.string().nullable().describe(`
7663
7684
  * * Field Name: Agent
7664
7685
  * * Display Name: Agent
@@ -8919,6 +8940,16 @@ exports.AIPromptRunSchema = zod_1.z.object({
8919
8940
  * * Display Name: Effort Level
8920
8941
  * * SQL Data Type: int
8921
8942
  * * Description: Effort level that was actually used during this prompt run execution (1-100, where 1=minimal effort, 100=maximum effort). This is the resolved effort level after applying the precedence hierarchy: runtime override > agent default > prompt default > provider default.`),
8943
+ RunName: zod_1.z.string().nullable().describe(`
8944
+ * * Field Name: RunName
8945
+ * * Display Name: Run Name
8946
+ * * SQL Data Type: nvarchar(255)
8947
+ * * Description: Optional name for the prompt run to help identify and tag runs for easier reference`),
8948
+ Comments: zod_1.z.string().nullable().describe(`
8949
+ * * Field Name: Comments
8950
+ * * Display Name: Comments
8951
+ * * SQL Data Type: nvarchar(MAX)
8952
+ * * Description: Human-readable notes and comments about this prompt run`),
8922
8953
  Prompt: zod_1.z.string().describe(`
8923
8954
  * * Field Name: Prompt
8924
8955
  * * Display Name: Prompt
@@ -9232,6 +9263,11 @@ exports.ComponentLibrarySchema = zod_1.z.object({
9232
9263
  * * Display Name: Lint Rules
9233
9264
  * * SQL Data Type: nvarchar(MAX)
9234
9265
  * * Description: JSON configuration for library-specific lint rules that are applied during component validation. This field contains structured rules that define how components using this library should be validated, including DOM element requirements, initialization patterns, lifecycle methods, and common error patterns. Example structure: {"initialization": {"constructorName": "Chart", "elementType": "canvas"}, "lifecycle": {"requiredMethods": ["render"], "cleanupMethods": ["destroy"]}}. The linter dynamically applies these rules based on the libraries referenced in a component spec, enabling extensible validation without hardcoding library-specific logic.`),
9266
+ Dependencies: zod_1.z.string().nullable().describe(`
9267
+ * * Field Name: Dependencies
9268
+ * * Display Name: Dependencies
9269
+ * * SQL Data Type: nvarchar(MAX)
9270
+ * * Description: JSON object defining dependencies for this component library. Format: { "libraryName": "versionSpec", ... }. Version specifications follow NPM-style syntax (e.g., "~1.0.0", "^1.2.3", "2.3.4"). Dependencies are loaded before this library to ensure proper execution context.`),
9235
9271
  });
9236
9272
  /**
9237
9273
  * zod schema definition for the entity MJ: Component Library Links
@@ -32280,6 +32316,31 @@ detailed information about what validation rules failed.
32280
32316
  set FinalPayloadValidationMessages(value) {
32281
32317
  this.Set('FinalPayloadValidationMessages', value);
32282
32318
  }
32319
+ /**
32320
+ * * Field Name: ParentID
32321
+ * * Display Name: Parent ID
32322
+ * * SQL Data Type: uniqueidentifier
32323
+ * * Related Entity/Foreign Key: MJ: AI Agent Run Steps (vwAIAgentRunSteps.ID)
32324
+ * * Description: Optional reference to parent step for tracking hierarchical relationships like code->test->fix->code cycles
32325
+ */
32326
+ get ParentID() {
32327
+ return this.Get('ParentID');
32328
+ }
32329
+ set ParentID(value) {
32330
+ this.Set('ParentID', value);
32331
+ }
32332
+ /**
32333
+ * * Field Name: Comments
32334
+ * * Display Name: Comments
32335
+ * * SQL Data Type: nvarchar(MAX)
32336
+ * * Description: Human-readable notes and comments about this agent run step
32337
+ */
32338
+ get Comments() {
32339
+ return this.Get('Comments');
32340
+ }
32341
+ set Comments(value) {
32342
+ this.Set('Comments', value);
32343
+ }
32283
32344
  };
32284
32345
  exports.AIAgentRunStepEntity = AIAgentRunStepEntity;
32285
32346
  exports.AIAgentRunStepEntity = AIAgentRunStepEntity = __decorate([
@@ -32813,6 +32874,30 @@ each time the agent processes a prompt step.
32813
32874
  this.Set('EffortLevel', value);
32814
32875
  }
32815
32876
  /**
32877
+ * * Field Name: RunName
32878
+ * * Display Name: Run Name
32879
+ * * SQL Data Type: nvarchar(255)
32880
+ * * Description: Optional name for the agent run to help identify and tag runs for easier reference
32881
+ */
32882
+ get RunName() {
32883
+ return this.Get('RunName');
32884
+ }
32885
+ set RunName(value) {
32886
+ this.Set('RunName', value);
32887
+ }
32888
+ /**
32889
+ * * Field Name: Comments
32890
+ * * Display Name: Comments
32891
+ * * SQL Data Type: nvarchar(MAX)
32892
+ * * Description: Human-readable notes and comments about this agent run
32893
+ */
32894
+ get Comments() {
32895
+ return this.Get('Comments');
32896
+ }
32897
+ set Comments(value) {
32898
+ this.Set('Comments', value);
32899
+ }
32900
+ /**
32816
32901
  * * Field Name: Agent
32817
32902
  * * Display Name: Agent
32818
32903
  * * SQL Data Type: nvarchar(255)
@@ -36144,6 +36229,30 @@ let AIPromptRunEntity = class AIPromptRunEntity extends core_1.BaseEntity {
36144
36229
  this.Set('EffortLevel', value);
36145
36230
  }
36146
36231
  /**
36232
+ * * Field Name: RunName
36233
+ * * Display Name: Run Name
36234
+ * * SQL Data Type: nvarchar(255)
36235
+ * * Description: Optional name for the prompt run to help identify and tag runs for easier reference
36236
+ */
36237
+ get RunName() {
36238
+ return this.Get('RunName');
36239
+ }
36240
+ set RunName(value) {
36241
+ this.Set('RunName', value);
36242
+ }
36243
+ /**
36244
+ * * Field Name: Comments
36245
+ * * Display Name: Comments
36246
+ * * SQL Data Type: nvarchar(MAX)
36247
+ * * Description: Human-readable notes and comments about this prompt run
36248
+ */
36249
+ get Comments() {
36250
+ return this.Get('Comments');
36251
+ }
36252
+ set Comments(value) {
36253
+ this.Set('Comments', value);
36254
+ }
36255
+ /**
36147
36256
  * * Field Name: Prompt
36148
36257
  * * Display Name: Prompt
36149
36258
  * * SQL Data Type: nvarchar(255)
@@ -36953,6 +37062,18 @@ let ComponentLibraryEntity = class ComponentLibraryEntity extends core_1.BaseEnt
36953
37062
  set LintRules(value) {
36954
37063
  this.Set('LintRules', value);
36955
37064
  }
37065
+ /**
37066
+ * * Field Name: Dependencies
37067
+ * * Display Name: Dependencies
37068
+ * * SQL Data Type: nvarchar(MAX)
37069
+ * * Description: JSON object defining dependencies for this component library. Format: { "libraryName": "versionSpec", ... }. Version specifications follow NPM-style syntax (e.g., "~1.0.0", "^1.2.3", "2.3.4"). Dependencies are loaded before this library to ensure proper execution context.
37070
+ */
37071
+ get Dependencies() {
37072
+ return this.Get('Dependencies');
37073
+ }
37074
+ set Dependencies(value) {
37075
+ this.Set('Dependencies', value);
37076
+ }
36956
37077
  };
36957
37078
  exports.ComponentLibraryEntity = ComponentLibraryEntity;
36958
37079
  exports.ComponentLibraryEntity = ComponentLibraryEntity = __decorate([