@memberjunction/server 2.61.0 → 2.63.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 +40 -0
- package/dist/generated/generated.d.ts.map +1 -1
- package/dist/generated/generated.js +207 -0
- package/dist/generated/generated.js.map +1 -1
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/dist/resolvers/RunAIAgentResolver.d.ts +1 -1
- package/dist/resolvers/RunAIAgentResolver.d.ts.map +1 -1
- package/dist/resolvers/RunAIAgentResolver.js +7 -3
- package/dist/resolvers/RunAIAgentResolver.js.map +1 -1
- package/package.json +34 -30
- package/src/generated/generated.ts +127 -0
- package/src/index.ts +2 -2
- package/src/resolvers/RunAIAgentResolver.ts +6 -2
|
@@ -331,6 +331,8 @@ export declare class AIAgentRun_ {
|
|
|
331
331
|
FinalStep?: string;
|
|
332
332
|
FinalPayload?: string;
|
|
333
333
|
Message?: string;
|
|
334
|
+
LastRunID?: string;
|
|
335
|
+
StartingPayload?: string;
|
|
334
336
|
Agent?: string;
|
|
335
337
|
Conversation?: string;
|
|
336
338
|
User?: string;
|
|
@@ -365,6 +367,8 @@ export declare class CreateAIAgentRunInput {
|
|
|
365
367
|
FinalStep: string | null;
|
|
366
368
|
FinalPayload: string | null;
|
|
367
369
|
Message: string | null;
|
|
370
|
+
LastRunID: string | null;
|
|
371
|
+
StartingPayload: string | null;
|
|
368
372
|
}
|
|
369
373
|
export declare class UpdateAIAgentRunInput {
|
|
370
374
|
ID: string;
|
|
@@ -393,6 +397,8 @@ export declare class UpdateAIAgentRunInput {
|
|
|
393
397
|
FinalStep?: string | null;
|
|
394
398
|
FinalPayload?: string | null;
|
|
395
399
|
Message?: string | null;
|
|
400
|
+
LastRunID?: string | null;
|
|
401
|
+
StartingPayload?: string | null;
|
|
396
402
|
OldValues___?: KeyValuePairInput[];
|
|
397
403
|
}
|
|
398
404
|
export declare class RunAIAgentRunViewResult {
|
|
@@ -992,6 +998,11 @@ export declare class AIPrompt_ {
|
|
|
992
998
|
StopSequences?: string;
|
|
993
999
|
IncludeLogProbs?: boolean;
|
|
994
1000
|
TopLogProbs?: number;
|
|
1001
|
+
FailoverMaxAttempts?: number;
|
|
1002
|
+
FailoverDelaySeconds?: number;
|
|
1003
|
+
FailoverStrategy: string;
|
|
1004
|
+
FailoverModelStrategy: string;
|
|
1005
|
+
FailoverErrorScope: string;
|
|
995
1006
|
Template: string;
|
|
996
1007
|
Category?: string;
|
|
997
1008
|
Type: string;
|
|
@@ -1051,6 +1062,11 @@ export declare class CreateAIPromptInput {
|
|
|
1051
1062
|
StopSequences: string | null;
|
|
1052
1063
|
IncludeLogProbs?: boolean | null;
|
|
1053
1064
|
TopLogProbs: number | null;
|
|
1065
|
+
FailoverMaxAttempts?: number | null;
|
|
1066
|
+
FailoverDelaySeconds?: number | null;
|
|
1067
|
+
FailoverStrategy?: string;
|
|
1068
|
+
FailoverModelStrategy?: string;
|
|
1069
|
+
FailoverErrorScope?: string;
|
|
1054
1070
|
}
|
|
1055
1071
|
export declare class UpdateAIPromptInput {
|
|
1056
1072
|
ID: string;
|
|
@@ -1096,6 +1112,11 @@ export declare class UpdateAIPromptInput {
|
|
|
1096
1112
|
StopSequences?: string | null;
|
|
1097
1113
|
IncludeLogProbs?: boolean | null;
|
|
1098
1114
|
TopLogProbs?: number | null;
|
|
1115
|
+
FailoverMaxAttempts?: number | null;
|
|
1116
|
+
FailoverDelaySeconds?: number | null;
|
|
1117
|
+
FailoverStrategy?: string;
|
|
1118
|
+
FailoverModelStrategy?: string;
|
|
1119
|
+
FailoverErrorScope?: string;
|
|
1099
1120
|
OldValues___?: KeyValuePairInput[];
|
|
1100
1121
|
}
|
|
1101
1122
|
export declare class RunAIPromptViewResult {
|
|
@@ -9838,11 +9859,18 @@ export declare class AIPromptRun_ {
|
|
|
9838
9859
|
TotalRetryDurationMS?: number;
|
|
9839
9860
|
ValidationAttempts?: string;
|
|
9840
9861
|
ValidationSummary?: string;
|
|
9862
|
+
FailoverAttempts?: number;
|
|
9863
|
+
FailoverErrors?: string;
|
|
9864
|
+
FailoverDurations?: string;
|
|
9865
|
+
OriginalRequestStartTime?: Date;
|
|
9866
|
+
TotalFailoverDuration?: number;
|
|
9867
|
+
OriginalModelID?: string;
|
|
9841
9868
|
Prompt: string;
|
|
9842
9869
|
Model: string;
|
|
9843
9870
|
Vendor: string;
|
|
9844
9871
|
Agent?: string;
|
|
9845
9872
|
Configuration?: string;
|
|
9873
|
+
OriginalModel?: string;
|
|
9846
9874
|
MJ_AIPromptRuns_ParentIDArray: AIPromptRun_[];
|
|
9847
9875
|
AIResultCache_PromptRunIDArray: AIResultCache_[];
|
|
9848
9876
|
}
|
|
@@ -9899,6 +9927,12 @@ export declare class CreateAIPromptRunInput {
|
|
|
9899
9927
|
TotalRetryDurationMS: number | null;
|
|
9900
9928
|
ValidationAttempts: string | null;
|
|
9901
9929
|
ValidationSummary: string | null;
|
|
9930
|
+
FailoverAttempts?: number | null;
|
|
9931
|
+
FailoverErrors: string | null;
|
|
9932
|
+
FailoverDurations: string | null;
|
|
9933
|
+
OriginalRequestStartTime: Date | null;
|
|
9934
|
+
TotalFailoverDuration: number | null;
|
|
9935
|
+
OriginalModelID: string | null;
|
|
9902
9936
|
}
|
|
9903
9937
|
export declare class UpdateAIPromptRunInput {
|
|
9904
9938
|
ID: string;
|
|
@@ -9953,6 +9987,12 @@ export declare class UpdateAIPromptRunInput {
|
|
|
9953
9987
|
TotalRetryDurationMS?: number | null;
|
|
9954
9988
|
ValidationAttempts?: string | null;
|
|
9955
9989
|
ValidationSummary?: string | null;
|
|
9990
|
+
FailoverAttempts?: number | null;
|
|
9991
|
+
FailoverErrors?: string | null;
|
|
9992
|
+
FailoverDurations?: string | null;
|
|
9993
|
+
OriginalRequestStartTime?: Date | null;
|
|
9994
|
+
TotalFailoverDuration?: number | null;
|
|
9995
|
+
OriginalModelID?: string | null;
|
|
9956
9996
|
OldValues___?: KeyValuePairInput[];
|
|
9957
9997
|
}
|
|
9958
9998
|
export declare class RunAIPromptRunViewResult {
|