@memberjunction/server 3.2.0 → 3.4.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/README.md +106 -1
- package/dist/auth/APIKeyScopeAuth.d.ts +51 -0
- package/dist/auth/APIKeyScopeAuth.d.ts.map +1 -0
- package/dist/auth/APIKeyScopeAuth.js +163 -0
- package/dist/auth/APIKeyScopeAuth.js.map +1 -0
- package/dist/auth/BaseAuthProvider.d.ts +1 -0
- package/dist/auth/BaseAuthProvider.d.ts.map +1 -1
- package/dist/auth/BaseAuthProvider.js +2 -0
- package/dist/auth/BaseAuthProvider.js.map +1 -1
- package/dist/auth/IAuthProvider.d.ts +1 -0
- package/dist/auth/IAuthProvider.d.ts.map +1 -1
- package/dist/auth/index.d.ts +1 -0
- package/dist/auth/index.d.ts.map +1 -1
- package/dist/auth/index.js +1 -0
- package/dist/auth/index.js.map +1 -1
- package/dist/config.js +2 -2
- package/dist/config.js.map +1 -1
- package/dist/context.d.ts +8 -1
- package/dist/context.d.ts.map +1 -1
- package/dist/context.js +44 -7
- package/dist/context.js.map +1 -1
- package/dist/generated/generated.d.ts +681 -2
- package/dist/generated/generated.d.ts.map +1 -1
- package/dist/generated/generated.js +10627 -6409
- package/dist/generated/generated.js.map +1 -1
- package/dist/generic/ResolverBase.d.ts +3 -2
- package/dist/generic/ResolverBase.d.ts.map +1 -1
- package/dist/generic/ResolverBase.js +52 -4
- package/dist/generic/ResolverBase.js.map +1 -1
- package/dist/generic/RunViewResolver.d.ts +29 -1
- package/dist/generic/RunViewResolver.d.ts.map +1 -1
- package/dist/generic/RunViewResolver.js +143 -0
- package/dist/generic/RunViewResolver.js.map +1 -1
- package/dist/index.d.ts +4 -2
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +4 -2
- package/dist/index.js.map +1 -1
- package/dist/resolvers/APIKeyResolver.d.ts +24 -0
- package/dist/resolvers/APIKeyResolver.d.ts.map +1 -0
- package/dist/resolvers/APIKeyResolver.js +194 -0
- package/dist/resolvers/APIKeyResolver.js.map +1 -0
- package/dist/resolvers/ActionResolver.d.ts +2 -1
- package/dist/resolvers/ActionResolver.d.ts.map +1 -1
- package/dist/resolvers/ActionResolver.js +4 -1
- package/dist/resolvers/ActionResolver.js.map +1 -1
- package/dist/resolvers/DatasetResolver.d.ts +5 -4
- package/dist/resolvers/DatasetResolver.d.ts.map +1 -1
- package/dist/resolvers/DatasetResolver.js +7 -4
- package/dist/resolvers/DatasetResolver.js.map +1 -1
- package/dist/resolvers/EntityCommunicationsResolver.d.ts +2 -1
- package/dist/resolvers/EntityCommunicationsResolver.d.ts.map +1 -1
- package/dist/resolvers/EntityCommunicationsResolver.js +3 -1
- package/dist/resolvers/EntityCommunicationsResolver.js.map +1 -1
- package/dist/resolvers/GetDataContextDataResolver.d.ts +2 -1
- package/dist/resolvers/GetDataContextDataResolver.d.ts.map +1 -1
- package/dist/resolvers/GetDataContextDataResolver.js +10 -3
- package/dist/resolvers/GetDataContextDataResolver.js.map +1 -1
- package/dist/resolvers/MCPResolver.d.ts +37 -0
- package/dist/resolvers/MCPResolver.d.ts.map +1 -0
- package/dist/resolvers/MCPResolver.js +363 -0
- package/dist/resolvers/MCPResolver.js.map +1 -0
- package/dist/resolvers/MergeRecordsResolver.d.ts +2 -1
- package/dist/resolvers/MergeRecordsResolver.d.ts.map +1 -1
- package/dist/resolvers/MergeRecordsResolver.js +3 -1
- package/dist/resolvers/MergeRecordsResolver.js.map +1 -1
- package/dist/resolvers/QueryResolver.d.ts +2 -1
- package/dist/resolvers/QueryResolver.d.ts.map +1 -1
- package/dist/resolvers/QueryResolver.js +6 -1
- package/dist/resolvers/QueryResolver.js.map +1 -1
- package/dist/resolvers/ReportResolver.d.ts +2 -1
- package/dist/resolvers/ReportResolver.d.ts.map +1 -1
- package/dist/resolvers/ReportResolver.js +4 -1
- package/dist/resolvers/ReportResolver.js.map +1 -1
- package/dist/resolvers/RunAIAgentResolver.d.ts.map +1 -1
- package/dist/resolvers/RunAIAgentResolver.js +3 -1
- package/dist/resolvers/RunAIAgentResolver.js.map +1 -1
- package/dist/resolvers/RunAIPromptResolver.d.ts.map +1 -1
- package/dist/resolvers/RunAIPromptResolver.js +3 -0
- package/dist/resolvers/RunAIPromptResolver.js.map +1 -1
- package/dist/resolvers/RunTemplateResolver.d.ts.map +1 -1
- package/dist/resolvers/RunTemplateResolver.js +1 -0
- package/dist/resolvers/RunTemplateResolver.js.map +1 -1
- package/dist/resolvers/TaskResolver.d.ts.map +1 -1
- package/dist/resolvers/TaskResolver.js +1 -0
- package/dist/resolvers/TaskResolver.js.map +1 -1
- package/dist/resolvers/UserResolver.d.ts.map +1 -1
- package/dist/resolvers/UserResolver.js +35 -1
- package/dist/resolvers/UserResolver.js.map +1 -1
- package/dist/types.d.ts +4 -1
- package/dist/types.d.ts.map +1 -1
- package/dist/types.js.map +1 -1
- package/package.json +47 -45
- package/src/auth/APIKeyScopeAuth.ts +366 -0
- package/src/auth/BaseAuthProvider.ts +3 -0
- package/src/auth/IAuthProvider.ts +5 -0
- package/src/auth/index.ts +1 -0
- package/src/config.ts +2 -2
- package/src/context.ts +91 -9
- package/src/generated/generated.ts +6327 -3668
- package/src/generic/ResolverBase.ts +127 -8
- package/src/generic/RunViewResolver.ts +132 -5
- package/src/index.ts +12 -2
- package/src/resolvers/APIKeyResolver.ts +241 -0
- package/src/resolvers/ActionResolver.ts +8 -1
- package/src/resolvers/DatasetResolver.ts +11 -4
- package/src/resolvers/EntityCommunicationsResolver.ts +5 -1
- package/src/resolvers/GetDataContextDataResolver.ts +14 -6
- package/src/resolvers/MCPResolver.ts +480 -0
- package/src/resolvers/MergeRecordsResolver.ts +5 -1
- package/src/resolvers/QueryResolver.ts +17 -3
- package/src/resolvers/ReportResolver.ts +8 -1
- package/src/resolvers/RunAIAgentResolver.ts +7 -1
- package/src/resolvers/RunAIPromptResolver.ts +10 -1
- package/src/resolvers/RunTemplateResolver.ts +4 -1
- package/src/resolvers/TaskResolver.ts +3 -0
- package/src/resolvers/UserResolver.ts +52 -4
- package/src/types.ts +7 -2
- package/dist/resolvers/AskSkipResolver.d.ts +0 -123
- package/dist/resolvers/AskSkipResolver.d.ts.map +0 -1
- package/dist/resolvers/AskSkipResolver.js +0 -1788
- package/dist/resolvers/AskSkipResolver.js.map +0 -1
- package/dist/scheduler/LearningCycleScheduler.d.ts +0 -4
- package/dist/scheduler/LearningCycleScheduler.d.ts.map +0 -1
- package/dist/scheduler/LearningCycleScheduler.js +0 -4
- package/dist/scheduler/LearningCycleScheduler.js.map +0 -1
- package/src/resolvers/AskSkipResolver.ts +0 -3446
- package/src/scheduler/LearningCycleScheduler.ts +0 -320
|
@@ -52,6 +52,7 @@ export declare class MJActionCategory_ {
|
|
|
52
52
|
RootParentID?: string;
|
|
53
53
|
ActionCategories_ParentIDArray: MJActionCategory_[];
|
|
54
54
|
Actions_CategoryIDArray: MJAction_[];
|
|
55
|
+
MJ_MCPServerTools_GeneratedActionCategoryIDArray: MJMCPServerTool_[];
|
|
55
56
|
}
|
|
56
57
|
export declare class CreateMJActionCategoryInput {
|
|
57
58
|
ID?: string;
|
|
@@ -84,6 +85,7 @@ export declare class MJActionCategoryResolver extends ResolverBase {
|
|
|
84
85
|
MJActionCategory(ID: string, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJActionCategory_ | null>;
|
|
85
86
|
ActionCategories_ParentIDArray(mjactioncategory_: MJActionCategory_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
86
87
|
Actions_CategoryIDArray(mjactioncategory_: MJActionCategory_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
88
|
+
MJ_MCPServerTools_GeneratedActionCategoryIDArray(mjactioncategory_: MJActionCategory_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
87
89
|
CreateMJActionCategory(input: CreateMJActionCategoryInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
88
90
|
UpdateMJActionCategory(input: UpdateMJActionCategoryInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
89
91
|
DeleteMJActionCategory(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -447,6 +449,7 @@ export declare class MJAction_ {
|
|
|
447
449
|
ActionResultCodes_ActionIDArray: MJActionResultCode_[];
|
|
448
450
|
ScheduledActions_ActionIDArray: MJScheduledAction_[];
|
|
449
451
|
AIAgentActions_ActionIDArray: MJAIAgentAction_[];
|
|
452
|
+
MJ_MCPServerTools_GeneratedActionIDArray: MJMCPServerTool_[];
|
|
450
453
|
ActionContexts_ActionIDArray: MJActionContext_[];
|
|
451
454
|
EntityActions_ActionIDArray: MJEntityAction_[];
|
|
452
455
|
MJ_AIAgentSteps_ActionIDArray: MJAIAgentStep_[];
|
|
@@ -520,6 +523,7 @@ export declare class MJActionResolver extends ResolverBase {
|
|
|
520
523
|
ActionResultCodes_ActionIDArray(mjaction_: MJAction_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
521
524
|
ScheduledActions_ActionIDArray(mjaction_: MJAction_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
522
525
|
AIAgentActions_ActionIDArray(mjaction_: MJAction_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
526
|
+
MJ_MCPServerTools_GeneratedActionIDArray(mjaction_: MJAction_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
523
527
|
ActionContexts_ActionIDArray(mjaction_: MJAction_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
524
528
|
EntityActions_ActionIDArray(mjaction_: MJAction_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
525
529
|
MJ_AIAgentSteps_ActionIDArray(mjaction_: MJAction_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
@@ -796,6 +800,12 @@ export declare class MJAIAgentNote_ {
|
|
|
796
800
|
CompanyID?: string;
|
|
797
801
|
EmbeddingVector?: string;
|
|
798
802
|
EmbeddingModelID?: string;
|
|
803
|
+
PrimaryScopeEntityID?: string;
|
|
804
|
+
PrimaryScopeRecordID?: string;
|
|
805
|
+
SecondaryScopes?: string;
|
|
806
|
+
LastAccessedAt?: Date;
|
|
807
|
+
AccessCount: number;
|
|
808
|
+
ExpiresAt?: Date;
|
|
799
809
|
Agent?: string;
|
|
800
810
|
AgentNoteType?: string;
|
|
801
811
|
User?: string;
|
|
@@ -804,6 +814,7 @@ export declare class MJAIAgentNote_ {
|
|
|
804
814
|
SourceAIAgentRun?: string;
|
|
805
815
|
Company?: string;
|
|
806
816
|
EmbeddingModel?: string;
|
|
817
|
+
PrimaryScopeEntity?: string;
|
|
807
818
|
}
|
|
808
819
|
export declare class CreateMJAIAgentNoteInput {
|
|
809
820
|
ID?: string;
|
|
@@ -821,6 +832,12 @@ export declare class CreateMJAIAgentNoteInput {
|
|
|
821
832
|
CompanyID: string | null;
|
|
822
833
|
EmbeddingVector: string | null;
|
|
823
834
|
EmbeddingModelID: string | null;
|
|
835
|
+
PrimaryScopeEntityID: string | null;
|
|
836
|
+
PrimaryScopeRecordID: string | null;
|
|
837
|
+
SecondaryScopes: string | null;
|
|
838
|
+
LastAccessedAt: Date | null;
|
|
839
|
+
AccessCount?: number;
|
|
840
|
+
ExpiresAt: Date | null;
|
|
824
841
|
}
|
|
825
842
|
export declare class UpdateMJAIAgentNoteInput {
|
|
826
843
|
ID: string;
|
|
@@ -838,6 +855,12 @@ export declare class UpdateMJAIAgentNoteInput {
|
|
|
838
855
|
CompanyID?: string | null;
|
|
839
856
|
EmbeddingVector?: string | null;
|
|
840
857
|
EmbeddingModelID?: string | null;
|
|
858
|
+
PrimaryScopeEntityID?: string | null;
|
|
859
|
+
PrimaryScopeRecordID?: string | null;
|
|
860
|
+
SecondaryScopes?: string | null;
|
|
861
|
+
LastAccessedAt?: Date | null;
|
|
862
|
+
AccessCount?: number;
|
|
863
|
+
ExpiresAt?: Date | null;
|
|
841
864
|
OldValues___?: KeyValuePairInput[];
|
|
842
865
|
}
|
|
843
866
|
export declare class RunMJAIAgentNoteViewResult {
|
|
@@ -975,6 +998,11 @@ export declare class MJAIAgent_ {
|
|
|
975
998
|
AttachmentRootPath?: string;
|
|
976
999
|
InlineStorageThresholdBytes?: number;
|
|
977
1000
|
AgentTypePromptParams?: string;
|
|
1001
|
+
ScopeConfig?: string;
|
|
1002
|
+
NoteRetentionDays?: number;
|
|
1003
|
+
ExampleRetentionDays?: number;
|
|
1004
|
+
AutoArchiveEnabled: boolean;
|
|
1005
|
+
RerankerConfiguration?: string;
|
|
978
1006
|
Parent?: string;
|
|
979
1007
|
ContextCompressionPrompt?: string;
|
|
980
1008
|
Type?: string;
|
|
@@ -1060,6 +1088,11 @@ export declare class CreateMJAIAgentInput {
|
|
|
1060
1088
|
AttachmentRootPath: string | null;
|
|
1061
1089
|
InlineStorageThresholdBytes: number | null;
|
|
1062
1090
|
AgentTypePromptParams: string | null;
|
|
1091
|
+
ScopeConfig: string | null;
|
|
1092
|
+
NoteRetentionDays?: number | null;
|
|
1093
|
+
ExampleRetentionDays?: number | null;
|
|
1094
|
+
AutoArchiveEnabled?: boolean;
|
|
1095
|
+
RerankerConfiguration: string | null;
|
|
1063
1096
|
}
|
|
1064
1097
|
export declare class UpdateMJAIAgentInput {
|
|
1065
1098
|
ID: string;
|
|
@@ -1116,6 +1149,11 @@ export declare class UpdateMJAIAgentInput {
|
|
|
1116
1149
|
AttachmentRootPath?: string | null;
|
|
1117
1150
|
InlineStorageThresholdBytes?: number | null;
|
|
1118
1151
|
AgentTypePromptParams?: string | null;
|
|
1152
|
+
ScopeConfig?: string | null;
|
|
1153
|
+
NoteRetentionDays?: number | null;
|
|
1154
|
+
ExampleRetentionDays?: number | null;
|
|
1155
|
+
AutoArchiveEnabled?: boolean;
|
|
1156
|
+
RerankerConfiguration?: string | null;
|
|
1119
1157
|
OldValues___?: KeyValuePairInput[];
|
|
1120
1158
|
}
|
|
1121
1159
|
export declare class RunMJAIAgentViewResult {
|
|
@@ -2384,6 +2422,7 @@ export declare class MJCompany_ {
|
|
|
2384
2422
|
Employees_CompanyIDArray: MJEmployee_[];
|
|
2385
2423
|
CompanyIntegrations_CompanyNameArray: MJCompanyIntegration_[];
|
|
2386
2424
|
Workflows_CompanyNameArray: MJWorkflow_[];
|
|
2425
|
+
MJ_MCPServerConnections_CompanyIDArray: MJMCPServerConnection_[];
|
|
2387
2426
|
AIAgentNotes_CompanyIDArray: MJAIAgentNote_[];
|
|
2388
2427
|
MJ_AIAgentExamples_CompanyIDArray: MJAIAgentExample_[];
|
|
2389
2428
|
}
|
|
@@ -2422,6 +2461,7 @@ export declare class MJCompanyResolver extends ResolverBase {
|
|
|
2422
2461
|
Employees_CompanyIDArray(mjcompany_: MJCompany_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2423
2462
|
CompanyIntegrations_CompanyNameArray(mjcompany_: MJCompany_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2424
2463
|
Workflows_CompanyNameArray(mjcompany_: MJCompany_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2464
|
+
MJ_MCPServerConnections_CompanyIDArray(mjcompany_: MJCompany_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2425
2465
|
AIAgentNotes_CompanyIDArray(mjcompany_: MJCompany_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2426
2466
|
MJ_AIAgentExamples_CompanyIDArray(mjcompany_: MJCompany_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2427
2467
|
CreateMJCompany(input: CreateMJCompanyInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -4257,9 +4297,12 @@ export declare class MJEntity_ {
|
|
|
4257
4297
|
QueryEntities_EntityIDArray: MJQueryEntity_[];
|
|
4258
4298
|
MJ_AccessControlRules_EntityIDArray: MJAccessControlRule_[];
|
|
4259
4299
|
MJ_RecordLinks_SourceEntityIDArray: MJRecordLink_[];
|
|
4300
|
+
MJ_AIAgentExamples_PrimaryScopeEntityIDArray: MJAIAgentExample_[];
|
|
4301
|
+
AIAgentNotes_PrimaryScopeEntityIDArray: MJAIAgentNote_[];
|
|
4260
4302
|
GeneratedCodes_LinkedEntityIDArray: MJGeneratedCode_[];
|
|
4261
4303
|
MJ_RecordLinks_TargetEntityIDArray: MJRecordLink_[];
|
|
4262
4304
|
MJ_TestRuns_TargetLogEntityIDArray: MJTestRun_[];
|
|
4305
|
+
MJ_AIAgentRuns_PrimaryScopeEntityIDArray: MJAIAgentRun_[];
|
|
4263
4306
|
}
|
|
4264
4307
|
export declare class CreateMJEntityInput {
|
|
4265
4308
|
ID?: string;
|
|
@@ -4425,9 +4468,12 @@ export declare class MJEntityResolverBase extends ResolverBase {
|
|
|
4425
4468
|
QueryEntities_EntityIDArray(mjentity_: MJEntity_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
4426
4469
|
MJ_AccessControlRules_EntityIDArray(mjentity_: MJEntity_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
4427
4470
|
MJ_RecordLinks_SourceEntityIDArray(mjentity_: MJEntity_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
4471
|
+
MJ_AIAgentExamples_PrimaryScopeEntityIDArray(mjentity_: MJEntity_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
4472
|
+
AIAgentNotes_PrimaryScopeEntityIDArray(mjentity_: MJEntity_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
4428
4473
|
GeneratedCodes_LinkedEntityIDArray(mjentity_: MJEntity_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
4429
4474
|
MJ_RecordLinks_TargetEntityIDArray(mjentity_: MJEntity_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
4430
4475
|
MJ_TestRuns_TargetLogEntityIDArray(mjentity_: MJEntity_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
4476
|
+
MJ_AIAgentRuns_PrimaryScopeEntityIDArray(mjentity_: MJEntity_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
4431
4477
|
CreateMJEntity(input: CreateMJEntityInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
4432
4478
|
UpdateMJEntity(input: UpdateMJEntityInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
4433
4479
|
DeleteMJEntity(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -6591,6 +6637,12 @@ export declare class MJAIAgentExample_ {
|
|
|
6591
6637
|
_mj__UpdatedAt: Date;
|
|
6592
6638
|
EmbeddingVector?: string;
|
|
6593
6639
|
EmbeddingModelID?: string;
|
|
6640
|
+
PrimaryScopeEntityID?: string;
|
|
6641
|
+
PrimaryScopeRecordID?: string;
|
|
6642
|
+
SecondaryScopes?: string;
|
|
6643
|
+
LastAccessedAt?: Date;
|
|
6644
|
+
AccessCount: number;
|
|
6645
|
+
ExpiresAt?: Date;
|
|
6594
6646
|
Agent?: string;
|
|
6595
6647
|
User?: string;
|
|
6596
6648
|
Company?: string;
|
|
@@ -6598,6 +6650,7 @@ export declare class MJAIAgentExample_ {
|
|
|
6598
6650
|
SourceConversationDetail?: string;
|
|
6599
6651
|
SourceAIAgentRun?: string;
|
|
6600
6652
|
EmbeddingModel?: string;
|
|
6653
|
+
PrimaryScopeEntity?: string;
|
|
6601
6654
|
}
|
|
6602
6655
|
export declare class CreateMJAIAgentExampleInput {
|
|
6603
6656
|
ID?: string;
|
|
@@ -6616,6 +6669,12 @@ export declare class CreateMJAIAgentExampleInput {
|
|
|
6616
6669
|
Status?: string;
|
|
6617
6670
|
EmbeddingVector: string | null;
|
|
6618
6671
|
EmbeddingModelID: string | null;
|
|
6672
|
+
PrimaryScopeEntityID: string | null;
|
|
6673
|
+
PrimaryScopeRecordID: string | null;
|
|
6674
|
+
SecondaryScopes: string | null;
|
|
6675
|
+
LastAccessedAt: Date | null;
|
|
6676
|
+
AccessCount?: number;
|
|
6677
|
+
ExpiresAt: Date | null;
|
|
6619
6678
|
}
|
|
6620
6679
|
export declare class UpdateMJAIAgentExampleInput {
|
|
6621
6680
|
ID: string;
|
|
@@ -6634,6 +6693,12 @@ export declare class UpdateMJAIAgentExampleInput {
|
|
|
6634
6693
|
Status?: string;
|
|
6635
6694
|
EmbeddingVector?: string | null;
|
|
6636
6695
|
EmbeddingModelID?: string | null;
|
|
6696
|
+
PrimaryScopeEntityID?: string | null;
|
|
6697
|
+
PrimaryScopeRecordID?: string | null;
|
|
6698
|
+
SecondaryScopes?: string | null;
|
|
6699
|
+
LastAccessedAt?: Date | null;
|
|
6700
|
+
AccessCount?: number;
|
|
6701
|
+
ExpiresAt?: Date | null;
|
|
6637
6702
|
OldValues___?: KeyValuePairInput[];
|
|
6638
6703
|
}
|
|
6639
6704
|
export declare class RunMJAIAgentExampleViewResult {
|
|
@@ -7090,6 +7155,9 @@ export declare class MJAIAgentRun_ {
|
|
|
7090
7155
|
Comments?: string;
|
|
7091
7156
|
ScheduledJobRunID?: string;
|
|
7092
7157
|
TestRunID?: string;
|
|
7158
|
+
PrimaryScopeEntityID?: string;
|
|
7159
|
+
PrimaryScopeRecordID?: string;
|
|
7160
|
+
SecondaryScopes?: string;
|
|
7093
7161
|
Agent?: string;
|
|
7094
7162
|
ParentRun?: string;
|
|
7095
7163
|
Conversation?: string;
|
|
@@ -7101,6 +7169,7 @@ export declare class MJAIAgentRun_ {
|
|
|
7101
7169
|
OverrideVendor?: string;
|
|
7102
7170
|
ScheduledJobRun?: string;
|
|
7103
7171
|
TestRun?: string;
|
|
7172
|
+
PrimaryScopeEntity?: string;
|
|
7104
7173
|
RootParentRunID?: string;
|
|
7105
7174
|
RootLastRunID?: string;
|
|
7106
7175
|
MJ_AIAgentRunSteps_AgentRunIDArray: MJAIAgentRunStep_[];
|
|
@@ -7150,6 +7219,9 @@ export declare class CreateMJAIAgentRunInput {
|
|
|
7150
7219
|
Comments: string | null;
|
|
7151
7220
|
ScheduledJobRunID: string | null;
|
|
7152
7221
|
TestRunID: string | null;
|
|
7222
|
+
PrimaryScopeEntityID: string | null;
|
|
7223
|
+
PrimaryScopeRecordID: string | null;
|
|
7224
|
+
SecondaryScopes: string | null;
|
|
7153
7225
|
}
|
|
7154
7226
|
export declare class UpdateMJAIAgentRunInput {
|
|
7155
7227
|
ID: string;
|
|
@@ -7191,6 +7263,9 @@ export declare class UpdateMJAIAgentRunInput {
|
|
|
7191
7263
|
Comments?: string | null;
|
|
7192
7264
|
ScheduledJobRunID?: string | null;
|
|
7193
7265
|
TestRunID?: string | null;
|
|
7266
|
+
PrimaryScopeEntityID?: string | null;
|
|
7267
|
+
PrimaryScopeRecordID?: string | null;
|
|
7268
|
+
SecondaryScopes?: string | null;
|
|
7194
7269
|
OldValues___?: KeyValuePairInput[];
|
|
7195
7270
|
}
|
|
7196
7271
|
export declare class RunMJAIAgentRunViewResult {
|
|
@@ -8646,12 +8721,149 @@ export declare class MJAIVendorResolver extends ResolverBase {
|
|
|
8646
8721
|
UpdateMJAIVendor(input: UpdateMJAIVendorInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
8647
8722
|
DeleteMJAIVendor(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
8648
8723
|
}
|
|
8724
|
+
export declare class MJAPIApplicationScope_ {
|
|
8725
|
+
ID: string;
|
|
8726
|
+
ApplicationID: string;
|
|
8727
|
+
ScopeID: string;
|
|
8728
|
+
ResourcePattern?: string;
|
|
8729
|
+
PatternType: string;
|
|
8730
|
+
IsDeny: boolean;
|
|
8731
|
+
Priority: number;
|
|
8732
|
+
_mj__CreatedAt: Date;
|
|
8733
|
+
_mj__UpdatedAt: Date;
|
|
8734
|
+
Application: string;
|
|
8735
|
+
Scope: string;
|
|
8736
|
+
}
|
|
8737
|
+
export declare class CreateMJAPIApplicationScopeInput {
|
|
8738
|
+
ID?: string;
|
|
8739
|
+
ApplicationID?: string;
|
|
8740
|
+
ScopeID?: string;
|
|
8741
|
+
ResourcePattern: string | null;
|
|
8742
|
+
PatternType?: string;
|
|
8743
|
+
IsDeny?: boolean;
|
|
8744
|
+
Priority?: number;
|
|
8745
|
+
}
|
|
8746
|
+
export declare class UpdateMJAPIApplicationScopeInput {
|
|
8747
|
+
ID: string;
|
|
8748
|
+
ApplicationID?: string;
|
|
8749
|
+
ScopeID?: string;
|
|
8750
|
+
ResourcePattern?: string | null;
|
|
8751
|
+
PatternType?: string;
|
|
8752
|
+
IsDeny?: boolean;
|
|
8753
|
+
Priority?: number;
|
|
8754
|
+
OldValues___?: KeyValuePairInput[];
|
|
8755
|
+
}
|
|
8756
|
+
export declare class RunMJAPIApplicationScopeViewResult {
|
|
8757
|
+
Results: MJAPIApplicationScope_[];
|
|
8758
|
+
UserViewRunID?: string;
|
|
8759
|
+
RowCount: number;
|
|
8760
|
+
TotalRowCount: number;
|
|
8761
|
+
ExecutionTime: number;
|
|
8762
|
+
ErrorMessage?: string;
|
|
8763
|
+
Success: boolean;
|
|
8764
|
+
}
|
|
8765
|
+
export declare class MJAPIApplicationScopeResolver extends ResolverBase {
|
|
8766
|
+
RunMJAPIApplicationScopeViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
8767
|
+
RunMJAPIApplicationScopeViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
8768
|
+
RunMJAPIApplicationScopeDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
8769
|
+
MJAPIApplicationScope(ID: string, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJAPIApplicationScope_ | null>;
|
|
8770
|
+
CreateMJAPIApplicationScope(input: CreateMJAPIApplicationScopeInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
8771
|
+
UpdateMJAPIApplicationScope(input: UpdateMJAPIApplicationScopeInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
8772
|
+
DeleteMJAPIApplicationScope(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
8773
|
+
}
|
|
8774
|
+
export declare class MJAPIApplication_ {
|
|
8775
|
+
ID: string;
|
|
8776
|
+
Name: string;
|
|
8777
|
+
Description?: string;
|
|
8778
|
+
IsActive: boolean;
|
|
8779
|
+
_mj__CreatedAt: Date;
|
|
8780
|
+
_mj__UpdatedAt: Date;
|
|
8781
|
+
MJ_APIKeyUsageLogs_ApplicationIDArray: MJAPIKeyUsageLog_[];
|
|
8782
|
+
MJ_APIApplicationScopes_ApplicationIDArray: MJAPIApplicationScope_[];
|
|
8783
|
+
MJ_APIKeyApplications_ApplicationIDArray: MJAPIKeyApplication_[];
|
|
8784
|
+
}
|
|
8785
|
+
export declare class CreateMJAPIApplicationInput {
|
|
8786
|
+
ID?: string;
|
|
8787
|
+
Name?: string;
|
|
8788
|
+
Description: string | null;
|
|
8789
|
+
IsActive?: boolean;
|
|
8790
|
+
}
|
|
8791
|
+
export declare class UpdateMJAPIApplicationInput {
|
|
8792
|
+
ID: string;
|
|
8793
|
+
Name?: string;
|
|
8794
|
+
Description?: string | null;
|
|
8795
|
+
IsActive?: boolean;
|
|
8796
|
+
OldValues___?: KeyValuePairInput[];
|
|
8797
|
+
}
|
|
8798
|
+
export declare class RunMJAPIApplicationViewResult {
|
|
8799
|
+
Results: MJAPIApplication_[];
|
|
8800
|
+
UserViewRunID?: string;
|
|
8801
|
+
RowCount: number;
|
|
8802
|
+
TotalRowCount: number;
|
|
8803
|
+
ExecutionTime: number;
|
|
8804
|
+
ErrorMessage?: string;
|
|
8805
|
+
Success: boolean;
|
|
8806
|
+
}
|
|
8807
|
+
export declare class MJAPIApplicationResolver extends ResolverBase {
|
|
8808
|
+
RunMJAPIApplicationViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
8809
|
+
RunMJAPIApplicationViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
8810
|
+
RunMJAPIApplicationDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
8811
|
+
MJAPIApplication(ID: string, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJAPIApplication_ | null>;
|
|
8812
|
+
MJ_APIKeyUsageLogs_ApplicationIDArray(mjapiapplication_: MJAPIApplication_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
8813
|
+
MJ_APIApplicationScopes_ApplicationIDArray(mjapiapplication_: MJAPIApplication_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
8814
|
+
MJ_APIKeyApplications_ApplicationIDArray(mjapiapplication_: MJAPIApplication_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
8815
|
+
CreateMJAPIApplication(input: CreateMJAPIApplicationInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
8816
|
+
UpdateMJAPIApplication(input: UpdateMJAPIApplicationInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
8817
|
+
DeleteMJAPIApplication(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
8818
|
+
}
|
|
8819
|
+
export declare class MJAPIKeyApplication_ {
|
|
8820
|
+
ID: string;
|
|
8821
|
+
APIKeyID: string;
|
|
8822
|
+
ApplicationID: string;
|
|
8823
|
+
_mj__CreatedAt: Date;
|
|
8824
|
+
_mj__UpdatedAt: Date;
|
|
8825
|
+
APIKey: string;
|
|
8826
|
+
Application: string;
|
|
8827
|
+
}
|
|
8828
|
+
export declare class CreateMJAPIKeyApplicationInput {
|
|
8829
|
+
ID?: string;
|
|
8830
|
+
APIKeyID?: string;
|
|
8831
|
+
ApplicationID?: string;
|
|
8832
|
+
}
|
|
8833
|
+
export declare class UpdateMJAPIKeyApplicationInput {
|
|
8834
|
+
ID: string;
|
|
8835
|
+
APIKeyID?: string;
|
|
8836
|
+
ApplicationID?: string;
|
|
8837
|
+
OldValues___?: KeyValuePairInput[];
|
|
8838
|
+
}
|
|
8839
|
+
export declare class RunMJAPIKeyApplicationViewResult {
|
|
8840
|
+
Results: MJAPIKeyApplication_[];
|
|
8841
|
+
UserViewRunID?: string;
|
|
8842
|
+
RowCount: number;
|
|
8843
|
+
TotalRowCount: number;
|
|
8844
|
+
ExecutionTime: number;
|
|
8845
|
+
ErrorMessage?: string;
|
|
8846
|
+
Success: boolean;
|
|
8847
|
+
}
|
|
8848
|
+
export declare class MJAPIKeyApplicationResolver extends ResolverBase {
|
|
8849
|
+
RunMJAPIKeyApplicationViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
8850
|
+
RunMJAPIKeyApplicationViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
8851
|
+
RunMJAPIKeyApplicationDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
8852
|
+
MJAPIKeyApplication(ID: string, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJAPIKeyApplication_ | null>;
|
|
8853
|
+
CreateMJAPIKeyApplication(input: CreateMJAPIKeyApplicationInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
8854
|
+
UpdateMJAPIKeyApplication(input: UpdateMJAPIKeyApplicationInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
8855
|
+
DeleteMJAPIKeyApplication(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
8856
|
+
}
|
|
8649
8857
|
export declare class MJAPIKeyScope_ {
|
|
8650
8858
|
ID: string;
|
|
8651
8859
|
APIKeyID: string;
|
|
8652
8860
|
ScopeID: string;
|
|
8653
8861
|
_mj__CreatedAt: Date;
|
|
8654
8862
|
_mj__UpdatedAt: Date;
|
|
8863
|
+
ResourcePattern?: string;
|
|
8864
|
+
PatternType: string;
|
|
8865
|
+
IsDeny: boolean;
|
|
8866
|
+
Priority: number;
|
|
8655
8867
|
APIKey: string;
|
|
8656
8868
|
Scope: string;
|
|
8657
8869
|
}
|
|
@@ -8659,11 +8871,19 @@ export declare class CreateMJAPIKeyScopeInput {
|
|
|
8659
8871
|
ID?: string;
|
|
8660
8872
|
APIKeyID?: string;
|
|
8661
8873
|
ScopeID?: string;
|
|
8874
|
+
ResourcePattern: string | null;
|
|
8875
|
+
PatternType?: string;
|
|
8876
|
+
IsDeny?: boolean;
|
|
8877
|
+
Priority?: number;
|
|
8662
8878
|
}
|
|
8663
8879
|
export declare class UpdateMJAPIKeyScopeInput {
|
|
8664
8880
|
ID: string;
|
|
8665
8881
|
APIKeyID?: string;
|
|
8666
8882
|
ScopeID?: string;
|
|
8883
|
+
ResourcePattern?: string | null;
|
|
8884
|
+
PatternType?: string;
|
|
8885
|
+
IsDeny?: boolean;
|
|
8886
|
+
Priority?: number;
|
|
8667
8887
|
OldValues___?: KeyValuePairInput[];
|
|
8668
8888
|
}
|
|
8669
8889
|
export declare class RunMJAPIKeyScopeViewResult {
|
|
@@ -8696,7 +8916,13 @@ export declare class MJAPIKeyUsageLog_ {
|
|
|
8696
8916
|
UserAgent?: string;
|
|
8697
8917
|
_mj__CreatedAt: Date;
|
|
8698
8918
|
_mj__UpdatedAt: Date;
|
|
8919
|
+
ApplicationID?: string;
|
|
8920
|
+
RequestedResource?: string;
|
|
8921
|
+
ScopesEvaluated?: string;
|
|
8922
|
+
AuthorizationResult: string;
|
|
8923
|
+
DeniedReason?: string;
|
|
8699
8924
|
APIKey: string;
|
|
8925
|
+
Application?: string;
|
|
8700
8926
|
}
|
|
8701
8927
|
export declare class CreateMJAPIKeyUsageLogInput {
|
|
8702
8928
|
ID?: string;
|
|
@@ -8708,6 +8934,11 @@ export declare class CreateMJAPIKeyUsageLogInput {
|
|
|
8708
8934
|
ResponseTimeMs: number | null;
|
|
8709
8935
|
IPAddress: string | null;
|
|
8710
8936
|
UserAgent: string | null;
|
|
8937
|
+
ApplicationID: string | null;
|
|
8938
|
+
RequestedResource: string | null;
|
|
8939
|
+
ScopesEvaluated: string | null;
|
|
8940
|
+
AuthorizationResult?: string;
|
|
8941
|
+
DeniedReason: string | null;
|
|
8711
8942
|
}
|
|
8712
8943
|
export declare class UpdateMJAPIKeyUsageLogInput {
|
|
8713
8944
|
ID: string;
|
|
@@ -8719,6 +8950,11 @@ export declare class UpdateMJAPIKeyUsageLogInput {
|
|
|
8719
8950
|
ResponseTimeMs?: number | null;
|
|
8720
8951
|
IPAddress?: string | null;
|
|
8721
8952
|
UserAgent?: string | null;
|
|
8953
|
+
ApplicationID?: string | null;
|
|
8954
|
+
RequestedResource?: string | null;
|
|
8955
|
+
ScopesEvaluated?: string | null;
|
|
8956
|
+
AuthorizationResult?: string;
|
|
8957
|
+
DeniedReason?: string | null;
|
|
8722
8958
|
OldValues___?: KeyValuePairInput[];
|
|
8723
8959
|
}
|
|
8724
8960
|
export declare class RunMJAPIKeyUsageLogViewResult {
|
|
@@ -8755,6 +8991,7 @@ export declare class MJAPIKey_ {
|
|
|
8755
8991
|
CreatedByUser: string;
|
|
8756
8992
|
MJ_APIKeyUsageLogs_APIKeyIDArray: MJAPIKeyUsageLog_[];
|
|
8757
8993
|
MJ_APIKeyScopes_APIKeyIDArray: MJAPIKeyScope_[];
|
|
8994
|
+
MJ_APIKeyApplications_APIKeyIDArray: MJAPIKeyApplication_[];
|
|
8758
8995
|
}
|
|
8759
8996
|
export declare class CreateMJAPIKeyInput {
|
|
8760
8997
|
ID?: string;
|
|
@@ -8795,6 +9032,7 @@ export declare class MJAPIKeyResolver extends ResolverBase {
|
|
|
8795
9032
|
MJAPIKey(ID: string, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJAPIKey_ | null>;
|
|
8796
9033
|
MJ_APIKeyUsageLogs_APIKeyIDArray(mjapikey_: MJAPIKey_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
8797
9034
|
MJ_APIKeyScopes_APIKeyIDArray(mjapikey_: MJAPIKey_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
9035
|
+
MJ_APIKeyApplications_APIKeyIDArray(mjapikey_: MJAPIKey_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
8798
9036
|
CreateMJAPIKey(input: CreateMJAPIKeyInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
8799
9037
|
UpdateMJAPIKey(input: UpdateMJAPIKeyInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
8800
9038
|
DeleteMJAPIKey(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -8806,19 +9044,38 @@ export declare class MJAPIScope_ {
|
|
|
8806
9044
|
Description?: string;
|
|
8807
9045
|
_mj__CreatedAt: Date;
|
|
8808
9046
|
_mj__UpdatedAt: Date;
|
|
9047
|
+
ParentID?: string;
|
|
9048
|
+
FullPath: string;
|
|
9049
|
+
ResourceType?: string;
|
|
9050
|
+
IsActive: boolean;
|
|
9051
|
+
UIConfig?: string;
|
|
9052
|
+
Parent?: string;
|
|
9053
|
+
RootParentID?: string;
|
|
8809
9054
|
MJ_APIKeyScopes_ScopeIDArray: MJAPIKeyScope_[];
|
|
9055
|
+
MJ_APIApplicationScopes_ScopeIDArray: MJAPIApplicationScope_[];
|
|
9056
|
+
MJ_APIScopes_ParentIDArray: MJAPIScope_[];
|
|
8810
9057
|
}
|
|
8811
9058
|
export declare class CreateMJAPIScopeInput {
|
|
8812
9059
|
ID?: string;
|
|
8813
9060
|
Name?: string;
|
|
8814
9061
|
Category?: string;
|
|
8815
9062
|
Description: string | null;
|
|
9063
|
+
ParentID: string | null;
|
|
9064
|
+
FullPath?: string;
|
|
9065
|
+
ResourceType: string | null;
|
|
9066
|
+
IsActive?: boolean;
|
|
9067
|
+
UIConfig: string | null;
|
|
8816
9068
|
}
|
|
8817
9069
|
export declare class UpdateMJAPIScopeInput {
|
|
8818
9070
|
ID: string;
|
|
8819
9071
|
Name?: string;
|
|
8820
9072
|
Category?: string;
|
|
8821
9073
|
Description?: string | null;
|
|
9074
|
+
ParentID?: string | null;
|
|
9075
|
+
FullPath?: string;
|
|
9076
|
+
ResourceType?: string | null;
|
|
9077
|
+
IsActive?: boolean;
|
|
9078
|
+
UIConfig?: string | null;
|
|
8822
9079
|
OldValues___?: KeyValuePairInput[];
|
|
8823
9080
|
}
|
|
8824
9081
|
export declare class RunMJAPIScopeViewResult {
|
|
@@ -8836,6 +9093,8 @@ export declare class MJAPIScopeResolver extends ResolverBase {
|
|
|
8836
9093
|
RunMJAPIScopeDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
8837
9094
|
MJAPIScope(ID: string, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJAPIScope_ | null>;
|
|
8838
9095
|
MJ_APIKeyScopes_ScopeIDArray(mjapiscope_: MJAPIScope_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
9096
|
+
MJ_APIApplicationScopes_ScopeIDArray(mjapiscope_: MJAPIScope_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
9097
|
+
MJ_APIScopes_ParentIDArray(mjapiscope_: MJAPIScope_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
8839
9098
|
CreateMJAPIScope(input: CreateMJAPIScopeInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
8840
9099
|
UpdateMJAPIScope(input: UpdateMJAPIScopeInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
8841
9100
|
DeleteMJAPIScope(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -10008,6 +10267,7 @@ export declare class MJCredentialType_ {
|
|
|
10008
10267
|
_mj__CreatedAt: Date;
|
|
10009
10268
|
_mj__UpdatedAt: Date;
|
|
10010
10269
|
MJ_Credentials_CredentialTypeIDArray: MJCredential_[];
|
|
10270
|
+
MJ_MCPServers_CredentialTypeIDArray: MJMCPServer_[];
|
|
10011
10271
|
MJ_AIVendors_CredentialTypeIDArray: MJAIVendor_[];
|
|
10012
10272
|
}
|
|
10013
10273
|
export declare class CreateMJCredentialTypeInput {
|
|
@@ -10044,6 +10304,7 @@ export declare class MJCredentialTypeResolver extends ResolverBase {
|
|
|
10044
10304
|
RunMJCredentialTypeDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
10045
10305
|
MJCredentialType(ID: string, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJCredentialType_ | null>;
|
|
10046
10306
|
MJ_Credentials_CredentialTypeIDArray(mjcredentialtype_: MJCredentialType_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
10307
|
+
MJ_MCPServers_CredentialTypeIDArray(mjcredentialtype_: MJCredentialType_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
10047
10308
|
MJ_AIVendors_CredentialTypeIDArray(mjcredentialtype_: MJCredentialType_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
10048
10309
|
CreateMJCredentialType(input: CreateMJCredentialTypeInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
10049
10310
|
UpdateMJCredentialType(input: UpdateMJCredentialTypeInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -10067,6 +10328,7 @@ export declare class MJCredential_ {
|
|
|
10067
10328
|
CredentialType: string;
|
|
10068
10329
|
Category?: string;
|
|
10069
10330
|
MJ_FileStorageAccounts_CredentialIDArray: MJFileStorageAccount_[];
|
|
10331
|
+
MJ_MCPServerConnections_CredentialIDArray: MJMCPServerConnection_[];
|
|
10070
10332
|
MJ_AICredentialBindings_CredentialIDArray: MJAICredentialBinding_[];
|
|
10071
10333
|
}
|
|
10072
10334
|
export declare class CreateMJCredentialInput {
|
|
@@ -10113,6 +10375,7 @@ export declare class MJCredentialResolver extends ResolverBase {
|
|
|
10113
10375
|
RunMJCredentialDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
10114
10376
|
MJCredential(ID: string, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJCredential_ | null>;
|
|
10115
10377
|
MJ_FileStorageAccounts_CredentialIDArray(mjcredential_: MJCredential_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
10378
|
+
MJ_MCPServerConnections_CredentialIDArray(mjcredential_: MJCredential_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
10116
10379
|
MJ_AICredentialBindings_CredentialIDArray(mjcredential_: MJCredential_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
10117
10380
|
CreateMJCredential(input: CreateMJCredentialInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
10118
10381
|
UpdateMJCredential(input: UpdateMJCredentialInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -10787,6 +11050,416 @@ export declare class MJListShareResolver extends ResolverBase {
|
|
|
10787
11050
|
UpdateMJListShare(input: UpdateMJListShareInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
10788
11051
|
DeleteMJListShare(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
10789
11052
|
}
|
|
11053
|
+
export declare class MJMCPServerConnectionPermission_ {
|
|
11054
|
+
ID: string;
|
|
11055
|
+
MCPServerConnectionID: string;
|
|
11056
|
+
UserID?: string;
|
|
11057
|
+
RoleID?: string;
|
|
11058
|
+
CanExecute: boolean;
|
|
11059
|
+
CanModify: boolean;
|
|
11060
|
+
CanViewCredentials: boolean;
|
|
11061
|
+
_mj__CreatedAt: Date;
|
|
11062
|
+
_mj__UpdatedAt: Date;
|
|
11063
|
+
MCPServerConnection: string;
|
|
11064
|
+
User?: string;
|
|
11065
|
+
Role?: string;
|
|
11066
|
+
}
|
|
11067
|
+
export declare class CreateMJMCPServerConnectionPermissionInput {
|
|
11068
|
+
ID?: string;
|
|
11069
|
+
MCPServerConnectionID?: string;
|
|
11070
|
+
UserID: string | null;
|
|
11071
|
+
RoleID: string | null;
|
|
11072
|
+
CanExecute?: boolean;
|
|
11073
|
+
CanModify?: boolean;
|
|
11074
|
+
CanViewCredentials?: boolean;
|
|
11075
|
+
}
|
|
11076
|
+
export declare class UpdateMJMCPServerConnectionPermissionInput {
|
|
11077
|
+
ID: string;
|
|
11078
|
+
MCPServerConnectionID?: string;
|
|
11079
|
+
UserID?: string | null;
|
|
11080
|
+
RoleID?: string | null;
|
|
11081
|
+
CanExecute?: boolean;
|
|
11082
|
+
CanModify?: boolean;
|
|
11083
|
+
CanViewCredentials?: boolean;
|
|
11084
|
+
OldValues___?: KeyValuePairInput[];
|
|
11085
|
+
}
|
|
11086
|
+
export declare class RunMJMCPServerConnectionPermissionViewResult {
|
|
11087
|
+
Results: MJMCPServerConnectionPermission_[];
|
|
11088
|
+
UserViewRunID?: string;
|
|
11089
|
+
RowCount: number;
|
|
11090
|
+
TotalRowCount: number;
|
|
11091
|
+
ExecutionTime: number;
|
|
11092
|
+
ErrorMessage?: string;
|
|
11093
|
+
Success: boolean;
|
|
11094
|
+
}
|
|
11095
|
+
export declare class MJMCPServerConnectionPermissionResolver extends ResolverBase {
|
|
11096
|
+
RunMJMCPServerConnectionPermissionViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
11097
|
+
RunMJMCPServerConnectionPermissionViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
11098
|
+
RunMJMCPServerConnectionPermissionDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
11099
|
+
MJMCPServerConnectionPermission(ID: string, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJMCPServerConnectionPermission_ | null>;
|
|
11100
|
+
CreateMJMCPServerConnectionPermission(input: CreateMJMCPServerConnectionPermissionInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
11101
|
+
UpdateMJMCPServerConnectionPermission(input: UpdateMJMCPServerConnectionPermissionInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
11102
|
+
DeleteMJMCPServerConnectionPermission(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
11103
|
+
}
|
|
11104
|
+
export declare class MJMCPServerConnectionTool_ {
|
|
11105
|
+
ID: string;
|
|
11106
|
+
MCPServerConnectionID: string;
|
|
11107
|
+
MCPServerToolID: string;
|
|
11108
|
+
IsEnabled: boolean;
|
|
11109
|
+
DefaultInputValues?: string;
|
|
11110
|
+
MaxCallsPerMinute?: number;
|
|
11111
|
+
_mj__CreatedAt: Date;
|
|
11112
|
+
_mj__UpdatedAt: Date;
|
|
11113
|
+
MCPServerConnection: string;
|
|
11114
|
+
MCPServerTool?: string;
|
|
11115
|
+
}
|
|
11116
|
+
export declare class CreateMJMCPServerConnectionToolInput {
|
|
11117
|
+
ID?: string;
|
|
11118
|
+
MCPServerConnectionID?: string;
|
|
11119
|
+
MCPServerToolID?: string;
|
|
11120
|
+
IsEnabled?: boolean;
|
|
11121
|
+
DefaultInputValues: string | null;
|
|
11122
|
+
MaxCallsPerMinute: number | null;
|
|
11123
|
+
}
|
|
11124
|
+
export declare class UpdateMJMCPServerConnectionToolInput {
|
|
11125
|
+
ID: string;
|
|
11126
|
+
MCPServerConnectionID?: string;
|
|
11127
|
+
MCPServerToolID?: string;
|
|
11128
|
+
IsEnabled?: boolean;
|
|
11129
|
+
DefaultInputValues?: string | null;
|
|
11130
|
+
MaxCallsPerMinute?: number | null;
|
|
11131
|
+
OldValues___?: KeyValuePairInput[];
|
|
11132
|
+
}
|
|
11133
|
+
export declare class RunMJMCPServerConnectionToolViewResult {
|
|
11134
|
+
Results: MJMCPServerConnectionTool_[];
|
|
11135
|
+
UserViewRunID?: string;
|
|
11136
|
+
RowCount: number;
|
|
11137
|
+
TotalRowCount: number;
|
|
11138
|
+
ExecutionTime: number;
|
|
11139
|
+
ErrorMessage?: string;
|
|
11140
|
+
Success: boolean;
|
|
11141
|
+
}
|
|
11142
|
+
export declare class MJMCPServerConnectionToolResolver extends ResolverBase {
|
|
11143
|
+
RunMJMCPServerConnectionToolViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
11144
|
+
RunMJMCPServerConnectionToolViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
11145
|
+
RunMJMCPServerConnectionToolDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
11146
|
+
MJMCPServerConnectionTool(ID: string, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJMCPServerConnectionTool_ | null>;
|
|
11147
|
+
CreateMJMCPServerConnectionTool(input: CreateMJMCPServerConnectionToolInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
11148
|
+
UpdateMJMCPServerConnectionTool(input: UpdateMJMCPServerConnectionToolInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
11149
|
+
DeleteMJMCPServerConnectionTool(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
11150
|
+
}
|
|
11151
|
+
export declare class MJMCPServerConnection_ {
|
|
11152
|
+
ID: string;
|
|
11153
|
+
MCPServerID: string;
|
|
11154
|
+
Name: string;
|
|
11155
|
+
Description?: string;
|
|
11156
|
+
CredentialID?: string;
|
|
11157
|
+
CustomHeaderName?: string;
|
|
11158
|
+
CompanyID?: string;
|
|
11159
|
+
Status: string;
|
|
11160
|
+
AutoSyncTools: boolean;
|
|
11161
|
+
AutoGenerateActions: boolean;
|
|
11162
|
+
LogToolCalls: boolean;
|
|
11163
|
+
LogInputParameters: boolean;
|
|
11164
|
+
LogOutputContent: boolean;
|
|
11165
|
+
MaxOutputLogSize?: number;
|
|
11166
|
+
LastConnectedAt?: Date;
|
|
11167
|
+
LastErrorMessage?: string;
|
|
11168
|
+
EnvironmentVars?: string;
|
|
11169
|
+
_mj__CreatedAt: Date;
|
|
11170
|
+
_mj__UpdatedAt: Date;
|
|
11171
|
+
MCPServer: string;
|
|
11172
|
+
Credential?: string;
|
|
11173
|
+
Company?: string;
|
|
11174
|
+
MJ_MCPServerConnectionTools_MCPServerConnectionIDArray: MJMCPServerConnectionTool_[];
|
|
11175
|
+
MJ_MCPToolExecutionLogs_MCPServerConnectionIDArray: MJMCPToolExecutionLog_[];
|
|
11176
|
+
MJ_MCPServerConnectionPermissions_MCPServerConnectionIDArray: MJMCPServerConnectionPermission_[];
|
|
11177
|
+
}
|
|
11178
|
+
export declare class CreateMJMCPServerConnectionInput {
|
|
11179
|
+
ID?: string;
|
|
11180
|
+
MCPServerID?: string;
|
|
11181
|
+
Name?: string;
|
|
11182
|
+
Description: string | null;
|
|
11183
|
+
CredentialID: string | null;
|
|
11184
|
+
CustomHeaderName: string | null;
|
|
11185
|
+
CompanyID: string | null;
|
|
11186
|
+
Status?: string;
|
|
11187
|
+
AutoSyncTools?: boolean;
|
|
11188
|
+
AutoGenerateActions?: boolean;
|
|
11189
|
+
LogToolCalls?: boolean;
|
|
11190
|
+
LogInputParameters?: boolean;
|
|
11191
|
+
LogOutputContent?: boolean;
|
|
11192
|
+
MaxOutputLogSize?: number | null;
|
|
11193
|
+
LastConnectedAt: Date | null;
|
|
11194
|
+
LastErrorMessage: string | null;
|
|
11195
|
+
EnvironmentVars: string | null;
|
|
11196
|
+
}
|
|
11197
|
+
export declare class UpdateMJMCPServerConnectionInput {
|
|
11198
|
+
ID: string;
|
|
11199
|
+
MCPServerID?: string;
|
|
11200
|
+
Name?: string;
|
|
11201
|
+
Description?: string | null;
|
|
11202
|
+
CredentialID?: string | null;
|
|
11203
|
+
CustomHeaderName?: string | null;
|
|
11204
|
+
CompanyID?: string | null;
|
|
11205
|
+
Status?: string;
|
|
11206
|
+
AutoSyncTools?: boolean;
|
|
11207
|
+
AutoGenerateActions?: boolean;
|
|
11208
|
+
LogToolCalls?: boolean;
|
|
11209
|
+
LogInputParameters?: boolean;
|
|
11210
|
+
LogOutputContent?: boolean;
|
|
11211
|
+
MaxOutputLogSize?: number | null;
|
|
11212
|
+
LastConnectedAt?: Date | null;
|
|
11213
|
+
LastErrorMessage?: string | null;
|
|
11214
|
+
EnvironmentVars?: string | null;
|
|
11215
|
+
OldValues___?: KeyValuePairInput[];
|
|
11216
|
+
}
|
|
11217
|
+
export declare class RunMJMCPServerConnectionViewResult {
|
|
11218
|
+
Results: MJMCPServerConnection_[];
|
|
11219
|
+
UserViewRunID?: string;
|
|
11220
|
+
RowCount: number;
|
|
11221
|
+
TotalRowCount: number;
|
|
11222
|
+
ExecutionTime: number;
|
|
11223
|
+
ErrorMessage?: string;
|
|
11224
|
+
Success: boolean;
|
|
11225
|
+
}
|
|
11226
|
+
export declare class MJMCPServerConnectionResolver extends ResolverBase {
|
|
11227
|
+
RunMJMCPServerConnectionViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
11228
|
+
RunMJMCPServerConnectionViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
11229
|
+
RunMJMCPServerConnectionDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
11230
|
+
MJMCPServerConnection(ID: string, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJMCPServerConnection_ | null>;
|
|
11231
|
+
MJ_MCPServerConnectionTools_MCPServerConnectionIDArray(mjmcpserverconnection_: MJMCPServerConnection_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
11232
|
+
MJ_MCPToolExecutionLogs_MCPServerConnectionIDArray(mjmcpserverconnection_: MJMCPServerConnection_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
11233
|
+
MJ_MCPServerConnectionPermissions_MCPServerConnectionIDArray(mjmcpserverconnection_: MJMCPServerConnection_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
11234
|
+
CreateMJMCPServerConnection(input: CreateMJMCPServerConnectionInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
11235
|
+
UpdateMJMCPServerConnection(input: UpdateMJMCPServerConnectionInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
11236
|
+
DeleteMJMCPServerConnection(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
11237
|
+
}
|
|
11238
|
+
export declare class MJMCPServerTool_ {
|
|
11239
|
+
ID: string;
|
|
11240
|
+
MCPServerID: string;
|
|
11241
|
+
ToolName: string;
|
|
11242
|
+
ToolTitle?: string;
|
|
11243
|
+
ToolDescription?: string;
|
|
11244
|
+
InputSchema: string;
|
|
11245
|
+
OutputSchema?: string;
|
|
11246
|
+
Annotations?: string;
|
|
11247
|
+
Status: string;
|
|
11248
|
+
DiscoveredAt: Date;
|
|
11249
|
+
LastSeenAt: Date;
|
|
11250
|
+
GeneratedActionID?: string;
|
|
11251
|
+
GeneratedActionCategoryID?: string;
|
|
11252
|
+
_mj__CreatedAt: Date;
|
|
11253
|
+
_mj__UpdatedAt: Date;
|
|
11254
|
+
MCPServer: string;
|
|
11255
|
+
GeneratedAction?: string;
|
|
11256
|
+
GeneratedActionCategory?: string;
|
|
11257
|
+
MJ_MCPServerConnectionTools_MCPServerToolIDArray: MJMCPServerConnectionTool_[];
|
|
11258
|
+
MJ_MCPToolExecutionLogs_MCPServerToolIDArray: MJMCPToolExecutionLog_[];
|
|
11259
|
+
}
|
|
11260
|
+
export declare class CreateMJMCPServerToolInput {
|
|
11261
|
+
ID?: string;
|
|
11262
|
+
MCPServerID?: string;
|
|
11263
|
+
ToolName?: string;
|
|
11264
|
+
ToolTitle: string | null;
|
|
11265
|
+
ToolDescription: string | null;
|
|
11266
|
+
InputSchema?: string;
|
|
11267
|
+
OutputSchema: string | null;
|
|
11268
|
+
Annotations: string | null;
|
|
11269
|
+
Status?: string;
|
|
11270
|
+
DiscoveredAt?: Date;
|
|
11271
|
+
LastSeenAt?: Date;
|
|
11272
|
+
GeneratedActionID: string | null;
|
|
11273
|
+
GeneratedActionCategoryID: string | null;
|
|
11274
|
+
}
|
|
11275
|
+
export declare class UpdateMJMCPServerToolInput {
|
|
11276
|
+
ID: string;
|
|
11277
|
+
MCPServerID?: string;
|
|
11278
|
+
ToolName?: string;
|
|
11279
|
+
ToolTitle?: string | null;
|
|
11280
|
+
ToolDescription?: string | null;
|
|
11281
|
+
InputSchema?: string;
|
|
11282
|
+
OutputSchema?: string | null;
|
|
11283
|
+
Annotations?: string | null;
|
|
11284
|
+
Status?: string;
|
|
11285
|
+
DiscoveredAt?: Date;
|
|
11286
|
+
LastSeenAt?: Date;
|
|
11287
|
+
GeneratedActionID?: string | null;
|
|
11288
|
+
GeneratedActionCategoryID?: string | null;
|
|
11289
|
+
OldValues___?: KeyValuePairInput[];
|
|
11290
|
+
}
|
|
11291
|
+
export declare class RunMJMCPServerToolViewResult {
|
|
11292
|
+
Results: MJMCPServerTool_[];
|
|
11293
|
+
UserViewRunID?: string;
|
|
11294
|
+
RowCount: number;
|
|
11295
|
+
TotalRowCount: number;
|
|
11296
|
+
ExecutionTime: number;
|
|
11297
|
+
ErrorMessage?: string;
|
|
11298
|
+
Success: boolean;
|
|
11299
|
+
}
|
|
11300
|
+
export declare class MJMCPServerToolResolver extends ResolverBase {
|
|
11301
|
+
RunMJMCPServerToolViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
11302
|
+
RunMJMCPServerToolViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
11303
|
+
RunMJMCPServerToolDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
11304
|
+
MJMCPServerTool(ID: string, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJMCPServerTool_ | null>;
|
|
11305
|
+
MJ_MCPServerConnectionTools_MCPServerToolIDArray(mjmcpservertool_: MJMCPServerTool_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
11306
|
+
MJ_MCPToolExecutionLogs_MCPServerToolIDArray(mjmcpservertool_: MJMCPServerTool_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
11307
|
+
CreateMJMCPServerTool(input: CreateMJMCPServerToolInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
11308
|
+
UpdateMJMCPServerTool(input: UpdateMJMCPServerToolInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
11309
|
+
DeleteMJMCPServerTool(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
11310
|
+
}
|
|
11311
|
+
export declare class MJMCPServer_ {
|
|
11312
|
+
ID: string;
|
|
11313
|
+
Name: string;
|
|
11314
|
+
Description?: string;
|
|
11315
|
+
ServerURL?: string;
|
|
11316
|
+
Command?: string;
|
|
11317
|
+
CommandArgs?: string;
|
|
11318
|
+
TransportType: string;
|
|
11319
|
+
DefaultAuthType: string;
|
|
11320
|
+
CredentialTypeID?: string;
|
|
11321
|
+
Status: string;
|
|
11322
|
+
LastSyncAt?: Date;
|
|
11323
|
+
RateLimitPerMinute?: number;
|
|
11324
|
+
RateLimitPerHour?: number;
|
|
11325
|
+
ConnectionTimeoutMs?: number;
|
|
11326
|
+
RequestTimeoutMs?: number;
|
|
11327
|
+
DocumentationURL?: string;
|
|
11328
|
+
IconClass?: string;
|
|
11329
|
+
_mj__CreatedAt: Date;
|
|
11330
|
+
_mj__UpdatedAt: Date;
|
|
11331
|
+
CredentialType?: string;
|
|
11332
|
+
MJ_MCPServerConnections_MCPServerIDArray: MJMCPServerConnection_[];
|
|
11333
|
+
MJ_MCPServerTools_MCPServerIDArray: MJMCPServerTool_[];
|
|
11334
|
+
}
|
|
11335
|
+
export declare class CreateMJMCPServerInput {
|
|
11336
|
+
ID?: string;
|
|
11337
|
+
Name?: string;
|
|
11338
|
+
Description: string | null;
|
|
11339
|
+
ServerURL: string | null;
|
|
11340
|
+
Command: string | null;
|
|
11341
|
+
CommandArgs: string | null;
|
|
11342
|
+
TransportType?: string;
|
|
11343
|
+
DefaultAuthType?: string;
|
|
11344
|
+
CredentialTypeID: string | null;
|
|
11345
|
+
Status?: string;
|
|
11346
|
+
LastSyncAt: Date | null;
|
|
11347
|
+
RateLimitPerMinute: number | null;
|
|
11348
|
+
RateLimitPerHour: number | null;
|
|
11349
|
+
ConnectionTimeoutMs?: number | null;
|
|
11350
|
+
RequestTimeoutMs?: number | null;
|
|
11351
|
+
DocumentationURL: string | null;
|
|
11352
|
+
IconClass: string | null;
|
|
11353
|
+
}
|
|
11354
|
+
export declare class UpdateMJMCPServerInput {
|
|
11355
|
+
ID: string;
|
|
11356
|
+
Name?: string;
|
|
11357
|
+
Description?: string | null;
|
|
11358
|
+
ServerURL?: string | null;
|
|
11359
|
+
Command?: string | null;
|
|
11360
|
+
CommandArgs?: string | null;
|
|
11361
|
+
TransportType?: string;
|
|
11362
|
+
DefaultAuthType?: string;
|
|
11363
|
+
CredentialTypeID?: string | null;
|
|
11364
|
+
Status?: string;
|
|
11365
|
+
LastSyncAt?: Date | null;
|
|
11366
|
+
RateLimitPerMinute?: number | null;
|
|
11367
|
+
RateLimitPerHour?: number | null;
|
|
11368
|
+
ConnectionTimeoutMs?: number | null;
|
|
11369
|
+
RequestTimeoutMs?: number | null;
|
|
11370
|
+
DocumentationURL?: string | null;
|
|
11371
|
+
IconClass?: string | null;
|
|
11372
|
+
OldValues___?: KeyValuePairInput[];
|
|
11373
|
+
}
|
|
11374
|
+
export declare class RunMJMCPServerViewResult {
|
|
11375
|
+
Results: MJMCPServer_[];
|
|
11376
|
+
UserViewRunID?: string;
|
|
11377
|
+
RowCount: number;
|
|
11378
|
+
TotalRowCount: number;
|
|
11379
|
+
ExecutionTime: number;
|
|
11380
|
+
ErrorMessage?: string;
|
|
11381
|
+
Success: boolean;
|
|
11382
|
+
}
|
|
11383
|
+
export declare class MJMCPServerResolver extends ResolverBase {
|
|
11384
|
+
RunMJMCPServerViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
11385
|
+
RunMJMCPServerViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
11386
|
+
RunMJMCPServerDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
11387
|
+
MJMCPServer(ID: string, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJMCPServer_ | null>;
|
|
11388
|
+
MJ_MCPServerConnections_MCPServerIDArray(mjmcpserver_: MJMCPServer_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
11389
|
+
MJ_MCPServerTools_MCPServerIDArray(mjmcpserver_: MJMCPServer_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
11390
|
+
CreateMJMCPServer(input: CreateMJMCPServerInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
11391
|
+
UpdateMJMCPServer(input: UpdateMJMCPServerInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
11392
|
+
DeleteMJMCPServer(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
11393
|
+
}
|
|
11394
|
+
export declare class MJMCPToolExecutionLog_ {
|
|
11395
|
+
ID: string;
|
|
11396
|
+
MCPServerConnectionID: string;
|
|
11397
|
+
MCPServerToolID?: string;
|
|
11398
|
+
ToolName: string;
|
|
11399
|
+
UserID: string;
|
|
11400
|
+
StartedAt: Date;
|
|
11401
|
+
EndedAt?: Date;
|
|
11402
|
+
DurationMs?: number;
|
|
11403
|
+
Success: boolean;
|
|
11404
|
+
ErrorMessage?: string;
|
|
11405
|
+
InputParameters?: string;
|
|
11406
|
+
OutputContent?: string;
|
|
11407
|
+
OutputTruncated: boolean;
|
|
11408
|
+
_mj__CreatedAt: Date;
|
|
11409
|
+
_mj__UpdatedAt: Date;
|
|
11410
|
+
MCPServerConnection: string;
|
|
11411
|
+
MCPServerTool?: string;
|
|
11412
|
+
User: string;
|
|
11413
|
+
}
|
|
11414
|
+
export declare class CreateMJMCPToolExecutionLogInput {
|
|
11415
|
+
ID?: string;
|
|
11416
|
+
MCPServerConnectionID?: string;
|
|
11417
|
+
MCPServerToolID: string | null;
|
|
11418
|
+
ToolName?: string;
|
|
11419
|
+
UserID?: string;
|
|
11420
|
+
StartedAt?: Date;
|
|
11421
|
+
EndedAt: Date | null;
|
|
11422
|
+
DurationMs: number | null;
|
|
11423
|
+
Success?: boolean;
|
|
11424
|
+
ErrorMessage: string | null;
|
|
11425
|
+
InputParameters: string | null;
|
|
11426
|
+
OutputContent: string | null;
|
|
11427
|
+
OutputTruncated?: boolean;
|
|
11428
|
+
}
|
|
11429
|
+
export declare class UpdateMJMCPToolExecutionLogInput {
|
|
11430
|
+
ID: string;
|
|
11431
|
+
MCPServerConnectionID?: string;
|
|
11432
|
+
MCPServerToolID?: string | null;
|
|
11433
|
+
ToolName?: string;
|
|
11434
|
+
UserID?: string;
|
|
11435
|
+
StartedAt?: Date;
|
|
11436
|
+
EndedAt?: Date | null;
|
|
11437
|
+
DurationMs?: number | null;
|
|
11438
|
+
Success?: boolean;
|
|
11439
|
+
ErrorMessage?: string | null;
|
|
11440
|
+
InputParameters?: string | null;
|
|
11441
|
+
OutputContent?: string | null;
|
|
11442
|
+
OutputTruncated?: boolean;
|
|
11443
|
+
OldValues___?: KeyValuePairInput[];
|
|
11444
|
+
}
|
|
11445
|
+
export declare class RunMJMCPToolExecutionLogViewResult {
|
|
11446
|
+
Results: MJMCPToolExecutionLog_[];
|
|
11447
|
+
UserViewRunID?: string;
|
|
11448
|
+
RowCount: number;
|
|
11449
|
+
TotalRowCount: number;
|
|
11450
|
+
ExecutionTime: number;
|
|
11451
|
+
ErrorMessage?: string;
|
|
11452
|
+
Success: boolean;
|
|
11453
|
+
}
|
|
11454
|
+
export declare class MJMCPToolExecutionLogResolver extends ResolverBase {
|
|
11455
|
+
RunMJMCPToolExecutionLogViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
11456
|
+
RunMJMCPToolExecutionLogViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
11457
|
+
RunMJMCPToolExecutionLogDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
11458
|
+
MJMCPToolExecutionLog(ID: string, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJMCPToolExecutionLog_ | null>;
|
|
11459
|
+
CreateMJMCPToolExecutionLog(input: CreateMJMCPToolExecutionLogInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
11460
|
+
UpdateMJMCPToolExecutionLog(input: UpdateMJMCPToolExecutionLogInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
11461
|
+
DeleteMJMCPToolExecutionLog(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
11462
|
+
}
|
|
10790
11463
|
export declare class MJProject_ {
|
|
10791
11464
|
ID: string;
|
|
10792
11465
|
EnvironmentID: string;
|
|
@@ -13633,6 +14306,7 @@ export declare class MJRole_ {
|
|
|
13633
14306
|
AuthorizationRoles_RoleNameArray: MJAuthorizationRole_[];
|
|
13634
14307
|
QueryPermissions_RoleNameArray: MJQueryPermission_[];
|
|
13635
14308
|
ResourcePermissions_RoleIDArray: MJResourcePermission_[];
|
|
14309
|
+
MJ_MCPServerConnectionPermissions_RoleIDArray: MJMCPServerConnectionPermission_[];
|
|
13636
14310
|
MJ_AIAgentPermissions_RoleIDArray: MJAIAgentPermission_[];
|
|
13637
14311
|
}
|
|
13638
14312
|
export declare class CreateMJRoleInput {
|
|
@@ -13671,6 +14345,7 @@ export declare class MJRoleResolver extends ResolverBase {
|
|
|
13671
14345
|
AuthorizationRoles_RoleNameArray(mjrole_: MJRole_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
13672
14346
|
QueryPermissions_RoleNameArray(mjrole_: MJRole_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
13673
14347
|
ResourcePermissions_RoleIDArray(mjrole_: MJRole_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
14348
|
+
MJ_MCPServerConnectionPermissions_RoleIDArray(mjrole_: MJRole_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
13674
14349
|
MJ_AIAgentPermissions_RoleIDArray(mjrole_: MJRole_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
13675
14350
|
CreateMJRole(input: CreateMJRoleInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
13676
14351
|
UpdateMJRole(input: UpdateMJRoleInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -14890,8 +15565,9 @@ export declare class MJUser_ {
|
|
|
14890
15565
|
MJ_DashboardCategoryLinks_UserIDArray: MJDashboardCategoryLink_[];
|
|
14891
15566
|
MJ_DashboardCategoryPermissions_UserIDArray: MJDashboardCategoryPermission_[];
|
|
14892
15567
|
MJ_DashboardPermissions_SharedByUserIDArray: MJDashboardPermission_[];
|
|
14893
|
-
MJ_UserNotificationPreferences_UserIDArray: MJUserNotificationPreference_[];
|
|
14894
15568
|
MJ_APIKeys_UserIDArray: MJAPIKey_[];
|
|
15569
|
+
MJ_UserNotificationPreferences_UserIDArray: MJUserNotificationPreference_[];
|
|
15570
|
+
MJ_MCPToolExecutionLogs_UserIDArray: MJMCPToolExecutionLog_[];
|
|
14895
15571
|
ResourcePermissions_UserIDArray: MJResourcePermission_[];
|
|
14896
15572
|
AIAgentRequests_RequestForUserIDArray: MJAIAgentRequest_[];
|
|
14897
15573
|
ConversationDetails_UserIDArray: MJConversationDetail_[];
|
|
@@ -14904,6 +15580,7 @@ export declare class MJUser_ {
|
|
|
14904
15580
|
MJ_DashboardPermissions_UserIDArray: MJDashboardPermission_[];
|
|
14905
15581
|
MJ_DashboardCategoryPermissions_SharedByUserIDArray: MJDashboardCategoryPermission_[];
|
|
14906
15582
|
MJ_APIKeys_CreatedByUserIDArray: MJAPIKey_[];
|
|
15583
|
+
MJ_MCPServerConnectionPermissions_UserIDArray: MJMCPServerConnectionPermission_[];
|
|
14907
15584
|
MJ_AIAgentRuns_UserIDArray: MJAIAgentRun_[];
|
|
14908
15585
|
MJ_AIAgentPermissions_UserIDArray: MJAIAgentPermission_[];
|
|
14909
15586
|
MJ_Collections_OwnerIDArray: MJCollection_[];
|
|
@@ -15013,8 +15690,9 @@ export declare class MJUserResolverBase extends ResolverBase {
|
|
|
15013
15690
|
MJ_DashboardCategoryLinks_UserIDArray(mjuser_: MJUser_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
15014
15691
|
MJ_DashboardCategoryPermissions_UserIDArray(mjuser_: MJUser_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
15015
15692
|
MJ_DashboardPermissions_SharedByUserIDArray(mjuser_: MJUser_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
15016
|
-
MJ_UserNotificationPreferences_UserIDArray(mjuser_: MJUser_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
15017
15693
|
MJ_APIKeys_UserIDArray(mjuser_: MJUser_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
15694
|
+
MJ_UserNotificationPreferences_UserIDArray(mjuser_: MJUser_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
15695
|
+
MJ_MCPToolExecutionLogs_UserIDArray(mjuser_: MJUser_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
15018
15696
|
ResourcePermissions_UserIDArray(mjuser_: MJUser_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
15019
15697
|
AIAgentRequests_RequestForUserIDArray(mjuser_: MJUser_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
15020
15698
|
ConversationDetails_UserIDArray(mjuser_: MJUser_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
@@ -15027,6 +15705,7 @@ export declare class MJUserResolverBase extends ResolverBase {
|
|
|
15027
15705
|
MJ_DashboardPermissions_UserIDArray(mjuser_: MJUser_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
15028
15706
|
MJ_DashboardCategoryPermissions_SharedByUserIDArray(mjuser_: MJUser_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
15029
15707
|
MJ_APIKeys_CreatedByUserIDArray(mjuser_: MJUser_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
15708
|
+
MJ_MCPServerConnectionPermissions_UserIDArray(mjuser_: MJUser_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
15030
15709
|
MJ_AIAgentRuns_UserIDArray(mjuser_: MJUser_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
15031
15710
|
MJ_AIAgentPermissions_UserIDArray(mjuser_: MJUser_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
15032
15711
|
MJ_Collections_OwnerIDArray(mjuser_: MJUser_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|