@memberjunction/server 2.117.0 → 2.119.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/agents/skip-sdk.d.ts.map +1 -1
- package/dist/agents/skip-sdk.js +10 -0
- package/dist/agents/skip-sdk.js.map +1 -1
- package/dist/generated/generated.d.ts +653 -6
- package/dist/generated/generated.d.ts.map +1 -1
- package/dist/generated/generated.js +4033 -52
- package/dist/generated/generated.js.map +1 -1
- package/dist/resolvers/RunAIAgentResolver.d.ts +3 -4
- package/dist/resolvers/RunAIAgentResolver.d.ts.map +1 -1
- package/dist/resolvers/RunAIAgentResolver.js +32 -176
- 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/agents/skip-sdk.ts +10 -0
- package/src/generated/generated.ts +2557 -41
- package/src/resolvers/RunAIAgentResolver.ts +42 -292
- 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;
|
|
@@ -1246,6 +1529,8 @@ export declare class MJAIAgentNote_ {
|
|
|
1246
1529
|
AgentNoteType?: string;
|
|
1247
1530
|
User?: string;
|
|
1248
1531
|
SourceConversation?: string;
|
|
1532
|
+
SourceConversationDetail?: string;
|
|
1533
|
+
SourceAIAgentRun?: string;
|
|
1249
1534
|
Company?: string;
|
|
1250
1535
|
EmbeddingModel?: string;
|
|
1251
1536
|
}
|
|
@@ -1310,11 +1595,11 @@ export declare class MJEnvironment_ {
|
|
|
1310
1595
|
Settings?: string;
|
|
1311
1596
|
_mj__CreatedAt: Date;
|
|
1312
1597
|
_mj__UpdatedAt: Date;
|
|
1313
|
-
MJ_Collections_EnvironmentIDArray: MJCollection_[];
|
|
1314
1598
|
MJ_Projects_EnvironmentIDArray: MJProject_[];
|
|
1599
|
+
MJ_Collections_EnvironmentIDArray: MJCollection_[];
|
|
1315
1600
|
MJ_Artifacts_EnvironmentIDArray: MJArtifact_[];
|
|
1316
|
-
Dashboards_EnvironmentIDArray: MJDashboard_[];
|
|
1317
1601
|
MJ_Tasks_EnvironmentIDArray: MJTask_[];
|
|
1602
|
+
Dashboards_EnvironmentIDArray: MJDashboard_[];
|
|
1318
1603
|
Reports_EnvironmentIDArray: MJReport_[];
|
|
1319
1604
|
Conversations_EnvironmentIDArray: MJConversation_[];
|
|
1320
1605
|
}
|
|
@@ -1347,11 +1632,11 @@ export declare class MJEnvironmentResolver extends ResolverBase {
|
|
|
1347
1632
|
RunMJEnvironmentViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
1348
1633
|
RunMJEnvironmentDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
1349
1634
|
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
1635
|
MJ_Projects_EnvironmentIDArray(mjenvironment_: MJEnvironment_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
1636
|
+
MJ_Collections_EnvironmentIDArray(mjenvironment_: MJEnvironment_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
1352
1637
|
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
1638
|
MJ_Tasks_EnvironmentIDArray(mjenvironment_: MJEnvironment_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
1639
|
+
Dashboards_EnvironmentIDArray(mjenvironment_: MJEnvironment_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
1355
1640
|
Reports_EnvironmentIDArray(mjenvironment_: MJEnvironment_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
1356
1641
|
Conversations_EnvironmentIDArray(mjenvironment_: MJEnvironment_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
1357
1642
|
CreateMJEnvironment(input: CreateMJEnvironmentInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -1475,6 +1760,58 @@ export declare class MJAIAgentActionResolver extends ResolverBase {
|
|
|
1475
1760
|
UpdateMJAIAgentAction(input: UpdateMJAIAgentActionInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1476
1761
|
DeleteMJAIAgentAction(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1477
1762
|
}
|
|
1763
|
+
export declare class MJTestRubric_ {
|
|
1764
|
+
ID: string;
|
|
1765
|
+
TypeID: string;
|
|
1766
|
+
Name: string;
|
|
1767
|
+
Description?: string;
|
|
1768
|
+
PromptTemplate?: string;
|
|
1769
|
+
Criteria?: string;
|
|
1770
|
+
Version?: string;
|
|
1771
|
+
Status: string;
|
|
1772
|
+
_mj__CreatedAt: Date;
|
|
1773
|
+
_mj__UpdatedAt: Date;
|
|
1774
|
+
Type: string;
|
|
1775
|
+
}
|
|
1776
|
+
export declare class CreateMJTestRubricInput {
|
|
1777
|
+
ID?: string;
|
|
1778
|
+
TypeID?: string;
|
|
1779
|
+
Name?: string;
|
|
1780
|
+
Description: string | null;
|
|
1781
|
+
PromptTemplate: string | null;
|
|
1782
|
+
Criteria: string | null;
|
|
1783
|
+
Version: string | null;
|
|
1784
|
+
Status?: string;
|
|
1785
|
+
}
|
|
1786
|
+
export declare class UpdateMJTestRubricInput {
|
|
1787
|
+
ID: string;
|
|
1788
|
+
TypeID?: string;
|
|
1789
|
+
Name?: string;
|
|
1790
|
+
Description?: string | null;
|
|
1791
|
+
PromptTemplate?: string | null;
|
|
1792
|
+
Criteria?: string | null;
|
|
1793
|
+
Version?: string | null;
|
|
1794
|
+
Status?: string;
|
|
1795
|
+
OldValues___?: KeyValuePairInput[];
|
|
1796
|
+
}
|
|
1797
|
+
export declare class RunMJTestRubricViewResult {
|
|
1798
|
+
Results: MJTestRubric_[];
|
|
1799
|
+
UserViewRunID?: string;
|
|
1800
|
+
RowCount: number;
|
|
1801
|
+
TotalRowCount: number;
|
|
1802
|
+
ExecutionTime: number;
|
|
1803
|
+
ErrorMessage?: string;
|
|
1804
|
+
Success: boolean;
|
|
1805
|
+
}
|
|
1806
|
+
export declare class MJTestRubricResolver extends ResolverBase {
|
|
1807
|
+
RunMJTestRubricViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
1808
|
+
RunMJTestRubricViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
1809
|
+
RunMJTestRubricDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
1810
|
+
MJTestRubric(ID: string, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJTestRubric_ | null>;
|
|
1811
|
+
CreateMJTestRubric(input: CreateMJTestRubricInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1812
|
+
UpdateMJTestRubric(input: UpdateMJTestRubricInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1813
|
+
DeleteMJTestRubric(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1814
|
+
}
|
|
1478
1815
|
export declare class MJTaskDependency_ {
|
|
1479
1816
|
ID: string;
|
|
1480
1817
|
TaskID: string;
|
|
@@ -1937,6 +2274,7 @@ export declare class MJAIResultCache_ {
|
|
|
1937
2274
|
Vendor?: string;
|
|
1938
2275
|
Agent?: string;
|
|
1939
2276
|
Configuration?: string;
|
|
2277
|
+
PromptRun?: string;
|
|
1940
2278
|
}
|
|
1941
2279
|
export declare class CreateMJAIResultCacheInput {
|
|
1942
2280
|
ID?: string;
|
|
@@ -2247,6 +2585,7 @@ export declare class MJEmployeeCompanyIntegration_ {
|
|
|
2247
2585
|
IsActive: boolean;
|
|
2248
2586
|
_mj__CreatedAt: Date;
|
|
2249
2587
|
_mj__UpdatedAt: Date;
|
|
2588
|
+
Employee?: string;
|
|
2250
2589
|
CompanyIntegration: string;
|
|
2251
2590
|
}
|
|
2252
2591
|
export declare class CreateMJEmployeeCompanyIntegrationInput {
|
|
@@ -2288,6 +2627,7 @@ export declare class MJEmployeeRole_ {
|
|
|
2288
2627
|
RoleID: string;
|
|
2289
2628
|
_mj__CreatedAt: Date;
|
|
2290
2629
|
_mj__UpdatedAt: Date;
|
|
2630
|
+
Employee?: string;
|
|
2291
2631
|
Role: string;
|
|
2292
2632
|
}
|
|
2293
2633
|
export declare class CreateMJEmployeeRoleInput {
|
|
@@ -2325,6 +2665,7 @@ export declare class MJEmployeeSkill_ {
|
|
|
2325
2665
|
SkillID: string;
|
|
2326
2666
|
_mj__CreatedAt: Date;
|
|
2327
2667
|
_mj__UpdatedAt: Date;
|
|
2668
|
+
Employee?: string;
|
|
2328
2669
|
Skill: string;
|
|
2329
2670
|
}
|
|
2330
2671
|
export declare class CreateMJEmployeeSkillInput {
|
|
@@ -3134,8 +3475,8 @@ export declare class MJUser_ {
|
|
|
3134
3475
|
AIAgentRequests_ResponseByUserIDArray: MJAIAgentRequest_[];
|
|
3135
3476
|
AIAgentNotes_UserIDArray: MJAIAgentNote_[];
|
|
3136
3477
|
MJ_ReportUserStates_UserIDArray: MJReportUserState_[];
|
|
3137
|
-
MJ_DashboardUserStates_UserIDArray: MJDashboardUserState_[];
|
|
3138
3478
|
MJ_DashboardUserPreferences_UserIDArray: MJDashboardUserPreference_[];
|
|
3479
|
+
MJ_DashboardUserStates_UserIDArray: MJDashboardUserState_[];
|
|
3139
3480
|
MJ_ArtifactVersions_UserIDArray: MJArtifactVersion_[];
|
|
3140
3481
|
MJ_PublicLinks_UserIDArray: MJPublicLink_[];
|
|
3141
3482
|
MJ_ScheduledJobRuns_ExecutedByUserIDArray: MJScheduledJobRun_[];
|
|
@@ -3143,6 +3484,8 @@ export declare class MJUser_ {
|
|
|
3143
3484
|
MJ_ArtifactPermissions_UserIDArray: MJArtifactPermission_[];
|
|
3144
3485
|
MJ_ArtifactUses_UserIDArray: MJArtifactUse_[];
|
|
3145
3486
|
MJ_ConversationDetailRatings_UserIDArray: MJConversationDetailRating_[];
|
|
3487
|
+
MJ_TestRunFeedbacks_ReviewerUserIDArray: MJTestRunFeedback_[];
|
|
3488
|
+
MJ_TestSuiteRuns_RunByUserIDArray: MJTestSuiteRun_[];
|
|
3146
3489
|
ResourcePermissions_UserIDArray: MJResourcePermission_[];
|
|
3147
3490
|
AIAgentRequests_RequestForUserIDArray: MJAIAgentRequest_[];
|
|
3148
3491
|
ConversationDetails_UserIDArray: MJConversationDetail_[];
|
|
@@ -3151,6 +3494,7 @@ export declare class MJUser_ {
|
|
|
3151
3494
|
MJ_ScheduledJobs_OwnerUserIDArray: MJScheduledJob_[];
|
|
3152
3495
|
MJ_CollectionPermissions_SharedByUserIDArray: MJCollectionPermission_[];
|
|
3153
3496
|
MJ_ArtifactPermissions_SharedByUserIDArray: MJArtifactPermission_[];
|
|
3497
|
+
MJ_TestRuns_RunByUserIDArray: MJTestRun_[];
|
|
3154
3498
|
MJ_AIAgentRuns_UserIDArray: MJAIAgentRun_[];
|
|
3155
3499
|
MJ_AIAgentPermissions_UserIDArray: MJAIAgentPermission_[];
|
|
3156
3500
|
MJ_Collections_OwnerIDArray: MJCollection_[];
|
|
@@ -3243,8 +3587,8 @@ export declare class MJUserResolverBase extends ResolverBase {
|
|
|
3243
3587
|
AIAgentRequests_ResponseByUserIDArray(mjuser_: MJUser_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3244
3588
|
AIAgentNotes_UserIDArray(mjuser_: MJUser_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3245
3589
|
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
3590
|
MJ_DashboardUserPreferences_UserIDArray(mjuser_: MJUser_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3591
|
+
MJ_DashboardUserStates_UserIDArray(mjuser_: MJUser_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3248
3592
|
MJ_ArtifactVersions_UserIDArray(mjuser_: MJUser_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3249
3593
|
MJ_PublicLinks_UserIDArray(mjuser_: MJUser_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3250
3594
|
MJ_ScheduledJobRuns_ExecutedByUserIDArray(mjuser_: MJUser_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
@@ -3252,6 +3596,8 @@ export declare class MJUserResolverBase extends ResolverBase {
|
|
|
3252
3596
|
MJ_ArtifactPermissions_UserIDArray(mjuser_: MJUser_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3253
3597
|
MJ_ArtifactUses_UserIDArray(mjuser_: MJUser_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3254
3598
|
MJ_ConversationDetailRatings_UserIDArray(mjuser_: MJUser_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3599
|
+
MJ_TestRunFeedbacks_ReviewerUserIDArray(mjuser_: MJUser_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3600
|
+
MJ_TestSuiteRuns_RunByUserIDArray(mjuser_: MJUser_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3255
3601
|
ResourcePermissions_UserIDArray(mjuser_: MJUser_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3256
3602
|
AIAgentRequests_RequestForUserIDArray(mjuser_: MJUser_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3257
3603
|
ConversationDetails_UserIDArray(mjuser_: MJUser_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
@@ -3260,6 +3606,7 @@ export declare class MJUserResolverBase extends ResolverBase {
|
|
|
3260
3606
|
MJ_ScheduledJobs_OwnerUserIDArray(mjuser_: MJUser_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3261
3607
|
MJ_CollectionPermissions_SharedByUserIDArray(mjuser_: MJUser_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3262
3608
|
MJ_ArtifactPermissions_SharedByUserIDArray(mjuser_: MJUser_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3609
|
+
MJ_TestRuns_RunByUserIDArray(mjuser_: MJUser_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3263
3610
|
MJ_AIAgentRuns_UserIDArray(mjuser_: MJUser_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3264
3611
|
MJ_AIAgentPermissions_UserIDArray(mjuser_: MJUser_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3265
3612
|
MJ_Collections_OwnerIDArray(mjuser_: MJUser_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
@@ -3658,6 +4005,8 @@ export declare class MJErrorLog_ {
|
|
|
3658
4005
|
Details?: string;
|
|
3659
4006
|
_mj__CreatedAt: Date;
|
|
3660
4007
|
_mj__UpdatedAt: Date;
|
|
4008
|
+
CompanyIntegrationRun?: string;
|
|
4009
|
+
CompanyIntegrationRunDetail?: string;
|
|
3661
4010
|
}
|
|
3662
4011
|
export declare class CreateMJErrorLogInput {
|
|
3663
4012
|
ID?: string;
|
|
@@ -3970,6 +4319,7 @@ export declare class MJCompanyIntegrationRunAPILog_ {
|
|
|
3970
4319
|
Parameters?: string;
|
|
3971
4320
|
_mj__CreatedAt: Date;
|
|
3972
4321
|
_mj__UpdatedAt: Date;
|
|
4322
|
+
CompanyIntegrationRun: string;
|
|
3973
4323
|
}
|
|
3974
4324
|
export declare class CreateMJCompanyIntegrationRunAPILogInput {
|
|
3975
4325
|
ID?: string;
|
|
@@ -4367,6 +4717,7 @@ export declare class MJRecordChange_ {
|
|
|
4367
4717
|
UpdatedAt: Date;
|
|
4368
4718
|
Entity: string;
|
|
4369
4719
|
User: string;
|
|
4720
|
+
ReplayRun?: string;
|
|
4370
4721
|
Integration?: string;
|
|
4371
4722
|
}
|
|
4372
4723
|
export declare class CreateMJRecordChangeInput {
|
|
@@ -5463,6 +5814,7 @@ export declare class MJReport_ {
|
|
|
5463
5814
|
Category?: string;
|
|
5464
5815
|
User: string;
|
|
5465
5816
|
Conversation?: string;
|
|
5817
|
+
ConversationDetail?: string;
|
|
5466
5818
|
DataContext?: string;
|
|
5467
5819
|
OutputTriggerType?: string;
|
|
5468
5820
|
OutputFormatType?: string;
|
|
@@ -5935,9 +6287,15 @@ export declare class MJConversationDetail_ {
|
|
|
5935
6287
|
AgentID?: string;
|
|
5936
6288
|
Status: string;
|
|
5937
6289
|
SuggestedResponses?: string;
|
|
6290
|
+
TestRunID?: string;
|
|
6291
|
+
ResponseForm?: string;
|
|
6292
|
+
ActionableCommands?: string;
|
|
6293
|
+
AutomaticCommands?: string;
|
|
5938
6294
|
Conversation?: string;
|
|
5939
6295
|
User?: string;
|
|
5940
6296
|
Artifact?: string;
|
|
6297
|
+
ArtifactVersion?: string;
|
|
6298
|
+
Parent?: string;
|
|
5941
6299
|
Agent?: string;
|
|
5942
6300
|
RootParentID?: string;
|
|
5943
6301
|
Reports_ConversationDetailIDArray: MJReport_[];
|
|
@@ -5970,6 +6328,10 @@ export declare class CreateMJConversationDetailInput {
|
|
|
5970
6328
|
AgentID: string | null;
|
|
5971
6329
|
Status?: string;
|
|
5972
6330
|
SuggestedResponses: string | null;
|
|
6331
|
+
TestRunID: string | null;
|
|
6332
|
+
ResponseForm: string | null;
|
|
6333
|
+
ActionableCommands: string | null;
|
|
6334
|
+
AutomaticCommands: string | null;
|
|
5973
6335
|
}
|
|
5974
6336
|
export declare class UpdateMJConversationDetailInput {
|
|
5975
6337
|
ID: string;
|
|
@@ -5992,6 +6354,10 @@ export declare class UpdateMJConversationDetailInput {
|
|
|
5992
6354
|
AgentID?: string | null;
|
|
5993
6355
|
Status?: string;
|
|
5994
6356
|
SuggestedResponses?: string | null;
|
|
6357
|
+
TestRunID?: string | null;
|
|
6358
|
+
ResponseForm?: string | null;
|
|
6359
|
+
ActionableCommands?: string | null;
|
|
6360
|
+
AutomaticCommands?: string | null;
|
|
5995
6361
|
OldValues___?: KeyValuePairInput[];
|
|
5996
6362
|
}
|
|
5997
6363
|
export declare class RunMJConversationDetailViewResult {
|
|
@@ -6037,6 +6403,7 @@ export declare class MJConversation_ {
|
|
|
6037
6403
|
EnvironmentID: string;
|
|
6038
6404
|
ProjectID?: string;
|
|
6039
6405
|
IsPinned: boolean;
|
|
6406
|
+
TestRunID?: string;
|
|
6040
6407
|
User: string;
|
|
6041
6408
|
LinkedEntity?: string;
|
|
6042
6409
|
DataContext?: string;
|
|
@@ -6064,6 +6431,7 @@ export declare class CreateMJConversationInput {
|
|
|
6064
6431
|
EnvironmentID?: string;
|
|
6065
6432
|
ProjectID: string | null;
|
|
6066
6433
|
IsPinned?: boolean;
|
|
6434
|
+
TestRunID: string | null;
|
|
6067
6435
|
}
|
|
6068
6436
|
export declare class UpdateMJConversationInput {
|
|
6069
6437
|
ID: string;
|
|
@@ -6080,6 +6448,7 @@ export declare class UpdateMJConversationInput {
|
|
|
6080
6448
|
EnvironmentID?: string;
|
|
6081
6449
|
ProjectID?: string | null;
|
|
6082
6450
|
IsPinned?: boolean;
|
|
6451
|
+
TestRunID?: string | null;
|
|
6083
6452
|
OldValues___?: KeyValuePairInput[];
|
|
6084
6453
|
}
|
|
6085
6454
|
export declare class RunMJConversationViewResult {
|
|
@@ -6326,6 +6695,7 @@ export declare class MJRecordMergeDeletionLog_ {
|
|
|
6326
6695
|
ProcessingLog?: string;
|
|
6327
6696
|
_mj__CreatedAt: Date;
|
|
6328
6697
|
_mj__UpdatedAt: Date;
|
|
6698
|
+
RecordMergeLog: string;
|
|
6329
6699
|
}
|
|
6330
6700
|
export declare class CreateMJRecordMergeDeletionLogInput {
|
|
6331
6701
|
ID?: string;
|
|
@@ -7457,6 +7827,8 @@ export declare class MJDuplicateRunDetailMatch_ {
|
|
|
7457
7827
|
MergedAt: Date;
|
|
7458
7828
|
_mj__CreatedAt: Date;
|
|
7459
7829
|
_mj__UpdatedAt: Date;
|
|
7830
|
+
DuplicateRunDetail: string;
|
|
7831
|
+
RecordMergeLog?: string;
|
|
7460
7832
|
}
|
|
7461
7833
|
export declare class CreateMJDuplicateRunDetailMatchInput {
|
|
7462
7834
|
ID?: string;
|
|
@@ -7666,6 +8038,7 @@ export declare class MJDuplicateRunDetail_ {
|
|
|
7666
8038
|
MergeErrorMessage?: string;
|
|
7667
8039
|
_mj__CreatedAt: Date;
|
|
7668
8040
|
_mj__UpdatedAt: Date;
|
|
8041
|
+
DuplicateRun: string;
|
|
7669
8042
|
DuplicateRunDetailMatches_DuplicateRunDetailIDArray: MJDuplicateRunDetailMatch_[];
|
|
7670
8043
|
}
|
|
7671
8044
|
export declare class CreateMJDuplicateRunDetailInput {
|
|
@@ -7853,6 +8226,7 @@ export declare class MJEntityActionInvocation_ {
|
|
|
7853
8226
|
Status: string;
|
|
7854
8227
|
_mj__CreatedAt: Date;
|
|
7855
8228
|
_mj__UpdatedAt: Date;
|
|
8229
|
+
EntityAction: string;
|
|
7856
8230
|
InvocationType: string;
|
|
7857
8231
|
}
|
|
7858
8232
|
export declare class CreateMJEntityActionInvocationInput {
|
|
@@ -8093,6 +8467,8 @@ export declare class MJEntityActionFilter_ {
|
|
|
8093
8467
|
Status: string;
|
|
8094
8468
|
_mj__CreatedAt: Date;
|
|
8095
8469
|
_mj__UpdatedAt: Date;
|
|
8470
|
+
EntityAction: string;
|
|
8471
|
+
ActionFilter: string;
|
|
8096
8472
|
}
|
|
8097
8473
|
export declare class CreateMJEntityActionFilterInput {
|
|
8098
8474
|
ID?: string;
|
|
@@ -8725,6 +9101,7 @@ export declare class MJCommunicationLog_ {
|
|
|
8725
9101
|
_mj__UpdatedAt: Date;
|
|
8726
9102
|
CommunicationProvider: string;
|
|
8727
9103
|
CommunicationProviderMessageType: string;
|
|
9104
|
+
CommunicationRun?: string;
|
|
8728
9105
|
}
|
|
8729
9106
|
export declare class CreateMJCommunicationLogInput {
|
|
8730
9107
|
ID?: string;
|
|
@@ -8997,6 +9374,7 @@ export declare class MJTemplateParam_ {
|
|
|
8997
9374
|
TemplateContentID?: string;
|
|
8998
9375
|
Template: string;
|
|
8999
9376
|
Entity?: string;
|
|
9377
|
+
TemplateContent?: string;
|
|
9000
9378
|
}
|
|
9001
9379
|
export declare class CreateMJTemplateParamInput {
|
|
9002
9380
|
ID?: string;
|
|
@@ -9097,6 +9475,7 @@ export declare class MJRecommendation_ {
|
|
|
9097
9475
|
SourceEntityRecordID: string;
|
|
9098
9476
|
_mj__CreatedAt: Date;
|
|
9099
9477
|
_mj__UpdatedAt: Date;
|
|
9478
|
+
RecommendationRun: string;
|
|
9100
9479
|
SourceEntity: string;
|
|
9101
9480
|
RecommendationItems_RecommendationIDArray: MJRecommendationItem_[];
|
|
9102
9481
|
}
|
|
@@ -9230,6 +9609,7 @@ export declare class MJRecommendationItem_ {
|
|
|
9230
9609
|
MatchProbability?: number;
|
|
9231
9610
|
_mj__CreatedAt: Date;
|
|
9232
9611
|
_mj__UpdatedAt: Date;
|
|
9612
|
+
Recommendation: string;
|
|
9233
9613
|
DestinationEntity: string;
|
|
9234
9614
|
}
|
|
9235
9615
|
export declare class CreateMJRecommendationItemInput {
|
|
@@ -9315,6 +9695,7 @@ export declare class MJEntityCommunicationField_ {
|
|
|
9315
9695
|
Priority: number;
|
|
9316
9696
|
_mj__CreatedAt: Date;
|
|
9317
9697
|
_mj__UpdatedAt: Date;
|
|
9698
|
+
EntityCommunicationMessageType: string;
|
|
9318
9699
|
}
|
|
9319
9700
|
export declare class CreateMJEntityCommunicationFieldInput {
|
|
9320
9701
|
ID?: string;
|
|
@@ -9482,6 +9863,7 @@ export declare class MJEntityActionParam_ {
|
|
|
9482
9863
|
Comments?: string;
|
|
9483
9864
|
_mj__CreatedAt: Date;
|
|
9484
9865
|
_mj__UpdatedAt: Date;
|
|
9866
|
+
EntityAction: string;
|
|
9485
9867
|
ActionParam: string;
|
|
9486
9868
|
}
|
|
9487
9869
|
export declare class CreateMJEntityActionParamInput {
|
|
@@ -9623,6 +10005,108 @@ export declare class MJResourceLinkResolver extends ResolverBase {
|
|
|
9623
10005
|
UpdateMJResourceLink(input: UpdateMJResourceLinkInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
9624
10006
|
DeleteMJResourceLink(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
9625
10007
|
}
|
|
10008
|
+
export declare class MJTestRun_ {
|
|
10009
|
+
ID: string;
|
|
10010
|
+
TestID: string;
|
|
10011
|
+
TestSuiteRunID?: string;
|
|
10012
|
+
RunByUserID: string;
|
|
10013
|
+
Sequence?: number;
|
|
10014
|
+
TargetType?: string;
|
|
10015
|
+
TargetLogID?: string;
|
|
10016
|
+
Status: string;
|
|
10017
|
+
StartedAt?: Date;
|
|
10018
|
+
CompletedAt?: Date;
|
|
10019
|
+
DurationSeconds?: number;
|
|
10020
|
+
InputData?: string;
|
|
10021
|
+
ExpectedOutputData?: string;
|
|
10022
|
+
ActualOutputData?: string;
|
|
10023
|
+
PassedChecks?: number;
|
|
10024
|
+
FailedChecks?: number;
|
|
10025
|
+
TotalChecks?: number;
|
|
10026
|
+
Score?: number;
|
|
10027
|
+
CostUSD?: number;
|
|
10028
|
+
ErrorMessage?: string;
|
|
10029
|
+
ResultDetails?: string;
|
|
10030
|
+
_mj__CreatedAt: Date;
|
|
10031
|
+
_mj__UpdatedAt: Date;
|
|
10032
|
+
Test: string;
|
|
10033
|
+
RunByUser: string;
|
|
10034
|
+
MJ_TestRunFeedbacks_TestRunIDArray: MJTestRunFeedback_[];
|
|
10035
|
+
MJ_AIPromptRuns_TestRunIDArray: MJAIPromptRun_[];
|
|
10036
|
+
MJ_AIAgentRuns_TestRunIDArray: MJAIAgentRun_[];
|
|
10037
|
+
Conversations_TestRunIDArray: MJConversation_[];
|
|
10038
|
+
ConversationDetails_TestRunIDArray: MJConversationDetail_[];
|
|
10039
|
+
}
|
|
10040
|
+
export declare class CreateMJTestRunInput {
|
|
10041
|
+
ID?: string;
|
|
10042
|
+
TestID?: string;
|
|
10043
|
+
TestSuiteRunID: string | null;
|
|
10044
|
+
RunByUserID?: string;
|
|
10045
|
+
Sequence: number | null;
|
|
10046
|
+
TargetType: string | null;
|
|
10047
|
+
TargetLogID: string | null;
|
|
10048
|
+
Status?: string;
|
|
10049
|
+
StartedAt: Date | null;
|
|
10050
|
+
CompletedAt: Date | null;
|
|
10051
|
+
DurationSeconds: number | null;
|
|
10052
|
+
InputData: string | null;
|
|
10053
|
+
ExpectedOutputData: string | null;
|
|
10054
|
+
ActualOutputData: string | null;
|
|
10055
|
+
PassedChecks: number | null;
|
|
10056
|
+
FailedChecks: number | null;
|
|
10057
|
+
TotalChecks: number | null;
|
|
10058
|
+
Score: number | null;
|
|
10059
|
+
CostUSD: number | null;
|
|
10060
|
+
ErrorMessage: string | null;
|
|
10061
|
+
ResultDetails: string | null;
|
|
10062
|
+
}
|
|
10063
|
+
export declare class UpdateMJTestRunInput {
|
|
10064
|
+
ID: string;
|
|
10065
|
+
TestID?: string;
|
|
10066
|
+
TestSuiteRunID?: string | null;
|
|
10067
|
+
RunByUserID?: string;
|
|
10068
|
+
Sequence?: number | null;
|
|
10069
|
+
TargetType?: string | null;
|
|
10070
|
+
TargetLogID?: string | null;
|
|
10071
|
+
Status?: string;
|
|
10072
|
+
StartedAt?: Date | null;
|
|
10073
|
+
CompletedAt?: Date | null;
|
|
10074
|
+
DurationSeconds?: number | null;
|
|
10075
|
+
InputData?: string | null;
|
|
10076
|
+
ExpectedOutputData?: string | null;
|
|
10077
|
+
ActualOutputData?: string | null;
|
|
10078
|
+
PassedChecks?: number | null;
|
|
10079
|
+
FailedChecks?: number | null;
|
|
10080
|
+
TotalChecks?: number | null;
|
|
10081
|
+
Score?: number | null;
|
|
10082
|
+
CostUSD?: number | null;
|
|
10083
|
+
ErrorMessage?: string | null;
|
|
10084
|
+
ResultDetails?: string | null;
|
|
10085
|
+
OldValues___?: KeyValuePairInput[];
|
|
10086
|
+
}
|
|
10087
|
+
export declare class RunMJTestRunViewResult {
|
|
10088
|
+
Results: MJTestRun_[];
|
|
10089
|
+
UserViewRunID?: string;
|
|
10090
|
+
RowCount: number;
|
|
10091
|
+
TotalRowCount: number;
|
|
10092
|
+
ExecutionTime: number;
|
|
10093
|
+
ErrorMessage?: string;
|
|
10094
|
+
Success: boolean;
|
|
10095
|
+
}
|
|
10096
|
+
export declare class MJTestRunResolver extends ResolverBase {
|
|
10097
|
+
RunMJTestRunViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
10098
|
+
RunMJTestRunViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
10099
|
+
RunMJTestRunDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
10100
|
+
MJTestRun(ID: string, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJTestRun_ | null>;
|
|
10101
|
+
MJ_TestRunFeedbacks_TestRunIDArray(mjtestrun_: MJTestRun_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
10102
|
+
MJ_AIPromptRuns_TestRunIDArray(mjtestrun_: MJTestRun_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
10103
|
+
MJ_AIAgentRuns_TestRunIDArray(mjtestrun_: MJTestRun_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
10104
|
+
Conversations_TestRunIDArray(mjtestrun_: MJTestRun_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
10105
|
+
ConversationDetails_TestRunIDArray(mjtestrun_: MJTestRun_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
10106
|
+
CreateMJTestRun(input: CreateMJTestRunInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
10107
|
+
UpdateMJTestRun(input: UpdateMJTestRunInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
10108
|
+
DeleteMJTestRun(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
10109
|
+
}
|
|
9626
10110
|
export declare class MJAIAgentArtifactType_ {
|
|
9627
10111
|
ID: string;
|
|
9628
10112
|
AgentID: string;
|
|
@@ -10364,6 +10848,7 @@ export declare class MJArtifactType_ {
|
|
|
10364
10848
|
ParentID?: string;
|
|
10365
10849
|
ExtractRules?: string;
|
|
10366
10850
|
DriverClass?: string;
|
|
10851
|
+
Icon?: string;
|
|
10367
10852
|
Parent?: string;
|
|
10368
10853
|
RootParentID?: string;
|
|
10369
10854
|
MJ_ConversationArtifacts_ArtifactTypeIDArray: MJConversationArtifact_[];
|
|
@@ -10381,6 +10866,7 @@ export declare class CreateMJArtifactTypeInput {
|
|
|
10381
10866
|
ParentID: string | null;
|
|
10382
10867
|
ExtractRules: string | null;
|
|
10383
10868
|
DriverClass: string | null;
|
|
10869
|
+
Icon: string | null;
|
|
10384
10870
|
}
|
|
10385
10871
|
export declare class UpdateMJArtifactTypeInput {
|
|
10386
10872
|
ID: string;
|
|
@@ -10391,6 +10877,7 @@ export declare class UpdateMJArtifactTypeInput {
|
|
|
10391
10877
|
ParentID?: string | null;
|
|
10392
10878
|
ExtractRules?: string | null;
|
|
10393
10879
|
DriverClass?: string | null;
|
|
10880
|
+
Icon?: string | null;
|
|
10394
10881
|
OldValues___?: KeyValuePairInput[];
|
|
10395
10882
|
}
|
|
10396
10883
|
export declare class RunMJArtifactTypeViewResult {
|
|
@@ -10543,6 +11030,8 @@ export declare class MJAIAgentExample_ {
|
|
|
10543
11030
|
User?: string;
|
|
10544
11031
|
Company?: string;
|
|
10545
11032
|
SourceConversation?: string;
|
|
11033
|
+
SourceConversationDetail?: string;
|
|
11034
|
+
SourceAIAgentRun?: string;
|
|
10546
11035
|
EmbeddingModel?: string;
|
|
10547
11036
|
}
|
|
10548
11037
|
export declare class CreateMJAIAgentExampleInput {
|
|
@@ -10600,6 +11089,62 @@ export declare class MJAIAgentExampleResolver extends ResolverBase {
|
|
|
10600
11089
|
UpdateMJAIAgentExample(input: UpdateMJAIAgentExampleInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
10601
11090
|
DeleteMJAIAgentExample(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
10602
11091
|
}
|
|
11092
|
+
export declare class MJTestSuite_ {
|
|
11093
|
+
ID: string;
|
|
11094
|
+
ParentID?: string;
|
|
11095
|
+
Name: string;
|
|
11096
|
+
Description?: string;
|
|
11097
|
+
Status: string;
|
|
11098
|
+
Tags?: string;
|
|
11099
|
+
Configuration?: string;
|
|
11100
|
+
_mj__CreatedAt: Date;
|
|
11101
|
+
_mj__UpdatedAt: Date;
|
|
11102
|
+
Parent?: string;
|
|
11103
|
+
RootParentID?: string;
|
|
11104
|
+
MJ_TestSuites_ParentIDArray: MJTestSuite_[];
|
|
11105
|
+
MJ_TestSuiteTests_SuiteIDArray: MJTestSuiteTest_[];
|
|
11106
|
+
MJ_TestSuiteRuns_SuiteIDArray: MJTestSuiteRun_[];
|
|
11107
|
+
}
|
|
11108
|
+
export declare class CreateMJTestSuiteInput {
|
|
11109
|
+
ID?: string;
|
|
11110
|
+
ParentID: string | null;
|
|
11111
|
+
Name?: string;
|
|
11112
|
+
Description: string | null;
|
|
11113
|
+
Status?: string;
|
|
11114
|
+
Tags: string | null;
|
|
11115
|
+
Configuration: string | null;
|
|
11116
|
+
}
|
|
11117
|
+
export declare class UpdateMJTestSuiteInput {
|
|
11118
|
+
ID: string;
|
|
11119
|
+
ParentID?: string | null;
|
|
11120
|
+
Name?: string;
|
|
11121
|
+
Description?: string | null;
|
|
11122
|
+
Status?: string;
|
|
11123
|
+
Tags?: string | null;
|
|
11124
|
+
Configuration?: string | null;
|
|
11125
|
+
OldValues___?: KeyValuePairInput[];
|
|
11126
|
+
}
|
|
11127
|
+
export declare class RunMJTestSuiteViewResult {
|
|
11128
|
+
Results: MJTestSuite_[];
|
|
11129
|
+
UserViewRunID?: string;
|
|
11130
|
+
RowCount: number;
|
|
11131
|
+
TotalRowCount: number;
|
|
11132
|
+
ExecutionTime: number;
|
|
11133
|
+
ErrorMessage?: string;
|
|
11134
|
+
Success: boolean;
|
|
11135
|
+
}
|
|
11136
|
+
export declare class MJTestSuiteResolver extends ResolverBase {
|
|
11137
|
+
RunMJTestSuiteViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
11138
|
+
RunMJTestSuiteViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
11139
|
+
RunMJTestSuiteDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
11140
|
+
MJTestSuite(ID: string, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJTestSuite_ | null>;
|
|
11141
|
+
MJ_TestSuites_ParentIDArray(mjtestsuite_: MJTestSuite_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
11142
|
+
MJ_TestSuiteTests_SuiteIDArray(mjtestsuite_: MJTestSuite_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
11143
|
+
MJ_TestSuiteRuns_SuiteIDArray(mjtestsuite_: MJTestSuite_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
11144
|
+
CreateMJTestSuite(input: CreateMJTestSuiteInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
11145
|
+
UpdateMJTestSuite(input: UpdateMJTestSuiteInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
11146
|
+
DeleteMJTestSuite(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
11147
|
+
}
|
|
10603
11148
|
export declare class MJConversationArtifact_ {
|
|
10604
11149
|
ID: string;
|
|
10605
11150
|
Name: string;
|
|
@@ -11002,6 +11547,7 @@ export declare class MJConversationDetailRating_ {
|
|
|
11002
11547
|
Comments?: string;
|
|
11003
11548
|
_mj__CreatedAt: Date;
|
|
11004
11549
|
_mj__UpdatedAt: Date;
|
|
11550
|
+
ConversationDetail: string;
|
|
11005
11551
|
User: string;
|
|
11006
11552
|
}
|
|
11007
11553
|
export declare class CreateMJConversationDetailRatingInput {
|
|
@@ -11191,6 +11737,97 @@ export declare class MJComponentLibraryLinkResolver extends ResolverBase {
|
|
|
11191
11737
|
UpdateMJComponentLibraryLink(input: UpdateMJComponentLibraryLinkInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
11192
11738
|
DeleteMJComponentLibraryLink(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
11193
11739
|
}
|
|
11740
|
+
export declare class MJTestSuiteRun_ {
|
|
11741
|
+
ID: string;
|
|
11742
|
+
SuiteID: string;
|
|
11743
|
+
RunByUserID: string;
|
|
11744
|
+
Environment?: string;
|
|
11745
|
+
TriggerType?: string;
|
|
11746
|
+
GitCommit?: string;
|
|
11747
|
+
AgentVersion?: string;
|
|
11748
|
+
Status: string;
|
|
11749
|
+
StartedAt?: Date;
|
|
11750
|
+
CompletedAt?: Date;
|
|
11751
|
+
TotalTests?: number;
|
|
11752
|
+
PassedTests?: number;
|
|
11753
|
+
FailedTests?: number;
|
|
11754
|
+
SkippedTests?: number;
|
|
11755
|
+
ErrorTests?: number;
|
|
11756
|
+
TotalDurationSeconds?: number;
|
|
11757
|
+
TotalCostUSD?: number;
|
|
11758
|
+
Configuration?: string;
|
|
11759
|
+
ResultSummary?: string;
|
|
11760
|
+
ErrorMessage?: string;
|
|
11761
|
+
_mj__CreatedAt: Date;
|
|
11762
|
+
_mj__UpdatedAt: Date;
|
|
11763
|
+
Suite: string;
|
|
11764
|
+
RunByUser: string;
|
|
11765
|
+
MJ_TestRuns_TestSuiteRunIDArray: MJTestRun_[];
|
|
11766
|
+
}
|
|
11767
|
+
export declare class CreateMJTestSuiteRunInput {
|
|
11768
|
+
ID?: string;
|
|
11769
|
+
SuiteID?: string;
|
|
11770
|
+
RunByUserID?: string;
|
|
11771
|
+
Environment: string | null;
|
|
11772
|
+
TriggerType: string | null;
|
|
11773
|
+
GitCommit: string | null;
|
|
11774
|
+
AgentVersion: string | null;
|
|
11775
|
+
Status?: string;
|
|
11776
|
+
StartedAt: Date | null;
|
|
11777
|
+
CompletedAt: Date | null;
|
|
11778
|
+
TotalTests: number | null;
|
|
11779
|
+
PassedTests: number | null;
|
|
11780
|
+
FailedTests: number | null;
|
|
11781
|
+
SkippedTests: number | null;
|
|
11782
|
+
ErrorTests: number | null;
|
|
11783
|
+
TotalDurationSeconds: number | null;
|
|
11784
|
+
TotalCostUSD: number | null;
|
|
11785
|
+
Configuration: string | null;
|
|
11786
|
+
ResultSummary: string | null;
|
|
11787
|
+
ErrorMessage: string | null;
|
|
11788
|
+
}
|
|
11789
|
+
export declare class UpdateMJTestSuiteRunInput {
|
|
11790
|
+
ID: string;
|
|
11791
|
+
SuiteID?: string;
|
|
11792
|
+
RunByUserID?: string;
|
|
11793
|
+
Environment?: string | null;
|
|
11794
|
+
TriggerType?: string | null;
|
|
11795
|
+
GitCommit?: string | null;
|
|
11796
|
+
AgentVersion?: string | null;
|
|
11797
|
+
Status?: string;
|
|
11798
|
+
StartedAt?: Date | null;
|
|
11799
|
+
CompletedAt?: Date | null;
|
|
11800
|
+
TotalTests?: number | null;
|
|
11801
|
+
PassedTests?: number | null;
|
|
11802
|
+
FailedTests?: number | null;
|
|
11803
|
+
SkippedTests?: number | null;
|
|
11804
|
+
ErrorTests?: number | null;
|
|
11805
|
+
TotalDurationSeconds?: number | null;
|
|
11806
|
+
TotalCostUSD?: number | null;
|
|
11807
|
+
Configuration?: string | null;
|
|
11808
|
+
ResultSummary?: string | null;
|
|
11809
|
+
ErrorMessage?: string | null;
|
|
11810
|
+
OldValues___?: KeyValuePairInput[];
|
|
11811
|
+
}
|
|
11812
|
+
export declare class RunMJTestSuiteRunViewResult {
|
|
11813
|
+
Results: MJTestSuiteRun_[];
|
|
11814
|
+
UserViewRunID?: string;
|
|
11815
|
+
RowCount: number;
|
|
11816
|
+
TotalRowCount: number;
|
|
11817
|
+
ExecutionTime: number;
|
|
11818
|
+
ErrorMessage?: string;
|
|
11819
|
+
Success: boolean;
|
|
11820
|
+
}
|
|
11821
|
+
export declare class MJTestSuiteRunResolver extends ResolverBase {
|
|
11822
|
+
RunMJTestSuiteRunViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
11823
|
+
RunMJTestSuiteRunViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
11824
|
+
RunMJTestSuiteRunDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
11825
|
+
MJTestSuiteRun(ID: string, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJTestSuiteRun_ | null>;
|
|
11826
|
+
MJ_TestRuns_TestSuiteRunIDArray(mjtestsuiterun_: MJTestSuiteRun_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
11827
|
+
CreateMJTestSuiteRun(input: CreateMJTestSuiteRunInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
11828
|
+
UpdateMJTestSuiteRun(input: UpdateMJTestSuiteRunInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
11829
|
+
DeleteMJTestSuiteRun(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
11830
|
+
}
|
|
11194
11831
|
export declare class MJContentProcessRun_ {
|
|
11195
11832
|
ID: string;
|
|
11196
11833
|
SourceID: string;
|
|
@@ -11950,12 +12587,16 @@ export declare class MJAIPromptRun_ {
|
|
|
11950
12587
|
EffortLevel?: number;
|
|
11951
12588
|
RunName?: string;
|
|
11952
12589
|
Comments?: string;
|
|
12590
|
+
TestRunID?: string;
|
|
11953
12591
|
Prompt: string;
|
|
11954
12592
|
Model: string;
|
|
11955
12593
|
Vendor: string;
|
|
11956
12594
|
Agent?: string;
|
|
11957
12595
|
Configuration?: string;
|
|
12596
|
+
Parent?: string;
|
|
12597
|
+
AgentRun?: string;
|
|
11958
12598
|
OriginalModel?: string;
|
|
12599
|
+
RerunFromPromptRun?: string;
|
|
11959
12600
|
Judge?: string;
|
|
11960
12601
|
ChildPrompt?: string;
|
|
11961
12602
|
RootParentID?: string;
|
|
@@ -12045,6 +12686,7 @@ export declare class CreateMJAIPromptRunInput {
|
|
|
12045
12686
|
EffortLevel: number | null;
|
|
12046
12687
|
RunName: string | null;
|
|
12047
12688
|
Comments: string | null;
|
|
12689
|
+
TestRunID: string | null;
|
|
12048
12690
|
}
|
|
12049
12691
|
export declare class UpdateMJAIPromptRunInput {
|
|
12050
12692
|
ID: string;
|
|
@@ -12128,6 +12770,7 @@ export declare class UpdateMJAIPromptRunInput {
|
|
|
12128
12770
|
EffortLevel?: number | null;
|
|
12129
12771
|
RunName?: string | null;
|
|
12130
12772
|
Comments?: string | null;
|
|
12773
|
+
TestRunID?: string | null;
|
|
12131
12774
|
OldValues___?: KeyValuePairInput[];
|
|
12132
12775
|
}
|
|
12133
12776
|
export declare class RunMJAIPromptRunViewResult {
|
|
@@ -12173,6 +12816,8 @@ export declare class MJAIAgentRunStep_ {
|
|
|
12173
12816
|
FinalPayloadValidationMessages?: string;
|
|
12174
12817
|
ParentID?: string;
|
|
12175
12818
|
Comments?: string;
|
|
12819
|
+
AgentRun?: string;
|
|
12820
|
+
Parent?: string;
|
|
12176
12821
|
RootParentID?: string;
|
|
12177
12822
|
MJ_AIAgentRunSteps_ParentIDArray: MJAIAgentRunStep_[];
|
|
12178
12823
|
}
|
|
@@ -12247,6 +12892,7 @@ export declare class MJConversationDetailArtifact_ {
|
|
|
12247
12892
|
Direction: string;
|
|
12248
12893
|
_mj__CreatedAt: Date;
|
|
12249
12894
|
_mj__UpdatedAt: Date;
|
|
12895
|
+
ConversationDetail: string;
|
|
12250
12896
|
ArtifactVersion?: string;
|
|
12251
12897
|
}
|
|
12252
12898
|
export declare class CreateMJConversationDetailArtifactInput {
|
|
@@ -12302,6 +12948,7 @@ export declare class MJTask_ {
|
|
|
12302
12948
|
Type: string;
|
|
12303
12949
|
Environment: string;
|
|
12304
12950
|
Project?: string;
|
|
12951
|
+
ConversationDetail?: string;
|
|
12305
12952
|
User?: string;
|
|
12306
12953
|
Agent?: string;
|
|
12307
12954
|
RootParentID?: string;
|