@memberjunction/server 2.107.0 → 2.108.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/agents/skip-sdk.d.ts +11 -0
- package/dist/agents/skip-sdk.d.ts.map +1 -1
- package/dist/agents/skip-sdk.js +262 -3
- package/dist/agents/skip-sdk.js.map +1 -1
- package/dist/context.d.ts.map +1 -1
- package/dist/context.js +3 -2
- package/dist/context.js.map +1 -1
- package/dist/generated/generated.d.ts +106 -4
- package/dist/generated/generated.d.ts.map +1 -1
- package/dist/generated/generated.js +684 -34
- package/dist/generated/generated.js.map +1 -1
- package/dist/resolvers/RunAIAgentResolver.d.ts.map +1 -1
- package/dist/resolvers/RunAIAgentResolver.js +1 -0
- package/dist/resolvers/RunAIAgentResolver.js.map +1 -1
- package/package.json +34 -34
- package/src/agents/skip-sdk.ts +351 -8
- package/src/context.ts +3 -2
- package/src/generated/generated.ts +434 -27
- package/src/resolvers/RunAIAgentResolver.ts +1 -0
|
@@ -736,6 +736,7 @@ export declare class MJAIAgent_ {
|
|
|
736
736
|
ChatHandlingOption?: string;
|
|
737
737
|
DefaultArtifactTypeID?: string;
|
|
738
738
|
OwnerUserID: string;
|
|
739
|
+
InvocationMode: string;
|
|
739
740
|
Parent?: string;
|
|
740
741
|
ContextCompressionPrompt?: string;
|
|
741
742
|
Type?: string;
|
|
@@ -799,6 +800,7 @@ export declare class CreateMJAIAgentInput {
|
|
|
799
800
|
ChatHandlingOption: string | null;
|
|
800
801
|
DefaultArtifactTypeID: string | null;
|
|
801
802
|
OwnerUserID?: string;
|
|
803
|
+
InvocationMode?: string;
|
|
802
804
|
}
|
|
803
805
|
export declare class UpdateMJAIAgentInput {
|
|
804
806
|
ID: string;
|
|
@@ -838,6 +840,7 @@ export declare class UpdateMJAIAgentInput {
|
|
|
838
840
|
ChatHandlingOption?: string | null;
|
|
839
841
|
DefaultArtifactTypeID?: string | null;
|
|
840
842
|
OwnerUserID?: string;
|
|
843
|
+
InvocationMode?: string;
|
|
841
844
|
OldValues___?: KeyValuePairInput[];
|
|
842
845
|
}
|
|
843
846
|
export declare class RunMJAIAgentViewResult {
|
|
@@ -1278,8 +1281,14 @@ export declare class MJAIAgentAction_ {
|
|
|
1278
1281
|
_mj__UpdatedAt: Date;
|
|
1279
1282
|
MinExecutionsPerRun?: number;
|
|
1280
1283
|
MaxExecutionsPerRun?: number;
|
|
1284
|
+
ResultExpirationTurns?: number;
|
|
1285
|
+
ResultExpirationMode: string;
|
|
1286
|
+
CompactMode?: string;
|
|
1287
|
+
CompactLength?: number;
|
|
1288
|
+
CompactPromptID?: string;
|
|
1281
1289
|
Agent?: string;
|
|
1282
1290
|
Action?: string;
|
|
1291
|
+
CompactPrompt?: string;
|
|
1283
1292
|
}
|
|
1284
1293
|
export declare class CreateMJAIAgentActionInput {
|
|
1285
1294
|
ID?: string;
|
|
@@ -1288,6 +1297,11 @@ export declare class CreateMJAIAgentActionInput {
|
|
|
1288
1297
|
Status?: string;
|
|
1289
1298
|
MinExecutionsPerRun: number | null;
|
|
1290
1299
|
MaxExecutionsPerRun: number | null;
|
|
1300
|
+
ResultExpirationTurns: number | null;
|
|
1301
|
+
ResultExpirationMode?: string;
|
|
1302
|
+
CompactMode: string | null;
|
|
1303
|
+
CompactLength: number | null;
|
|
1304
|
+
CompactPromptID: string | null;
|
|
1291
1305
|
}
|
|
1292
1306
|
export declare class UpdateMJAIAgentActionInput {
|
|
1293
1307
|
ID: string;
|
|
@@ -1296,6 +1310,11 @@ export declare class UpdateMJAIAgentActionInput {
|
|
|
1296
1310
|
Status?: string;
|
|
1297
1311
|
MinExecutionsPerRun?: number | null;
|
|
1298
1312
|
MaxExecutionsPerRun?: number | null;
|
|
1313
|
+
ResultExpirationTurns?: number | null;
|
|
1314
|
+
ResultExpirationMode?: string;
|
|
1315
|
+
CompactMode?: string | null;
|
|
1316
|
+
CompactLength?: number | null;
|
|
1317
|
+
CompactPromptID?: string | null;
|
|
1299
1318
|
OldValues___?: KeyValuePairInput[];
|
|
1300
1319
|
}
|
|
1301
1320
|
export declare class RunMJAIAgentActionViewResult {
|
|
@@ -1447,10 +1466,13 @@ export declare class MJCollection_ {
|
|
|
1447
1466
|
Sequence?: number;
|
|
1448
1467
|
_mj__CreatedAt: Date;
|
|
1449
1468
|
_mj__UpdatedAt: Date;
|
|
1469
|
+
OwnerID?: string;
|
|
1450
1470
|
Environment: string;
|
|
1451
1471
|
Parent?: string;
|
|
1472
|
+
Owner?: string;
|
|
1452
1473
|
RootParentID?: string;
|
|
1453
1474
|
MJ_CollectionArtifacts_CollectionIDArray: MJCollectionArtifact_[];
|
|
1475
|
+
MJ_CollectionPermissions_CollectionIDArray: MJCollectionPermission_[];
|
|
1454
1476
|
MJ_Collections_ParentIDArray: MJCollection_[];
|
|
1455
1477
|
}
|
|
1456
1478
|
export declare class CreateMJCollectionInput {
|
|
@@ -1462,6 +1484,7 @@ export declare class CreateMJCollectionInput {
|
|
|
1462
1484
|
Icon: string | null;
|
|
1463
1485
|
Color: string | null;
|
|
1464
1486
|
Sequence: number | null;
|
|
1487
|
+
OwnerID: string | null;
|
|
1465
1488
|
}
|
|
1466
1489
|
export declare class UpdateMJCollectionInput {
|
|
1467
1490
|
ID: string;
|
|
@@ -1472,6 +1495,7 @@ export declare class UpdateMJCollectionInput {
|
|
|
1472
1495
|
Icon?: string | null;
|
|
1473
1496
|
Color?: string | null;
|
|
1474
1497
|
Sequence?: number | null;
|
|
1498
|
+
OwnerID?: string | null;
|
|
1475
1499
|
OldValues___?: KeyValuePairInput[];
|
|
1476
1500
|
}
|
|
1477
1501
|
export declare class RunMJCollectionViewResult {
|
|
@@ -1489,6 +1513,7 @@ export declare class MJCollectionResolver extends ResolverBase {
|
|
|
1489
1513
|
RunMJCollectionDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
1490
1514
|
MJCollection(ID: string, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJCollection_ | null>;
|
|
1491
1515
|
MJ_CollectionArtifacts_CollectionIDArray(mjcollection_: MJCollection_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
1516
|
+
MJ_CollectionPermissions_CollectionIDArray(mjcollection_: MJCollection_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
1492
1517
|
MJ_Collections_ParentIDArray(mjcollection_: MJCollection_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
1493
1518
|
CreateMJCollection(input: CreateMJCollectionInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1494
1519
|
UpdateMJCollection(input: UpdateMJCollectionInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -1608,6 +1633,7 @@ export declare class MJAIPrompt_ {
|
|
|
1608
1633
|
AIResultCache_AIPromptIDArray: MJAIResultCache_[];
|
|
1609
1634
|
MJ_AIConfigurations_DefaultPromptForContextCompressionIDArray: MJAIConfiguration_[];
|
|
1610
1635
|
MJ_AIAgentTypes_SystemPromptIDArray: MJAIAgentType_[];
|
|
1636
|
+
AIAgentActions_CompactPromptIDArray: MJAIAgentAction_[];
|
|
1611
1637
|
MJ_AIConfigurations_DefaultPromptForContextSummarizationIDArray: MJAIConfiguration_[];
|
|
1612
1638
|
AIPrompts_ResultSelectorPromptIDArray: MJAIPrompt_[];
|
|
1613
1639
|
MJ_AIPromptModels_PromptIDArray: MJAIPromptModel_[];
|
|
@@ -1615,6 +1641,7 @@ export declare class MJAIPrompt_ {
|
|
|
1615
1641
|
MJ_AIAgentSteps_PromptIDArray: MJAIAgentStep_[];
|
|
1616
1642
|
MJ_AIPromptRuns_PromptIDArray: MJAIPromptRun_[];
|
|
1617
1643
|
AIAgents_ContextCompressionPromptIDArray: MJAIAgent_[];
|
|
1644
|
+
Actions_DefaultCompactPromptIDArray: MJAction_[];
|
|
1618
1645
|
}
|
|
1619
1646
|
export declare class CreateMJAIPromptInput {
|
|
1620
1647
|
ID?: string;
|
|
@@ -1736,6 +1763,7 @@ export declare class MJAIPromptResolver extends ResolverBase {
|
|
|
1736
1763
|
AIResultCache_AIPromptIDArray(mjaiprompt_: MJAIPrompt_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
1737
1764
|
MJ_AIConfigurations_DefaultPromptForContextCompressionIDArray(mjaiprompt_: MJAIPrompt_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
1738
1765
|
MJ_AIAgentTypes_SystemPromptIDArray(mjaiprompt_: MJAIPrompt_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
1766
|
+
AIAgentActions_CompactPromptIDArray(mjaiprompt_: MJAIPrompt_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
1739
1767
|
MJ_AIConfigurations_DefaultPromptForContextSummarizationIDArray(mjaiprompt_: MJAIPrompt_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
1740
1768
|
AIPrompts_ResultSelectorPromptIDArray(mjaiprompt_: MJAIPrompt_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
1741
1769
|
MJ_AIPromptModels_PromptIDArray(mjaiprompt_: MJAIPrompt_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
@@ -1743,6 +1771,7 @@ export declare class MJAIPromptResolver extends ResolverBase {
|
|
|
1743
1771
|
MJ_AIAgentSteps_PromptIDArray(mjaiprompt_: MJAIPrompt_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
1744
1772
|
MJ_AIPromptRuns_PromptIDArray(mjaiprompt_: MJAIPrompt_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
1745
1773
|
AIAgents_ContextCompressionPromptIDArray(mjaiprompt_: MJAIPrompt_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
1774
|
+
Actions_DefaultCompactPromptIDArray(mjaiprompt_: MJAIPrompt_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
1746
1775
|
CreateMJAIPrompt(input: CreateMJAIPromptInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1747
1776
|
UpdateMJAIPrompt(input: UpdateMJAIPromptInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1748
1777
|
DeleteMJAIPrompt(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -2718,8 +2747,8 @@ export declare class MJEntity_ {
|
|
|
2718
2747
|
RecommendationItems_DestinationEntityIDArray: MJRecommendationItem_[];
|
|
2719
2748
|
EntityCommunicationMessageTypes_EntityIDArray: MJEntityCommunicationMessageType_[];
|
|
2720
2749
|
QueryEntities_EntityIDArray: MJQueryEntity_[];
|
|
2721
|
-
MJ_AccessControlRules_EntityIDArray: MJAccessControlRule_[];
|
|
2722
2750
|
MJ_RecordLinks_SourceEntityIDArray: MJRecordLink_[];
|
|
2751
|
+
MJ_AccessControlRules_EntityIDArray: MJAccessControlRule_[];
|
|
2723
2752
|
GeneratedCodes_LinkedEntityIDArray: MJGeneratedCode_[];
|
|
2724
2753
|
MJ_RecordLinks_TargetEntityIDArray: MJRecordLink_[];
|
|
2725
2754
|
}
|
|
@@ -2885,8 +2914,8 @@ export declare class MJEntityResolverBase extends ResolverBase {
|
|
|
2885
2914
|
RecommendationItems_DestinationEntityIDArray(mjentity_: MJEntity_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2886
2915
|
EntityCommunicationMessageTypes_EntityIDArray(mjentity_: MJEntity_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2887
2916
|
QueryEntities_EntityIDArray(mjentity_: MJEntity_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2888
|
-
MJ_AccessControlRules_EntityIDArray(mjentity_: MJEntity_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2889
2917
|
MJ_RecordLinks_SourceEntityIDArray(mjentity_: MJEntity_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2918
|
+
MJ_AccessControlRules_EntityIDArray(mjentity_: MJEntity_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2890
2919
|
GeneratedCodes_LinkedEntityIDArray(mjentity_: MJEntity_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2891
2920
|
MJ_RecordLinks_TargetEntityIDArray(mjentity_: MJEntity_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2892
2921
|
CreateMJEntity(input: CreateMJEntityInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -2954,16 +2983,19 @@ export declare class MJUser_ {
|
|
|
2954
2983
|
MJ_DashboardUserStates_UserIDArray: MJDashboardUserState_[];
|
|
2955
2984
|
MJ_ArtifactVersions_UserIDArray: MJArtifactVersion_[];
|
|
2956
2985
|
MJ_PublicLinks_UserIDArray: MJPublicLink_[];
|
|
2957
|
-
MJ_ScheduledJobs_NotifyUserIDArray: MJScheduledJob_[];
|
|
2958
2986
|
MJ_ScheduledJobRuns_ExecutedByUserIDArray: MJScheduledJobRun_[];
|
|
2987
|
+
MJ_ScheduledJobs_NotifyUserIDArray: MJScheduledJob_[];
|
|
2959
2988
|
ResourcePermissions_UserIDArray: MJResourcePermission_[];
|
|
2960
2989
|
AIAgentRequests_RequestForUserIDArray: MJAIAgentRequest_[];
|
|
2961
2990
|
ConversationDetails_UserIDArray: MJConversationDetail_[];
|
|
2962
2991
|
MJ_AccessControlRules_GrantedByUserIDArray: MJAccessControlRule_[];
|
|
2963
2992
|
MJ_Artifacts_UserIDArray: MJArtifact_[];
|
|
2964
2993
|
MJ_ScheduledJobs_OwnerUserIDArray: MJScheduledJob_[];
|
|
2994
|
+
MJ_CollectionPermissions_SharedByUserIDArray: MJCollectionPermission_[];
|
|
2965
2995
|
MJ_AIAgentRuns_UserIDArray: MJAIAgentRun_[];
|
|
2966
2996
|
MJ_AIAgentPermissions_UserIDArray: MJAIAgentPermission_[];
|
|
2997
|
+
MJ_CollectionPermissions_UserIDArray: MJCollectionPermission_[];
|
|
2998
|
+
MJ_Collections_OwnerIDArray: MJCollection_[];
|
|
2967
2999
|
MJ_Tasks_UserIDArray: MJTask_[];
|
|
2968
3000
|
AIAgents_OwnerUserIDArray: MJAIAgent_[];
|
|
2969
3001
|
}
|
|
@@ -3051,16 +3083,19 @@ export declare class MJUserResolverBase extends ResolverBase {
|
|
|
3051
3083
|
MJ_DashboardUserStates_UserIDArray(mjuser_: MJUser_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3052
3084
|
MJ_ArtifactVersions_UserIDArray(mjuser_: MJUser_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3053
3085
|
MJ_PublicLinks_UserIDArray(mjuser_: MJUser_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3054
|
-
MJ_ScheduledJobs_NotifyUserIDArray(mjuser_: MJUser_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3055
3086
|
MJ_ScheduledJobRuns_ExecutedByUserIDArray(mjuser_: MJUser_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3087
|
+
MJ_ScheduledJobs_NotifyUserIDArray(mjuser_: MJUser_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3056
3088
|
ResourcePermissions_UserIDArray(mjuser_: MJUser_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3057
3089
|
AIAgentRequests_RequestForUserIDArray(mjuser_: MJUser_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3058
3090
|
ConversationDetails_UserIDArray(mjuser_: MJUser_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3059
3091
|
MJ_AccessControlRules_GrantedByUserIDArray(mjuser_: MJUser_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3060
3092
|
MJ_Artifacts_UserIDArray(mjuser_: MJUser_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3061
3093
|
MJ_ScheduledJobs_OwnerUserIDArray(mjuser_: MJUser_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3094
|
+
MJ_CollectionPermissions_SharedByUserIDArray(mjuser_: MJUser_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3062
3095
|
MJ_AIAgentRuns_UserIDArray(mjuser_: MJUser_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3063
3096
|
MJ_AIAgentPermissions_UserIDArray(mjuser_: MJUser_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3097
|
+
MJ_CollectionPermissions_UserIDArray(mjuser_: MJUser_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3098
|
+
MJ_Collections_OwnerIDArray(mjuser_: MJUser_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3064
3099
|
MJ_Tasks_UserIDArray(mjuser_: MJUser_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3065
3100
|
AIAgents_OwnerUserIDArray(mjuser_: MJUser_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3066
3101
|
CreateMJUser(input: CreateMJUserInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -5720,6 +5755,7 @@ export declare class MJConversationDetail_ {
|
|
|
5720
5755
|
ParentID?: string;
|
|
5721
5756
|
AgentID?: string;
|
|
5722
5757
|
Status: string;
|
|
5758
|
+
SuggestedResponses?: string;
|
|
5723
5759
|
Conversation?: string;
|
|
5724
5760
|
User?: string;
|
|
5725
5761
|
Artifact?: string;
|
|
@@ -5751,6 +5787,7 @@ export declare class CreateMJConversationDetailInput {
|
|
|
5751
5787
|
ParentID: string | null;
|
|
5752
5788
|
AgentID: string | null;
|
|
5753
5789
|
Status?: string;
|
|
5790
|
+
SuggestedResponses: string | null;
|
|
5754
5791
|
}
|
|
5755
5792
|
export declare class UpdateMJConversationDetailInput {
|
|
5756
5793
|
ID: string;
|
|
@@ -5772,6 +5809,7 @@ export declare class UpdateMJConversationDetailInput {
|
|
|
5772
5809
|
ParentID?: string | null;
|
|
5773
5810
|
AgentID?: string | null;
|
|
5774
5811
|
Status?: string;
|
|
5812
|
+
SuggestedResponses?: string | null;
|
|
5775
5813
|
OldValues___?: KeyValuePairInput[];
|
|
5776
5814
|
}
|
|
5777
5815
|
export declare class RunMJConversationDetailViewResult {
|
|
@@ -7758,9 +7796,11 @@ export declare class MJAction_ {
|
|
|
7758
7796
|
DriverClass?: string;
|
|
7759
7797
|
ParentID?: string;
|
|
7760
7798
|
IconClass?: string;
|
|
7799
|
+
DefaultCompactPromptID?: string;
|
|
7761
7800
|
Category?: string;
|
|
7762
7801
|
CodeApprovedByUser?: string;
|
|
7763
7802
|
Parent?: string;
|
|
7803
|
+
DefaultCompactPrompt?: string;
|
|
7764
7804
|
RootParentID?: string;
|
|
7765
7805
|
ActionParams_ActionIDArray: MJActionParam_[];
|
|
7766
7806
|
ActionLibraries_ActionIDArray: MJActionLibrary_[];
|
|
@@ -7795,6 +7835,7 @@ export declare class CreateMJActionInput {
|
|
|
7795
7835
|
DriverClass: string | null;
|
|
7796
7836
|
ParentID: string | null;
|
|
7797
7837
|
IconClass: string | null;
|
|
7838
|
+
DefaultCompactPromptID: string | null;
|
|
7798
7839
|
}
|
|
7799
7840
|
export declare class UpdateMJActionInput {
|
|
7800
7841
|
ID: string;
|
|
@@ -7817,6 +7858,7 @@ export declare class UpdateMJActionInput {
|
|
|
7817
7858
|
DriverClass?: string | null;
|
|
7818
7859
|
ParentID?: string | null;
|
|
7819
7860
|
IconClass?: string | null;
|
|
7861
|
+
DefaultCompactPromptID?: string | null;
|
|
7820
7862
|
OldValues___?: KeyValuePairInput[];
|
|
7821
7863
|
}
|
|
7822
7864
|
export declare class RunMJActionViewResult {
|
|
@@ -10287,6 +10329,60 @@ export declare class MJConversationArtifactResolver extends ResolverBase {
|
|
|
10287
10329
|
UpdateMJConversationArtifact(input: UpdateMJConversationArtifactInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
10288
10330
|
DeleteMJConversationArtifact(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
10289
10331
|
}
|
|
10332
|
+
export declare class MJCollectionPermission_ {
|
|
10333
|
+
ID: string;
|
|
10334
|
+
CollectionID: string;
|
|
10335
|
+
UserID: string;
|
|
10336
|
+
CanRead: boolean;
|
|
10337
|
+
CanShare: boolean;
|
|
10338
|
+
CanEdit: boolean;
|
|
10339
|
+
CanDelete: boolean;
|
|
10340
|
+
SharedByUserID?: string;
|
|
10341
|
+
_mj__CreatedAt: Date;
|
|
10342
|
+
_mj__UpdatedAt: Date;
|
|
10343
|
+
Collection: string;
|
|
10344
|
+
User: string;
|
|
10345
|
+
SharedByUser?: string;
|
|
10346
|
+
}
|
|
10347
|
+
export declare class CreateMJCollectionPermissionInput {
|
|
10348
|
+
ID?: string;
|
|
10349
|
+
CollectionID?: string;
|
|
10350
|
+
UserID?: string;
|
|
10351
|
+
CanRead?: boolean;
|
|
10352
|
+
CanShare?: boolean;
|
|
10353
|
+
CanEdit?: boolean;
|
|
10354
|
+
CanDelete?: boolean;
|
|
10355
|
+
SharedByUserID: string | null;
|
|
10356
|
+
}
|
|
10357
|
+
export declare class UpdateMJCollectionPermissionInput {
|
|
10358
|
+
ID: string;
|
|
10359
|
+
CollectionID?: string;
|
|
10360
|
+
UserID?: string;
|
|
10361
|
+
CanRead?: boolean;
|
|
10362
|
+
CanShare?: boolean;
|
|
10363
|
+
CanEdit?: boolean;
|
|
10364
|
+
CanDelete?: boolean;
|
|
10365
|
+
SharedByUserID?: string | null;
|
|
10366
|
+
OldValues___?: KeyValuePairInput[];
|
|
10367
|
+
}
|
|
10368
|
+
export declare class RunMJCollectionPermissionViewResult {
|
|
10369
|
+
Results: MJCollectionPermission_[];
|
|
10370
|
+
UserViewRunID?: string;
|
|
10371
|
+
RowCount: number;
|
|
10372
|
+
TotalRowCount: number;
|
|
10373
|
+
ExecutionTime: number;
|
|
10374
|
+
ErrorMessage?: string;
|
|
10375
|
+
Success: boolean;
|
|
10376
|
+
}
|
|
10377
|
+
export declare class MJCollectionPermissionResolver extends ResolverBase {
|
|
10378
|
+
RunMJCollectionPermissionViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
10379
|
+
RunMJCollectionPermissionViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
10380
|
+
RunMJCollectionPermissionDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
10381
|
+
MJCollectionPermission(ID: string, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJCollectionPermission_ | null>;
|
|
10382
|
+
CreateMJCollectionPermission(input: CreateMJCollectionPermissionInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
10383
|
+
UpdateMJCollectionPermission(input: UpdateMJCollectionPermissionInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
10384
|
+
DeleteMJCollectionPermission(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
10385
|
+
}
|
|
10290
10386
|
export declare class MJAIAgentPrompt_ {
|
|
10291
10387
|
ID: string;
|
|
10292
10388
|
AgentID: string;
|
|
@@ -10636,6 +10732,8 @@ export declare class MJAIAgentRelationship_ {
|
|
|
10636
10732
|
_mj__CreatedAt: Date;
|
|
10637
10733
|
_mj__UpdatedAt: Date;
|
|
10638
10734
|
SubAgentOutputMapping?: string;
|
|
10735
|
+
SubAgentInputMapping?: string;
|
|
10736
|
+
SubAgentContextPaths?: string;
|
|
10639
10737
|
Agent?: string;
|
|
10640
10738
|
SubAgent?: string;
|
|
10641
10739
|
}
|
|
@@ -10645,6 +10743,8 @@ export declare class CreateMJAIAgentRelationshipInput {
|
|
|
10645
10743
|
SubAgentID?: string;
|
|
10646
10744
|
Status?: string;
|
|
10647
10745
|
SubAgentOutputMapping: string | null;
|
|
10746
|
+
SubAgentInputMapping: string | null;
|
|
10747
|
+
SubAgentContextPaths: string | null;
|
|
10648
10748
|
}
|
|
10649
10749
|
export declare class UpdateMJAIAgentRelationshipInput {
|
|
10650
10750
|
ID: string;
|
|
@@ -10652,6 +10752,8 @@ export declare class UpdateMJAIAgentRelationshipInput {
|
|
|
10652
10752
|
SubAgentID?: string;
|
|
10653
10753
|
Status?: string;
|
|
10654
10754
|
SubAgentOutputMapping?: string | null;
|
|
10755
|
+
SubAgentInputMapping?: string | null;
|
|
10756
|
+
SubAgentContextPaths?: string | null;
|
|
10655
10757
|
OldValues___?: KeyValuePairInput[];
|
|
10656
10758
|
}
|
|
10657
10759
|
export declare class RunMJAIAgentRelationshipViewResult {
|