@memberjunction/server 3.0.0 → 3.1.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/config.d.ts +16 -0
- package/dist/config.d.ts.map +1 -1
- package/dist/config.js +3 -3
- package/dist/config.js.map +1 -1
- package/dist/generated/generated.d.ts +481 -4
- package/dist/generated/generated.d.ts.map +1 -1
- package/dist/generated/generated.js +3304 -334
- package/dist/generated/generated.js.map +1 -1
- package/dist/generic/ResolverBase.d.ts.map +1 -1
- package/dist/generic/ResolverBase.js +5 -2
- package/dist/generic/ResolverBase.js.map +1 -1
- package/dist/generic/RunViewResolver.d.ts +5 -0
- package/dist/generic/RunViewResolver.d.ts.map +1 -1
- package/dist/generic/RunViewResolver.js +53 -4
- package/dist/generic/RunViewResolver.js.map +1 -1
- package/dist/resolvers/RunTestResolver.d.ts +2 -2
- package/dist/resolvers/RunTestResolver.d.ts.map +1 -1
- package/dist/resolvers/RunTestResolver.js +33 -11
- package/dist/resolvers/RunTestResolver.js.map +1 -1
- package/package.json +51 -45
- package/src/__tests__/setup.ts +21 -0
- package/src/config.ts +3 -3
- package/src/generated/generated.ts +1894 -21
- package/src/generic/ResolverBase.ts +6 -2
- package/src/generic/RunViewResolver.ts +55 -5
- package/src/resolvers/RunTestResolver.ts +25 -0
- package/dist/apolloServer/TransactionPlugin.d.ts +0 -4
- package/dist/apolloServer/TransactionPlugin.d.ts.map +0 -1
- package/dist/apolloServer/TransactionPlugin.js +0 -46
- package/dist/apolloServer/TransactionPlugin.js.map +0 -1
- package/dist/auth/__tests__/backward-compatibility.test.d.ts +0 -2
- package/dist/auth/__tests__/backward-compatibility.test.d.ts.map +0 -1
- package/dist/auth/__tests__/backward-compatibility.test.js +0 -135
- package/dist/auth/__tests__/backward-compatibility.test.js.map +0 -1
|
@@ -320,6 +320,7 @@ export declare class MJActionParam_ {
|
|
|
320
320
|
IsRequired: boolean;
|
|
321
321
|
_mj__CreatedAt: Date;
|
|
322
322
|
_mj__UpdatedAt: Date;
|
|
323
|
+
MediaModality?: string;
|
|
323
324
|
Action: string;
|
|
324
325
|
EntityActionParams_ActionParamIDArray: MJEntityActionParam_[];
|
|
325
326
|
ScheduledActionParams_ActionParamIDArray: MJScheduledActionParam_[];
|
|
@@ -334,6 +335,7 @@ export declare class CreateMJActionParamInput {
|
|
|
334
335
|
IsArray?: boolean;
|
|
335
336
|
Description: string | null;
|
|
336
337
|
IsRequired?: boolean;
|
|
338
|
+
MediaModality: string | null;
|
|
337
339
|
}
|
|
338
340
|
export declare class UpdateMJActionParamInput {
|
|
339
341
|
ID: string;
|
|
@@ -345,6 +347,7 @@ export declare class UpdateMJActionParamInput {
|
|
|
345
347
|
IsArray?: boolean;
|
|
346
348
|
Description?: string | null;
|
|
347
349
|
IsRequired?: boolean;
|
|
350
|
+
MediaModality?: string | null;
|
|
348
351
|
OldValues___?: KeyValuePairInput[];
|
|
349
352
|
}
|
|
350
353
|
export declare class RunMJActionParamViewResult {
|
|
@@ -3451,6 +3454,8 @@ export declare class MJDashboardCategory_ {
|
|
|
3451
3454
|
RootParentID?: string;
|
|
3452
3455
|
Dashboards_CategoryIDArray: MJDashboard_[];
|
|
3453
3456
|
DashboardCategories_ParentIDArray: MJDashboardCategory_[];
|
|
3457
|
+
MJ_DashboardCategoryPermissions_DashboardCategoryIDArray: MJDashboardCategoryPermission_[];
|
|
3458
|
+
MJ_DashboardCategoryLinks_DashboardCategoryIDArray: MJDashboardCategoryLink_[];
|
|
3454
3459
|
}
|
|
3455
3460
|
export declare class CreateMJDashboardCategoryInput {
|
|
3456
3461
|
ID?: string;
|
|
@@ -3483,6 +3488,8 @@ export declare class MJDashboardCategoryResolver extends ResolverBase {
|
|
|
3483
3488
|
MJDashboardCategory(ID: string, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJDashboardCategory_ | null>;
|
|
3484
3489
|
Dashboards_CategoryIDArray(mjdashboardcategory_: MJDashboardCategory_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3485
3490
|
DashboardCategories_ParentIDArray(mjdashboardcategory_: MJDashboardCategory_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3491
|
+
MJ_DashboardCategoryPermissions_DashboardCategoryIDArray(mjdashboardcategory_: MJDashboardCategory_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3492
|
+
MJ_DashboardCategoryLinks_DashboardCategoryIDArray(mjdashboardcategory_: MJDashboardCategory_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3486
3493
|
CreateMJDashboardCategory(input: CreateMJDashboardCategoryInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
3487
3494
|
UpdateMJDashboardCategory(input: UpdateMJDashboardCategoryInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
3488
3495
|
DeleteMJDashboardCategory(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -3508,7 +3515,9 @@ export declare class MJDashboard_ {
|
|
|
3508
3515
|
Application?: string;
|
|
3509
3516
|
Environment: string;
|
|
3510
3517
|
MJ_DashboardUserStates_DashboardIDArray: MJDashboardUserState_[];
|
|
3518
|
+
MJ_DashboardCategoryLinks_DashboardIDArray: MJDashboardCategoryLink_[];
|
|
3511
3519
|
MJ_DashboardUserPreferences_DashboardIDArray: MJDashboardUserPreference_[];
|
|
3520
|
+
MJ_DashboardPermissions_DashboardIDArray: MJDashboardPermission_[];
|
|
3512
3521
|
}
|
|
3513
3522
|
export declare class CreateMJDashboardInput {
|
|
3514
3523
|
ID?: string;
|
|
@@ -3556,7 +3565,9 @@ export declare class MJDashboardResolver extends ResolverBase {
|
|
|
3556
3565
|
RunMJDashboardDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
3557
3566
|
MJDashboard(ID: string, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJDashboard_ | null>;
|
|
3558
3567
|
MJ_DashboardUserStates_DashboardIDArray(mjdashboard_: MJDashboard_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3568
|
+
MJ_DashboardCategoryLinks_DashboardIDArray(mjdashboard_: MJDashboard_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3559
3569
|
MJ_DashboardUserPreferences_DashboardIDArray(mjdashboard_: MJDashboard_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3570
|
+
MJ_DashboardPermissions_DashboardIDArray(mjdashboard_: MJDashboard_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3560
3571
|
CreateMJDashboard(input: CreateMJDashboardInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
3561
3572
|
UpdateMJDashboard(input: UpdateMJDashboardInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
3562
3573
|
DeleteMJDashboard(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -5794,7 +5805,9 @@ export declare class MJFile_ {
|
|
|
5794
5805
|
Category?: string;
|
|
5795
5806
|
Provider: string;
|
|
5796
5807
|
FileEntityRecordLinks_FileIDArray: MJFileEntityRecordLink_[];
|
|
5808
|
+
MJ_AIPromptRunMedias_FileIDArray: MJAIPromptRunMedia_[];
|
|
5797
5809
|
MJ_ConversationDetailAttachments_FileIDArray: MJConversationDetailAttachment_[];
|
|
5810
|
+
MJ_AIAgentRunMedias_FileIDArray: MJAIAgentRunMedia_[];
|
|
5798
5811
|
}
|
|
5799
5812
|
export declare class CreateMJFileInput {
|
|
5800
5813
|
ID?: string;
|
|
@@ -5832,11 +5845,70 @@ export declare class MJFileResolver extends ResolverBase {
|
|
|
5832
5845
|
RunMJFileDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
5833
5846
|
MJFile(ID: string, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJFile_ | null>;
|
|
5834
5847
|
FileEntityRecordLinks_FileIDArray(mjfile_: MJFile_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
5848
|
+
MJ_AIPromptRunMedias_FileIDArray(mjfile_: MJFile_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
5835
5849
|
MJ_ConversationDetailAttachments_FileIDArray(mjfile_: MJFile_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
5850
|
+
MJ_AIAgentRunMedias_FileIDArray(mjfile_: MJFile_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
5836
5851
|
CreateMJFile(input: CreateMJFileInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5837
5852
|
UpdateMJFile(input: UpdateMJFileInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5838
5853
|
DeleteMJFile(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5839
5854
|
}
|
|
5855
|
+
export declare class MJflywayschemahistory_ {
|
|
5856
|
+
installed_rank: number;
|
|
5857
|
+
version?: string;
|
|
5858
|
+
description?: string;
|
|
5859
|
+
type: string;
|
|
5860
|
+
script: string;
|
|
5861
|
+
checksum?: number;
|
|
5862
|
+
installed_by: string;
|
|
5863
|
+
installed_on: Date;
|
|
5864
|
+
execution_time: number;
|
|
5865
|
+
success: boolean;
|
|
5866
|
+
_mj__CreatedAt: Date;
|
|
5867
|
+
_mj__UpdatedAt: Date;
|
|
5868
|
+
}
|
|
5869
|
+
export declare class CreateMJflywayschemahistoryInput {
|
|
5870
|
+
installed_rank?: number;
|
|
5871
|
+
version: string | null;
|
|
5872
|
+
description: string | null;
|
|
5873
|
+
type?: string;
|
|
5874
|
+
script?: string;
|
|
5875
|
+
checksum: number | null;
|
|
5876
|
+
installed_by?: string;
|
|
5877
|
+
installed_on?: Date;
|
|
5878
|
+
execution_time?: number;
|
|
5879
|
+
success?: boolean;
|
|
5880
|
+
}
|
|
5881
|
+
export declare class UpdateMJflywayschemahistoryInput {
|
|
5882
|
+
installed_rank: number;
|
|
5883
|
+
version?: string | null;
|
|
5884
|
+
description?: string | null;
|
|
5885
|
+
type?: string;
|
|
5886
|
+
script?: string;
|
|
5887
|
+
checksum?: number | null;
|
|
5888
|
+
installed_by?: string;
|
|
5889
|
+
installed_on?: Date;
|
|
5890
|
+
execution_time?: number;
|
|
5891
|
+
success?: boolean;
|
|
5892
|
+
OldValues___?: KeyValuePairInput[];
|
|
5893
|
+
}
|
|
5894
|
+
export declare class RunMJflywayschemahistoryViewResult {
|
|
5895
|
+
Results: MJflywayschemahistory_[];
|
|
5896
|
+
UserViewRunID?: string;
|
|
5897
|
+
RowCount: number;
|
|
5898
|
+
TotalRowCount: number;
|
|
5899
|
+
ExecutionTime: number;
|
|
5900
|
+
ErrorMessage?: string;
|
|
5901
|
+
Success: boolean;
|
|
5902
|
+
}
|
|
5903
|
+
export declare class MJflywayschemahistoryResolver extends ResolverBase {
|
|
5904
|
+
RunMJflywayschemahistoryViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
5905
|
+
RunMJflywayschemahistoryViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
5906
|
+
RunMJflywayschemahistoryDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
5907
|
+
MJflywayschemahistory(installed_rank: number, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJflywayschemahistory_ | null>;
|
|
5908
|
+
CreateMJflywayschemahistory(input: CreateMJflywayschemahistoryInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5909
|
+
UpdateMJflywayschemahistory(input: UpdateMJflywayschemahistoryInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5910
|
+
DeleteMJflywayschemahistory(installed_rank: number, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5911
|
+
}
|
|
5840
5912
|
export declare class MJGeneratedCodeCategory_ {
|
|
5841
5913
|
ID: string;
|
|
5842
5914
|
Name: string;
|
|
@@ -6851,6 +6923,88 @@ export declare class MJAIAgentRelationshipResolver extends ResolverBase {
|
|
|
6851
6923
|
UpdateMJAIAgentRelationship(input: UpdateMJAIAgentRelationshipInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
6852
6924
|
DeleteMJAIAgentRelationship(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
6853
6925
|
}
|
|
6926
|
+
export declare class MJAIAgentRunMedia_ {
|
|
6927
|
+
ID: string;
|
|
6928
|
+
AgentRunID: string;
|
|
6929
|
+
SourcePromptRunMediaID?: string;
|
|
6930
|
+
ModalityID: string;
|
|
6931
|
+
MimeType: string;
|
|
6932
|
+
FileName?: string;
|
|
6933
|
+
FileSizeBytes?: number;
|
|
6934
|
+
Width?: number;
|
|
6935
|
+
Height?: number;
|
|
6936
|
+
DurationSeconds?: number;
|
|
6937
|
+
InlineData?: string;
|
|
6938
|
+
FileID?: string;
|
|
6939
|
+
ThumbnailBase64?: string;
|
|
6940
|
+
Label?: string;
|
|
6941
|
+
Metadata?: string;
|
|
6942
|
+
DisplayOrder: number;
|
|
6943
|
+
_mj__CreatedAt: Date;
|
|
6944
|
+
_mj__UpdatedAt: Date;
|
|
6945
|
+
Description?: string;
|
|
6946
|
+
AgentRun?: string;
|
|
6947
|
+
SourcePromptRunMedia?: string;
|
|
6948
|
+
Modality: string;
|
|
6949
|
+
File?: string;
|
|
6950
|
+
}
|
|
6951
|
+
export declare class CreateMJAIAgentRunMediaInput {
|
|
6952
|
+
ID?: string;
|
|
6953
|
+
AgentRunID?: string;
|
|
6954
|
+
SourcePromptRunMediaID: string | null;
|
|
6955
|
+
ModalityID?: string;
|
|
6956
|
+
MimeType?: string;
|
|
6957
|
+
FileName: string | null;
|
|
6958
|
+
FileSizeBytes: number | null;
|
|
6959
|
+
Width: number | null;
|
|
6960
|
+
Height: number | null;
|
|
6961
|
+
DurationSeconds: number | null;
|
|
6962
|
+
InlineData: string | null;
|
|
6963
|
+
FileID: string | null;
|
|
6964
|
+
ThumbnailBase64: string | null;
|
|
6965
|
+
Label: string | null;
|
|
6966
|
+
Metadata: string | null;
|
|
6967
|
+
DisplayOrder?: number;
|
|
6968
|
+
Description: string | null;
|
|
6969
|
+
}
|
|
6970
|
+
export declare class UpdateMJAIAgentRunMediaInput {
|
|
6971
|
+
ID: string;
|
|
6972
|
+
AgentRunID?: string;
|
|
6973
|
+
SourcePromptRunMediaID?: string | null;
|
|
6974
|
+
ModalityID?: string;
|
|
6975
|
+
MimeType?: string;
|
|
6976
|
+
FileName?: string | null;
|
|
6977
|
+
FileSizeBytes?: number | null;
|
|
6978
|
+
Width?: number | null;
|
|
6979
|
+
Height?: number | null;
|
|
6980
|
+
DurationSeconds?: number | null;
|
|
6981
|
+
InlineData?: string | null;
|
|
6982
|
+
FileID?: string | null;
|
|
6983
|
+
ThumbnailBase64?: string | null;
|
|
6984
|
+
Label?: string | null;
|
|
6985
|
+
Metadata?: string | null;
|
|
6986
|
+
DisplayOrder?: number;
|
|
6987
|
+
Description?: string | null;
|
|
6988
|
+
OldValues___?: KeyValuePairInput[];
|
|
6989
|
+
}
|
|
6990
|
+
export declare class RunMJAIAgentRunMediaViewResult {
|
|
6991
|
+
Results: MJAIAgentRunMedia_[];
|
|
6992
|
+
UserViewRunID?: string;
|
|
6993
|
+
RowCount: number;
|
|
6994
|
+
TotalRowCount: number;
|
|
6995
|
+
ExecutionTime: number;
|
|
6996
|
+
ErrorMessage?: string;
|
|
6997
|
+
Success: boolean;
|
|
6998
|
+
}
|
|
6999
|
+
export declare class MJAIAgentRunMediaResolver extends ResolverBase {
|
|
7000
|
+
RunMJAIAgentRunMediaViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
7001
|
+
RunMJAIAgentRunMediaViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
7002
|
+
RunMJAIAgentRunMediaDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
7003
|
+
MJAIAgentRunMedia(ID: string, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJAIAgentRunMedia_ | null>;
|
|
7004
|
+
CreateMJAIAgentRunMedia(input: CreateMJAIAgentRunMediaInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7005
|
+
UpdateMJAIAgentRunMedia(input: UpdateMJAIAgentRunMediaInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7006
|
+
DeleteMJAIAgentRunMedia(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7007
|
+
}
|
|
6854
7008
|
export declare class MJAIAgentRunStep_ {
|
|
6855
7009
|
ID: string;
|
|
6856
7010
|
AgentRunID: string;
|
|
@@ -7002,6 +7156,7 @@ export declare class MJAIAgentRun_ {
|
|
|
7002
7156
|
MJ_AIAgentRuns_ParentRunIDArray: MJAIAgentRun_[];
|
|
7003
7157
|
MJ_AIAgentExamples_SourceAIAgentRunIDArray: MJAIAgentExample_[];
|
|
7004
7158
|
AIAgentNotes_SourceAIAgentRunIDArray: MJAIAgentNote_[];
|
|
7159
|
+
MJ_AIAgentRunMedias_AgentRunIDArray: MJAIAgentRunMedia_[];
|
|
7005
7160
|
MJ_AIPromptRuns_AgentRunIDArray: MJAIPromptRun_[];
|
|
7006
7161
|
}
|
|
7007
7162
|
export declare class CreateMJAIAgentRunInput {
|
|
@@ -7105,6 +7260,7 @@ export declare class MJAIAgentRunResolver extends ResolverBase {
|
|
|
7105
7260
|
MJ_AIAgentRuns_ParentRunIDArray(mjaiagentrun_: MJAIAgentRun_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
7106
7261
|
MJ_AIAgentExamples_SourceAIAgentRunIDArray(mjaiagentrun_: MJAIAgentRun_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
7107
7262
|
AIAgentNotes_SourceAIAgentRunIDArray(mjaiagentrun_: MJAIAgentRun_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
7263
|
+
MJ_AIAgentRunMedias_AgentRunIDArray(mjaiagentrun_: MJAIAgentRun_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
7108
7264
|
MJ_AIPromptRuns_AgentRunIDArray(mjaiagentrun_: MJAIAgentRun_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
7109
7265
|
CreateMJAIAgentRun(input: CreateMJAIAgentRunInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7110
7266
|
UpdateMJAIAgentRun(input: UpdateMJAIAgentRunInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -7573,7 +7729,9 @@ export declare class MJAIModality_ {
|
|
|
7573
7729
|
MJ_AIModelModalities_ModalityIDArray: MJAIModelModality_[];
|
|
7574
7730
|
MJ_ConversationDetailAttachments_ModalityIDArray: MJConversationDetailAttachment_[];
|
|
7575
7731
|
AIModelTypes_DefaultOutputModalityIDArray: MJAIModelType_[];
|
|
7732
|
+
MJ_AIPromptRunMedias_ModalityIDArray: MJAIPromptRunMedia_[];
|
|
7576
7733
|
AIModelTypes_DefaultInputModalityIDArray: MJAIModelType_[];
|
|
7734
|
+
MJ_AIAgentRunMedias_ModalityIDArray: MJAIAgentRunMedia_[];
|
|
7577
7735
|
}
|
|
7578
7736
|
export declare class CreateMJAIModalityInput {
|
|
7579
7737
|
ID?: string;
|
|
@@ -7616,7 +7774,9 @@ export declare class MJAIModalityResolver extends ResolverBase {
|
|
|
7616
7774
|
MJ_AIModelModalities_ModalityIDArray(mjaimodality_: MJAIModality_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
7617
7775
|
MJ_ConversationDetailAttachments_ModalityIDArray(mjaimodality_: MJAIModality_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
7618
7776
|
AIModelTypes_DefaultOutputModalityIDArray(mjaimodality_: MJAIModality_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
7777
|
+
MJ_AIPromptRunMedias_ModalityIDArray(mjaimodality_: MJAIModality_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
7619
7778
|
AIModelTypes_DefaultInputModalityIDArray(mjaimodality_: MJAIModality_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
7779
|
+
MJ_AIAgentRunMedias_ModalityIDArray(mjaimodality_: MJAIModality_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
7620
7780
|
CreateMJAIModality(input: CreateMJAIModalityInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7621
7781
|
UpdateMJAIModality(input: UpdateMJAIModalityInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7622
7782
|
DeleteMJAIModality(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -8025,6 +8185,83 @@ export declare class MJAIPromptModelResolver extends ResolverBase {
|
|
|
8025
8185
|
UpdateMJAIPromptModel(input: UpdateMJAIPromptModelInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
8026
8186
|
DeleteMJAIPromptModel(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
8027
8187
|
}
|
|
8188
|
+
export declare class MJAIPromptRunMedia_ {
|
|
8189
|
+
ID: string;
|
|
8190
|
+
PromptRunID: string;
|
|
8191
|
+
ModalityID: string;
|
|
8192
|
+
MimeType: string;
|
|
8193
|
+
FileName?: string;
|
|
8194
|
+
FileSizeBytes?: number;
|
|
8195
|
+
Width?: number;
|
|
8196
|
+
Height?: number;
|
|
8197
|
+
DurationSeconds?: number;
|
|
8198
|
+
InlineData?: string;
|
|
8199
|
+
FileID?: string;
|
|
8200
|
+
ThumbnailBase64?: string;
|
|
8201
|
+
Metadata?: string;
|
|
8202
|
+
DisplayOrder: number;
|
|
8203
|
+
_mj__CreatedAt: Date;
|
|
8204
|
+
_mj__UpdatedAt: Date;
|
|
8205
|
+
Description?: string;
|
|
8206
|
+
PromptRun?: string;
|
|
8207
|
+
Modality: string;
|
|
8208
|
+
File?: string;
|
|
8209
|
+
MJ_AIAgentRunMedias_SourcePromptRunMediaIDArray: MJAIAgentRunMedia_[];
|
|
8210
|
+
}
|
|
8211
|
+
export declare class CreateMJAIPromptRunMediaInput {
|
|
8212
|
+
ID?: string;
|
|
8213
|
+
PromptRunID?: string;
|
|
8214
|
+
ModalityID?: string;
|
|
8215
|
+
MimeType?: string;
|
|
8216
|
+
FileName: string | null;
|
|
8217
|
+
FileSizeBytes: number | null;
|
|
8218
|
+
Width: number | null;
|
|
8219
|
+
Height: number | null;
|
|
8220
|
+
DurationSeconds: number | null;
|
|
8221
|
+
InlineData: string | null;
|
|
8222
|
+
FileID: string | null;
|
|
8223
|
+
ThumbnailBase64: string | null;
|
|
8224
|
+
Metadata: string | null;
|
|
8225
|
+
DisplayOrder?: number;
|
|
8226
|
+
Description: string | null;
|
|
8227
|
+
}
|
|
8228
|
+
export declare class UpdateMJAIPromptRunMediaInput {
|
|
8229
|
+
ID: string;
|
|
8230
|
+
PromptRunID?: string;
|
|
8231
|
+
ModalityID?: string;
|
|
8232
|
+
MimeType?: string;
|
|
8233
|
+
FileName?: string | null;
|
|
8234
|
+
FileSizeBytes?: number | null;
|
|
8235
|
+
Width?: number | null;
|
|
8236
|
+
Height?: number | null;
|
|
8237
|
+
DurationSeconds?: number | null;
|
|
8238
|
+
InlineData?: string | null;
|
|
8239
|
+
FileID?: string | null;
|
|
8240
|
+
ThumbnailBase64?: string | null;
|
|
8241
|
+
Metadata?: string | null;
|
|
8242
|
+
DisplayOrder?: number;
|
|
8243
|
+
Description?: string | null;
|
|
8244
|
+
OldValues___?: KeyValuePairInput[];
|
|
8245
|
+
}
|
|
8246
|
+
export declare class RunMJAIPromptRunMediaViewResult {
|
|
8247
|
+
Results: MJAIPromptRunMedia_[];
|
|
8248
|
+
UserViewRunID?: string;
|
|
8249
|
+
RowCount: number;
|
|
8250
|
+
TotalRowCount: number;
|
|
8251
|
+
ExecutionTime: number;
|
|
8252
|
+
ErrorMessage?: string;
|
|
8253
|
+
Success: boolean;
|
|
8254
|
+
}
|
|
8255
|
+
export declare class MJAIPromptRunMediaResolver extends ResolverBase {
|
|
8256
|
+
RunMJAIPromptRunMediaViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
8257
|
+
RunMJAIPromptRunMediaViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
8258
|
+
RunMJAIPromptRunMediaDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
8259
|
+
MJAIPromptRunMedia(ID: string, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJAIPromptRunMedia_ | null>;
|
|
8260
|
+
MJ_AIAgentRunMedias_SourcePromptRunMediaIDArray(mjaipromptrunmedia_: MJAIPromptRunMedia_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
8261
|
+
CreateMJAIPromptRunMedia(input: CreateMJAIPromptRunMediaInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
8262
|
+
UpdateMJAIPromptRunMedia(input: UpdateMJAIPromptRunMediaInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
8263
|
+
DeleteMJAIPromptRunMedia(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
8264
|
+
}
|
|
8028
8265
|
export declare class MJAIPromptRun_ {
|
|
8029
8266
|
ID: string;
|
|
8030
8267
|
PromptID: string;
|
|
@@ -8125,6 +8362,7 @@ export declare class MJAIPromptRun_ {
|
|
|
8125
8362
|
RootParentID?: string;
|
|
8126
8363
|
RootRerunFromPromptRunID?: string;
|
|
8127
8364
|
MJ_AIPromptRuns_ParentIDArray: MJAIPromptRun_[];
|
|
8365
|
+
MJ_AIPromptRunMedias_PromptRunIDArray: MJAIPromptRunMedia_[];
|
|
8128
8366
|
AIResultCache_PromptRunIDArray: MJAIResultCache_[];
|
|
8129
8367
|
}
|
|
8130
8368
|
export declare class CreateMJAIPromptRunInput {
|
|
@@ -8311,6 +8549,7 @@ export declare class MJAIPromptRunResolver extends ResolverBase {
|
|
|
8311
8549
|
RunMJAIPromptRunDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
8312
8550
|
MJAIPromptRun(ID: string, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJAIPromptRun_ | null>;
|
|
8313
8551
|
MJ_AIPromptRuns_ParentIDArray(mjaipromptrun_: MJAIPromptRun_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
8552
|
+
MJ_AIPromptRunMedias_PromptRunIDArray(mjaipromptrun_: MJAIPromptRun_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
8314
8553
|
AIResultCache_PromptRunIDArray(mjaipromptrun_: MJAIPromptRun_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
8315
8554
|
CreateMJAIPromptRun(input: CreateMJAIPromptRunInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
8316
8555
|
UpdateMJAIPromptRun(input: UpdateMJAIPromptRunInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -9465,6 +9704,7 @@ export declare class MJConversationDetailAttachment_ {
|
|
|
9465
9704
|
ThumbnailBase64?: string;
|
|
9466
9705
|
_mj__CreatedAt: Date;
|
|
9467
9706
|
_mj__UpdatedAt: Date;
|
|
9707
|
+
Description?: string;
|
|
9468
9708
|
ConversationDetail: string;
|
|
9469
9709
|
Modality: string;
|
|
9470
9710
|
File?: string;
|
|
@@ -9483,6 +9723,7 @@ export declare class CreateMJConversationDetailAttachmentInput {
|
|
|
9483
9723
|
FileID: string | null;
|
|
9484
9724
|
DisplayOrder?: number;
|
|
9485
9725
|
ThumbnailBase64: string | null;
|
|
9726
|
+
Description: string | null;
|
|
9486
9727
|
}
|
|
9487
9728
|
export declare class UpdateMJConversationDetailAttachmentInput {
|
|
9488
9729
|
ID: string;
|
|
@@ -9498,6 +9739,7 @@ export declare class UpdateMJConversationDetailAttachmentInput {
|
|
|
9498
9739
|
FileID?: string | null;
|
|
9499
9740
|
DisplayOrder?: number;
|
|
9500
9741
|
ThumbnailBase64?: string | null;
|
|
9742
|
+
Description?: string | null;
|
|
9501
9743
|
OldValues___?: KeyValuePairInput[];
|
|
9502
9744
|
}
|
|
9503
9745
|
export declare class RunMJConversationDetailAttachmentViewResult {
|
|
@@ -9729,6 +9971,216 @@ export declare class MJCredentialResolver extends ResolverBase {
|
|
|
9729
9971
|
UpdateMJCredential(input: UpdateMJCredentialInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
9730
9972
|
DeleteMJCredential(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
9731
9973
|
}
|
|
9974
|
+
export declare class MJDashboardCategoryLink_ {
|
|
9975
|
+
ID: string;
|
|
9976
|
+
DashboardID: string;
|
|
9977
|
+
UserID: string;
|
|
9978
|
+
DashboardCategoryID?: string;
|
|
9979
|
+
DisplayName?: string;
|
|
9980
|
+
Sequence: number;
|
|
9981
|
+
_mj__CreatedAt: Date;
|
|
9982
|
+
_mj__UpdatedAt: Date;
|
|
9983
|
+
Dashboard: string;
|
|
9984
|
+
User: string;
|
|
9985
|
+
DashboardCategory?: string;
|
|
9986
|
+
}
|
|
9987
|
+
export declare class CreateMJDashboardCategoryLinkInput {
|
|
9988
|
+
ID?: string;
|
|
9989
|
+
DashboardID?: string;
|
|
9990
|
+
UserID?: string;
|
|
9991
|
+
DashboardCategoryID: string | null;
|
|
9992
|
+
DisplayName: string | null;
|
|
9993
|
+
Sequence?: number;
|
|
9994
|
+
}
|
|
9995
|
+
export declare class UpdateMJDashboardCategoryLinkInput {
|
|
9996
|
+
ID: string;
|
|
9997
|
+
DashboardID?: string;
|
|
9998
|
+
UserID?: string;
|
|
9999
|
+
DashboardCategoryID?: string | null;
|
|
10000
|
+
DisplayName?: string | null;
|
|
10001
|
+
Sequence?: number;
|
|
10002
|
+
OldValues___?: KeyValuePairInput[];
|
|
10003
|
+
}
|
|
10004
|
+
export declare class RunMJDashboardCategoryLinkViewResult {
|
|
10005
|
+
Results: MJDashboardCategoryLink_[];
|
|
10006
|
+
UserViewRunID?: string;
|
|
10007
|
+
RowCount: number;
|
|
10008
|
+
TotalRowCount: number;
|
|
10009
|
+
ExecutionTime: number;
|
|
10010
|
+
ErrorMessage?: string;
|
|
10011
|
+
Success: boolean;
|
|
10012
|
+
}
|
|
10013
|
+
export declare class MJDashboardCategoryLinkResolver extends ResolverBase {
|
|
10014
|
+
RunMJDashboardCategoryLinkViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
10015
|
+
RunMJDashboardCategoryLinkViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
10016
|
+
RunMJDashboardCategoryLinkDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
10017
|
+
MJDashboardCategoryLink(ID: string, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJDashboardCategoryLink_ | null>;
|
|
10018
|
+
CreateMJDashboardCategoryLink(input: CreateMJDashboardCategoryLinkInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
10019
|
+
UpdateMJDashboardCategoryLink(input: UpdateMJDashboardCategoryLinkInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
10020
|
+
DeleteMJDashboardCategoryLink(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
10021
|
+
}
|
|
10022
|
+
export declare class MJDashboardCategoryPermission_ {
|
|
10023
|
+
ID: string;
|
|
10024
|
+
DashboardCategoryID: string;
|
|
10025
|
+
UserID: string;
|
|
10026
|
+
CanRead: boolean;
|
|
10027
|
+
CanEdit: boolean;
|
|
10028
|
+
CanAddRemove: boolean;
|
|
10029
|
+
CanShare: boolean;
|
|
10030
|
+
SharedByUserID?: string;
|
|
10031
|
+
_mj__CreatedAt: Date;
|
|
10032
|
+
_mj__UpdatedAt: Date;
|
|
10033
|
+
DashboardCategory: string;
|
|
10034
|
+
User: string;
|
|
10035
|
+
SharedByUser?: string;
|
|
10036
|
+
}
|
|
10037
|
+
export declare class CreateMJDashboardCategoryPermissionInput {
|
|
10038
|
+
ID?: string;
|
|
10039
|
+
DashboardCategoryID?: string;
|
|
10040
|
+
UserID?: string;
|
|
10041
|
+
CanRead?: boolean;
|
|
10042
|
+
CanEdit?: boolean;
|
|
10043
|
+
CanAddRemove?: boolean;
|
|
10044
|
+
CanShare?: boolean;
|
|
10045
|
+
SharedByUserID: string | null;
|
|
10046
|
+
}
|
|
10047
|
+
export declare class UpdateMJDashboardCategoryPermissionInput {
|
|
10048
|
+
ID: string;
|
|
10049
|
+
DashboardCategoryID?: string;
|
|
10050
|
+
UserID?: string;
|
|
10051
|
+
CanRead?: boolean;
|
|
10052
|
+
CanEdit?: boolean;
|
|
10053
|
+
CanAddRemove?: boolean;
|
|
10054
|
+
CanShare?: boolean;
|
|
10055
|
+
SharedByUserID?: string | null;
|
|
10056
|
+
OldValues___?: KeyValuePairInput[];
|
|
10057
|
+
}
|
|
10058
|
+
export declare class RunMJDashboardCategoryPermissionViewResult {
|
|
10059
|
+
Results: MJDashboardCategoryPermission_[];
|
|
10060
|
+
UserViewRunID?: string;
|
|
10061
|
+
RowCount: number;
|
|
10062
|
+
TotalRowCount: number;
|
|
10063
|
+
ExecutionTime: number;
|
|
10064
|
+
ErrorMessage?: string;
|
|
10065
|
+
Success: boolean;
|
|
10066
|
+
}
|
|
10067
|
+
export declare class MJDashboardCategoryPermissionResolver extends ResolverBase {
|
|
10068
|
+
RunMJDashboardCategoryPermissionViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
10069
|
+
RunMJDashboardCategoryPermissionViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
10070
|
+
RunMJDashboardCategoryPermissionDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
10071
|
+
MJDashboardCategoryPermission(ID: string, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJDashboardCategoryPermission_ | null>;
|
|
10072
|
+
CreateMJDashboardCategoryPermission(input: CreateMJDashboardCategoryPermissionInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
10073
|
+
UpdateMJDashboardCategoryPermission(input: UpdateMJDashboardCategoryPermissionInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
10074
|
+
DeleteMJDashboardCategoryPermission(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
10075
|
+
}
|
|
10076
|
+
export declare class MJDashboardPartType_ {
|
|
10077
|
+
ID: string;
|
|
10078
|
+
Name: string;
|
|
10079
|
+
Description?: string;
|
|
10080
|
+
Icon?: string;
|
|
10081
|
+
DriverClass: string;
|
|
10082
|
+
ConfigDialogClass?: string;
|
|
10083
|
+
DefaultConfig?: string;
|
|
10084
|
+
SortOrder: number;
|
|
10085
|
+
IsActive: boolean;
|
|
10086
|
+
_mj__CreatedAt: Date;
|
|
10087
|
+
_mj__UpdatedAt: Date;
|
|
10088
|
+
}
|
|
10089
|
+
export declare class CreateMJDashboardPartTypeInput {
|
|
10090
|
+
ID?: string;
|
|
10091
|
+
Name?: string;
|
|
10092
|
+
Description: string | null;
|
|
10093
|
+
Icon: string | null;
|
|
10094
|
+
DriverClass?: string;
|
|
10095
|
+
ConfigDialogClass: string | null;
|
|
10096
|
+
DefaultConfig: string | null;
|
|
10097
|
+
SortOrder?: number;
|
|
10098
|
+
IsActive?: boolean;
|
|
10099
|
+
}
|
|
10100
|
+
export declare class UpdateMJDashboardPartTypeInput {
|
|
10101
|
+
ID: string;
|
|
10102
|
+
Name?: string;
|
|
10103
|
+
Description?: string | null;
|
|
10104
|
+
Icon?: string | null;
|
|
10105
|
+
DriverClass?: string;
|
|
10106
|
+
ConfigDialogClass?: string | null;
|
|
10107
|
+
DefaultConfig?: string | null;
|
|
10108
|
+
SortOrder?: number;
|
|
10109
|
+
IsActive?: boolean;
|
|
10110
|
+
OldValues___?: KeyValuePairInput[];
|
|
10111
|
+
}
|
|
10112
|
+
export declare class RunMJDashboardPartTypeViewResult {
|
|
10113
|
+
Results: MJDashboardPartType_[];
|
|
10114
|
+
UserViewRunID?: string;
|
|
10115
|
+
RowCount: number;
|
|
10116
|
+
TotalRowCount: number;
|
|
10117
|
+
ExecutionTime: number;
|
|
10118
|
+
ErrorMessage?: string;
|
|
10119
|
+
Success: boolean;
|
|
10120
|
+
}
|
|
10121
|
+
export declare class MJDashboardPartTypeResolver extends ResolverBase {
|
|
10122
|
+
RunMJDashboardPartTypeViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
10123
|
+
RunMJDashboardPartTypeViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
10124
|
+
RunMJDashboardPartTypeDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
10125
|
+
MJDashboardPartType(ID: string, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJDashboardPartType_ | null>;
|
|
10126
|
+
CreateMJDashboardPartType(input: CreateMJDashboardPartTypeInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
10127
|
+
UpdateMJDashboardPartType(input: UpdateMJDashboardPartTypeInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
10128
|
+
DeleteMJDashboardPartType(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
10129
|
+
}
|
|
10130
|
+
export declare class MJDashboardPermission_ {
|
|
10131
|
+
ID: string;
|
|
10132
|
+
DashboardID: string;
|
|
10133
|
+
UserID: string;
|
|
10134
|
+
CanRead: boolean;
|
|
10135
|
+
CanEdit: boolean;
|
|
10136
|
+
CanDelete: boolean;
|
|
10137
|
+
CanShare: boolean;
|
|
10138
|
+
SharedByUserID?: string;
|
|
10139
|
+
_mj__CreatedAt: Date;
|
|
10140
|
+
_mj__UpdatedAt: Date;
|
|
10141
|
+
Dashboard: string;
|
|
10142
|
+
User: string;
|
|
10143
|
+
SharedByUser?: string;
|
|
10144
|
+
}
|
|
10145
|
+
export declare class CreateMJDashboardPermissionInput {
|
|
10146
|
+
ID?: string;
|
|
10147
|
+
DashboardID?: string;
|
|
10148
|
+
UserID?: string;
|
|
10149
|
+
CanRead?: boolean;
|
|
10150
|
+
CanEdit?: boolean;
|
|
10151
|
+
CanDelete?: boolean;
|
|
10152
|
+
CanShare?: boolean;
|
|
10153
|
+
SharedByUserID: string | null;
|
|
10154
|
+
}
|
|
10155
|
+
export declare class UpdateMJDashboardPermissionInput {
|
|
10156
|
+
ID: string;
|
|
10157
|
+
DashboardID?: string;
|
|
10158
|
+
UserID?: string;
|
|
10159
|
+
CanRead?: boolean;
|
|
10160
|
+
CanEdit?: boolean;
|
|
10161
|
+
CanDelete?: boolean;
|
|
10162
|
+
CanShare?: boolean;
|
|
10163
|
+
SharedByUserID?: string | null;
|
|
10164
|
+
OldValues___?: KeyValuePairInput[];
|
|
10165
|
+
}
|
|
10166
|
+
export declare class RunMJDashboardPermissionViewResult {
|
|
10167
|
+
Results: MJDashboardPermission_[];
|
|
10168
|
+
UserViewRunID?: string;
|
|
10169
|
+
RowCount: number;
|
|
10170
|
+
TotalRowCount: number;
|
|
10171
|
+
ExecutionTime: number;
|
|
10172
|
+
ErrorMessage?: string;
|
|
10173
|
+
Success: boolean;
|
|
10174
|
+
}
|
|
10175
|
+
export declare class MJDashboardPermissionResolver extends ResolverBase {
|
|
10176
|
+
RunMJDashboardPermissionViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
10177
|
+
RunMJDashboardPermissionViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
10178
|
+
RunMJDashboardPermissionDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
10179
|
+
MJDashboardPermission(ID: string, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJDashboardPermission_ | null>;
|
|
10180
|
+
CreateMJDashboardPermission(input: CreateMJDashboardPermissionInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
10181
|
+
UpdateMJDashboardPermission(input: UpdateMJDashboardPermissionInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
10182
|
+
DeleteMJDashboardPermission(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
10183
|
+
}
|
|
9732
10184
|
export declare class MJDashboardUserPreference_ {
|
|
9733
10185
|
ID: string;
|
|
9734
10186
|
UserID?: string;
|
|
@@ -10989,6 +11441,7 @@ export declare class MJTestRun_ {
|
|
|
10989
11441
|
RunByUserEmail?: string;
|
|
10990
11442
|
RunContextDetails?: string;
|
|
10991
11443
|
TargetLogEntityID?: string;
|
|
11444
|
+
ResolvedVariables?: string;
|
|
10992
11445
|
Test: string;
|
|
10993
11446
|
TestSuiteRun?: string;
|
|
10994
11447
|
RunByUser: string;
|
|
@@ -11029,6 +11482,7 @@ export declare class CreateMJTestRunInput {
|
|
|
11029
11482
|
RunByUserEmail: string | null;
|
|
11030
11483
|
RunContextDetails: string | null;
|
|
11031
11484
|
TargetLogEntityID: string | null;
|
|
11485
|
+
ResolvedVariables: string | null;
|
|
11032
11486
|
}
|
|
11033
11487
|
export declare class UpdateMJTestRunInput {
|
|
11034
11488
|
ID: string;
|
|
@@ -11060,6 +11514,7 @@ export declare class UpdateMJTestRunInput {
|
|
|
11060
11514
|
RunByUserEmail?: string | null;
|
|
11061
11515
|
RunContextDetails?: string | null;
|
|
11062
11516
|
TargetLogEntityID?: string | null;
|
|
11517
|
+
ResolvedVariables?: string | null;
|
|
11063
11518
|
OldValues___?: KeyValuePairInput[];
|
|
11064
11519
|
}
|
|
11065
11520
|
export declare class RunMJTestRunViewResult {
|
|
@@ -11114,6 +11569,7 @@ export declare class MJTestSuiteRun_ {
|
|
|
11114
11569
|
RunByUserName?: string;
|
|
11115
11570
|
RunByUserEmail?: string;
|
|
11116
11571
|
RunContextDetails?: string;
|
|
11572
|
+
ResolvedVariables?: string;
|
|
11117
11573
|
Suite: string;
|
|
11118
11574
|
RunByUser: string;
|
|
11119
11575
|
MJ_TestRuns_TestSuiteRunIDArray: MJTestRun_[];
|
|
@@ -11145,6 +11601,7 @@ export declare class CreateMJTestSuiteRunInput {
|
|
|
11145
11601
|
RunByUserName: string | null;
|
|
11146
11602
|
RunByUserEmail: string | null;
|
|
11147
11603
|
RunContextDetails: string | null;
|
|
11604
|
+
ResolvedVariables: string | null;
|
|
11148
11605
|
}
|
|
11149
11606
|
export declare class UpdateMJTestSuiteRunInput {
|
|
11150
11607
|
ID: string;
|
|
@@ -11173,6 +11630,7 @@ export declare class UpdateMJTestSuiteRunInput {
|
|
|
11173
11630
|
RunByUserName?: string | null;
|
|
11174
11631
|
RunByUserEmail?: string | null;
|
|
11175
11632
|
RunContextDetails?: string | null;
|
|
11633
|
+
ResolvedVariables?: string | null;
|
|
11176
11634
|
OldValues___?: KeyValuePairInput[];
|
|
11177
11635
|
}
|
|
11178
11636
|
export declare class RunMJTestSuiteRunViewResult {
|
|
@@ -11252,6 +11710,7 @@ export declare class MJTestSuite_ {
|
|
|
11252
11710
|
_mj__CreatedAt: Date;
|
|
11253
11711
|
_mj__UpdatedAt: Date;
|
|
11254
11712
|
MaxExecutionTimeMS?: number;
|
|
11713
|
+
Variables?: string;
|
|
11255
11714
|
Parent?: string;
|
|
11256
11715
|
RootParentID?: string;
|
|
11257
11716
|
MJ_TestSuites_ParentIDArray: MJTestSuite_[];
|
|
@@ -11267,6 +11726,7 @@ export declare class CreateMJTestSuiteInput {
|
|
|
11267
11726
|
Tags: string | null;
|
|
11268
11727
|
Configuration: string | null;
|
|
11269
11728
|
MaxExecutionTimeMS: number | null;
|
|
11729
|
+
Variables: string | null;
|
|
11270
11730
|
}
|
|
11271
11731
|
export declare class UpdateMJTestSuiteInput {
|
|
11272
11732
|
ID: string;
|
|
@@ -11277,6 +11737,7 @@ export declare class UpdateMJTestSuiteInput {
|
|
|
11277
11737
|
Tags?: string | null;
|
|
11278
11738
|
Configuration?: string | null;
|
|
11279
11739
|
MaxExecutionTimeMS?: number | null;
|
|
11740
|
+
Variables?: string | null;
|
|
11280
11741
|
OldValues___?: KeyValuePairInput[];
|
|
11281
11742
|
}
|
|
11282
11743
|
export declare class RunMJTestSuiteViewResult {
|
|
@@ -11308,6 +11769,7 @@ export declare class MJTestType_ {
|
|
|
11308
11769
|
Status: string;
|
|
11309
11770
|
_mj__CreatedAt: Date;
|
|
11310
11771
|
_mj__UpdatedAt: Date;
|
|
11772
|
+
VariablesSchema?: string;
|
|
11311
11773
|
MJ_TestRubrics_TypeIDArray: MJTestRubric_[];
|
|
11312
11774
|
MJ_Tests_TypeIDArray: MJTest_[];
|
|
11313
11775
|
}
|
|
@@ -11317,6 +11779,7 @@ export declare class CreateMJTestTypeInput {
|
|
|
11317
11779
|
Description: string | null;
|
|
11318
11780
|
DriverClass?: string;
|
|
11319
11781
|
Status?: string;
|
|
11782
|
+
VariablesSchema: string | null;
|
|
11320
11783
|
}
|
|
11321
11784
|
export declare class UpdateMJTestTypeInput {
|
|
11322
11785
|
ID: string;
|
|
@@ -11324,6 +11787,7 @@ export declare class UpdateMJTestTypeInput {
|
|
|
11324
11787
|
Description?: string | null;
|
|
11325
11788
|
DriverClass?: string;
|
|
11326
11789
|
Status?: string;
|
|
11790
|
+
VariablesSchema?: string | null;
|
|
11327
11791
|
OldValues___?: KeyValuePairInput[];
|
|
11328
11792
|
}
|
|
11329
11793
|
export declare class RunMJTestTypeViewResult {
|
|
@@ -11363,6 +11827,7 @@ export declare class MJTest_ {
|
|
|
11363
11827
|
_mj__UpdatedAt: Date;
|
|
11364
11828
|
RepeatCount?: number;
|
|
11365
11829
|
MaxExecutionTimeMS?: number;
|
|
11830
|
+
Variables?: string;
|
|
11366
11831
|
Type: string;
|
|
11367
11832
|
MJ_TestRuns_TestIDArray: MJTestRun_[];
|
|
11368
11833
|
MJ_TestSuiteTests_TestIDArray: MJTestSuiteTest_[];
|
|
@@ -11382,6 +11847,7 @@ export declare class CreateMJTestInput {
|
|
|
11382
11847
|
EstimatedCostUSD: number | null;
|
|
11383
11848
|
RepeatCount: number | null;
|
|
11384
11849
|
MaxExecutionTimeMS: number | null;
|
|
11850
|
+
Variables: string | null;
|
|
11385
11851
|
}
|
|
11386
11852
|
export declare class UpdateMJTestInput {
|
|
11387
11853
|
ID: string;
|
|
@@ -11398,6 +11864,7 @@ export declare class UpdateMJTestInput {
|
|
|
11398
11864
|
EstimatedCostUSD?: number | null;
|
|
11399
11865
|
RepeatCount?: number | null;
|
|
11400
11866
|
MaxExecutionTimeMS?: number | null;
|
|
11867
|
+
Variables?: string | null;
|
|
11401
11868
|
OldValues___?: KeyValuePairInput[];
|
|
11402
11869
|
}
|
|
11403
11870
|
export declare class RunMJTestViewResult {
|
|
@@ -14087,8 +14554,8 @@ export declare class MJUser_ {
|
|
|
14087
14554
|
MJ_ReportUserStates_UserIDArray: MJReportUserState_[];
|
|
14088
14555
|
MJ_DashboardUserPreferences_UserIDArray: MJDashboardUserPreference_[];
|
|
14089
14556
|
MJ_DashboardUserStates_UserIDArray: MJDashboardUserState_[];
|
|
14090
|
-
MJ_PublicLinks_UserIDArray: MJPublicLink_[];
|
|
14091
14557
|
MJ_ArtifactVersions_UserIDArray: MJArtifactVersion_[];
|
|
14558
|
+
MJ_PublicLinks_UserIDArray: MJPublicLink_[];
|
|
14092
14559
|
MJ_ScheduledJobRuns_ExecutedByUserIDArray: MJScheduledJobRun_[];
|
|
14093
14560
|
MJ_ScheduledJobs_NotifyUserIDArray: MJScheduledJob_[];
|
|
14094
14561
|
MJ_ArtifactPermissions_UserIDArray: MJArtifactPermission_[];
|
|
@@ -14097,8 +14564,11 @@ export declare class MJUser_ {
|
|
|
14097
14564
|
MJ_TestRunFeedbacks_ReviewerUserIDArray: MJTestRunFeedback_[];
|
|
14098
14565
|
MJ_TestSuiteRuns_RunByUserIDArray: MJTestSuiteRun_[];
|
|
14099
14566
|
MJ_UserSettings_UserIDArray: MJUserSetting_[];
|
|
14100
|
-
MJ_ListInvitations_CreatedByUserIDArray: MJListInvitation_[];
|
|
14101
14567
|
MJ_ListShares_UserIDArray: MJListShare_[];
|
|
14568
|
+
MJ_ListInvitations_CreatedByUserIDArray: MJListInvitation_[];
|
|
14569
|
+
MJ_DashboardCategoryLinks_UserIDArray: MJDashboardCategoryLink_[];
|
|
14570
|
+
MJ_DashboardCategoryPermissions_UserIDArray: MJDashboardCategoryPermission_[];
|
|
14571
|
+
MJ_DashboardPermissions_SharedByUserIDArray: MJDashboardPermission_[];
|
|
14102
14572
|
ResourcePermissions_UserIDArray: MJResourcePermission_[];
|
|
14103
14573
|
AIAgentRequests_RequestForUserIDArray: MJAIAgentRequest_[];
|
|
14104
14574
|
ConversationDetails_UserIDArray: MJConversationDetail_[];
|
|
@@ -14108,6 +14578,8 @@ export declare class MJUser_ {
|
|
|
14108
14578
|
MJ_CollectionPermissions_SharedByUserIDArray: MJCollectionPermission_[];
|
|
14109
14579
|
MJ_ArtifactPermissions_SharedByUserIDArray: MJArtifactPermission_[];
|
|
14110
14580
|
MJ_TestRuns_RunByUserIDArray: MJTestRun_[];
|
|
14581
|
+
MJ_DashboardPermissions_UserIDArray: MJDashboardPermission_[];
|
|
14582
|
+
MJ_DashboardCategoryPermissions_SharedByUserIDArray: MJDashboardCategoryPermission_[];
|
|
14111
14583
|
MJ_AIAgentRuns_UserIDArray: MJAIAgentRun_[];
|
|
14112
14584
|
MJ_AIAgentPermissions_UserIDArray: MJAIAgentPermission_[];
|
|
14113
14585
|
MJ_Collections_OwnerIDArray: MJCollection_[];
|
|
@@ -14202,8 +14674,8 @@ export declare class MJUserResolverBase extends ResolverBase {
|
|
|
14202
14674
|
MJ_ReportUserStates_UserIDArray(mjuser_: MJUser_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
14203
14675
|
MJ_DashboardUserPreferences_UserIDArray(mjuser_: MJUser_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
14204
14676
|
MJ_DashboardUserStates_UserIDArray(mjuser_: MJUser_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
14205
|
-
MJ_PublicLinks_UserIDArray(mjuser_: MJUser_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
14206
14677
|
MJ_ArtifactVersions_UserIDArray(mjuser_: MJUser_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
14678
|
+
MJ_PublicLinks_UserIDArray(mjuser_: MJUser_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
14207
14679
|
MJ_ScheduledJobRuns_ExecutedByUserIDArray(mjuser_: MJUser_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
14208
14680
|
MJ_ScheduledJobs_NotifyUserIDArray(mjuser_: MJUser_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
14209
14681
|
MJ_ArtifactPermissions_UserIDArray(mjuser_: MJUser_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
@@ -14212,8 +14684,11 @@ export declare class MJUserResolverBase extends ResolverBase {
|
|
|
14212
14684
|
MJ_TestRunFeedbacks_ReviewerUserIDArray(mjuser_: MJUser_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
14213
14685
|
MJ_TestSuiteRuns_RunByUserIDArray(mjuser_: MJUser_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
14214
14686
|
MJ_UserSettings_UserIDArray(mjuser_: MJUser_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
14215
|
-
MJ_ListInvitations_CreatedByUserIDArray(mjuser_: MJUser_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
14216
14687
|
MJ_ListShares_UserIDArray(mjuser_: MJUser_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
14688
|
+
MJ_ListInvitations_CreatedByUserIDArray(mjuser_: MJUser_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
14689
|
+
MJ_DashboardCategoryLinks_UserIDArray(mjuser_: MJUser_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
14690
|
+
MJ_DashboardCategoryPermissions_UserIDArray(mjuser_: MJUser_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
14691
|
+
MJ_DashboardPermissions_SharedByUserIDArray(mjuser_: MJUser_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
14217
14692
|
ResourcePermissions_UserIDArray(mjuser_: MJUser_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
14218
14693
|
AIAgentRequests_RequestForUserIDArray(mjuser_: MJUser_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
14219
14694
|
ConversationDetails_UserIDArray(mjuser_: MJUser_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
@@ -14223,6 +14698,8 @@ export declare class MJUserResolverBase extends ResolverBase {
|
|
|
14223
14698
|
MJ_CollectionPermissions_SharedByUserIDArray(mjuser_: MJUser_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
14224
14699
|
MJ_ArtifactPermissions_SharedByUserIDArray(mjuser_: MJUser_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
14225
14700
|
MJ_TestRuns_RunByUserIDArray(mjuser_: MJUser_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
14701
|
+
MJ_DashboardPermissions_UserIDArray(mjuser_: MJUser_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
14702
|
+
MJ_DashboardCategoryPermissions_SharedByUserIDArray(mjuser_: MJUser_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
14226
14703
|
MJ_AIAgentRuns_UserIDArray(mjuser_: MJUser_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
14227
14704
|
MJ_AIAgentPermissions_UserIDArray(mjuser_: MJUser_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
14228
14705
|
MJ_Collections_OwnerIDArray(mjuser_: MJUser_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|