@memberjunction/server 2.117.0 → 2.118.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 +622 -6
- package/dist/generated/generated.d.ts.map +1 -1
- package/dist/generated/generated.js +3969 -166
- package/dist/generated/generated.js.map +1 -1
- package/dist/resolvers/RunAIAgentResolver.d.ts +0 -3
- package/dist/resolvers/RunAIAgentResolver.d.ts.map +1 -1
- package/dist/resolvers/RunAIAgentResolver.js +18 -174
- package/dist/resolvers/RunAIAgentResolver.js.map +1 -1
- package/dist/resolvers/RunTestResolver.d.ts +41 -0
- package/dist/resolvers/RunTestResolver.d.ts.map +1 -0
- package/dist/resolvers/RunTestResolver.js +349 -0
- package/dist/resolvers/RunTestResolver.js.map +1 -0
- package/package.json +41 -40
- package/src/generated/generated.ts +2441 -41
- package/src/resolvers/RunAIAgentResolver.ts +31 -289
- package/src/resolvers/RunTestResolver.ts +369 -0
|
@@ -176,6 +176,58 @@ export declare class MJExplorerNavigationItemResolver extends ResolverBase {
|
|
|
176
176
|
UpdateMJExplorerNavigationItem(input: UpdateMJExplorerNavigationItemInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
177
177
|
DeleteMJExplorerNavigationItem(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
178
178
|
}
|
|
179
|
+
export declare class MJTestRunFeedback_ {
|
|
180
|
+
ID: string;
|
|
181
|
+
TestRunID: string;
|
|
182
|
+
ReviewerUserID: string;
|
|
183
|
+
Rating?: number;
|
|
184
|
+
IsCorrect?: boolean;
|
|
185
|
+
CorrectionSummary?: string;
|
|
186
|
+
Comments?: string;
|
|
187
|
+
ReviewedAt: Date;
|
|
188
|
+
_mj__CreatedAt: Date;
|
|
189
|
+
_mj__UpdatedAt: Date;
|
|
190
|
+
ReviewerUser: string;
|
|
191
|
+
}
|
|
192
|
+
export declare class CreateMJTestRunFeedbackInput {
|
|
193
|
+
ID?: string;
|
|
194
|
+
TestRunID?: string;
|
|
195
|
+
ReviewerUserID?: string;
|
|
196
|
+
Rating: number | null;
|
|
197
|
+
IsCorrect: boolean | null;
|
|
198
|
+
CorrectionSummary: string | null;
|
|
199
|
+
Comments: string | null;
|
|
200
|
+
ReviewedAt?: Date;
|
|
201
|
+
}
|
|
202
|
+
export declare class UpdateMJTestRunFeedbackInput {
|
|
203
|
+
ID: string;
|
|
204
|
+
TestRunID?: string;
|
|
205
|
+
ReviewerUserID?: string;
|
|
206
|
+
Rating?: number | null;
|
|
207
|
+
IsCorrect?: boolean | null;
|
|
208
|
+
CorrectionSummary?: string | null;
|
|
209
|
+
Comments?: string | null;
|
|
210
|
+
ReviewedAt?: Date;
|
|
211
|
+
OldValues___?: KeyValuePairInput[];
|
|
212
|
+
}
|
|
213
|
+
export declare class RunMJTestRunFeedbackViewResult {
|
|
214
|
+
Results: MJTestRunFeedback_[];
|
|
215
|
+
UserViewRunID?: string;
|
|
216
|
+
RowCount: number;
|
|
217
|
+
TotalRowCount: number;
|
|
218
|
+
ExecutionTime: number;
|
|
219
|
+
ErrorMessage?: string;
|
|
220
|
+
Success: boolean;
|
|
221
|
+
}
|
|
222
|
+
export declare class MJTestRunFeedbackResolver extends ResolverBase {
|
|
223
|
+
RunMJTestRunFeedbackViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
224
|
+
RunMJTestRunFeedbackViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
225
|
+
RunMJTestRunFeedbackDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
226
|
+
MJTestRunFeedback(ID: string, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJTestRunFeedback_ | null>;
|
|
227
|
+
CreateMJTestRunFeedback(input: CreateMJTestRunFeedbackInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
228
|
+
UpdateMJTestRunFeedback(input: UpdateMJTestRunFeedbackInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
229
|
+
DeleteMJTestRunFeedback(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
230
|
+
}
|
|
179
231
|
export declare class MJGeneratedCodeCategory_ {
|
|
180
232
|
ID: string;
|
|
181
233
|
Name: string;
|
|
@@ -438,12 +490,17 @@ export declare class MJAIAgentRun_ {
|
|
|
438
490
|
RunName?: string;
|
|
439
491
|
Comments?: string;
|
|
440
492
|
ScheduledJobRunID?: string;
|
|
493
|
+
TestRunID?: string;
|
|
441
494
|
Agent?: string;
|
|
495
|
+
ParentRun?: string;
|
|
442
496
|
Conversation?: string;
|
|
443
497
|
User?: string;
|
|
498
|
+
ConversationDetail?: string;
|
|
499
|
+
LastRun?: string;
|
|
444
500
|
Configuration?: string;
|
|
445
501
|
OverrideModel?: string;
|
|
446
502
|
OverrideVendor?: string;
|
|
503
|
+
ScheduledJobRun?: string;
|
|
447
504
|
RootParentRunID?: string;
|
|
448
505
|
RootLastRunID?: string;
|
|
449
506
|
MJ_AIAgentRunSteps_AgentRunIDArray: MJAIAgentRunStep_[];
|
|
@@ -491,6 +548,7 @@ export declare class CreateMJAIAgentRunInput {
|
|
|
491
548
|
RunName: string | null;
|
|
492
549
|
Comments: string | null;
|
|
493
550
|
ScheduledJobRunID: string | null;
|
|
551
|
+
TestRunID: string | null;
|
|
494
552
|
}
|
|
495
553
|
export declare class UpdateMJAIAgentRunInput {
|
|
496
554
|
ID: string;
|
|
@@ -531,6 +589,7 @@ export declare class UpdateMJAIAgentRunInput {
|
|
|
531
589
|
RunName?: string | null;
|
|
532
590
|
Comments?: string | null;
|
|
533
591
|
ScheduledJobRunID?: string | null;
|
|
592
|
+
TestRunID?: string | null;
|
|
534
593
|
OldValues___?: KeyValuePairInput[];
|
|
535
594
|
}
|
|
536
595
|
export declare class RunMJAIAgentRunViewResult {
|
|
@@ -556,6 +615,123 @@ export declare class MJAIAgentRunResolver extends ResolverBase {
|
|
|
556
615
|
UpdateMJAIAgentRun(input: UpdateMJAIAgentRunInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
557
616
|
DeleteMJAIAgentRun(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
558
617
|
}
|
|
618
|
+
export declare class MJTest_ {
|
|
619
|
+
ID: string;
|
|
620
|
+
TypeID: string;
|
|
621
|
+
Name: string;
|
|
622
|
+
Description?: string;
|
|
623
|
+
Status: string;
|
|
624
|
+
InputDefinition?: string;
|
|
625
|
+
ExpectedOutcomes?: string;
|
|
626
|
+
Configuration?: string;
|
|
627
|
+
Tags?: string;
|
|
628
|
+
Priority?: number;
|
|
629
|
+
EstimatedDurationSeconds?: number;
|
|
630
|
+
EstimatedCostUSD?: number;
|
|
631
|
+
_mj__CreatedAt: Date;
|
|
632
|
+
_mj__UpdatedAt: Date;
|
|
633
|
+
RepeatCount?: number;
|
|
634
|
+
Type: string;
|
|
635
|
+
MJ_TestRuns_TestIDArray: MJTestRun_[];
|
|
636
|
+
MJ_TestSuiteTests_TestIDArray: MJTestSuiteTest_[];
|
|
637
|
+
}
|
|
638
|
+
export declare class CreateMJTestInput {
|
|
639
|
+
ID?: string;
|
|
640
|
+
TypeID?: string;
|
|
641
|
+
Name?: string;
|
|
642
|
+
Description: string | null;
|
|
643
|
+
Status?: string;
|
|
644
|
+
InputDefinition: string | null;
|
|
645
|
+
ExpectedOutcomes: string | null;
|
|
646
|
+
Configuration: string | null;
|
|
647
|
+
Tags: string | null;
|
|
648
|
+
Priority?: number | null;
|
|
649
|
+
EstimatedDurationSeconds: number | null;
|
|
650
|
+
EstimatedCostUSD: number | null;
|
|
651
|
+
RepeatCount: number | null;
|
|
652
|
+
}
|
|
653
|
+
export declare class UpdateMJTestInput {
|
|
654
|
+
ID: string;
|
|
655
|
+
TypeID?: string;
|
|
656
|
+
Name?: string;
|
|
657
|
+
Description?: string | null;
|
|
658
|
+
Status?: string;
|
|
659
|
+
InputDefinition?: string | null;
|
|
660
|
+
ExpectedOutcomes?: string | null;
|
|
661
|
+
Configuration?: string | null;
|
|
662
|
+
Tags?: string | null;
|
|
663
|
+
Priority?: number | null;
|
|
664
|
+
EstimatedDurationSeconds?: number | null;
|
|
665
|
+
EstimatedCostUSD?: number | null;
|
|
666
|
+
RepeatCount?: number | null;
|
|
667
|
+
OldValues___?: KeyValuePairInput[];
|
|
668
|
+
}
|
|
669
|
+
export declare class RunMJTestViewResult {
|
|
670
|
+
Results: MJTest_[];
|
|
671
|
+
UserViewRunID?: string;
|
|
672
|
+
RowCount: number;
|
|
673
|
+
TotalRowCount: number;
|
|
674
|
+
ExecutionTime: number;
|
|
675
|
+
ErrorMessage?: string;
|
|
676
|
+
Success: boolean;
|
|
677
|
+
}
|
|
678
|
+
export declare class MJTestResolver extends ResolverBase {
|
|
679
|
+
RunMJTestViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
680
|
+
RunMJTestViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
681
|
+
RunMJTestDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
682
|
+
MJTest(ID: string, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJTest_ | null>;
|
|
683
|
+
MJ_TestRuns_TestIDArray(mjtest_: MJTest_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
684
|
+
MJ_TestSuiteTests_TestIDArray(mjtest_: MJTest_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
685
|
+
CreateMJTest(input: CreateMJTestInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
686
|
+
UpdateMJTest(input: UpdateMJTestInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
687
|
+
DeleteMJTest(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
688
|
+
}
|
|
689
|
+
export declare class MJTestType_ {
|
|
690
|
+
ID: string;
|
|
691
|
+
Name: string;
|
|
692
|
+
Description?: string;
|
|
693
|
+
DriverClass: string;
|
|
694
|
+
Status: string;
|
|
695
|
+
_mj__CreatedAt: Date;
|
|
696
|
+
_mj__UpdatedAt: Date;
|
|
697
|
+
MJ_TestRubrics_TypeIDArray: MJTestRubric_[];
|
|
698
|
+
MJ_Tests_TypeIDArray: MJTest_[];
|
|
699
|
+
}
|
|
700
|
+
export declare class CreateMJTestTypeInput {
|
|
701
|
+
ID?: string;
|
|
702
|
+
Name?: string;
|
|
703
|
+
Description: string | null;
|
|
704
|
+
DriverClass?: string;
|
|
705
|
+
Status?: string;
|
|
706
|
+
}
|
|
707
|
+
export declare class UpdateMJTestTypeInput {
|
|
708
|
+
ID: string;
|
|
709
|
+
Name?: string;
|
|
710
|
+
Description?: string | null;
|
|
711
|
+
DriverClass?: string;
|
|
712
|
+
Status?: string;
|
|
713
|
+
OldValues___?: KeyValuePairInput[];
|
|
714
|
+
}
|
|
715
|
+
export declare class RunMJTestTypeViewResult {
|
|
716
|
+
Results: MJTestType_[];
|
|
717
|
+
UserViewRunID?: string;
|
|
718
|
+
RowCount: number;
|
|
719
|
+
TotalRowCount: number;
|
|
720
|
+
ExecutionTime: number;
|
|
721
|
+
ErrorMessage?: string;
|
|
722
|
+
Success: boolean;
|
|
723
|
+
}
|
|
724
|
+
export declare class MJTestTypeResolver extends ResolverBase {
|
|
725
|
+
RunMJTestTypeViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
726
|
+
RunMJTestTypeViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
727
|
+
RunMJTestTypeDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
728
|
+
MJTestType(ID: string, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJTestType_ | null>;
|
|
729
|
+
MJ_TestRubrics_TypeIDArray(mjtesttype_: MJTestType_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
730
|
+
MJ_Tests_TypeIDArray(mjtesttype_: MJTestType_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
731
|
+
CreateMJTestType(input: CreateMJTestTypeInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
732
|
+
UpdateMJTestType(input: UpdateMJTestTypeInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
733
|
+
DeleteMJTestType(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
734
|
+
}
|
|
559
735
|
export declare class MJAIVendor_ {
|
|
560
736
|
ID: string;
|
|
561
737
|
Name: string;
|
|
@@ -658,6 +834,7 @@ export declare class MJAIConfiguration_ {
|
|
|
658
834
|
DefaultPromptForContextSummarization?: string;
|
|
659
835
|
MJ_AIConfigurationParams_ConfigurationIDArray: MJAIConfigurationParam_[];
|
|
660
836
|
MJ_AIAgentPrompts_ConfigurationIDArray: MJAIAgentPrompt_[];
|
|
837
|
+
MJ_AIAgentConfigurations_AIConfigurationIDArray: MJAIAgentConfiguration_[];
|
|
661
838
|
MJ_AIPromptModels_ConfigurationIDArray: MJAIPromptModel_[];
|
|
662
839
|
AIResultCache_ConfigurationIDArray: MJAIResultCache_[];
|
|
663
840
|
MJ_AIPromptRuns_ConfigurationIDArray: MJAIPromptRun_[];
|
|
@@ -698,6 +875,7 @@ export declare class MJAIConfigurationResolver extends ResolverBase {
|
|
|
698
875
|
MJAIConfiguration(ID: string, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJAIConfiguration_ | null>;
|
|
699
876
|
MJ_AIConfigurationParams_ConfigurationIDArray(mjaiconfiguration_: MJAIConfiguration_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
700
877
|
MJ_AIAgentPrompts_ConfigurationIDArray(mjaiconfiguration_: MJAIConfiguration_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
878
|
+
MJ_AIAgentConfigurations_AIConfigurationIDArray(mjaiconfiguration_: MJAIConfiguration_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
701
879
|
MJ_AIPromptModels_ConfigurationIDArray(mjaiconfiguration_: MJAIConfiguration_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
702
880
|
AIResultCache_ConfigurationIDArray(mjaiconfiguration_: MJAIConfiguration_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
703
881
|
MJ_AIPromptRuns_ConfigurationIDArray(mjaiconfiguration_: MJAIConfiguration_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
@@ -781,6 +959,7 @@ export declare class MJAIAgent_ {
|
|
|
781
959
|
MJ_AIAgentRelationships_SubAgentIDArray: MJAIAgentRelationship_[];
|
|
782
960
|
MJ_Tasks_AgentIDArray: MJTask_[];
|
|
783
961
|
MJ_AIAgentExamples_AgentIDArray: MJAIAgentExample_[];
|
|
962
|
+
MJ_AIAgentConfigurations_AgentIDArray: MJAIAgentConfiguration_[];
|
|
784
963
|
AIResultCache_AgentIDArray: MJAIResultCache_[];
|
|
785
964
|
MJ_AIPromptRuns_AgentIDArray: MJAIPromptRun_[];
|
|
786
965
|
ConversationDetails_AgentIDArray: MJConversationDetail_[];
|
|
@@ -921,6 +1100,7 @@ export declare class MJAIAgentResolver extends ResolverBase {
|
|
|
921
1100
|
MJ_AIAgentRelationships_SubAgentIDArray(mjaiagent_: MJAIAgent_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
922
1101
|
MJ_Tasks_AgentIDArray(mjaiagent_: MJAIAgent_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
923
1102
|
MJ_AIAgentExamples_AgentIDArray(mjaiagent_: MJAIAgent_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
1103
|
+
MJ_AIAgentConfigurations_AgentIDArray(mjaiagent_: MJAIAgent_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
924
1104
|
AIResultCache_AgentIDArray(mjaiagent_: MJAIAgent_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
925
1105
|
MJ_AIPromptRuns_AgentIDArray(mjaiagent_: MJAIAgent_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
926
1106
|
ConversationDetails_AgentIDArray(mjaiagent_: MJAIAgent_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
@@ -1224,6 +1404,109 @@ export declare class MJAIAgentTypeResolver extends ResolverBase {
|
|
|
1224
1404
|
UpdateMJAIAgentType(input: UpdateMJAIAgentTypeInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1225
1405
|
DeleteMJAIAgentType(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1226
1406
|
}
|
|
1407
|
+
export declare class MJAIAgentConfiguration_ {
|
|
1408
|
+
ID: string;
|
|
1409
|
+
AgentID: string;
|
|
1410
|
+
Name: string;
|
|
1411
|
+
DisplayName: string;
|
|
1412
|
+
Description?: string;
|
|
1413
|
+
AIConfigurationID?: string;
|
|
1414
|
+
IsDefault: boolean;
|
|
1415
|
+
Priority: number;
|
|
1416
|
+
Status: string;
|
|
1417
|
+
_mj__CreatedAt: Date;
|
|
1418
|
+
_mj__UpdatedAt: Date;
|
|
1419
|
+
Agent?: string;
|
|
1420
|
+
AIConfiguration?: string;
|
|
1421
|
+
}
|
|
1422
|
+
export declare class CreateMJAIAgentConfigurationInput {
|
|
1423
|
+
ID?: string;
|
|
1424
|
+
AgentID?: string;
|
|
1425
|
+
Name?: string;
|
|
1426
|
+
DisplayName?: string;
|
|
1427
|
+
Description: string | null;
|
|
1428
|
+
AIConfigurationID: string | null;
|
|
1429
|
+
IsDefault?: boolean;
|
|
1430
|
+
Priority?: number;
|
|
1431
|
+
Status?: string;
|
|
1432
|
+
}
|
|
1433
|
+
export declare class UpdateMJAIAgentConfigurationInput {
|
|
1434
|
+
ID: string;
|
|
1435
|
+
AgentID?: string;
|
|
1436
|
+
Name?: string;
|
|
1437
|
+
DisplayName?: string;
|
|
1438
|
+
Description?: string | null;
|
|
1439
|
+
AIConfigurationID?: string | null;
|
|
1440
|
+
IsDefault?: boolean;
|
|
1441
|
+
Priority?: number;
|
|
1442
|
+
Status?: string;
|
|
1443
|
+
OldValues___?: KeyValuePairInput[];
|
|
1444
|
+
}
|
|
1445
|
+
export declare class RunMJAIAgentConfigurationViewResult {
|
|
1446
|
+
Results: MJAIAgentConfiguration_[];
|
|
1447
|
+
UserViewRunID?: string;
|
|
1448
|
+
RowCount: number;
|
|
1449
|
+
TotalRowCount: number;
|
|
1450
|
+
ExecutionTime: number;
|
|
1451
|
+
ErrorMessage?: string;
|
|
1452
|
+
Success: boolean;
|
|
1453
|
+
}
|
|
1454
|
+
export declare class MJAIAgentConfigurationResolver extends ResolverBase {
|
|
1455
|
+
RunMJAIAgentConfigurationViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
1456
|
+
RunMJAIAgentConfigurationViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
1457
|
+
RunMJAIAgentConfigurationDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
1458
|
+
MJAIAgentConfiguration(ID: string, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJAIAgentConfiguration_ | null>;
|
|
1459
|
+
CreateMJAIAgentConfiguration(input: CreateMJAIAgentConfigurationInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1460
|
+
UpdateMJAIAgentConfiguration(input: UpdateMJAIAgentConfigurationInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1461
|
+
DeleteMJAIAgentConfiguration(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1462
|
+
}
|
|
1463
|
+
export declare class MJTestSuiteTest_ {
|
|
1464
|
+
ID: string;
|
|
1465
|
+
SuiteID: string;
|
|
1466
|
+
TestID: string;
|
|
1467
|
+
Sequence: number;
|
|
1468
|
+
Status: string;
|
|
1469
|
+
Configuration?: string;
|
|
1470
|
+
_mj__CreatedAt: Date;
|
|
1471
|
+
_mj__UpdatedAt: Date;
|
|
1472
|
+
Suite: string;
|
|
1473
|
+
Test: string;
|
|
1474
|
+
}
|
|
1475
|
+
export declare class CreateMJTestSuiteTestInput {
|
|
1476
|
+
ID?: string;
|
|
1477
|
+
SuiteID?: string;
|
|
1478
|
+
TestID?: string;
|
|
1479
|
+
Sequence?: number;
|
|
1480
|
+
Status?: string;
|
|
1481
|
+
Configuration: string | null;
|
|
1482
|
+
}
|
|
1483
|
+
export declare class UpdateMJTestSuiteTestInput {
|
|
1484
|
+
ID: string;
|
|
1485
|
+
SuiteID?: string;
|
|
1486
|
+
TestID?: string;
|
|
1487
|
+
Sequence?: number;
|
|
1488
|
+
Status?: string;
|
|
1489
|
+
Configuration?: string | null;
|
|
1490
|
+
OldValues___?: KeyValuePairInput[];
|
|
1491
|
+
}
|
|
1492
|
+
export declare class RunMJTestSuiteTestViewResult {
|
|
1493
|
+
Results: MJTestSuiteTest_[];
|
|
1494
|
+
UserViewRunID?: string;
|
|
1495
|
+
RowCount: number;
|
|
1496
|
+
TotalRowCount: number;
|
|
1497
|
+
ExecutionTime: number;
|
|
1498
|
+
ErrorMessage?: string;
|
|
1499
|
+
Success: boolean;
|
|
1500
|
+
}
|
|
1501
|
+
export declare class MJTestSuiteTestResolver extends ResolverBase {
|
|
1502
|
+
RunMJTestSuiteTestViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
1503
|
+
RunMJTestSuiteTestViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
1504
|
+
RunMJTestSuiteTestDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
1505
|
+
MJTestSuiteTest(ID: string, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJTestSuiteTest_ | null>;
|
|
1506
|
+
CreateMJTestSuiteTest(input: CreateMJTestSuiteTestInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1507
|
+
UpdateMJTestSuiteTest(input: UpdateMJTestSuiteTestInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1508
|
+
DeleteMJTestSuiteTest(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1509
|
+
}
|
|
1227
1510
|
export declare class MJAIAgentNote_ {
|
|
1228
1511
|
ID: string;
|
|
1229
1512
|
AgentID?: string;
|
|
@@ -1310,11 +1593,11 @@ export declare class MJEnvironment_ {
|
|
|
1310
1593
|
Settings?: string;
|
|
1311
1594
|
_mj__CreatedAt: Date;
|
|
1312
1595
|
_mj__UpdatedAt: Date;
|
|
1313
|
-
MJ_Collections_EnvironmentIDArray: MJCollection_[];
|
|
1314
1596
|
MJ_Projects_EnvironmentIDArray: MJProject_[];
|
|
1597
|
+
MJ_Collections_EnvironmentIDArray: MJCollection_[];
|
|
1315
1598
|
MJ_Artifacts_EnvironmentIDArray: MJArtifact_[];
|
|
1316
|
-
Dashboards_EnvironmentIDArray: MJDashboard_[];
|
|
1317
1599
|
MJ_Tasks_EnvironmentIDArray: MJTask_[];
|
|
1600
|
+
Dashboards_EnvironmentIDArray: MJDashboard_[];
|
|
1318
1601
|
Reports_EnvironmentIDArray: MJReport_[];
|
|
1319
1602
|
Conversations_EnvironmentIDArray: MJConversation_[];
|
|
1320
1603
|
}
|
|
@@ -1347,11 +1630,11 @@ export declare class MJEnvironmentResolver extends ResolverBase {
|
|
|
1347
1630
|
RunMJEnvironmentViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
1348
1631
|
RunMJEnvironmentDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
1349
1632
|
MJEnvironment(ID: string, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJEnvironment_ | null>;
|
|
1350
|
-
MJ_Collections_EnvironmentIDArray(mjenvironment_: MJEnvironment_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
1351
1633
|
MJ_Projects_EnvironmentIDArray(mjenvironment_: MJEnvironment_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
1634
|
+
MJ_Collections_EnvironmentIDArray(mjenvironment_: MJEnvironment_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
1352
1635
|
MJ_Artifacts_EnvironmentIDArray(mjenvironment_: MJEnvironment_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
1353
|
-
Dashboards_EnvironmentIDArray(mjenvironment_: MJEnvironment_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
1354
1636
|
MJ_Tasks_EnvironmentIDArray(mjenvironment_: MJEnvironment_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
1637
|
+
Dashboards_EnvironmentIDArray(mjenvironment_: MJEnvironment_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
1355
1638
|
Reports_EnvironmentIDArray(mjenvironment_: MJEnvironment_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
1356
1639
|
Conversations_EnvironmentIDArray(mjenvironment_: MJEnvironment_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
1357
1640
|
CreateMJEnvironment(input: CreateMJEnvironmentInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -1475,6 +1758,58 @@ export declare class MJAIAgentActionResolver extends ResolverBase {
|
|
|
1475
1758
|
UpdateMJAIAgentAction(input: UpdateMJAIAgentActionInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1476
1759
|
DeleteMJAIAgentAction(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1477
1760
|
}
|
|
1761
|
+
export declare class MJTestRubric_ {
|
|
1762
|
+
ID: string;
|
|
1763
|
+
TypeID: string;
|
|
1764
|
+
Name: string;
|
|
1765
|
+
Description?: string;
|
|
1766
|
+
PromptTemplate?: string;
|
|
1767
|
+
Criteria?: string;
|
|
1768
|
+
Version?: string;
|
|
1769
|
+
Status: string;
|
|
1770
|
+
_mj__CreatedAt: Date;
|
|
1771
|
+
_mj__UpdatedAt: Date;
|
|
1772
|
+
Type: string;
|
|
1773
|
+
}
|
|
1774
|
+
export declare class CreateMJTestRubricInput {
|
|
1775
|
+
ID?: string;
|
|
1776
|
+
TypeID?: string;
|
|
1777
|
+
Name?: string;
|
|
1778
|
+
Description: string | null;
|
|
1779
|
+
PromptTemplate: string | null;
|
|
1780
|
+
Criteria: string | null;
|
|
1781
|
+
Version: string | null;
|
|
1782
|
+
Status?: string;
|
|
1783
|
+
}
|
|
1784
|
+
export declare class UpdateMJTestRubricInput {
|
|
1785
|
+
ID: string;
|
|
1786
|
+
TypeID?: string;
|
|
1787
|
+
Name?: string;
|
|
1788
|
+
Description?: string | null;
|
|
1789
|
+
PromptTemplate?: string | null;
|
|
1790
|
+
Criteria?: string | null;
|
|
1791
|
+
Version?: string | null;
|
|
1792
|
+
Status?: string;
|
|
1793
|
+
OldValues___?: KeyValuePairInput[];
|
|
1794
|
+
}
|
|
1795
|
+
export declare class RunMJTestRubricViewResult {
|
|
1796
|
+
Results: MJTestRubric_[];
|
|
1797
|
+
UserViewRunID?: string;
|
|
1798
|
+
RowCount: number;
|
|
1799
|
+
TotalRowCount: number;
|
|
1800
|
+
ExecutionTime: number;
|
|
1801
|
+
ErrorMessage?: string;
|
|
1802
|
+
Success: boolean;
|
|
1803
|
+
}
|
|
1804
|
+
export declare class MJTestRubricResolver extends ResolverBase {
|
|
1805
|
+
RunMJTestRubricViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
1806
|
+
RunMJTestRubricViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
1807
|
+
RunMJTestRubricDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
1808
|
+
MJTestRubric(ID: string, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJTestRubric_ | null>;
|
|
1809
|
+
CreateMJTestRubric(input: CreateMJTestRubricInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1810
|
+
UpdateMJTestRubric(input: UpdateMJTestRubricInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1811
|
+
DeleteMJTestRubric(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1812
|
+
}
|
|
1478
1813
|
export declare class MJTaskDependency_ {
|
|
1479
1814
|
ID: string;
|
|
1480
1815
|
TaskID: string;
|
|
@@ -3134,8 +3469,8 @@ export declare class MJUser_ {
|
|
|
3134
3469
|
AIAgentRequests_ResponseByUserIDArray: MJAIAgentRequest_[];
|
|
3135
3470
|
AIAgentNotes_UserIDArray: MJAIAgentNote_[];
|
|
3136
3471
|
MJ_ReportUserStates_UserIDArray: MJReportUserState_[];
|
|
3137
|
-
MJ_DashboardUserStates_UserIDArray: MJDashboardUserState_[];
|
|
3138
3472
|
MJ_DashboardUserPreferences_UserIDArray: MJDashboardUserPreference_[];
|
|
3473
|
+
MJ_DashboardUserStates_UserIDArray: MJDashboardUserState_[];
|
|
3139
3474
|
MJ_ArtifactVersions_UserIDArray: MJArtifactVersion_[];
|
|
3140
3475
|
MJ_PublicLinks_UserIDArray: MJPublicLink_[];
|
|
3141
3476
|
MJ_ScheduledJobRuns_ExecutedByUserIDArray: MJScheduledJobRun_[];
|
|
@@ -3143,6 +3478,8 @@ export declare class MJUser_ {
|
|
|
3143
3478
|
MJ_ArtifactPermissions_UserIDArray: MJArtifactPermission_[];
|
|
3144
3479
|
MJ_ArtifactUses_UserIDArray: MJArtifactUse_[];
|
|
3145
3480
|
MJ_ConversationDetailRatings_UserIDArray: MJConversationDetailRating_[];
|
|
3481
|
+
MJ_TestRunFeedbacks_ReviewerUserIDArray: MJTestRunFeedback_[];
|
|
3482
|
+
MJ_TestSuiteRuns_RunByUserIDArray: MJTestSuiteRun_[];
|
|
3146
3483
|
ResourcePermissions_UserIDArray: MJResourcePermission_[];
|
|
3147
3484
|
AIAgentRequests_RequestForUserIDArray: MJAIAgentRequest_[];
|
|
3148
3485
|
ConversationDetails_UserIDArray: MJConversationDetail_[];
|
|
@@ -3151,6 +3488,7 @@ export declare class MJUser_ {
|
|
|
3151
3488
|
MJ_ScheduledJobs_OwnerUserIDArray: MJScheduledJob_[];
|
|
3152
3489
|
MJ_CollectionPermissions_SharedByUserIDArray: MJCollectionPermission_[];
|
|
3153
3490
|
MJ_ArtifactPermissions_SharedByUserIDArray: MJArtifactPermission_[];
|
|
3491
|
+
MJ_TestRuns_RunByUserIDArray: MJTestRun_[];
|
|
3154
3492
|
MJ_AIAgentRuns_UserIDArray: MJAIAgentRun_[];
|
|
3155
3493
|
MJ_AIAgentPermissions_UserIDArray: MJAIAgentPermission_[];
|
|
3156
3494
|
MJ_Collections_OwnerIDArray: MJCollection_[];
|
|
@@ -3243,8 +3581,8 @@ export declare class MJUserResolverBase extends ResolverBase {
|
|
|
3243
3581
|
AIAgentRequests_ResponseByUserIDArray(mjuser_: MJUser_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3244
3582
|
AIAgentNotes_UserIDArray(mjuser_: MJUser_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3245
3583
|
MJ_ReportUserStates_UserIDArray(mjuser_: MJUser_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3246
|
-
MJ_DashboardUserStates_UserIDArray(mjuser_: MJUser_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3247
3584
|
MJ_DashboardUserPreferences_UserIDArray(mjuser_: MJUser_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3585
|
+
MJ_DashboardUserStates_UserIDArray(mjuser_: MJUser_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3248
3586
|
MJ_ArtifactVersions_UserIDArray(mjuser_: MJUser_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3249
3587
|
MJ_PublicLinks_UserIDArray(mjuser_: MJUser_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3250
3588
|
MJ_ScheduledJobRuns_ExecutedByUserIDArray(mjuser_: MJUser_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
@@ -3252,6 +3590,8 @@ export declare class MJUserResolverBase extends ResolverBase {
|
|
|
3252
3590
|
MJ_ArtifactPermissions_UserIDArray(mjuser_: MJUser_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3253
3591
|
MJ_ArtifactUses_UserIDArray(mjuser_: MJUser_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3254
3592
|
MJ_ConversationDetailRatings_UserIDArray(mjuser_: MJUser_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3593
|
+
MJ_TestRunFeedbacks_ReviewerUserIDArray(mjuser_: MJUser_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3594
|
+
MJ_TestSuiteRuns_RunByUserIDArray(mjuser_: MJUser_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3255
3595
|
ResourcePermissions_UserIDArray(mjuser_: MJUser_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3256
3596
|
AIAgentRequests_RequestForUserIDArray(mjuser_: MJUser_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3257
3597
|
ConversationDetails_UserIDArray(mjuser_: MJUser_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
@@ -3260,6 +3600,7 @@ export declare class MJUserResolverBase extends ResolverBase {
|
|
|
3260
3600
|
MJ_ScheduledJobs_OwnerUserIDArray(mjuser_: MJUser_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3261
3601
|
MJ_CollectionPermissions_SharedByUserIDArray(mjuser_: MJUser_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3262
3602
|
MJ_ArtifactPermissions_SharedByUserIDArray(mjuser_: MJUser_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3603
|
+
MJ_TestRuns_RunByUserIDArray(mjuser_: MJUser_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3263
3604
|
MJ_AIAgentRuns_UserIDArray(mjuser_: MJUser_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3264
3605
|
MJ_AIAgentPermissions_UserIDArray(mjuser_: MJUser_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3265
3606
|
MJ_Collections_OwnerIDArray(mjuser_: MJUser_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
@@ -5935,9 +6276,15 @@ export declare class MJConversationDetail_ {
|
|
|
5935
6276
|
AgentID?: string;
|
|
5936
6277
|
Status: string;
|
|
5937
6278
|
SuggestedResponses?: string;
|
|
6279
|
+
TestRunID?: string;
|
|
6280
|
+
ResponseForm?: string;
|
|
6281
|
+
ActionableCommands?: string;
|
|
6282
|
+
AutomaticCommands?: string;
|
|
5938
6283
|
Conversation?: string;
|
|
5939
6284
|
User?: string;
|
|
5940
6285
|
Artifact?: string;
|
|
6286
|
+
ArtifactVersion?: string;
|
|
6287
|
+
Parent?: string;
|
|
5941
6288
|
Agent?: string;
|
|
5942
6289
|
RootParentID?: string;
|
|
5943
6290
|
Reports_ConversationDetailIDArray: MJReport_[];
|
|
@@ -5970,6 +6317,10 @@ export declare class CreateMJConversationDetailInput {
|
|
|
5970
6317
|
AgentID: string | null;
|
|
5971
6318
|
Status?: string;
|
|
5972
6319
|
SuggestedResponses: string | null;
|
|
6320
|
+
TestRunID: string | null;
|
|
6321
|
+
ResponseForm: string | null;
|
|
6322
|
+
ActionableCommands: string | null;
|
|
6323
|
+
AutomaticCommands: string | null;
|
|
5973
6324
|
}
|
|
5974
6325
|
export declare class UpdateMJConversationDetailInput {
|
|
5975
6326
|
ID: string;
|
|
@@ -5992,6 +6343,10 @@ export declare class UpdateMJConversationDetailInput {
|
|
|
5992
6343
|
AgentID?: string | null;
|
|
5993
6344
|
Status?: string;
|
|
5994
6345
|
SuggestedResponses?: string | null;
|
|
6346
|
+
TestRunID?: string | null;
|
|
6347
|
+
ResponseForm?: string | null;
|
|
6348
|
+
ActionableCommands?: string | null;
|
|
6349
|
+
AutomaticCommands?: string | null;
|
|
5995
6350
|
OldValues___?: KeyValuePairInput[];
|
|
5996
6351
|
}
|
|
5997
6352
|
export declare class RunMJConversationDetailViewResult {
|
|
@@ -6037,6 +6392,7 @@ export declare class MJConversation_ {
|
|
|
6037
6392
|
EnvironmentID: string;
|
|
6038
6393
|
ProjectID?: string;
|
|
6039
6394
|
IsPinned: boolean;
|
|
6395
|
+
TestRunID?: string;
|
|
6040
6396
|
User: string;
|
|
6041
6397
|
LinkedEntity?: string;
|
|
6042
6398
|
DataContext?: string;
|
|
@@ -6064,6 +6420,7 @@ export declare class CreateMJConversationInput {
|
|
|
6064
6420
|
EnvironmentID?: string;
|
|
6065
6421
|
ProjectID: string | null;
|
|
6066
6422
|
IsPinned?: boolean;
|
|
6423
|
+
TestRunID: string | null;
|
|
6067
6424
|
}
|
|
6068
6425
|
export declare class UpdateMJConversationInput {
|
|
6069
6426
|
ID: string;
|
|
@@ -6080,6 +6437,7 @@ export declare class UpdateMJConversationInput {
|
|
|
6080
6437
|
EnvironmentID?: string;
|
|
6081
6438
|
ProjectID?: string | null;
|
|
6082
6439
|
IsPinned?: boolean;
|
|
6440
|
+
TestRunID?: string | null;
|
|
6083
6441
|
OldValues___?: KeyValuePairInput[];
|
|
6084
6442
|
}
|
|
6085
6443
|
export declare class RunMJConversationViewResult {
|
|
@@ -9623,6 +9981,108 @@ export declare class MJResourceLinkResolver extends ResolverBase {
|
|
|
9623
9981
|
UpdateMJResourceLink(input: UpdateMJResourceLinkInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
9624
9982
|
DeleteMJResourceLink(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
9625
9983
|
}
|
|
9984
|
+
export declare class MJTestRun_ {
|
|
9985
|
+
ID: string;
|
|
9986
|
+
TestID: string;
|
|
9987
|
+
TestSuiteRunID?: string;
|
|
9988
|
+
RunByUserID: string;
|
|
9989
|
+
Sequence?: number;
|
|
9990
|
+
TargetType?: string;
|
|
9991
|
+
TargetLogID?: string;
|
|
9992
|
+
Status: string;
|
|
9993
|
+
StartedAt?: Date;
|
|
9994
|
+
CompletedAt?: Date;
|
|
9995
|
+
DurationSeconds?: number;
|
|
9996
|
+
InputData?: string;
|
|
9997
|
+
ExpectedOutputData?: string;
|
|
9998
|
+
ActualOutputData?: string;
|
|
9999
|
+
PassedChecks?: number;
|
|
10000
|
+
FailedChecks?: number;
|
|
10001
|
+
TotalChecks?: number;
|
|
10002
|
+
Score?: number;
|
|
10003
|
+
CostUSD?: number;
|
|
10004
|
+
ErrorMessage?: string;
|
|
10005
|
+
ResultDetails?: string;
|
|
10006
|
+
_mj__CreatedAt: Date;
|
|
10007
|
+
_mj__UpdatedAt: Date;
|
|
10008
|
+
Test: string;
|
|
10009
|
+
RunByUser: string;
|
|
10010
|
+
MJ_TestRunFeedbacks_TestRunIDArray: MJTestRunFeedback_[];
|
|
10011
|
+
MJ_AIPromptRuns_TestRunIDArray: MJAIPromptRun_[];
|
|
10012
|
+
MJ_AIAgentRuns_TestRunIDArray: MJAIAgentRun_[];
|
|
10013
|
+
Conversations_TestRunIDArray: MJConversation_[];
|
|
10014
|
+
ConversationDetails_TestRunIDArray: MJConversationDetail_[];
|
|
10015
|
+
}
|
|
10016
|
+
export declare class CreateMJTestRunInput {
|
|
10017
|
+
ID?: string;
|
|
10018
|
+
TestID?: string;
|
|
10019
|
+
TestSuiteRunID: string | null;
|
|
10020
|
+
RunByUserID?: string;
|
|
10021
|
+
Sequence: number | null;
|
|
10022
|
+
TargetType: string | null;
|
|
10023
|
+
TargetLogID: string | null;
|
|
10024
|
+
Status?: string;
|
|
10025
|
+
StartedAt: Date | null;
|
|
10026
|
+
CompletedAt: Date | null;
|
|
10027
|
+
DurationSeconds: number | null;
|
|
10028
|
+
InputData: string | null;
|
|
10029
|
+
ExpectedOutputData: string | null;
|
|
10030
|
+
ActualOutputData: string | null;
|
|
10031
|
+
PassedChecks: number | null;
|
|
10032
|
+
FailedChecks: number | null;
|
|
10033
|
+
TotalChecks: number | null;
|
|
10034
|
+
Score: number | null;
|
|
10035
|
+
CostUSD: number | null;
|
|
10036
|
+
ErrorMessage: string | null;
|
|
10037
|
+
ResultDetails: string | null;
|
|
10038
|
+
}
|
|
10039
|
+
export declare class UpdateMJTestRunInput {
|
|
10040
|
+
ID: string;
|
|
10041
|
+
TestID?: string;
|
|
10042
|
+
TestSuiteRunID?: string | null;
|
|
10043
|
+
RunByUserID?: string;
|
|
10044
|
+
Sequence?: number | null;
|
|
10045
|
+
TargetType?: string | null;
|
|
10046
|
+
TargetLogID?: string | null;
|
|
10047
|
+
Status?: string;
|
|
10048
|
+
StartedAt?: Date | null;
|
|
10049
|
+
CompletedAt?: Date | null;
|
|
10050
|
+
DurationSeconds?: number | null;
|
|
10051
|
+
InputData?: string | null;
|
|
10052
|
+
ExpectedOutputData?: string | null;
|
|
10053
|
+
ActualOutputData?: string | null;
|
|
10054
|
+
PassedChecks?: number | null;
|
|
10055
|
+
FailedChecks?: number | null;
|
|
10056
|
+
TotalChecks?: number | null;
|
|
10057
|
+
Score?: number | null;
|
|
10058
|
+
CostUSD?: number | null;
|
|
10059
|
+
ErrorMessage?: string | null;
|
|
10060
|
+
ResultDetails?: string | null;
|
|
10061
|
+
OldValues___?: KeyValuePairInput[];
|
|
10062
|
+
}
|
|
10063
|
+
export declare class RunMJTestRunViewResult {
|
|
10064
|
+
Results: MJTestRun_[];
|
|
10065
|
+
UserViewRunID?: string;
|
|
10066
|
+
RowCount: number;
|
|
10067
|
+
TotalRowCount: number;
|
|
10068
|
+
ExecutionTime: number;
|
|
10069
|
+
ErrorMessage?: string;
|
|
10070
|
+
Success: boolean;
|
|
10071
|
+
}
|
|
10072
|
+
export declare class MJTestRunResolver extends ResolverBase {
|
|
10073
|
+
RunMJTestRunViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
10074
|
+
RunMJTestRunViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
10075
|
+
RunMJTestRunDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
10076
|
+
MJTestRun(ID: string, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJTestRun_ | null>;
|
|
10077
|
+
MJ_TestRunFeedbacks_TestRunIDArray(mjtestrun_: MJTestRun_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
10078
|
+
MJ_AIPromptRuns_TestRunIDArray(mjtestrun_: MJTestRun_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
10079
|
+
MJ_AIAgentRuns_TestRunIDArray(mjtestrun_: MJTestRun_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
10080
|
+
Conversations_TestRunIDArray(mjtestrun_: MJTestRun_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
10081
|
+
ConversationDetails_TestRunIDArray(mjtestrun_: MJTestRun_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
10082
|
+
CreateMJTestRun(input: CreateMJTestRunInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
10083
|
+
UpdateMJTestRun(input: UpdateMJTestRunInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
10084
|
+
DeleteMJTestRun(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
10085
|
+
}
|
|
9626
10086
|
export declare class MJAIAgentArtifactType_ {
|
|
9627
10087
|
ID: string;
|
|
9628
10088
|
AgentID: string;
|
|
@@ -10364,6 +10824,7 @@ export declare class MJArtifactType_ {
|
|
|
10364
10824
|
ParentID?: string;
|
|
10365
10825
|
ExtractRules?: string;
|
|
10366
10826
|
DriverClass?: string;
|
|
10827
|
+
Icon?: string;
|
|
10367
10828
|
Parent?: string;
|
|
10368
10829
|
RootParentID?: string;
|
|
10369
10830
|
MJ_ConversationArtifacts_ArtifactTypeIDArray: MJConversationArtifact_[];
|
|
@@ -10381,6 +10842,7 @@ export declare class CreateMJArtifactTypeInput {
|
|
|
10381
10842
|
ParentID: string | null;
|
|
10382
10843
|
ExtractRules: string | null;
|
|
10383
10844
|
DriverClass: string | null;
|
|
10845
|
+
Icon: string | null;
|
|
10384
10846
|
}
|
|
10385
10847
|
export declare class UpdateMJArtifactTypeInput {
|
|
10386
10848
|
ID: string;
|
|
@@ -10391,6 +10853,7 @@ export declare class UpdateMJArtifactTypeInput {
|
|
|
10391
10853
|
ParentID?: string | null;
|
|
10392
10854
|
ExtractRules?: string | null;
|
|
10393
10855
|
DriverClass?: string | null;
|
|
10856
|
+
Icon?: string | null;
|
|
10394
10857
|
OldValues___?: KeyValuePairInput[];
|
|
10395
10858
|
}
|
|
10396
10859
|
export declare class RunMJArtifactTypeViewResult {
|
|
@@ -10600,6 +11063,62 @@ export declare class MJAIAgentExampleResolver extends ResolverBase {
|
|
|
10600
11063
|
UpdateMJAIAgentExample(input: UpdateMJAIAgentExampleInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
10601
11064
|
DeleteMJAIAgentExample(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
10602
11065
|
}
|
|
11066
|
+
export declare class MJTestSuite_ {
|
|
11067
|
+
ID: string;
|
|
11068
|
+
ParentID?: string;
|
|
11069
|
+
Name: string;
|
|
11070
|
+
Description?: string;
|
|
11071
|
+
Status: string;
|
|
11072
|
+
Tags?: string;
|
|
11073
|
+
Configuration?: string;
|
|
11074
|
+
_mj__CreatedAt: Date;
|
|
11075
|
+
_mj__UpdatedAt: Date;
|
|
11076
|
+
Parent?: string;
|
|
11077
|
+
RootParentID?: string;
|
|
11078
|
+
MJ_TestSuites_ParentIDArray: MJTestSuite_[];
|
|
11079
|
+
MJ_TestSuiteRuns_SuiteIDArray: MJTestSuiteRun_[];
|
|
11080
|
+
MJ_TestSuiteTests_SuiteIDArray: MJTestSuiteTest_[];
|
|
11081
|
+
}
|
|
11082
|
+
export declare class CreateMJTestSuiteInput {
|
|
11083
|
+
ID?: string;
|
|
11084
|
+
ParentID: string | null;
|
|
11085
|
+
Name?: string;
|
|
11086
|
+
Description: string | null;
|
|
11087
|
+
Status?: string;
|
|
11088
|
+
Tags: string | null;
|
|
11089
|
+
Configuration: string | null;
|
|
11090
|
+
}
|
|
11091
|
+
export declare class UpdateMJTestSuiteInput {
|
|
11092
|
+
ID: string;
|
|
11093
|
+
ParentID?: string | null;
|
|
11094
|
+
Name?: string;
|
|
11095
|
+
Description?: string | null;
|
|
11096
|
+
Status?: string;
|
|
11097
|
+
Tags?: string | null;
|
|
11098
|
+
Configuration?: string | null;
|
|
11099
|
+
OldValues___?: KeyValuePairInput[];
|
|
11100
|
+
}
|
|
11101
|
+
export declare class RunMJTestSuiteViewResult {
|
|
11102
|
+
Results: MJTestSuite_[];
|
|
11103
|
+
UserViewRunID?: string;
|
|
11104
|
+
RowCount: number;
|
|
11105
|
+
TotalRowCount: number;
|
|
11106
|
+
ExecutionTime: number;
|
|
11107
|
+
ErrorMessage?: string;
|
|
11108
|
+
Success: boolean;
|
|
11109
|
+
}
|
|
11110
|
+
export declare class MJTestSuiteResolver extends ResolverBase {
|
|
11111
|
+
RunMJTestSuiteViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
11112
|
+
RunMJTestSuiteViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
11113
|
+
RunMJTestSuiteDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
11114
|
+
MJTestSuite(ID: string, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJTestSuite_ | null>;
|
|
11115
|
+
MJ_TestSuites_ParentIDArray(mjtestsuite_: MJTestSuite_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
11116
|
+
MJ_TestSuiteRuns_SuiteIDArray(mjtestsuite_: MJTestSuite_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
11117
|
+
MJ_TestSuiteTests_SuiteIDArray(mjtestsuite_: MJTestSuite_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
11118
|
+
CreateMJTestSuite(input: CreateMJTestSuiteInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
11119
|
+
UpdateMJTestSuite(input: UpdateMJTestSuiteInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
11120
|
+
DeleteMJTestSuite(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
11121
|
+
}
|
|
10603
11122
|
export declare class MJConversationArtifact_ {
|
|
10604
11123
|
ID: string;
|
|
10605
11124
|
Name: string;
|
|
@@ -11191,6 +11710,97 @@ export declare class MJComponentLibraryLinkResolver extends ResolverBase {
|
|
|
11191
11710
|
UpdateMJComponentLibraryLink(input: UpdateMJComponentLibraryLinkInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
11192
11711
|
DeleteMJComponentLibraryLink(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
11193
11712
|
}
|
|
11713
|
+
export declare class MJTestSuiteRun_ {
|
|
11714
|
+
ID: string;
|
|
11715
|
+
SuiteID: string;
|
|
11716
|
+
RunByUserID: string;
|
|
11717
|
+
Environment?: string;
|
|
11718
|
+
TriggerType?: string;
|
|
11719
|
+
GitCommit?: string;
|
|
11720
|
+
AgentVersion?: string;
|
|
11721
|
+
Status: string;
|
|
11722
|
+
StartedAt?: Date;
|
|
11723
|
+
CompletedAt?: Date;
|
|
11724
|
+
TotalTests?: number;
|
|
11725
|
+
PassedTests?: number;
|
|
11726
|
+
FailedTests?: number;
|
|
11727
|
+
SkippedTests?: number;
|
|
11728
|
+
ErrorTests?: number;
|
|
11729
|
+
TotalDurationSeconds?: number;
|
|
11730
|
+
TotalCostUSD?: number;
|
|
11731
|
+
Configuration?: string;
|
|
11732
|
+
ResultSummary?: string;
|
|
11733
|
+
ErrorMessage?: string;
|
|
11734
|
+
_mj__CreatedAt: Date;
|
|
11735
|
+
_mj__UpdatedAt: Date;
|
|
11736
|
+
Suite: string;
|
|
11737
|
+
RunByUser: string;
|
|
11738
|
+
MJ_TestRuns_TestSuiteRunIDArray: MJTestRun_[];
|
|
11739
|
+
}
|
|
11740
|
+
export declare class CreateMJTestSuiteRunInput {
|
|
11741
|
+
ID?: string;
|
|
11742
|
+
SuiteID?: string;
|
|
11743
|
+
RunByUserID?: string;
|
|
11744
|
+
Environment: string | null;
|
|
11745
|
+
TriggerType: string | null;
|
|
11746
|
+
GitCommit: string | null;
|
|
11747
|
+
AgentVersion: string | null;
|
|
11748
|
+
Status?: string;
|
|
11749
|
+
StartedAt: Date | null;
|
|
11750
|
+
CompletedAt: Date | null;
|
|
11751
|
+
TotalTests: number | null;
|
|
11752
|
+
PassedTests: number | null;
|
|
11753
|
+
FailedTests: number | null;
|
|
11754
|
+
SkippedTests: number | null;
|
|
11755
|
+
ErrorTests: number | null;
|
|
11756
|
+
TotalDurationSeconds: number | null;
|
|
11757
|
+
TotalCostUSD: number | null;
|
|
11758
|
+
Configuration: string | null;
|
|
11759
|
+
ResultSummary: string | null;
|
|
11760
|
+
ErrorMessage: string | null;
|
|
11761
|
+
}
|
|
11762
|
+
export declare class UpdateMJTestSuiteRunInput {
|
|
11763
|
+
ID: string;
|
|
11764
|
+
SuiteID?: string;
|
|
11765
|
+
RunByUserID?: string;
|
|
11766
|
+
Environment?: string | null;
|
|
11767
|
+
TriggerType?: string | null;
|
|
11768
|
+
GitCommit?: string | null;
|
|
11769
|
+
AgentVersion?: string | null;
|
|
11770
|
+
Status?: string;
|
|
11771
|
+
StartedAt?: Date | null;
|
|
11772
|
+
CompletedAt?: Date | null;
|
|
11773
|
+
TotalTests?: number | null;
|
|
11774
|
+
PassedTests?: number | null;
|
|
11775
|
+
FailedTests?: number | null;
|
|
11776
|
+
SkippedTests?: number | null;
|
|
11777
|
+
ErrorTests?: number | null;
|
|
11778
|
+
TotalDurationSeconds?: number | null;
|
|
11779
|
+
TotalCostUSD?: number | null;
|
|
11780
|
+
Configuration?: string | null;
|
|
11781
|
+
ResultSummary?: string | null;
|
|
11782
|
+
ErrorMessage?: string | null;
|
|
11783
|
+
OldValues___?: KeyValuePairInput[];
|
|
11784
|
+
}
|
|
11785
|
+
export declare class RunMJTestSuiteRunViewResult {
|
|
11786
|
+
Results: MJTestSuiteRun_[];
|
|
11787
|
+
UserViewRunID?: string;
|
|
11788
|
+
RowCount: number;
|
|
11789
|
+
TotalRowCount: number;
|
|
11790
|
+
ExecutionTime: number;
|
|
11791
|
+
ErrorMessage?: string;
|
|
11792
|
+
Success: boolean;
|
|
11793
|
+
}
|
|
11794
|
+
export declare class MJTestSuiteRunResolver extends ResolverBase {
|
|
11795
|
+
RunMJTestSuiteRunViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
11796
|
+
RunMJTestSuiteRunViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
11797
|
+
RunMJTestSuiteRunDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
11798
|
+
MJTestSuiteRun(ID: string, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJTestSuiteRun_ | null>;
|
|
11799
|
+
MJ_TestRuns_TestSuiteRunIDArray(mjtestsuiterun_: MJTestSuiteRun_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
11800
|
+
CreateMJTestSuiteRun(input: CreateMJTestSuiteRunInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
11801
|
+
UpdateMJTestSuiteRun(input: UpdateMJTestSuiteRunInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
11802
|
+
DeleteMJTestSuiteRun(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
11803
|
+
}
|
|
11194
11804
|
export declare class MJContentProcessRun_ {
|
|
11195
11805
|
ID: string;
|
|
11196
11806
|
SourceID: string;
|
|
@@ -11950,12 +12560,16 @@ export declare class MJAIPromptRun_ {
|
|
|
11950
12560
|
EffortLevel?: number;
|
|
11951
12561
|
RunName?: string;
|
|
11952
12562
|
Comments?: string;
|
|
12563
|
+
TestRunID?: string;
|
|
11953
12564
|
Prompt: string;
|
|
11954
12565
|
Model: string;
|
|
11955
12566
|
Vendor: string;
|
|
11956
12567
|
Agent?: string;
|
|
11957
12568
|
Configuration?: string;
|
|
12569
|
+
Parent?: string;
|
|
12570
|
+
AgentRun?: string;
|
|
11958
12571
|
OriginalModel?: string;
|
|
12572
|
+
RerunFromPromptRun?: string;
|
|
11959
12573
|
Judge?: string;
|
|
11960
12574
|
ChildPrompt?: string;
|
|
11961
12575
|
RootParentID?: string;
|
|
@@ -12045,6 +12659,7 @@ export declare class CreateMJAIPromptRunInput {
|
|
|
12045
12659
|
EffortLevel: number | null;
|
|
12046
12660
|
RunName: string | null;
|
|
12047
12661
|
Comments: string | null;
|
|
12662
|
+
TestRunID: string | null;
|
|
12048
12663
|
}
|
|
12049
12664
|
export declare class UpdateMJAIPromptRunInput {
|
|
12050
12665
|
ID: string;
|
|
@@ -12128,6 +12743,7 @@ export declare class UpdateMJAIPromptRunInput {
|
|
|
12128
12743
|
EffortLevel?: number | null;
|
|
12129
12744
|
RunName?: string | null;
|
|
12130
12745
|
Comments?: string | null;
|
|
12746
|
+
TestRunID?: string | null;
|
|
12131
12747
|
OldValues___?: KeyValuePairInput[];
|
|
12132
12748
|
}
|
|
12133
12749
|
export declare class RunMJAIPromptRunViewResult {
|