@memberjunction/core-entities 2.92.0 → 2.93.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
@@ -32280,6 +32311,31 @@ detailed information about what validation rules failed.
32280
32311
  set FinalPayloadValidationMessages(value) {
32281
32312
  this.Set('FinalPayloadValidationMessages', value);
32282
32313
  }
32314
+ /**
32315
+ * * Field Name: ParentID
32316
+ * * Display Name: Parent ID
32317
+ * * SQL Data Type: uniqueidentifier
32318
+ * * Related Entity/Foreign Key: MJ: AI Agent Run Steps (vwAIAgentRunSteps.ID)
32319
+ * * Description: Optional reference to parent step for tracking hierarchical relationships like code->test->fix->code cycles
32320
+ */
32321
+ get ParentID() {
32322
+ return this.Get('ParentID');
32323
+ }
32324
+ set ParentID(value) {
32325
+ this.Set('ParentID', value);
32326
+ }
32327
+ /**
32328
+ * * Field Name: Comments
32329
+ * * Display Name: Comments
32330
+ * * SQL Data Type: nvarchar(MAX)
32331
+ * * Description: Human-readable notes and comments about this agent run step
32332
+ */
32333
+ get Comments() {
32334
+ return this.Get('Comments');
32335
+ }
32336
+ set Comments(value) {
32337
+ this.Set('Comments', value);
32338
+ }
32283
32339
  };
32284
32340
  exports.AIAgentRunStepEntity = AIAgentRunStepEntity;
32285
32341
  exports.AIAgentRunStepEntity = AIAgentRunStepEntity = __decorate([
@@ -32813,6 +32869,30 @@ each time the agent processes a prompt step.
32813
32869
  this.Set('EffortLevel', value);
32814
32870
  }
32815
32871
  /**
32872
+ * * Field Name: RunName
32873
+ * * Display Name: Run Name
32874
+ * * SQL Data Type: nvarchar(255)
32875
+ * * Description: Optional name for the agent run to help identify and tag runs for easier reference
32876
+ */
32877
+ get RunName() {
32878
+ return this.Get('RunName');
32879
+ }
32880
+ set RunName(value) {
32881
+ this.Set('RunName', value);
32882
+ }
32883
+ /**
32884
+ * * Field Name: Comments
32885
+ * * Display Name: Comments
32886
+ * * SQL Data Type: nvarchar(MAX)
32887
+ * * Description: Human-readable notes and comments about this agent run
32888
+ */
32889
+ get Comments() {
32890
+ return this.Get('Comments');
32891
+ }
32892
+ set Comments(value) {
32893
+ this.Set('Comments', value);
32894
+ }
32895
+ /**
32816
32896
  * * Field Name: Agent
32817
32897
  * * Display Name: Agent
32818
32898
  * * SQL Data Type: nvarchar(255)
@@ -36144,6 +36224,30 @@ let AIPromptRunEntity = class AIPromptRunEntity extends core_1.BaseEntity {
36144
36224
  this.Set('EffortLevel', value);
36145
36225
  }
36146
36226
  /**
36227
+ * * Field Name: RunName
36228
+ * * Display Name: Run Name
36229
+ * * SQL Data Type: nvarchar(255)
36230
+ * * Description: Optional name for the prompt run to help identify and tag runs for easier reference
36231
+ */
36232
+ get RunName() {
36233
+ return this.Get('RunName');
36234
+ }
36235
+ set RunName(value) {
36236
+ this.Set('RunName', value);
36237
+ }
36238
+ /**
36239
+ * * Field Name: Comments
36240
+ * * Display Name: Comments
36241
+ * * SQL Data Type: nvarchar(MAX)
36242
+ * * Description: Human-readable notes and comments about this prompt run
36243
+ */
36244
+ get Comments() {
36245
+ return this.Get('Comments');
36246
+ }
36247
+ set Comments(value) {
36248
+ this.Set('Comments', value);
36249
+ }
36250
+ /**
36147
36251
  * * Field Name: Prompt
36148
36252
  * * Display Name: Prompt
36149
36253
  * * SQL Data Type: nvarchar(255)