@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
|
@@ -9994,6 +9994,7 @@ export declare class AIPromptRun_ {
|
|
|
9994
9994
|
OriginalModelID?: string;
|
|
9995
9995
|
OriginalRequestStartTime?: Date;
|
|
9996
9996
|
TotalFailoverDuration?: number;
|
|
9997
|
+
RerunFromPromptRunID?: string;
|
|
9997
9998
|
Prompt: string;
|
|
9998
9999
|
Model: string;
|
|
9999
10000
|
Vendor: string;
|
|
@@ -10062,6 +10063,7 @@ export declare class CreateAIPromptRunInput {
|
|
|
10062
10063
|
OriginalModelID: string | null;
|
|
10063
10064
|
OriginalRequestStartTime: Date | null;
|
|
10064
10065
|
TotalFailoverDuration: number | null;
|
|
10066
|
+
RerunFromPromptRunID: string | null;
|
|
10065
10067
|
}
|
|
10066
10068
|
export declare class UpdateAIPromptRunInput {
|
|
10067
10069
|
ID: string;
|
|
@@ -10122,6 +10124,7 @@ export declare class UpdateAIPromptRunInput {
|
|
|
10122
10124
|
OriginalModelID?: string | null;
|
|
10123
10125
|
OriginalRequestStartTime?: Date | null;
|
|
10124
10126
|
TotalFailoverDuration?: number | null;
|
|
10127
|
+
RerunFromPromptRunID?: string | null;
|
|
10125
10128
|
OldValues___?: KeyValuePairInput[];
|
|
10126
10129
|
}
|
|
10127
10130
|
export declare class RunAIPromptRunViewResult {
|