@memberjunction/server 2.130.1 → 2.132.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/generated/generated.d.ts +12 -6
- package/dist/generated/generated.d.ts.map +1 -1
- package/dist/generated/generated.js +81 -51
- package/dist/generated/generated.js.map +1 -1
- package/dist/resolvers/RunAIAgentResolver.d.ts +1 -0
- 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/package.json +43 -43
- package/src/generated/generated.ts +57 -39
- package/src/resolvers/RunAIAgentResolver.ts +7 -3
|
@@ -969,6 +969,7 @@ export declare class MJAIAgent_ {
|
|
|
969
969
|
AttachmentStorageProviderID?: string;
|
|
970
970
|
AttachmentRootPath?: string;
|
|
971
971
|
InlineStorageThresholdBytes?: number;
|
|
972
|
+
AgentTypePromptParams?: string;
|
|
972
973
|
Parent?: string;
|
|
973
974
|
ContextCompressionPrompt?: string;
|
|
974
975
|
Type?: string;
|
|
@@ -1053,6 +1054,7 @@ export declare class CreateMJAIAgentInput {
|
|
|
1053
1054
|
AttachmentStorageProviderID: string | null;
|
|
1054
1055
|
AttachmentRootPath: string | null;
|
|
1055
1056
|
InlineStorageThresholdBytes: number | null;
|
|
1057
|
+
AgentTypePromptParams: string | null;
|
|
1056
1058
|
}
|
|
1057
1059
|
export declare class UpdateMJAIAgentInput {
|
|
1058
1060
|
ID: string;
|
|
@@ -1108,6 +1110,7 @@ export declare class UpdateMJAIAgentInput {
|
|
|
1108
1110
|
AttachmentStorageProviderID?: string | null;
|
|
1109
1111
|
AttachmentRootPath?: string | null;
|
|
1110
1112
|
InlineStorageThresholdBytes?: number | null;
|
|
1113
|
+
AgentTypePromptParams?: string | null;
|
|
1111
1114
|
OldValues___?: KeyValuePairInput[];
|
|
1112
1115
|
}
|
|
1113
1116
|
export declare class RunMJAIAgentViewResult {
|
|
@@ -1497,8 +1500,8 @@ export declare class MJAIPrompt_ {
|
|
|
1497
1500
|
AIAgentActions_CompactPromptIDArray: MJAIAgentAction_[];
|
|
1498
1501
|
MJ_AIConfigurations_DefaultPromptForContextSummarizationIDArray: MJAIConfiguration_[];
|
|
1499
1502
|
AIPrompts_ResultSelectorPromptIDArray: MJAIPrompt_[];
|
|
1500
|
-
MJ_AIAgentPrompts_PromptIDArray: MJAIAgentPrompt_[];
|
|
1501
1503
|
MJ_AIPromptModels_PromptIDArray: MJAIPromptModel_[];
|
|
1504
|
+
MJ_AIAgentPrompts_PromptIDArray: MJAIAgentPrompt_[];
|
|
1502
1505
|
MJ_AIAgentSteps_PromptIDArray: MJAIAgentStep_[];
|
|
1503
1506
|
MJ_AIPromptRuns_PromptIDArray: MJAIPromptRun_[];
|
|
1504
1507
|
AIAgents_ContextCompressionPromptIDArray: MJAIAgent_[];
|
|
@@ -1627,8 +1630,8 @@ export declare class MJAIPromptResolver extends ResolverBase {
|
|
|
1627
1630
|
AIAgentActions_CompactPromptIDArray(mjaiprompt_: MJAIPrompt_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
1628
1631
|
MJ_AIConfigurations_DefaultPromptForContextSummarizationIDArray(mjaiprompt_: MJAIPrompt_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
1629
1632
|
AIPrompts_ResultSelectorPromptIDArray(mjaiprompt_: MJAIPrompt_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
1630
|
-
MJ_AIAgentPrompts_PromptIDArray(mjaiprompt_: MJAIPrompt_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
1631
1633
|
MJ_AIPromptModels_PromptIDArray(mjaiprompt_: MJAIPrompt_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
1634
|
+
MJ_AIAgentPrompts_PromptIDArray(mjaiprompt_: MJAIPrompt_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
1632
1635
|
MJ_AIAgentSteps_PromptIDArray(mjaiprompt_: MJAIPrompt_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
1633
1636
|
MJ_AIPromptRuns_PromptIDArray(mjaiprompt_: MJAIPrompt_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
1634
1637
|
AIAgents_ContextCompressionPromptIDArray(mjaiprompt_: MJAIPrompt_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
@@ -7244,6 +7247,7 @@ export declare class MJAIAgentType_ {
|
|
|
7244
7247
|
UIFormSectionKey?: string;
|
|
7245
7248
|
UIFormKey?: string;
|
|
7246
7249
|
UIFormSectionExpandedByDefault: boolean;
|
|
7250
|
+
PromptParamsSchema?: string;
|
|
7247
7251
|
SystemPrompt?: string;
|
|
7248
7252
|
AIAgents_TypeIDArray: MJAIAgent_[];
|
|
7249
7253
|
}
|
|
@@ -7258,6 +7262,7 @@ export declare class CreateMJAIAgentTypeInput {
|
|
|
7258
7262
|
UIFormSectionKey: string | null;
|
|
7259
7263
|
UIFormKey: string | null;
|
|
7260
7264
|
UIFormSectionExpandedByDefault?: boolean;
|
|
7265
|
+
PromptParamsSchema: string | null;
|
|
7261
7266
|
}
|
|
7262
7267
|
export declare class UpdateMJAIAgentTypeInput {
|
|
7263
7268
|
ID: string;
|
|
@@ -7270,6 +7275,7 @@ export declare class UpdateMJAIAgentTypeInput {
|
|
|
7270
7275
|
UIFormSectionKey?: string | null;
|
|
7271
7276
|
UIFormKey?: string | null;
|
|
7272
7277
|
UIFormSectionExpandedByDefault?: boolean;
|
|
7278
|
+
PromptParamsSchema?: string | null;
|
|
7273
7279
|
OldValues___?: KeyValuePairInput[];
|
|
7274
7280
|
}
|
|
7275
7281
|
export declare class RunMJAIAgentTypeViewResult {
|
|
@@ -7539,8 +7545,8 @@ export declare class MJAIModality_ {
|
|
|
7539
7545
|
DisplayOrder: number;
|
|
7540
7546
|
_mj__CreatedAt: Date;
|
|
7541
7547
|
_mj__UpdatedAt: Date;
|
|
7542
|
-
MJ_AIModelModalities_ModalityIDArray: MJAIModelModality_[];
|
|
7543
7548
|
MJ_AIAgentModalities_ModalityIDArray: MJAIAgentModality_[];
|
|
7549
|
+
MJ_AIModelModalities_ModalityIDArray: MJAIModelModality_[];
|
|
7544
7550
|
MJ_ConversationDetailAttachments_ModalityIDArray: MJConversationDetailAttachment_[];
|
|
7545
7551
|
AIModelTypes_DefaultOutputModalityIDArray: MJAIModelType_[];
|
|
7546
7552
|
AIModelTypes_DefaultInputModalityIDArray: MJAIModelType_[];
|
|
@@ -7582,8 +7588,8 @@ export declare class MJAIModalityResolver extends ResolverBase {
|
|
|
7582
7588
|
RunMJAIModalityViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
7583
7589
|
RunMJAIModalityDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
7584
7590
|
MJAIModality(ID: string, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJAIModality_ | null>;
|
|
7585
|
-
MJ_AIModelModalities_ModalityIDArray(mjaimodality_: MJAIModality_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
7586
7591
|
MJ_AIAgentModalities_ModalityIDArray(mjaimodality_: MJAIModality_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
7592
|
+
MJ_AIModelModalities_ModalityIDArray(mjaimodality_: MJAIModality_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
7587
7593
|
MJ_ConversationDetailAttachments_ModalityIDArray(mjaimodality_: MJAIModality_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
7588
7594
|
AIModelTypes_DefaultOutputModalityIDArray(mjaimodality_: MJAIModality_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
7589
7595
|
AIModelTypes_DefaultInputModalityIDArray(mjaimodality_: MJAIModality_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
@@ -13951,8 +13957,8 @@ export declare class MJUser_ {
|
|
|
13951
13957
|
MJ_ReportUserStates_UserIDArray: MJReportUserState_[];
|
|
13952
13958
|
MJ_DashboardUserPreferences_UserIDArray: MJDashboardUserPreference_[];
|
|
13953
13959
|
MJ_DashboardUserStates_UserIDArray: MJDashboardUserState_[];
|
|
13954
|
-
MJ_ArtifactVersions_UserIDArray: MJArtifactVersion_[];
|
|
13955
13960
|
MJ_PublicLinks_UserIDArray: MJPublicLink_[];
|
|
13961
|
+
MJ_ArtifactVersions_UserIDArray: MJArtifactVersion_[];
|
|
13956
13962
|
MJ_ScheduledJobRuns_ExecutedByUserIDArray: MJScheduledJobRun_[];
|
|
13957
13963
|
MJ_ScheduledJobs_NotifyUserIDArray: MJScheduledJob_[];
|
|
13958
13964
|
MJ_ArtifactPermissions_UserIDArray: MJArtifactPermission_[];
|
|
@@ -14064,8 +14070,8 @@ export declare class MJUserResolverBase extends ResolverBase {
|
|
|
14064
14070
|
MJ_ReportUserStates_UserIDArray(mjuser_: MJUser_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
14065
14071
|
MJ_DashboardUserPreferences_UserIDArray(mjuser_: MJUser_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
14066
14072
|
MJ_DashboardUserStates_UserIDArray(mjuser_: MJUser_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
14067
|
-
MJ_ArtifactVersions_UserIDArray(mjuser_: MJUser_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
14068
14073
|
MJ_PublicLinks_UserIDArray(mjuser_: MJUser_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
14074
|
+
MJ_ArtifactVersions_UserIDArray(mjuser_: MJUser_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
14069
14075
|
MJ_ScheduledJobRuns_ExecutedByUserIDArray(mjuser_: MJUser_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
14070
14076
|
MJ_ScheduledJobs_NotifyUserIDArray(mjuser_: MJUser_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
14071
14077
|
MJ_ArtifactPermissions_UserIDArray(mjuser_: MJUser_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|