@memberjunction/server 2.46.0 → 2.47.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.
|
@@ -313,6 +313,9 @@ export declare class AIAgentRun_ {
|
|
|
313
313
|
TotalCost?: number;
|
|
314
314
|
_mj__CreatedAt: Date;
|
|
315
315
|
_mj__UpdatedAt: Date;
|
|
316
|
+
Agent?: string;
|
|
317
|
+
Conversation?: string;
|
|
318
|
+
User?: string;
|
|
316
319
|
MJ_AIAgentRunSteps_AgentRunIDArray: AIAgentRunStep_[];
|
|
317
320
|
MJ_AIAgentRuns_ParentRunIDArray: AIAgentRun_[];
|
|
318
321
|
MJ_AIPromptRuns_AgentRunIDArray: AIPromptRun_[];
|
|
@@ -492,6 +495,7 @@ export declare class AIAgent_ {
|
|
|
492
495
|
TypeID: string;
|
|
493
496
|
Parent?: string;
|
|
494
497
|
ContextCompressionPrompt?: string;
|
|
498
|
+
Type: string;
|
|
495
499
|
AIAgentRequests_AgentIDArray: AIAgentRequest_[];
|
|
496
500
|
AIAgentLearningCycles_AgentIDArray: AIAgentLearningCycle_[];
|
|
497
501
|
AIAgentModels_AgentIDArray: AIAgentModel_[];
|
|
@@ -635,6 +639,7 @@ export declare class AIAgentType_ {
|
|
|
635
639
|
IsActive: boolean;
|
|
636
640
|
_mj__CreatedAt: Date;
|
|
637
641
|
_mj__UpdatedAt: Date;
|
|
642
|
+
SystemPrompt?: string;
|
|
638
643
|
AIAgents_TypeIDArray: AIAgent_[];
|
|
639
644
|
}
|
|
640
645
|
export declare class CreateAIAgentTypeInput {
|
|
@@ -2006,9 +2011,9 @@ export declare class User_ {
|
|
|
2006
2011
|
UserNotifications_UserIDArray: UserNotification_[];
|
|
2007
2012
|
Templates_UserIDArray: Template_[];
|
|
2008
2013
|
UserFavorites_UserIDArray: UserFavorite_[];
|
|
2014
|
+
ResourceLinks_UserIDArray: ResourceLink_[];
|
|
2009
2015
|
ListCategories_UserIDArray: ListCategory_[];
|
|
2010
2016
|
ScheduledActions_CreatedByUserIDArray: ScheduledAction_[];
|
|
2011
|
-
ResourceLinks_UserIDArray: ResourceLink_[];
|
|
2012
2017
|
AIAgentRequests_ResponseByUserIDArray: AIAgentRequest_[];
|
|
2013
2018
|
MJ_DashboardUserPreferences_UserIDArray: DashboardUserPreference_[];
|
|
2014
2019
|
MJ_ReportUserStates_UserIDArray: ReportUserState_[];
|
|
@@ -2092,9 +2097,9 @@ export declare class UserResolverBase extends ResolverBase {
|
|
|
2092
2097
|
UserNotifications_UserIDArray(user_: User_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
2093
2098
|
Templates_UserIDArray(user_: User_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
2094
2099
|
UserFavorites_UserIDArray(user_: User_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
2100
|
+
ResourceLinks_UserIDArray(user_: User_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
2095
2101
|
ListCategories_UserIDArray(user_: User_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
2096
2102
|
ScheduledActions_CreatedByUserIDArray(user_: User_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
2097
|
-
ResourceLinks_UserIDArray(user_: User_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
2098
2103
|
AIAgentRequests_ResponseByUserIDArray(user_: User_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
2099
2104
|
MJ_DashboardUserPreferences_UserIDArray(user_: User_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
2100
2105
|
MJ_ReportUserStates_UserIDArray(user_: User_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|