@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.
- package/dist/config.d.ts +1 -1
- package/dist/config.js +1 -1
- package/dist/config.js.map +1 -1
- package/dist/generated/generated.d.ts +3 -0
- package/dist/generated/generated.d.ts.map +1 -1
- package/dist/generated/generated.js +16 -0
- package/dist/generated/generated.js.map +1 -1
- package/dist/generic/RunViewResolver.d.ts +1 -1
- package/dist/generic/RunViewResolver.js +2 -2
- package/dist/generic/RunViewResolver.js.map +1 -1
- package/dist/resolvers/RunAIPromptResolver.d.ts +1 -0
- package/dist/resolvers/RunAIPromptResolver.d.ts.map +1 -1
- package/dist/resolvers/RunAIPromptResolver.js +9 -2
- package/dist/resolvers/RunAIPromptResolver.js.map +1 -1
- package/package.json +25 -25
- package/src/config.ts +1 -1
- package/src/generated/generated.ts +10 -0
- package/src/generic/RunViewResolver.ts +2 -2
- package/src/resolvers/RunAIPromptResolver.ts +7 -2
|
@@ -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)
|