@memberjunction/server 2.74.0 → 2.75.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/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/resolvers/QueryResolver.d.ts +1 -0
- package/dist/resolvers/QueryResolver.d.ts.map +1 -1
- package/dist/resolvers/QueryResolver.js +36 -0
- package/dist/resolvers/QueryResolver.js.map +1 -1
- package/dist/resolvers/RunAIPromptResolver.d.ts +1 -1
- package/dist/resolvers/RunAIPromptResolver.d.ts.map +1 -1
- package/dist/resolvers/RunAIPromptResolver.js +6 -2
- package/dist/resolvers/RunAIPromptResolver.js.map +1 -1
- package/package.json +34 -34
- package/src/generated/generated.ts +10 -0
- package/src/resolvers/QueryResolver.ts +34 -0
- package/src/resolvers/RunAIPromptResolver.ts +5 -1
|
@@ -62957,6 +62957,7 @@ let AIPromptRun_ = class AIPromptRun_ {
|
|
|
62957
62957
|
OriginalModelID;
|
|
62958
62958
|
OriginalRequestStartTime;
|
|
62959
62959
|
TotalFailoverDuration;
|
|
62960
|
+
RerunFromPromptRunID;
|
|
62960
62961
|
Prompt;
|
|
62961
62962
|
Model;
|
|
62962
62963
|
Vendor;
|
|
@@ -63229,6 +63230,11 @@ __decorate([
|
|
|
63229
63230
|
Field(() => Int, { nullable: true, description: `Total time spent in failover attempts in milliseconds` }),
|
|
63230
63231
|
__metadata("design:type", Number)
|
|
63231
63232
|
], AIPromptRun_.prototype, "TotalFailoverDuration", void 0);
|
|
63233
|
+
__decorate([
|
|
63234
|
+
Field({ nullable: true, description: `If this run was initiated as a re-run of another prompt run, this field links back to the original run ID` }),
|
|
63235
|
+
MaxLength(16),
|
|
63236
|
+
__metadata("design:type", String)
|
|
63237
|
+
], AIPromptRun_.prototype, "RerunFromPromptRunID", void 0);
|
|
63232
63238
|
__decorate([
|
|
63233
63239
|
Field(),
|
|
63234
63240
|
MaxLength(510),
|
|
@@ -63330,6 +63336,7 @@ let CreateAIPromptRunInput = class CreateAIPromptRunInput {
|
|
|
63330
63336
|
OriginalModelID;
|
|
63331
63337
|
OriginalRequestStartTime;
|
|
63332
63338
|
TotalFailoverDuration;
|
|
63339
|
+
RerunFromPromptRunID;
|
|
63333
63340
|
};
|
|
63334
63341
|
__decorate([
|
|
63335
63342
|
Field({ nullable: true }),
|
|
@@ -63563,6 +63570,10 @@ __decorate([
|
|
|
63563
63570
|
Field(() => Int, { nullable: true }),
|
|
63564
63571
|
__metadata("design:type", Number)
|
|
63565
63572
|
], CreateAIPromptRunInput.prototype, "TotalFailoverDuration", void 0);
|
|
63573
|
+
__decorate([
|
|
63574
|
+
Field({ nullable: true }),
|
|
63575
|
+
__metadata("design:type", String)
|
|
63576
|
+
], CreateAIPromptRunInput.prototype, "RerunFromPromptRunID", void 0);
|
|
63566
63577
|
CreateAIPromptRunInput = __decorate([
|
|
63567
63578
|
InputType()
|
|
63568
63579
|
], CreateAIPromptRunInput);
|
|
@@ -63626,6 +63637,7 @@ let UpdateAIPromptRunInput = class UpdateAIPromptRunInput {
|
|
|
63626
63637
|
OriginalModelID;
|
|
63627
63638
|
OriginalRequestStartTime;
|
|
63628
63639
|
TotalFailoverDuration;
|
|
63640
|
+
RerunFromPromptRunID;
|
|
63629
63641
|
OldValues___;
|
|
63630
63642
|
};
|
|
63631
63643
|
__decorate([
|
|
@@ -63860,6 +63872,10 @@ __decorate([
|
|
|
63860
63872
|
Field(() => Int, { nullable: true }),
|
|
63861
63873
|
__metadata("design:type", Number)
|
|
63862
63874
|
], UpdateAIPromptRunInput.prototype, "TotalFailoverDuration", void 0);
|
|
63875
|
+
__decorate([
|
|
63876
|
+
Field({ nullable: true }),
|
|
63877
|
+
__metadata("design:type", String)
|
|
63878
|
+
], UpdateAIPromptRunInput.prototype, "RerunFromPromptRunID", void 0);
|
|
63863
63879
|
__decorate([
|
|
63864
63880
|
Field(() => [KeyValuePairInput], { nullable: true }),
|
|
63865
63881
|
__metadata("design:type", Array)
|