@memberjunction/server 2.53.0 → 2.54.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.
@@ -60108,6 +60108,7 @@ let AIAgentRunStep_ = class AIAgentRunStep_ {
60108
60108
  OutputData;
60109
60109
  _mj__CreatedAt;
60110
60110
  _mj__UpdatedAt;
60111
+ TargetLogID;
60111
60112
  };
60112
60113
  __decorate([
60113
60114
  Field({ description: `Unique identifier for this execution step` }),
@@ -60179,6 +60180,11 @@ __decorate([
60179
60180
  MaxLength(10),
60180
60181
  __metadata("design:type", Date)
60181
60182
  ], AIAgentRunStep_.prototype, "_mj__UpdatedAt", void 0);
60183
+ __decorate([
60184
+ Field({ nullable: true, description: `ID of the execution log/run record created for this step (ActionExecutionLog.ID for action steps, AIAgentRun.ID for subagent steps, AIPromptRun.ID for prompt steps)` }),
60185
+ MaxLength(16),
60186
+ __metadata("design:type", String)
60187
+ ], AIAgentRunStep_.prototype, "TargetLogID", void 0);
60182
60188
  AIAgentRunStep_ = __decorate([
60183
60189
  ObjectType()
60184
60190
  ], AIAgentRunStep_);
@@ -60197,6 +60203,7 @@ let CreateAIAgentRunStepInput = class CreateAIAgentRunStepInput {
60197
60203
  ErrorMessage;
60198
60204
  InputData;
60199
60205
  OutputData;
60206
+ TargetLogID;
60200
60207
  };
60201
60208
  __decorate([
60202
60209
  Field({ nullable: true }),
@@ -60250,6 +60257,10 @@ __decorate([
60250
60257
  Field({ nullable: true }),
60251
60258
  __metadata("design:type", String)
60252
60259
  ], CreateAIAgentRunStepInput.prototype, "OutputData", void 0);
60260
+ __decorate([
60261
+ Field({ nullable: true }),
60262
+ __metadata("design:type", String)
60263
+ ], CreateAIAgentRunStepInput.prototype, "TargetLogID", void 0);
60253
60264
  CreateAIAgentRunStepInput = __decorate([
60254
60265
  InputType()
60255
60266
  ], CreateAIAgentRunStepInput);
@@ -60268,6 +60279,7 @@ let UpdateAIAgentRunStepInput = class UpdateAIAgentRunStepInput {
60268
60279
  ErrorMessage;
60269
60280
  InputData;
60270
60281
  OutputData;
60282
+ TargetLogID;
60271
60283
  OldValues___;
60272
60284
  };
60273
60285
  __decorate([
@@ -60322,6 +60334,10 @@ __decorate([
60322
60334
  Field({ nullable: true }),
60323
60335
  __metadata("design:type", String)
60324
60336
  ], UpdateAIAgentRunStepInput.prototype, "OutputData", void 0);
60337
+ __decorate([
60338
+ Field({ nullable: true }),
60339
+ __metadata("design:type", String)
60340
+ ], UpdateAIAgentRunStepInput.prototype, "TargetLogID", void 0);
60325
60341
  __decorate([
60326
60342
  Field(() => [KeyValuePairInput], { nullable: true }),
60327
60343
  __metadata("design:type", Array)