@memberjunction/server 2.110.1 → 2.111.1
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 +80 -72
- package/dist/agents/skip-sdk.js.map +1 -1
- package/dist/generated/generated.d.ts +160 -11
- package/dist/generated/generated.d.ts.map +1 -1
- package/dist/generated/generated.js +1015 -70
- package/dist/generated/generated.js.map +1 -1
- package/dist/resolvers/AskSkipResolver.d.ts +1 -14
- package/dist/resolvers/AskSkipResolver.d.ts.map +1 -1
- package/dist/resolvers/AskSkipResolver.js +3 -452
- package/dist/resolvers/AskSkipResolver.js.map +1 -1
- package/dist/scheduler/LearningCycleScheduler.d.ts +0 -40
- package/dist/scheduler/LearningCycleScheduler.d.ts.map +1 -1
- package/dist/scheduler/LearningCycleScheduler.js +0 -192
- package/dist/scheduler/LearningCycleScheduler.js.map +1 -1
- package/package.json +43 -38
- package/src/agents/skip-sdk.ts +102 -89
- package/src/generated/generated.ts +642 -54
- package/src/resolvers/AskSkipResolver.ts +612 -612
- package/src/scheduler/LearningCycleScheduler.ts +261 -261
|
@@ -321,17 +321,23 @@ export declare class MJAIAgentNoteType_ {
|
|
|
321
321
|
Description?: string;
|
|
322
322
|
_mj__CreatedAt: Date;
|
|
323
323
|
_mj__UpdatedAt: Date;
|
|
324
|
+
Priority: number;
|
|
325
|
+
Status: string;
|
|
324
326
|
AIAgentNotes_AgentNoteTypeIDArray: MJAIAgentNote_[];
|
|
325
327
|
}
|
|
326
328
|
export declare class CreateMJAIAgentNoteTypeInput {
|
|
327
329
|
ID?: string;
|
|
328
330
|
Name: string | null;
|
|
329
331
|
Description: string | null;
|
|
332
|
+
Priority?: number;
|
|
333
|
+
Status?: string;
|
|
330
334
|
}
|
|
331
335
|
export declare class UpdateMJAIAgentNoteTypeInput {
|
|
332
336
|
ID: string;
|
|
333
337
|
Name?: string | null;
|
|
334
338
|
Description?: string | null;
|
|
339
|
+
Priority?: number;
|
|
340
|
+
Status?: string;
|
|
335
341
|
OldValues___?: KeyValuePairInput[];
|
|
336
342
|
}
|
|
337
343
|
export declare class RunMJAIAgentNoteTypeViewResult {
|
|
@@ -440,8 +446,10 @@ export declare class MJAIAgentRun_ {
|
|
|
440
446
|
OverrideVendor?: string;
|
|
441
447
|
RootParentRunID?: string;
|
|
442
448
|
RootLastRunID?: string;
|
|
443
|
-
MJ_AIAgentRuns_ParentRunIDArray: MJAIAgentRun_[];
|
|
444
449
|
MJ_AIAgentRunSteps_AgentRunIDArray: MJAIAgentRunStep_[];
|
|
450
|
+
MJ_AIAgentRuns_ParentRunIDArray: MJAIAgentRun_[];
|
|
451
|
+
AIAgentNotes_SourceAIAgentRunIDArray: MJAIAgentNote_[];
|
|
452
|
+
MJ_AIAgentExamples_SourceAIAgentRunIDArray: MJAIAgentExample_[];
|
|
445
453
|
MJ_AIPromptRuns_AgentRunIDArray: MJAIPromptRun_[];
|
|
446
454
|
}
|
|
447
455
|
export declare class CreateMJAIAgentRunInput {
|
|
@@ -539,8 +547,10 @@ export declare class MJAIAgentRunResolver extends ResolverBase {
|
|
|
539
547
|
RunMJAIAgentRunViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
540
548
|
RunMJAIAgentRunDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
541
549
|
MJAIAgentRun(ID: string, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJAIAgentRun_ | null>;
|
|
542
|
-
MJ_AIAgentRuns_ParentRunIDArray(mjaiagentrun_: MJAIAgentRun_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
543
550
|
MJ_AIAgentRunSteps_AgentRunIDArray(mjaiagentrun_: MJAIAgentRun_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
551
|
+
MJ_AIAgentRuns_ParentRunIDArray(mjaiagentrun_: MJAIAgentRun_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
552
|
+
AIAgentNotes_SourceAIAgentRunIDArray(mjaiagentrun_: MJAIAgentRun_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
553
|
+
MJ_AIAgentExamples_SourceAIAgentRunIDArray(mjaiagentrun_: MJAIAgentRun_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
544
554
|
MJ_AIPromptRuns_AgentRunIDArray(mjaiagentrun_: MJAIAgentRun_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
545
555
|
CreateMJAIAgentRun(input: CreateMJAIAgentRunInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
546
556
|
UpdateMJAIAgentRun(input: UpdateMJAIAgentRunInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -740,6 +750,12 @@ export declare class MJAIAgent_ {
|
|
|
740
750
|
ArtifactCreationMode: string;
|
|
741
751
|
FunctionalRequirements?: string;
|
|
742
752
|
TechnicalDesign?: string;
|
|
753
|
+
InjectNotes: boolean;
|
|
754
|
+
MaxNotesToInject: number;
|
|
755
|
+
NoteInjectionStrategy: string;
|
|
756
|
+
InjectExamples: boolean;
|
|
757
|
+
MaxExamplesToInject: number;
|
|
758
|
+
ExampleInjectionStrategy: string;
|
|
743
759
|
Parent?: string;
|
|
744
760
|
ContextCompressionPrompt?: string;
|
|
745
761
|
Type?: string;
|
|
@@ -761,6 +777,7 @@ export declare class MJAIAgent_ {
|
|
|
761
777
|
MJ_AIAgentSteps_SubAgentIDArray: MJAIAgentStep_[];
|
|
762
778
|
MJ_AIAgentRelationships_SubAgentIDArray: MJAIAgentRelationship_[];
|
|
763
779
|
MJ_Tasks_AgentIDArray: MJTask_[];
|
|
780
|
+
MJ_AIAgentExamples_AgentIDArray: MJAIAgentExample_[];
|
|
764
781
|
AIResultCache_AgentIDArray: MJAIResultCache_[];
|
|
765
782
|
MJ_AIPromptRuns_AgentIDArray: MJAIPromptRun_[];
|
|
766
783
|
ConversationDetails_AgentIDArray: MJConversationDetail_[];
|
|
@@ -808,6 +825,12 @@ export declare class CreateMJAIAgentInput {
|
|
|
808
825
|
ArtifactCreationMode?: string;
|
|
809
826
|
FunctionalRequirements: string | null;
|
|
810
827
|
TechnicalDesign: string | null;
|
|
828
|
+
InjectNotes?: boolean;
|
|
829
|
+
MaxNotesToInject?: number;
|
|
830
|
+
NoteInjectionStrategy?: string;
|
|
831
|
+
InjectExamples?: boolean;
|
|
832
|
+
MaxExamplesToInject?: number;
|
|
833
|
+
ExampleInjectionStrategy?: string;
|
|
811
834
|
}
|
|
812
835
|
export declare class UpdateMJAIAgentInput {
|
|
813
836
|
ID: string;
|
|
@@ -851,6 +874,12 @@ export declare class UpdateMJAIAgentInput {
|
|
|
851
874
|
ArtifactCreationMode?: string;
|
|
852
875
|
FunctionalRequirements?: string | null;
|
|
853
876
|
TechnicalDesign?: string | null;
|
|
877
|
+
InjectNotes?: boolean;
|
|
878
|
+
MaxNotesToInject?: number;
|
|
879
|
+
NoteInjectionStrategy?: string;
|
|
880
|
+
InjectExamples?: boolean;
|
|
881
|
+
MaxExamplesToInject?: number;
|
|
882
|
+
ExampleInjectionStrategy?: string;
|
|
854
883
|
OldValues___?: KeyValuePairInput[];
|
|
855
884
|
}
|
|
856
885
|
export declare class RunMJAIAgentViewResult {
|
|
@@ -882,6 +911,7 @@ export declare class MJAIAgentResolver extends ResolverBase {
|
|
|
882
911
|
MJ_AIAgentSteps_SubAgentIDArray(mjaiagent_: MJAIAgent_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
883
912
|
MJ_AIAgentRelationships_SubAgentIDArray(mjaiagent_: MJAIAgent_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
884
913
|
MJ_Tasks_AgentIDArray(mjaiagent_: MJAIAgent_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
914
|
+
MJ_AIAgentExamples_AgentIDArray(mjaiagent_: MJAIAgent_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
885
915
|
AIResultCache_AgentIDArray(mjaiagent_: MJAIAgent_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
886
916
|
MJ_AIPromptRuns_AgentIDArray(mjaiagent_: MJAIAgent_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
887
917
|
ConversationDetails_AgentIDArray(mjaiagent_: MJAIAgent_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
@@ -912,6 +942,8 @@ export declare class MJAIAgentStep_ {
|
|
|
912
942
|
_mj__UpdatedAt: Date;
|
|
913
943
|
Status: string;
|
|
914
944
|
ActionInputMapping?: string;
|
|
945
|
+
LoopBodyType?: string;
|
|
946
|
+
Configuration?: string;
|
|
915
947
|
Agent?: string;
|
|
916
948
|
Action?: string;
|
|
917
949
|
SubAgent?: string;
|
|
@@ -939,6 +971,8 @@ export declare class CreateMJAIAgentStepInput {
|
|
|
939
971
|
Height?: number;
|
|
940
972
|
Status?: string;
|
|
941
973
|
ActionInputMapping: string | null;
|
|
974
|
+
LoopBodyType: string | null;
|
|
975
|
+
Configuration: string | null;
|
|
942
976
|
}
|
|
943
977
|
export declare class UpdateMJAIAgentStepInput {
|
|
944
978
|
ID: string;
|
|
@@ -960,6 +994,8 @@ export declare class UpdateMJAIAgentStepInput {
|
|
|
960
994
|
Height?: number;
|
|
961
995
|
Status?: string;
|
|
962
996
|
ActionInputMapping?: string | null;
|
|
997
|
+
LoopBodyType?: string | null;
|
|
998
|
+
Configuration?: string | null;
|
|
963
999
|
OldValues___?: KeyValuePairInput[];
|
|
964
1000
|
}
|
|
965
1001
|
export declare class RunMJAIAgentStepViewResult {
|
|
@@ -1186,27 +1222,50 @@ export declare class MJAIAgentNote_ {
|
|
|
1186
1222
|
Note?: string;
|
|
1187
1223
|
_mj__CreatedAt: Date;
|
|
1188
1224
|
_mj__UpdatedAt: Date;
|
|
1189
|
-
Type: string;
|
|
1190
1225
|
UserID?: string;
|
|
1226
|
+
Type: string;
|
|
1227
|
+
IsAutoGenerated: boolean;
|
|
1228
|
+
Comments?: string;
|
|
1229
|
+
Status: string;
|
|
1230
|
+
SourceConversationID?: string;
|
|
1231
|
+
SourceConversationDetailID?: string;
|
|
1232
|
+
SourceAIAgentRunID?: string;
|
|
1233
|
+
CompanyID?: string;
|
|
1191
1234
|
Agent?: string;
|
|
1192
1235
|
AgentNoteType?: string;
|
|
1193
1236
|
User?: string;
|
|
1237
|
+
SourceConversation?: string;
|
|
1238
|
+
Company?: string;
|
|
1194
1239
|
}
|
|
1195
1240
|
export declare class CreateMJAIAgentNoteInput {
|
|
1196
1241
|
ID?: string;
|
|
1197
1242
|
AgentID: string | null;
|
|
1198
1243
|
AgentNoteTypeID: string | null;
|
|
1199
1244
|
Note: string | null;
|
|
1200
|
-
Type?: string;
|
|
1201
1245
|
UserID: string | null;
|
|
1246
|
+
Type?: string;
|
|
1247
|
+
IsAutoGenerated?: boolean;
|
|
1248
|
+
Comments: string | null;
|
|
1249
|
+
Status?: string;
|
|
1250
|
+
SourceConversationID: string | null;
|
|
1251
|
+
SourceConversationDetailID: string | null;
|
|
1252
|
+
SourceAIAgentRunID: string | null;
|
|
1253
|
+
CompanyID: string | null;
|
|
1202
1254
|
}
|
|
1203
1255
|
export declare class UpdateMJAIAgentNoteInput {
|
|
1204
1256
|
ID: string;
|
|
1205
1257
|
AgentID?: string | null;
|
|
1206
1258
|
AgentNoteTypeID?: string | null;
|
|
1207
1259
|
Note?: string | null;
|
|
1208
|
-
Type?: string;
|
|
1209
1260
|
UserID?: string | null;
|
|
1261
|
+
Type?: string;
|
|
1262
|
+
IsAutoGenerated?: boolean;
|
|
1263
|
+
Comments?: string | null;
|
|
1264
|
+
Status?: string;
|
|
1265
|
+
SourceConversationID?: string | null;
|
|
1266
|
+
SourceConversationDetailID?: string | null;
|
|
1267
|
+
SourceAIAgentRunID?: string | null;
|
|
1268
|
+
CompanyID?: string | null;
|
|
1210
1269
|
OldValues___?: KeyValuePairInput[];
|
|
1211
1270
|
}
|
|
1212
1271
|
export declare class RunMJAIAgentNoteViewResult {
|
|
@@ -1701,8 +1760,8 @@ export declare class MJAIPrompt_ {
|
|
|
1701
1760
|
AIAgentActions_CompactPromptIDArray: MJAIAgentAction_[];
|
|
1702
1761
|
MJ_AIConfigurations_DefaultPromptForContextSummarizationIDArray: MJAIConfiguration_[];
|
|
1703
1762
|
AIPrompts_ResultSelectorPromptIDArray: MJAIPrompt_[];
|
|
1704
|
-
MJ_AIAgentPrompts_PromptIDArray: MJAIAgentPrompt_[];
|
|
1705
1763
|
MJ_AIPromptModels_PromptIDArray: MJAIPromptModel_[];
|
|
1764
|
+
MJ_AIAgentPrompts_PromptIDArray: MJAIAgentPrompt_[];
|
|
1706
1765
|
MJ_AIAgentSteps_PromptIDArray: MJAIAgentStep_[];
|
|
1707
1766
|
MJ_AIPromptRuns_PromptIDArray: MJAIPromptRun_[];
|
|
1708
1767
|
AIAgents_ContextCompressionPromptIDArray: MJAIAgent_[];
|
|
@@ -1831,8 +1890,8 @@ export declare class MJAIPromptResolver extends ResolverBase {
|
|
|
1831
1890
|
AIAgentActions_CompactPromptIDArray(mjaiprompt_: MJAIPrompt_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
1832
1891
|
MJ_AIConfigurations_DefaultPromptForContextSummarizationIDArray(mjaiprompt_: MJAIPrompt_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
1833
1892
|
AIPrompts_ResultSelectorPromptIDArray(mjaiprompt_: MJAIPrompt_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
1834
|
-
MJ_AIAgentPrompts_PromptIDArray(mjaiprompt_: MJAIPrompt_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
1835
1893
|
MJ_AIPromptModels_PromptIDArray(mjaiprompt_: MJAIPrompt_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
1894
|
+
MJ_AIAgentPrompts_PromptIDArray(mjaiprompt_: MJAIPrompt_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
1836
1895
|
MJ_AIAgentSteps_PromptIDArray(mjaiprompt_: MJAIPrompt_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
1837
1896
|
MJ_AIPromptRuns_PromptIDArray(mjaiprompt_: MJAIPrompt_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
1838
1897
|
AIAgents_ContextCompressionPromptIDArray(mjaiprompt_: MJAIPrompt_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
@@ -2007,6 +2066,8 @@ export declare class MJCompany_ {
|
|
|
2007
2066
|
Employees_CompanyIDArray: MJEmployee_[];
|
|
2008
2067
|
CompanyIntegrations_CompanyNameArray: MJCompanyIntegration_[];
|
|
2009
2068
|
Workflows_CompanyNameArray: MJWorkflow_[];
|
|
2069
|
+
AIAgentNotes_CompanyIDArray: MJAIAgentNote_[];
|
|
2070
|
+
MJ_AIAgentExamples_CompanyIDArray: MJAIAgentExample_[];
|
|
2010
2071
|
}
|
|
2011
2072
|
export declare class CreateMJCompanyInput {
|
|
2012
2073
|
ID?: string;
|
|
@@ -2043,6 +2104,8 @@ export declare class MJCompanyResolver extends ResolverBase {
|
|
|
2043
2104
|
Employees_CompanyIDArray(mjcompany_: MJCompany_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2044
2105
|
CompanyIntegrations_CompanyNameArray(mjcompany_: MJCompany_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2045
2106
|
Workflows_CompanyNameArray(mjcompany_: MJCompany_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2107
|
+
AIAgentNotes_CompanyIDArray(mjcompany_: MJCompany_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2108
|
+
MJ_AIAgentExamples_CompanyIDArray(mjcompany_: MJCompany_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2046
2109
|
CreateMJCompany(input: CreateMJCompanyInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
2047
2110
|
UpdateMJCompany(input: UpdateMJCompanyInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
2048
2111
|
DeleteMJCompany(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -3046,12 +3109,12 @@ export declare class MJUser_ {
|
|
|
3046
3109
|
AIAgentRequests_ResponseByUserIDArray: MJAIAgentRequest_[];
|
|
3047
3110
|
AIAgentNotes_UserIDArray: MJAIAgentNote_[];
|
|
3048
3111
|
MJ_ReportUserStates_UserIDArray: MJReportUserState_[];
|
|
3049
|
-
MJ_DashboardUserStates_UserIDArray: MJDashboardUserState_[];
|
|
3050
3112
|
MJ_DashboardUserPreferences_UserIDArray: MJDashboardUserPreference_[];
|
|
3113
|
+
MJ_DashboardUserStates_UserIDArray: MJDashboardUserState_[];
|
|
3051
3114
|
MJ_ArtifactVersions_UserIDArray: MJArtifactVersion_[];
|
|
3052
3115
|
MJ_PublicLinks_UserIDArray: MJPublicLink_[];
|
|
3053
|
-
MJ_ScheduledJobs_NotifyUserIDArray: MJScheduledJob_[];
|
|
3054
3116
|
MJ_ScheduledJobRuns_ExecutedByUserIDArray: MJScheduledJobRun_[];
|
|
3117
|
+
MJ_ScheduledJobs_NotifyUserIDArray: MJScheduledJob_[];
|
|
3055
3118
|
MJ_ArtifactPermissions_UserIDArray: MJArtifactPermission_[];
|
|
3056
3119
|
ResourcePermissions_UserIDArray: MJResourcePermission_[];
|
|
3057
3120
|
AIAgentRequests_RequestForUserIDArray: MJAIAgentRequest_[];
|
|
@@ -3066,6 +3129,7 @@ export declare class MJUser_ {
|
|
|
3066
3129
|
MJ_Collections_OwnerIDArray: MJCollection_[];
|
|
3067
3130
|
MJ_CollectionPermissions_UserIDArray: MJCollectionPermission_[];
|
|
3068
3131
|
MJ_Tasks_UserIDArray: MJTask_[];
|
|
3132
|
+
MJ_AIAgentExamples_UserIDArray: MJAIAgentExample_[];
|
|
3069
3133
|
AIAgents_OwnerUserIDArray: MJAIAgent_[];
|
|
3070
3134
|
}
|
|
3071
3135
|
export declare class CreateMJUserInput {
|
|
@@ -3152,12 +3216,12 @@ export declare class MJUserResolverBase extends ResolverBase {
|
|
|
3152
3216
|
AIAgentRequests_ResponseByUserIDArray(mjuser_: MJUser_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3153
3217
|
AIAgentNotes_UserIDArray(mjuser_: MJUser_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3154
3218
|
MJ_ReportUserStates_UserIDArray(mjuser_: MJUser_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3155
|
-
MJ_DashboardUserStates_UserIDArray(mjuser_: MJUser_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3156
3219
|
MJ_DashboardUserPreferences_UserIDArray(mjuser_: MJUser_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3220
|
+
MJ_DashboardUserStates_UserIDArray(mjuser_: MJUser_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3157
3221
|
MJ_ArtifactVersions_UserIDArray(mjuser_: MJUser_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3158
3222
|
MJ_PublicLinks_UserIDArray(mjuser_: MJUser_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3159
|
-
MJ_ScheduledJobs_NotifyUserIDArray(mjuser_: MJUser_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3160
3223
|
MJ_ScheduledJobRuns_ExecutedByUserIDArray(mjuser_: MJUser_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3224
|
+
MJ_ScheduledJobs_NotifyUserIDArray(mjuser_: MJUser_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3161
3225
|
MJ_ArtifactPermissions_UserIDArray(mjuser_: MJUser_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3162
3226
|
ResourcePermissions_UserIDArray(mjuser_: MJUser_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3163
3227
|
AIAgentRequests_RequestForUserIDArray(mjuser_: MJUser_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
@@ -3172,6 +3236,7 @@ export declare class MJUserResolverBase extends ResolverBase {
|
|
|
3172
3236
|
MJ_Collections_OwnerIDArray(mjuser_: MJUser_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3173
3237
|
MJ_CollectionPermissions_UserIDArray(mjuser_: MJUser_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3174
3238
|
MJ_Tasks_UserIDArray(mjuser_: MJUser_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3239
|
+
MJ_AIAgentExamples_UserIDArray(mjuser_: MJUser_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3175
3240
|
AIAgents_OwnerUserIDArray(mjuser_: MJUser_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3176
3241
|
CreateMJUser(input: CreateMJUserInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
3177
3242
|
UpdateMJUser(input: UpdateMJUserInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -5838,9 +5903,11 @@ export declare class MJConversationDetail_ {
|
|
|
5838
5903
|
RootParentID?: string;
|
|
5839
5904
|
Reports_ConversationDetailIDArray: MJReport_[];
|
|
5840
5905
|
MJ_ConversationDetailArtifacts_ConversationDetailIDArray: MJConversationDetailArtifact_[];
|
|
5906
|
+
AIAgentNotes_SourceConversationDetailIDArray: MJAIAgentNote_[];
|
|
5841
5907
|
MJ_AIAgentRuns_ConversationDetailIDArray: MJAIAgentRun_[];
|
|
5842
5908
|
ConversationDetails_ParentIDArray: MJConversationDetail_[];
|
|
5843
5909
|
MJ_Tasks_ConversationDetailIDArray: MJTask_[];
|
|
5910
|
+
MJ_AIAgentExamples_SourceConversationDetailIDArray: MJAIAgentExample_[];
|
|
5844
5911
|
}
|
|
5845
5912
|
export declare class CreateMJConversationDetailInput {
|
|
5846
5913
|
ID?: string;
|
|
@@ -5903,9 +5970,11 @@ export declare class MJConversationDetailResolver extends ResolverBase {
|
|
|
5903
5970
|
MJConversationDetail(ID: string, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJConversationDetail_ | null>;
|
|
5904
5971
|
Reports_ConversationDetailIDArray(mjconversationdetail_: MJConversationDetail_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
5905
5972
|
MJ_ConversationDetailArtifacts_ConversationDetailIDArray(mjconversationdetail_: MJConversationDetail_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
5973
|
+
AIAgentNotes_SourceConversationDetailIDArray(mjconversationdetail_: MJConversationDetail_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
5906
5974
|
MJ_AIAgentRuns_ConversationDetailIDArray(mjconversationdetail_: MJConversationDetail_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
5907
5975
|
ConversationDetails_ParentIDArray(mjconversationdetail_: MJConversationDetail_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
5908
5976
|
MJ_Tasks_ConversationDetailIDArray(mjconversationdetail_: MJConversationDetail_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
5977
|
+
MJ_AIAgentExamples_SourceConversationDetailIDArray(mjconversationdetail_: MJConversationDetail_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
5909
5978
|
CreateMJConversationDetail(input: CreateMJConversationDetailInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5910
5979
|
UpdateMJConversationDetail(input: UpdateMJConversationDetailInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5911
5980
|
DeleteMJConversationDetail(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -5936,6 +6005,8 @@ export declare class MJConversation_ {
|
|
|
5936
6005
|
Reports_ConversationIDArray: MJReport_[];
|
|
5937
6006
|
MJ_ConversationArtifacts_ConversationIDArray: MJConversationArtifact_[];
|
|
5938
6007
|
MJ_AIAgentRuns_ConversationIDArray: MJAIAgentRun_[];
|
|
6008
|
+
AIAgentNotes_SourceConversationIDArray: MJAIAgentNote_[];
|
|
6009
|
+
MJ_AIAgentExamples_SourceConversationIDArray: MJAIAgentExample_[];
|
|
5939
6010
|
}
|
|
5940
6011
|
export declare class CreateMJConversationInput {
|
|
5941
6012
|
ID?: string;
|
|
@@ -5988,6 +6059,8 @@ export declare class MJConversationResolver extends ResolverBase {
|
|
|
5988
6059
|
Reports_ConversationIDArray(mjconversation_: MJConversation_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
5989
6060
|
MJ_ConversationArtifacts_ConversationIDArray(mjconversation_: MJConversation_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
5990
6061
|
MJ_AIAgentRuns_ConversationIDArray(mjconversation_: MJConversation_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
6062
|
+
AIAgentNotes_SourceConversationIDArray(mjconversation_: MJConversation_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
6063
|
+
MJ_AIAgentExamples_SourceConversationIDArray(mjconversation_: MJConversation_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
5991
6064
|
CreateMJConversation(input: CreateMJConversationInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5992
6065
|
UpdateMJConversation(input: UpdateMJConversationInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5993
6066
|
DeleteMJConversation(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -7087,6 +7160,7 @@ export declare class MJFileStorageProvider_ {
|
|
|
7087
7160
|
IsActive: boolean;
|
|
7088
7161
|
_mj__CreatedAt: Date;
|
|
7089
7162
|
_mj__UpdatedAt: Date;
|
|
7163
|
+
SupportsSearch: boolean;
|
|
7090
7164
|
Files_ProviderIDArray: MJFile_[];
|
|
7091
7165
|
}
|
|
7092
7166
|
export declare class CreateMJFileStorageProviderInput {
|
|
@@ -7097,6 +7171,7 @@ export declare class CreateMJFileStorageProviderInput {
|
|
|
7097
7171
|
ClientDriverKey?: string;
|
|
7098
7172
|
Priority?: number;
|
|
7099
7173
|
IsActive?: boolean;
|
|
7174
|
+
SupportsSearch?: boolean;
|
|
7100
7175
|
}
|
|
7101
7176
|
export declare class UpdateMJFileStorageProviderInput {
|
|
7102
7177
|
ID: string;
|
|
@@ -7106,6 +7181,7 @@ export declare class UpdateMJFileStorageProviderInput {
|
|
|
7106
7181
|
ClientDriverKey?: string;
|
|
7107
7182
|
Priority?: number;
|
|
7108
7183
|
IsActive?: boolean;
|
|
7184
|
+
SupportsSearch?: boolean;
|
|
7109
7185
|
OldValues___?: KeyValuePairInput[];
|
|
7110
7186
|
}
|
|
7111
7187
|
export declare class RunMJFileStorageProviderViewResult {
|
|
@@ -10356,6 +10432,79 @@ export declare class MJArtifactResolver extends ResolverBase {
|
|
|
10356
10432
|
UpdateMJArtifact(input: UpdateMJArtifactInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
10357
10433
|
DeleteMJArtifact(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
10358
10434
|
}
|
|
10435
|
+
export declare class MJAIAgentExample_ {
|
|
10436
|
+
ID: string;
|
|
10437
|
+
AgentID: string;
|
|
10438
|
+
UserID?: string;
|
|
10439
|
+
CompanyID?: string;
|
|
10440
|
+
Type: string;
|
|
10441
|
+
ExampleInput: string;
|
|
10442
|
+
ExampleOutput: string;
|
|
10443
|
+
IsAutoGenerated: boolean;
|
|
10444
|
+
SourceConversationID?: string;
|
|
10445
|
+
SourceConversationDetailID?: string;
|
|
10446
|
+
SourceAIAgentRunID?: string;
|
|
10447
|
+
SuccessScore?: number;
|
|
10448
|
+
Comments?: string;
|
|
10449
|
+
Status: string;
|
|
10450
|
+
_mj__CreatedAt: Date;
|
|
10451
|
+
_mj__UpdatedAt: Date;
|
|
10452
|
+
Agent?: string;
|
|
10453
|
+
User?: string;
|
|
10454
|
+
Company?: string;
|
|
10455
|
+
SourceConversation?: string;
|
|
10456
|
+
}
|
|
10457
|
+
export declare class CreateMJAIAgentExampleInput {
|
|
10458
|
+
ID?: string;
|
|
10459
|
+
AgentID?: string;
|
|
10460
|
+
UserID: string | null;
|
|
10461
|
+
CompanyID: string | null;
|
|
10462
|
+
Type?: string;
|
|
10463
|
+
ExampleInput?: string;
|
|
10464
|
+
ExampleOutput?: string;
|
|
10465
|
+
IsAutoGenerated?: boolean;
|
|
10466
|
+
SourceConversationID: string | null;
|
|
10467
|
+
SourceConversationDetailID: string | null;
|
|
10468
|
+
SourceAIAgentRunID: string | null;
|
|
10469
|
+
SuccessScore: number | null;
|
|
10470
|
+
Comments: string | null;
|
|
10471
|
+
Status?: string;
|
|
10472
|
+
}
|
|
10473
|
+
export declare class UpdateMJAIAgentExampleInput {
|
|
10474
|
+
ID: string;
|
|
10475
|
+
AgentID?: string;
|
|
10476
|
+
UserID?: string | null;
|
|
10477
|
+
CompanyID?: string | null;
|
|
10478
|
+
Type?: string;
|
|
10479
|
+
ExampleInput?: string;
|
|
10480
|
+
ExampleOutput?: string;
|
|
10481
|
+
IsAutoGenerated?: boolean;
|
|
10482
|
+
SourceConversationID?: string | null;
|
|
10483
|
+
SourceConversationDetailID?: string | null;
|
|
10484
|
+
SourceAIAgentRunID?: string | null;
|
|
10485
|
+
SuccessScore?: number | null;
|
|
10486
|
+
Comments?: string | null;
|
|
10487
|
+
Status?: string;
|
|
10488
|
+
OldValues___?: KeyValuePairInput[];
|
|
10489
|
+
}
|
|
10490
|
+
export declare class RunMJAIAgentExampleViewResult {
|
|
10491
|
+
Results: MJAIAgentExample_[];
|
|
10492
|
+
UserViewRunID?: string;
|
|
10493
|
+
RowCount: number;
|
|
10494
|
+
TotalRowCount: number;
|
|
10495
|
+
ExecutionTime: number;
|
|
10496
|
+
ErrorMessage?: string;
|
|
10497
|
+
Success: boolean;
|
|
10498
|
+
}
|
|
10499
|
+
export declare class MJAIAgentExampleResolver extends ResolverBase {
|
|
10500
|
+
RunMJAIAgentExampleViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
10501
|
+
RunMJAIAgentExampleViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
10502
|
+
RunMJAIAgentExampleDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
10503
|
+
MJAIAgentExample(ID: string, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJAIAgentExample_ | null>;
|
|
10504
|
+
CreateMJAIAgentExample(input: CreateMJAIAgentExampleInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
10505
|
+
UpdateMJAIAgentExample(input: UpdateMJAIAgentExampleInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
10506
|
+
DeleteMJAIAgentExample(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
10507
|
+
}
|
|
10359
10508
|
export declare class MJConversationArtifact_ {
|
|
10360
10509
|
ID: string;
|
|
10361
10510
|
Name: string;
|