@memberjunction/server 5.23.0 → 5.24.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.map +1 -1
- package/dist/config.js +11 -0
- package/dist/config.js.map +1 -1
- package/dist/generated/generated.d.ts +462 -0
- package/dist/generated/generated.d.ts.map +1 -1
- package/dist/generated/generated.js +16584 -13956
- package/dist/generated/generated.js.map +1 -1
- package/dist/generic/RunViewResolver.d.ts.map +1 -1
- package/dist/generic/RunViewResolver.js.map +1 -1
- package/dist/resolvers/AutotagPipelineResolver.d.ts +10 -1
- package/dist/resolvers/AutotagPipelineResolver.d.ts.map +1 -1
- package/dist/resolvers/AutotagPipelineResolver.js +97 -13
- package/dist/resolvers/AutotagPipelineResolver.js.map +1 -1
- package/dist/resolvers/FetchEntityVectorsResolver.d.ts.map +1 -1
- package/dist/resolvers/FetchEntityVectorsResolver.js +6 -2
- package/dist/resolvers/FetchEntityVectorsResolver.js.map +1 -1
- package/dist/resolvers/RunAIAgentResolver.d.ts +21 -0
- package/dist/resolvers/RunAIAgentResolver.d.ts.map +1 -1
- package/dist/resolvers/RunAIAgentResolver.js +73 -33
- package/dist/resolvers/RunAIAgentResolver.js.map +1 -1
- package/dist/resolvers/SearchKnowledgeResolver.d.ts +42 -1
- package/dist/resolvers/SearchKnowledgeResolver.d.ts.map +1 -1
- package/dist/resolvers/SearchKnowledgeResolver.js +239 -13
- package/dist/resolvers/SearchKnowledgeResolver.js.map +1 -1
- package/package.json +63 -63
- package/src/__tests__/search-knowledge-tags.test.ts +415 -0
- package/src/config.ts +11 -0
- package/src/generated/generated.ts +1807 -1
- package/src/generic/RunViewResolver.ts +1 -0
- package/src/resolvers/AutotagPipelineResolver.ts +99 -10
- package/src/resolvers/FetchEntityVectorsResolver.ts +6 -2
- package/src/resolvers/RunAIAgentResolver.ts +95 -56
- package/src/resolvers/SearchKnowledgeResolver.ts +270 -13
|
@@ -3377,6 +3377,7 @@ export declare class MJAIModel_ {
|
|
|
3377
3377
|
MJGeneratedCodes_GeneratedByModelIDArray: MJGeneratedCode_[];
|
|
3378
3378
|
MJAIModelCosts_ModelIDArray: MJAIModelCost_[];
|
|
3379
3379
|
MJContentTypes_EmbeddingModelIDArray: MJContentType_[];
|
|
3380
|
+
MJContentItems_EmbeddingModelIDArray: MJContentItem_[];
|
|
3380
3381
|
MJAIPromptModels_ModelIDArray: MJAIPromptModel_[];
|
|
3381
3382
|
MJContentSources_EmbeddingModelIDArray: MJContentSource_[];
|
|
3382
3383
|
MJAIPromptRuns_OriginalModelIDArray: MJAIPromptRun_[];
|
|
@@ -3461,6 +3462,7 @@ export declare class MJAIModelResolver extends ResolverBase {
|
|
|
3461
3462
|
MJGeneratedCodes_GeneratedByModelIDArray(mjaimodel_: MJAIModel_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3462
3463
|
MJAIModelCosts_ModelIDArray(mjaimodel_: MJAIModel_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3463
3464
|
MJContentTypes_EmbeddingModelIDArray(mjaimodel_: MJAIModel_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3465
|
+
MJContentItems_EmbeddingModelIDArray(mjaimodel_: MJAIModel_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3464
3466
|
MJAIPromptModels_ModelIDArray(mjaimodel_: MJAIModel_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3465
3467
|
MJContentSources_EmbeddingModelIDArray(mjaimodel_: MJAIModel_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3466
3468
|
MJAIPromptRuns_OriginalModelIDArray(mjaimodel_: MJAIModel_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
@@ -3766,6 +3768,7 @@ export declare class MJAIPromptRun_ {
|
|
|
3766
3768
|
TestRun?: string;
|
|
3767
3769
|
RootParentID?: string;
|
|
3768
3770
|
RootRerunFromPromptRunID?: string;
|
|
3771
|
+
MJContentProcessRunPromptRuns_AIPromptRunIDArray: MJContentProcessRunPromptRun_[];
|
|
3769
3772
|
MJAIPromptRuns_RerunFromPromptRunIDArray: MJAIPromptRun_[];
|
|
3770
3773
|
MJAIPromptRunMedias_PromptRunIDArray: MJAIPromptRunMedia_[];
|
|
3771
3774
|
MJAIResultCache_PromptRunIDArray: MJAIResultCache_[];
|
|
@@ -3956,6 +3959,7 @@ export declare class MJAIPromptRunResolver extends ResolverBase {
|
|
|
3956
3959
|
RunMJAIPromptRunViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
3957
3960
|
RunMJAIPromptRunDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
3958
3961
|
MJAIPromptRun(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJAIPromptRun_ | null>;
|
|
3962
|
+
MJContentProcessRunPromptRuns_AIPromptRunIDArray(mjaipromptrun_: MJAIPromptRun_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3959
3963
|
MJAIPromptRuns_RerunFromPromptRunIDArray(mjaipromptrun_: MJAIPromptRun_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3960
3964
|
MJAIPromptRunMedias_PromptRunIDArray(mjaipromptrun_: MJAIPromptRun_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3961
3965
|
MJAIResultCache_PromptRunIDArray(mjaipromptrun_: MJAIPromptRun_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
@@ -6937,6 +6941,63 @@ export declare class MJContentItemAttributeResolver extends ResolverBase {
|
|
|
6937
6941
|
UpdateMJContentItemAttribute(input: UpdateMJContentItemAttributeInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
6938
6942
|
DeleteMJContentItemAttribute(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
6939
6943
|
}
|
|
6944
|
+
export declare class MJContentItemDuplicate_ {
|
|
6945
|
+
ID: string;
|
|
6946
|
+
ContentItemAID: string;
|
|
6947
|
+
ContentItemBID: string;
|
|
6948
|
+
SimilarityScore: number;
|
|
6949
|
+
DetectionMethod: string;
|
|
6950
|
+
Status: string;
|
|
6951
|
+
ResolvedByUserID?: string;
|
|
6952
|
+
ResolvedAt?: Date;
|
|
6953
|
+
Resolution?: string;
|
|
6954
|
+
_mj__CreatedAt: Date;
|
|
6955
|
+
_mj__UpdatedAt: Date;
|
|
6956
|
+
ContentItemA?: string;
|
|
6957
|
+
ContentItemB?: string;
|
|
6958
|
+
ResolvedByUser?: string;
|
|
6959
|
+
}
|
|
6960
|
+
export declare class CreateMJContentItemDuplicateInput {
|
|
6961
|
+
ID?: string;
|
|
6962
|
+
ContentItemAID?: string;
|
|
6963
|
+
ContentItemBID?: string;
|
|
6964
|
+
SimilarityScore?: number;
|
|
6965
|
+
DetectionMethod?: string;
|
|
6966
|
+
Status?: string;
|
|
6967
|
+
ResolvedByUserID: string | null;
|
|
6968
|
+
ResolvedAt: Date | null;
|
|
6969
|
+
Resolution: string | null;
|
|
6970
|
+
}
|
|
6971
|
+
export declare class UpdateMJContentItemDuplicateInput {
|
|
6972
|
+
ID: string;
|
|
6973
|
+
ContentItemAID?: string;
|
|
6974
|
+
ContentItemBID?: string;
|
|
6975
|
+
SimilarityScore?: number;
|
|
6976
|
+
DetectionMethod?: string;
|
|
6977
|
+
Status?: string;
|
|
6978
|
+
ResolvedByUserID?: string | null;
|
|
6979
|
+
ResolvedAt?: Date | null;
|
|
6980
|
+
Resolution?: string | null;
|
|
6981
|
+
OldValues___?: KeyValuePairInput[];
|
|
6982
|
+
}
|
|
6983
|
+
export declare class RunMJContentItemDuplicateViewResult {
|
|
6984
|
+
Results: MJContentItemDuplicate_[];
|
|
6985
|
+
UserViewRunID?: string;
|
|
6986
|
+
RowCount: number;
|
|
6987
|
+
TotalRowCount: number;
|
|
6988
|
+
ExecutionTime: number;
|
|
6989
|
+
ErrorMessage?: string;
|
|
6990
|
+
Success: boolean;
|
|
6991
|
+
}
|
|
6992
|
+
export declare class MJContentItemDuplicateResolver extends ResolverBase {
|
|
6993
|
+
RunMJContentItemDuplicateViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
6994
|
+
RunMJContentItemDuplicateViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
6995
|
+
RunMJContentItemDuplicateDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
6996
|
+
MJContentItemDuplicate(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJContentItemDuplicate_ | null>;
|
|
6997
|
+
CreateMJContentItemDuplicate(input: CreateMJContentItemDuplicateInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
6998
|
+
UpdateMJContentItemDuplicate(input: UpdateMJContentItemDuplicateInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
6999
|
+
DeleteMJContentItemDuplicate(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7000
|
+
}
|
|
6940
7001
|
export declare class MJContentItemTag_ {
|
|
6941
7002
|
ID: string;
|
|
6942
7003
|
ItemID: string;
|
|
@@ -6944,19 +7005,23 @@ export declare class MJContentItemTag_ {
|
|
|
6944
7005
|
_mj__CreatedAt: Date;
|
|
6945
7006
|
_mj__UpdatedAt: Date;
|
|
6946
7007
|
Weight: number;
|
|
7008
|
+
TagID?: string;
|
|
6947
7009
|
Item?: string;
|
|
7010
|
+
Tag_Virtual?: string;
|
|
6948
7011
|
}
|
|
6949
7012
|
export declare class CreateMJContentItemTagInput {
|
|
6950
7013
|
ID?: string;
|
|
6951
7014
|
ItemID?: string;
|
|
6952
7015
|
Tag?: string;
|
|
6953
7016
|
Weight?: number;
|
|
7017
|
+
TagID: string | null;
|
|
6954
7018
|
}
|
|
6955
7019
|
export declare class UpdateMJContentItemTagInput {
|
|
6956
7020
|
ID: string;
|
|
6957
7021
|
ItemID?: string;
|
|
6958
7022
|
Tag?: string;
|
|
6959
7023
|
Weight?: number;
|
|
7024
|
+
TagID?: string | null;
|
|
6960
7025
|
OldValues___?: KeyValuePairInput[];
|
|
6961
7026
|
}
|
|
6962
7027
|
export declare class RunMJContentItemTagViewResult {
|
|
@@ -6990,12 +7055,22 @@ export declare class MJContentItem_ {
|
|
|
6990
7055
|
Text?: string;
|
|
6991
7056
|
_mj__CreatedAt: Date;
|
|
6992
7057
|
_mj__UpdatedAt: Date;
|
|
7058
|
+
EntityRecordDocumentID?: string;
|
|
7059
|
+
EmbeddingStatus: string;
|
|
7060
|
+
LastEmbeddedAt?: Date;
|
|
7061
|
+
EmbeddingModelID?: string;
|
|
7062
|
+
TaggingStatus: string;
|
|
7063
|
+
LastTaggedAt?: Date;
|
|
6993
7064
|
ContentSource?: string;
|
|
6994
7065
|
ContentType: string;
|
|
6995
7066
|
ContentSourceType: string;
|
|
6996
7067
|
ContentFileType: string;
|
|
7068
|
+
EntityRecordDocument?: string;
|
|
7069
|
+
EmbeddingModel?: string;
|
|
6997
7070
|
MJContentItemAttributes_ContentItemIDArray: MJContentItemAttribute_[];
|
|
6998
7071
|
MJContentItemTags_ItemIDArray: MJContentItemTag_[];
|
|
7072
|
+
MJContentItemDuplicates_ContentItemAIDArray: MJContentItemDuplicate_[];
|
|
7073
|
+
MJContentItemDuplicates_ContentItemBIDArray: MJContentItemDuplicate_[];
|
|
6999
7074
|
}
|
|
7000
7075
|
export declare class CreateMJContentItemInput {
|
|
7001
7076
|
ID?: string;
|
|
@@ -7008,6 +7083,12 @@ export declare class CreateMJContentItemInput {
|
|
|
7008
7083
|
Checksum: string | null;
|
|
7009
7084
|
URL?: string;
|
|
7010
7085
|
Text: string | null;
|
|
7086
|
+
EntityRecordDocumentID: string | null;
|
|
7087
|
+
EmbeddingStatus?: string;
|
|
7088
|
+
LastEmbeddedAt: Date | null;
|
|
7089
|
+
EmbeddingModelID: string | null;
|
|
7090
|
+
TaggingStatus?: string;
|
|
7091
|
+
LastTaggedAt: Date | null;
|
|
7011
7092
|
}
|
|
7012
7093
|
export declare class UpdateMJContentItemInput {
|
|
7013
7094
|
ID: string;
|
|
@@ -7020,6 +7101,12 @@ export declare class UpdateMJContentItemInput {
|
|
|
7020
7101
|
Checksum?: string | null;
|
|
7021
7102
|
URL?: string;
|
|
7022
7103
|
Text?: string | null;
|
|
7104
|
+
EntityRecordDocumentID?: string | null;
|
|
7105
|
+
EmbeddingStatus?: string;
|
|
7106
|
+
LastEmbeddedAt?: Date | null;
|
|
7107
|
+
EmbeddingModelID?: string | null;
|
|
7108
|
+
TaggingStatus?: string;
|
|
7109
|
+
LastTaggedAt?: Date | null;
|
|
7023
7110
|
OldValues___?: KeyValuePairInput[];
|
|
7024
7111
|
}
|
|
7025
7112
|
export declare class RunMJContentItemViewResult {
|
|
@@ -7038,10 +7125,126 @@ export declare class MJContentItemResolver extends ResolverBase {
|
|
|
7038
7125
|
MJContentItem(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJContentItem_ | null>;
|
|
7039
7126
|
MJContentItemAttributes_ContentItemIDArray(mjcontentitem_: MJContentItem_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
7040
7127
|
MJContentItemTags_ItemIDArray(mjcontentitem_: MJContentItem_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
7128
|
+
MJContentItemDuplicates_ContentItemAIDArray(mjcontentitem_: MJContentItem_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
7129
|
+
MJContentItemDuplicates_ContentItemBIDArray(mjcontentitem_: MJContentItem_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
7041
7130
|
CreateMJContentItem(input: CreateMJContentItemInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7042
7131
|
UpdateMJContentItem(input: UpdateMJContentItemInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7043
7132
|
DeleteMJContentItem(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7044
7133
|
}
|
|
7134
|
+
export declare class MJContentProcessRunDetail_ {
|
|
7135
|
+
ID: string;
|
|
7136
|
+
ContentProcessRunID: string;
|
|
7137
|
+
ContentSourceID: string;
|
|
7138
|
+
ContentSourceTypeID: string;
|
|
7139
|
+
Status: string;
|
|
7140
|
+
ItemsProcessed: number;
|
|
7141
|
+
ItemsTagged: number;
|
|
7142
|
+
ItemsVectorized: number;
|
|
7143
|
+
TagsCreated: number;
|
|
7144
|
+
ErrorCount: number;
|
|
7145
|
+
StartTime?: Date;
|
|
7146
|
+
EndTime?: Date;
|
|
7147
|
+
TotalTokensUsed: number;
|
|
7148
|
+
TotalCost: number;
|
|
7149
|
+
_mj__CreatedAt: Date;
|
|
7150
|
+
_mj__UpdatedAt: Date;
|
|
7151
|
+
ContentProcessRun?: string;
|
|
7152
|
+
ContentSource?: string;
|
|
7153
|
+
ContentSourceType: string;
|
|
7154
|
+
MJContentProcessRunPromptRuns_ContentProcessRunDetailIDArray: MJContentProcessRunPromptRun_[];
|
|
7155
|
+
}
|
|
7156
|
+
export declare class CreateMJContentProcessRunDetailInput {
|
|
7157
|
+
ID?: string;
|
|
7158
|
+
ContentProcessRunID?: string;
|
|
7159
|
+
ContentSourceID?: string;
|
|
7160
|
+
ContentSourceTypeID?: string;
|
|
7161
|
+
Status?: string;
|
|
7162
|
+
ItemsProcessed?: number;
|
|
7163
|
+
ItemsTagged?: number;
|
|
7164
|
+
ItemsVectorized?: number;
|
|
7165
|
+
TagsCreated?: number;
|
|
7166
|
+
ErrorCount?: number;
|
|
7167
|
+
StartTime: Date | null;
|
|
7168
|
+
EndTime: Date | null;
|
|
7169
|
+
TotalTokensUsed?: number;
|
|
7170
|
+
TotalCost?: number;
|
|
7171
|
+
}
|
|
7172
|
+
export declare class UpdateMJContentProcessRunDetailInput {
|
|
7173
|
+
ID: string;
|
|
7174
|
+
ContentProcessRunID?: string;
|
|
7175
|
+
ContentSourceID?: string;
|
|
7176
|
+
ContentSourceTypeID?: string;
|
|
7177
|
+
Status?: string;
|
|
7178
|
+
ItemsProcessed?: number;
|
|
7179
|
+
ItemsTagged?: number;
|
|
7180
|
+
ItemsVectorized?: number;
|
|
7181
|
+
TagsCreated?: number;
|
|
7182
|
+
ErrorCount?: number;
|
|
7183
|
+
StartTime?: Date | null;
|
|
7184
|
+
EndTime?: Date | null;
|
|
7185
|
+
TotalTokensUsed?: number;
|
|
7186
|
+
TotalCost?: number;
|
|
7187
|
+
OldValues___?: KeyValuePairInput[];
|
|
7188
|
+
}
|
|
7189
|
+
export declare class RunMJContentProcessRunDetailViewResult {
|
|
7190
|
+
Results: MJContentProcessRunDetail_[];
|
|
7191
|
+
UserViewRunID?: string;
|
|
7192
|
+
RowCount: number;
|
|
7193
|
+
TotalRowCount: number;
|
|
7194
|
+
ExecutionTime: number;
|
|
7195
|
+
ErrorMessage?: string;
|
|
7196
|
+
Success: boolean;
|
|
7197
|
+
}
|
|
7198
|
+
export declare class MJContentProcessRunDetailResolver extends ResolverBase {
|
|
7199
|
+
RunMJContentProcessRunDetailViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
7200
|
+
RunMJContentProcessRunDetailViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
7201
|
+
RunMJContentProcessRunDetailDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
7202
|
+
MJContentProcessRunDetail(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJContentProcessRunDetail_ | null>;
|
|
7203
|
+
MJContentProcessRunPromptRuns_ContentProcessRunDetailIDArray(mjcontentprocessrundetail_: MJContentProcessRunDetail_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
7204
|
+
CreateMJContentProcessRunDetail(input: CreateMJContentProcessRunDetailInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7205
|
+
UpdateMJContentProcessRunDetail(input: UpdateMJContentProcessRunDetailInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7206
|
+
DeleteMJContentProcessRunDetail(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7207
|
+
}
|
|
7208
|
+
export declare class MJContentProcessRunPromptRun_ {
|
|
7209
|
+
ID: string;
|
|
7210
|
+
ContentProcessRunDetailID: string;
|
|
7211
|
+
AIPromptRunID: string;
|
|
7212
|
+
RunType: string;
|
|
7213
|
+
_mj__CreatedAt: Date;
|
|
7214
|
+
_mj__UpdatedAt: Date;
|
|
7215
|
+
AIPromptRun?: string;
|
|
7216
|
+
}
|
|
7217
|
+
export declare class CreateMJContentProcessRunPromptRunInput {
|
|
7218
|
+
ID?: string;
|
|
7219
|
+
ContentProcessRunDetailID?: string;
|
|
7220
|
+
AIPromptRunID?: string;
|
|
7221
|
+
RunType?: string;
|
|
7222
|
+
}
|
|
7223
|
+
export declare class UpdateMJContentProcessRunPromptRunInput {
|
|
7224
|
+
ID: string;
|
|
7225
|
+
ContentProcessRunDetailID?: string;
|
|
7226
|
+
AIPromptRunID?: string;
|
|
7227
|
+
RunType?: string;
|
|
7228
|
+
OldValues___?: KeyValuePairInput[];
|
|
7229
|
+
}
|
|
7230
|
+
export declare class RunMJContentProcessRunPromptRunViewResult {
|
|
7231
|
+
Results: MJContentProcessRunPromptRun_[];
|
|
7232
|
+
UserViewRunID?: string;
|
|
7233
|
+
RowCount: number;
|
|
7234
|
+
TotalRowCount: number;
|
|
7235
|
+
ExecutionTime: number;
|
|
7236
|
+
ErrorMessage?: string;
|
|
7237
|
+
Success: boolean;
|
|
7238
|
+
}
|
|
7239
|
+
export declare class MJContentProcessRunPromptRunResolver extends ResolverBase {
|
|
7240
|
+
RunMJContentProcessRunPromptRunViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
7241
|
+
RunMJContentProcessRunPromptRunViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
7242
|
+
RunMJContentProcessRunPromptRunDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
7243
|
+
MJContentProcessRunPromptRun(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJContentProcessRunPromptRun_ | null>;
|
|
7244
|
+
CreateMJContentProcessRunPromptRun(input: CreateMJContentProcessRunPromptRunInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7245
|
+
UpdateMJContentProcessRunPromptRun(input: UpdateMJContentProcessRunPromptRunInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7246
|
+
DeleteMJContentProcessRunPromptRun(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7247
|
+
}
|
|
7045
7248
|
export declare class MJContentProcessRun_ {
|
|
7046
7249
|
ID: string;
|
|
7047
7250
|
SourceID: string;
|
|
@@ -7051,7 +7254,17 @@ export declare class MJContentProcessRun_ {
|
|
|
7051
7254
|
ProcessedItems?: number;
|
|
7052
7255
|
_mj__CreatedAt: Date;
|
|
7053
7256
|
_mj__UpdatedAt: Date;
|
|
7257
|
+
StartedByUserID?: string;
|
|
7258
|
+
TotalItemCount?: number;
|
|
7259
|
+
LastProcessedOffset?: number;
|
|
7260
|
+
BatchSize?: number;
|
|
7261
|
+
ErrorCount?: number;
|
|
7262
|
+
ErrorMessage?: string;
|
|
7263
|
+
CancellationRequested: boolean;
|
|
7264
|
+
Configuration?: string;
|
|
7054
7265
|
Source?: string;
|
|
7266
|
+
StartedByUser?: string;
|
|
7267
|
+
MJContentProcessRunDetails_ContentProcessRunIDArray: MJContentProcessRunDetail_[];
|
|
7055
7268
|
}
|
|
7056
7269
|
export declare class CreateMJContentProcessRunInput {
|
|
7057
7270
|
ID?: string;
|
|
@@ -7060,6 +7273,14 @@ export declare class CreateMJContentProcessRunInput {
|
|
|
7060
7273
|
EndTime: Date | null;
|
|
7061
7274
|
Status: string | null;
|
|
7062
7275
|
ProcessedItems: number | null;
|
|
7276
|
+
StartedByUserID: string | null;
|
|
7277
|
+
TotalItemCount: number | null;
|
|
7278
|
+
LastProcessedOffset?: number | null;
|
|
7279
|
+
BatchSize?: number | null;
|
|
7280
|
+
ErrorCount?: number | null;
|
|
7281
|
+
ErrorMessage: string | null;
|
|
7282
|
+
CancellationRequested?: boolean;
|
|
7283
|
+
Configuration: string | null;
|
|
7063
7284
|
}
|
|
7064
7285
|
export declare class UpdateMJContentProcessRunInput {
|
|
7065
7286
|
ID: string;
|
|
@@ -7068,6 +7289,14 @@ export declare class UpdateMJContentProcessRunInput {
|
|
|
7068
7289
|
EndTime?: Date | null;
|
|
7069
7290
|
Status?: string | null;
|
|
7070
7291
|
ProcessedItems?: number | null;
|
|
7292
|
+
StartedByUserID?: string | null;
|
|
7293
|
+
TotalItemCount?: number | null;
|
|
7294
|
+
LastProcessedOffset?: number | null;
|
|
7295
|
+
BatchSize?: number | null;
|
|
7296
|
+
ErrorCount?: number | null;
|
|
7297
|
+
ErrorMessage?: string | null;
|
|
7298
|
+
CancellationRequested?: boolean;
|
|
7299
|
+
Configuration?: string | null;
|
|
7071
7300
|
OldValues___?: KeyValuePairInput[];
|
|
7072
7301
|
}
|
|
7073
7302
|
export declare class RunMJContentProcessRunViewResult {
|
|
@@ -7084,6 +7313,7 @@ export declare class MJContentProcessRunResolver extends ResolverBase {
|
|
|
7084
7313
|
RunMJContentProcessRunViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
7085
7314
|
RunMJContentProcessRunDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
7086
7315
|
MJContentProcessRun(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJContentProcessRun_ | null>;
|
|
7316
|
+
MJContentProcessRunDetails_ContentProcessRunIDArray(mjcontentprocessrun_: MJContentProcessRun_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
7087
7317
|
CreateMJContentProcessRun(input: CreateMJContentProcessRunInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7088
7318
|
UpdateMJContentProcessRun(input: UpdateMJContentProcessRunInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7089
7319
|
DeleteMJContentProcessRun(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -7179,18 +7409,25 @@ export declare class MJContentSourceType_ {
|
|
|
7179
7409
|
Description?: string;
|
|
7180
7410
|
_mj__CreatedAt: Date;
|
|
7181
7411
|
_mj__UpdatedAt: Date;
|
|
7412
|
+
DriverClass?: string;
|
|
7413
|
+
Configuration?: string;
|
|
7182
7414
|
MJContentSources_ContentSourceTypeIDArray: MJContentSource_[];
|
|
7183
7415
|
MJContentItems_ContentSourceTypeIDArray: MJContentItem_[];
|
|
7416
|
+
MJContentProcessRunDetails_ContentSourceTypeIDArray: MJContentProcessRunDetail_[];
|
|
7184
7417
|
}
|
|
7185
7418
|
export declare class CreateMJContentSourceTypeInput {
|
|
7186
7419
|
ID?: string;
|
|
7187
7420
|
Name?: string;
|
|
7188
7421
|
Description: string | null;
|
|
7422
|
+
DriverClass: string | null;
|
|
7423
|
+
Configuration: string | null;
|
|
7189
7424
|
}
|
|
7190
7425
|
export declare class UpdateMJContentSourceTypeInput {
|
|
7191
7426
|
ID: string;
|
|
7192
7427
|
Name?: string;
|
|
7193
7428
|
Description?: string | null;
|
|
7429
|
+
DriverClass?: string | null;
|
|
7430
|
+
Configuration?: string | null;
|
|
7194
7431
|
OldValues___?: KeyValuePairInput[];
|
|
7195
7432
|
}
|
|
7196
7433
|
export declare class RunMJContentSourceTypeViewResult {
|
|
@@ -7209,6 +7446,7 @@ export declare class MJContentSourceTypeResolver extends ResolverBase {
|
|
|
7209
7446
|
MJContentSourceType(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJContentSourceType_ | null>;
|
|
7210
7447
|
MJContentSources_ContentSourceTypeIDArray(mjcontentsourcetype_: MJContentSourceType_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
7211
7448
|
MJContentItems_ContentSourceTypeIDArray(mjcontentsourcetype_: MJContentSourceType_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
7449
|
+
MJContentProcessRunDetails_ContentSourceTypeIDArray(mjcontentsourcetype_: MJContentSourceType_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
7212
7450
|
CreateMJContentSourceType(input: CreateMJContentSourceTypeInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7213
7451
|
UpdateMJContentSourceType(input: UpdateMJContentSourceTypeInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7214
7452
|
DeleteMJContentSourceType(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -7224,14 +7462,22 @@ export declare class MJContentSource_ {
|
|
|
7224
7462
|
_mj__UpdatedAt: Date;
|
|
7225
7463
|
EmbeddingModelID?: string;
|
|
7226
7464
|
VectorIndexID?: string;
|
|
7465
|
+
Configuration?: string;
|
|
7466
|
+
EntityID?: string;
|
|
7467
|
+
EntityDocumentID?: string;
|
|
7468
|
+
ScheduledActionID?: string;
|
|
7227
7469
|
ContentType: string;
|
|
7228
7470
|
ContentSourceType: string;
|
|
7229
7471
|
ContentFileType: string;
|
|
7230
7472
|
EmbeddingModel?: string;
|
|
7231
7473
|
VectorIndex?: string;
|
|
7474
|
+
Entity?: string;
|
|
7475
|
+
EntityDocument?: string;
|
|
7476
|
+
ScheduledAction?: string;
|
|
7232
7477
|
MJContentItems_ContentSourceIDArray: MJContentItem_[];
|
|
7233
7478
|
MJContentProcessRuns_SourceIDArray: MJContentProcessRun_[];
|
|
7234
7479
|
MJContentSourceParams_ContentSourceIDArray: MJContentSourceParam_[];
|
|
7480
|
+
MJContentProcessRunDetails_ContentSourceIDArray: MJContentProcessRunDetail_[];
|
|
7235
7481
|
}
|
|
7236
7482
|
export declare class CreateMJContentSourceInput {
|
|
7237
7483
|
ID?: string;
|
|
@@ -7242,6 +7488,10 @@ export declare class CreateMJContentSourceInput {
|
|
|
7242
7488
|
URL?: string;
|
|
7243
7489
|
EmbeddingModelID: string | null;
|
|
7244
7490
|
VectorIndexID: string | null;
|
|
7491
|
+
Configuration: string | null;
|
|
7492
|
+
EntityID: string | null;
|
|
7493
|
+
EntityDocumentID: string | null;
|
|
7494
|
+
ScheduledActionID: string | null;
|
|
7245
7495
|
}
|
|
7246
7496
|
export declare class UpdateMJContentSourceInput {
|
|
7247
7497
|
ID: string;
|
|
@@ -7252,6 +7502,10 @@ export declare class UpdateMJContentSourceInput {
|
|
|
7252
7502
|
URL?: string;
|
|
7253
7503
|
EmbeddingModelID?: string | null;
|
|
7254
7504
|
VectorIndexID?: string | null;
|
|
7505
|
+
Configuration?: string | null;
|
|
7506
|
+
EntityID?: string | null;
|
|
7507
|
+
EntityDocumentID?: string | null;
|
|
7508
|
+
ScheduledActionID?: string | null;
|
|
7255
7509
|
OldValues___?: KeyValuePairInput[];
|
|
7256
7510
|
}
|
|
7257
7511
|
export declare class RunMJContentSourceViewResult {
|
|
@@ -7271,6 +7525,7 @@ export declare class MJContentSourceResolver extends ResolverBase {
|
|
|
7271
7525
|
MJContentItems_ContentSourceIDArray(mjcontentsource_: MJContentSource_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
7272
7526
|
MJContentProcessRuns_SourceIDArray(mjcontentsource_: MJContentSource_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
7273
7527
|
MJContentSourceParams_ContentSourceIDArray(mjcontentsource_: MJContentSource_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
7528
|
+
MJContentProcessRunDetails_ContentSourceIDArray(mjcontentsource_: MJContentSource_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
7274
7529
|
CreateMJContentSource(input: CreateMJContentSourceInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7275
7530
|
UpdateMJContentSource(input: UpdateMJContentSourceInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7276
7531
|
DeleteMJContentSource(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -7328,6 +7583,7 @@ export declare class MJContentType_ {
|
|
|
7328
7583
|
_mj__UpdatedAt: Date;
|
|
7329
7584
|
EmbeddingModelID?: string;
|
|
7330
7585
|
VectorIndexID?: string;
|
|
7586
|
+
Configuration?: string;
|
|
7331
7587
|
AIModel: string;
|
|
7332
7588
|
EmbeddingModel?: string;
|
|
7333
7589
|
VectorIndex?: string;
|
|
@@ -7343,6 +7599,7 @@ export declare class CreateMJContentTypeInput {
|
|
|
7343
7599
|
MaxTags?: number;
|
|
7344
7600
|
EmbeddingModelID: string | null;
|
|
7345
7601
|
VectorIndexID: string | null;
|
|
7602
|
+
Configuration: string | null;
|
|
7346
7603
|
}
|
|
7347
7604
|
export declare class UpdateMJContentTypeInput {
|
|
7348
7605
|
ID: string;
|
|
@@ -7353,6 +7610,7 @@ export declare class UpdateMJContentTypeInput {
|
|
|
7353
7610
|
MaxTags?: number;
|
|
7354
7611
|
EmbeddingModelID?: string | null;
|
|
7355
7612
|
VectorIndexID?: string | null;
|
|
7613
|
+
Configuration?: string | null;
|
|
7356
7614
|
OldValues___?: KeyValuePairInput[];
|
|
7357
7615
|
}
|
|
7358
7616
|
export declare class RunMJContentTypeViewResult {
|
|
@@ -8790,6 +9048,8 @@ export declare class MJDuplicateRunDetail_ {
|
|
|
8790
9048
|
_mj__CreatedAt: Date;
|
|
8791
9049
|
_mj__UpdatedAt: Date;
|
|
8792
9050
|
RecordMetadata?: string;
|
|
9051
|
+
StartedAt?: Date;
|
|
9052
|
+
EndedAt?: Date;
|
|
8793
9053
|
DuplicateRun: string;
|
|
8794
9054
|
MJDuplicateRunDetailMatches_DuplicateRunDetailIDArray: MJDuplicateRunDetailMatch_[];
|
|
8795
9055
|
}
|
|
@@ -8803,6 +9063,8 @@ export declare class CreateMJDuplicateRunDetailInput {
|
|
|
8803
9063
|
MergeStatus?: string;
|
|
8804
9064
|
MergeErrorMessage: string | null;
|
|
8805
9065
|
RecordMetadata: string | null;
|
|
9066
|
+
StartedAt: Date | null;
|
|
9067
|
+
EndedAt: Date | null;
|
|
8806
9068
|
}
|
|
8807
9069
|
export declare class UpdateMJDuplicateRunDetailInput {
|
|
8808
9070
|
ID: string;
|
|
@@ -8814,6 +9076,8 @@ export declare class UpdateMJDuplicateRunDetailInput {
|
|
|
8814
9076
|
MergeStatus?: string;
|
|
8815
9077
|
MergeErrorMessage?: string | null;
|
|
8816
9078
|
RecordMetadata?: string | null;
|
|
9079
|
+
StartedAt?: Date | null;
|
|
9080
|
+
EndedAt?: Date | null;
|
|
8817
9081
|
OldValues___?: KeyValuePairInput[];
|
|
8818
9082
|
}
|
|
8819
9083
|
export declare class RunMJDuplicateRunDetailViewResult {
|
|
@@ -8849,6 +9113,11 @@ export declare class MJDuplicateRun_ {
|
|
|
8849
9113
|
ProcessingErrorMessage?: string;
|
|
8850
9114
|
_mj__CreatedAt: Date;
|
|
8851
9115
|
_mj__UpdatedAt: Date;
|
|
9116
|
+
TotalItemCount?: number;
|
|
9117
|
+
ProcessedItemCount?: number;
|
|
9118
|
+
LastProcessedOffset?: number;
|
|
9119
|
+
BatchSize?: number;
|
|
9120
|
+
CancellationRequested: boolean;
|
|
8852
9121
|
Entity: string;
|
|
8853
9122
|
StartedByUser: string;
|
|
8854
9123
|
SourceList?: string;
|
|
@@ -8867,6 +9136,11 @@ export declare class CreateMJDuplicateRunInput {
|
|
|
8867
9136
|
ApprovedByUserID: string | null;
|
|
8868
9137
|
ProcessingStatus?: string;
|
|
8869
9138
|
ProcessingErrorMessage: string | null;
|
|
9139
|
+
TotalItemCount: number | null;
|
|
9140
|
+
ProcessedItemCount?: number | null;
|
|
9141
|
+
LastProcessedOffset?: number | null;
|
|
9142
|
+
BatchSize?: number | null;
|
|
9143
|
+
CancellationRequested?: boolean;
|
|
8870
9144
|
}
|
|
8871
9145
|
export declare class UpdateMJDuplicateRunInput {
|
|
8872
9146
|
ID: string;
|
|
@@ -8880,6 +9154,11 @@ export declare class UpdateMJDuplicateRunInput {
|
|
|
8880
9154
|
ApprovedByUserID?: string | null;
|
|
8881
9155
|
ProcessingStatus?: string;
|
|
8882
9156
|
ProcessingErrorMessage?: string | null;
|
|
9157
|
+
TotalItemCount?: number | null;
|
|
9158
|
+
ProcessedItemCount?: number | null;
|
|
9159
|
+
LastProcessedOffset?: number | null;
|
|
9160
|
+
BatchSize?: number | null;
|
|
9161
|
+
CancellationRequested?: boolean;
|
|
8883
9162
|
OldValues___?: KeyValuePairInput[];
|
|
8884
9163
|
}
|
|
8885
9164
|
export declare class RunMJDuplicateRunViewResult {
|
|
@@ -9381,6 +9660,7 @@ export declare class MJEntity_ {
|
|
|
9381
9660
|
MJCompanyIntegrationEntityMaps_EntityIDArray: MJCompanyIntegrationEntityMap_[];
|
|
9382
9661
|
MJEntityFields_RelatedEntityIDArray: MJEntityField_[];
|
|
9383
9662
|
MJResourceTypes_CategoryEntityIDArray: MJResourceType_[];
|
|
9663
|
+
MJContentSources_EntityIDArray: MJContentSource_[];
|
|
9384
9664
|
MJTestRuns_TargetLogEntityIDArray: MJTestRun_[];
|
|
9385
9665
|
MJAIAgentRuns_PrimaryScopeEntityIDArray: MJAIAgentRun_[];
|
|
9386
9666
|
}
|
|
@@ -9563,6 +9843,7 @@ export declare class MJEntityResolverBase extends ResolverBase {
|
|
|
9563
9843
|
MJCompanyIntegrationEntityMaps_EntityIDArray(mjentity_: MJEntity_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
9564
9844
|
MJEntityFields_RelatedEntityIDArray(mjentity_: MJEntity_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
9565
9845
|
MJResourceTypes_CategoryEntityIDArray(mjentity_: MJEntity_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
9846
|
+
MJContentSources_EntityIDArray(mjentity_: MJEntity_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
9566
9847
|
MJTestRuns_TargetLogEntityIDArray(mjentity_: MJEntity_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
9567
9848
|
MJAIAgentRuns_PrimaryScopeEntityIDArray(mjentity_: MJEntity_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
9568
9849
|
CreateMJEntity(input: CreateMJEntityInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -10091,6 +10372,7 @@ export declare class MJEntityDocument_ {
|
|
|
10091
10372
|
MJEntityDocumentRuns_EntityDocumentIDArray: MJEntityDocumentRun_[];
|
|
10092
10373
|
MJEntityDocumentSettings_EntityDocumentIDArray: MJEntityDocumentSetting_[];
|
|
10093
10374
|
MJEntityRecordDocuments_EntityDocumentIDArray: MJEntityRecordDocument_[];
|
|
10375
|
+
MJContentSources_EntityDocumentIDArray: MJContentSource_[];
|
|
10094
10376
|
}
|
|
10095
10377
|
export declare class CreateMJEntityDocumentInput {
|
|
10096
10378
|
ID?: string;
|
|
@@ -10138,6 +10420,7 @@ export declare class MJEntityDocumentResolver extends ResolverBase {
|
|
|
10138
10420
|
MJEntityDocumentRuns_EntityDocumentIDArray(mjentitydocument_: MJEntityDocument_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
10139
10421
|
MJEntityDocumentSettings_EntityDocumentIDArray(mjentitydocument_: MJEntityDocument_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
10140
10422
|
MJEntityRecordDocuments_EntityDocumentIDArray(mjentitydocument_: MJEntityDocument_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
10423
|
+
MJContentSources_EntityDocumentIDArray(mjentitydocument_: MJEntityDocument_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
10141
10424
|
CreateMJEntityDocument(input: CreateMJEntityDocumentInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
10142
10425
|
UpdateMJEntityDocument(input: UpdateMJEntityDocumentInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
10143
10426
|
DeleteMJEntityDocument(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -10594,6 +10877,7 @@ export declare class MJEntityRecordDocument_ {
|
|
|
10594
10877
|
Entity: string;
|
|
10595
10878
|
EntityDocument: string;
|
|
10596
10879
|
VectorIndex: string;
|
|
10880
|
+
MJContentItems_EntityRecordDocumentIDArray: MJContentItem_[];
|
|
10597
10881
|
}
|
|
10598
10882
|
export declare class CreateMJEntityRecordDocumentInput {
|
|
10599
10883
|
ID?: string;
|
|
@@ -10632,6 +10916,7 @@ export declare class MJEntityRecordDocumentResolver extends ResolverBase {
|
|
|
10632
10916
|
RunMJEntityRecordDocumentViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
10633
10917
|
RunMJEntityRecordDocumentDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
10634
10918
|
MJEntityRecordDocument(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJEntityRecordDocument_ | null>;
|
|
10919
|
+
MJContentItems_EntityRecordDocumentIDArray(mjentityrecorddocument_: MJEntityRecordDocument_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
10635
10920
|
CreateMJEntityRecordDocument(input: CreateMJEntityRecordDocumentInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
10636
10921
|
UpdateMJEntityRecordDocument(input: UpdateMJEntityRecordDocumentInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
10637
10922
|
DeleteMJEntityRecordDocument(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -11705,6 +11990,58 @@ export declare class MJIntegrationResolver extends ResolverBase {
|
|
|
11705
11990
|
UpdateMJIntegration(input: UpdateMJIntegrationInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
11706
11991
|
DeleteMJIntegration(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
11707
11992
|
}
|
|
11993
|
+
export declare class MJKnowledgeHubSavedSearch_ {
|
|
11994
|
+
ID: string;
|
|
11995
|
+
UserID: string;
|
|
11996
|
+
Name: string;
|
|
11997
|
+
Query: string;
|
|
11998
|
+
Filters?: string;
|
|
11999
|
+
MinScore?: number;
|
|
12000
|
+
MaxResults?: number;
|
|
12001
|
+
NotifyOnNewResults: boolean;
|
|
12002
|
+
_mj__CreatedAt: Date;
|
|
12003
|
+
_mj__UpdatedAt: Date;
|
|
12004
|
+
User: string;
|
|
12005
|
+
}
|
|
12006
|
+
export declare class CreateMJKnowledgeHubSavedSearchInput {
|
|
12007
|
+
ID?: string;
|
|
12008
|
+
UserID?: string;
|
|
12009
|
+
Name?: string;
|
|
12010
|
+
Query?: string;
|
|
12011
|
+
Filters: string | null;
|
|
12012
|
+
MinScore: number | null;
|
|
12013
|
+
MaxResults?: number | null;
|
|
12014
|
+
NotifyOnNewResults?: boolean;
|
|
12015
|
+
}
|
|
12016
|
+
export declare class UpdateMJKnowledgeHubSavedSearchInput {
|
|
12017
|
+
ID: string;
|
|
12018
|
+
UserID?: string;
|
|
12019
|
+
Name?: string;
|
|
12020
|
+
Query?: string;
|
|
12021
|
+
Filters?: string | null;
|
|
12022
|
+
MinScore?: number | null;
|
|
12023
|
+
MaxResults?: number | null;
|
|
12024
|
+
NotifyOnNewResults?: boolean;
|
|
12025
|
+
OldValues___?: KeyValuePairInput[];
|
|
12026
|
+
}
|
|
12027
|
+
export declare class RunMJKnowledgeHubSavedSearchViewResult {
|
|
12028
|
+
Results: MJKnowledgeHubSavedSearch_[];
|
|
12029
|
+
UserViewRunID?: string;
|
|
12030
|
+
RowCount: number;
|
|
12031
|
+
TotalRowCount: number;
|
|
12032
|
+
ExecutionTime: number;
|
|
12033
|
+
ErrorMessage?: string;
|
|
12034
|
+
Success: boolean;
|
|
12035
|
+
}
|
|
12036
|
+
export declare class MJKnowledgeHubSavedSearchResolver extends ResolverBase {
|
|
12037
|
+
RunMJKnowledgeHubSavedSearchViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
12038
|
+
RunMJKnowledgeHubSavedSearchViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
12039
|
+
RunMJKnowledgeHubSavedSearchDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
12040
|
+
MJKnowledgeHubSavedSearch(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJKnowledgeHubSavedSearch_ | null>;
|
|
12041
|
+
CreateMJKnowledgeHubSavedSearch(input: CreateMJKnowledgeHubSavedSearchInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
12042
|
+
UpdateMJKnowledgeHubSavedSearch(input: UpdateMJKnowledgeHubSavedSearchInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
12043
|
+
DeleteMJKnowledgeHubSavedSearch(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
12044
|
+
}
|
|
11708
12045
|
export declare class MJLibrary_ {
|
|
11709
12046
|
ID: string;
|
|
11710
12047
|
Name: string;
|
|
@@ -14957,6 +15294,7 @@ export declare class MJScheduledAction_ {
|
|
|
14957
15294
|
CreatedByUser: string;
|
|
14958
15295
|
Action: string;
|
|
14959
15296
|
MJScheduledActionParams_ScheduledActionIDArray: MJScheduledActionParam_[];
|
|
15297
|
+
MJContentSources_ScheduledActionIDArray: MJContentSource_[];
|
|
14960
15298
|
}
|
|
14961
15299
|
export declare class CreateMJScheduledActionInput {
|
|
14962
15300
|
ID?: string;
|
|
@@ -15006,6 +15344,7 @@ export declare class MJScheduledActionResolver extends ResolverBase {
|
|
|
15006
15344
|
RunMJScheduledActionDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
15007
15345
|
MJScheduledAction(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJScheduledAction_ | null>;
|
|
15008
15346
|
MJScheduledActionParams_ScheduledActionIDArray(mjscheduledaction_: MJScheduledAction_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
15347
|
+
MJContentSources_ScheduledActionIDArray(mjscheduledaction_: MJScheduledAction_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
15009
15348
|
CreateMJScheduledAction(input: CreateMJScheduledActionInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
15010
15349
|
UpdateMJScheduledAction(input: UpdateMJScheduledActionInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
15011
15350
|
DeleteMJScheduledAction(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -15387,6 +15726,98 @@ export declare class MJSQLDialectResolver extends ResolverBase {
|
|
|
15387
15726
|
UpdateMJSQLDialect(input: UpdateMJSQLDialectInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
15388
15727
|
DeleteMJSQLDialect(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
15389
15728
|
}
|
|
15729
|
+
export declare class MJTagAuditLog_ {
|
|
15730
|
+
ID: string;
|
|
15731
|
+
TagID: string;
|
|
15732
|
+
Action: string;
|
|
15733
|
+
Details?: string;
|
|
15734
|
+
PerformedByUserID: string;
|
|
15735
|
+
RelatedTagID?: string;
|
|
15736
|
+
_mj__CreatedAt: Date;
|
|
15737
|
+
_mj__UpdatedAt: Date;
|
|
15738
|
+
Tag: string;
|
|
15739
|
+
PerformedByUser: string;
|
|
15740
|
+
RelatedTag?: string;
|
|
15741
|
+
}
|
|
15742
|
+
export declare class CreateMJTagAuditLogInput {
|
|
15743
|
+
ID?: string;
|
|
15744
|
+
TagID?: string;
|
|
15745
|
+
Action?: string;
|
|
15746
|
+
Details: string | null;
|
|
15747
|
+
PerformedByUserID?: string;
|
|
15748
|
+
RelatedTagID: string | null;
|
|
15749
|
+
}
|
|
15750
|
+
export declare class UpdateMJTagAuditLogInput {
|
|
15751
|
+
ID: string;
|
|
15752
|
+
TagID?: string;
|
|
15753
|
+
Action?: string;
|
|
15754
|
+
Details?: string | null;
|
|
15755
|
+
PerformedByUserID?: string;
|
|
15756
|
+
RelatedTagID?: string | null;
|
|
15757
|
+
OldValues___?: KeyValuePairInput[];
|
|
15758
|
+
}
|
|
15759
|
+
export declare class RunMJTagAuditLogViewResult {
|
|
15760
|
+
Results: MJTagAuditLog_[];
|
|
15761
|
+
UserViewRunID?: string;
|
|
15762
|
+
RowCount: number;
|
|
15763
|
+
TotalRowCount: number;
|
|
15764
|
+
ExecutionTime: number;
|
|
15765
|
+
ErrorMessage?: string;
|
|
15766
|
+
Success: boolean;
|
|
15767
|
+
}
|
|
15768
|
+
export declare class MJTagAuditLogResolver extends ResolverBase {
|
|
15769
|
+
RunMJTagAuditLogViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
15770
|
+
RunMJTagAuditLogViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
15771
|
+
RunMJTagAuditLogDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
15772
|
+
MJTagAuditLog(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJTagAuditLog_ | null>;
|
|
15773
|
+
CreateMJTagAuditLog(input: CreateMJTagAuditLogInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
15774
|
+
UpdateMJTagAuditLog(input: UpdateMJTagAuditLogInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
15775
|
+
DeleteMJTagAuditLog(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
15776
|
+
}
|
|
15777
|
+
export declare class MJTagCoOccurrence_ {
|
|
15778
|
+
ID: string;
|
|
15779
|
+
TagAID: string;
|
|
15780
|
+
TagBID: string;
|
|
15781
|
+
CoOccurrenceCount: number;
|
|
15782
|
+
LastComputedAt: Date;
|
|
15783
|
+
_mj__CreatedAt: Date;
|
|
15784
|
+
_mj__UpdatedAt: Date;
|
|
15785
|
+
TagA: string;
|
|
15786
|
+
TagB: string;
|
|
15787
|
+
}
|
|
15788
|
+
export declare class CreateMJTagCoOccurrenceInput {
|
|
15789
|
+
ID?: string;
|
|
15790
|
+
TagAID?: string;
|
|
15791
|
+
TagBID?: string;
|
|
15792
|
+
CoOccurrenceCount?: number;
|
|
15793
|
+
LastComputedAt?: Date;
|
|
15794
|
+
}
|
|
15795
|
+
export declare class UpdateMJTagCoOccurrenceInput {
|
|
15796
|
+
ID: string;
|
|
15797
|
+
TagAID?: string;
|
|
15798
|
+
TagBID?: string;
|
|
15799
|
+
CoOccurrenceCount?: number;
|
|
15800
|
+
LastComputedAt?: Date;
|
|
15801
|
+
OldValues___?: KeyValuePairInput[];
|
|
15802
|
+
}
|
|
15803
|
+
export declare class RunMJTagCoOccurrenceViewResult {
|
|
15804
|
+
Results: MJTagCoOccurrence_[];
|
|
15805
|
+
UserViewRunID?: string;
|
|
15806
|
+
RowCount: number;
|
|
15807
|
+
TotalRowCount: number;
|
|
15808
|
+
ExecutionTime: number;
|
|
15809
|
+
ErrorMessage?: string;
|
|
15810
|
+
Success: boolean;
|
|
15811
|
+
}
|
|
15812
|
+
export declare class MJTagCoOccurrenceResolver extends ResolverBase {
|
|
15813
|
+
RunMJTagCoOccurrenceViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
15814
|
+
RunMJTagCoOccurrenceViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
15815
|
+
RunMJTagCoOccurrenceDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
15816
|
+
MJTagCoOccurrence(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJTagCoOccurrence_ | null>;
|
|
15817
|
+
CreateMJTagCoOccurrence(input: CreateMJTagCoOccurrenceInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
15818
|
+
UpdateMJTagCoOccurrence(input: UpdateMJTagCoOccurrenceInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
15819
|
+
DeleteMJTagCoOccurrence(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
15820
|
+
}
|
|
15390
15821
|
export declare class MJTaggedItem_ {
|
|
15391
15822
|
ID: string;
|
|
15392
15823
|
TagID: string;
|
|
@@ -15394,6 +15825,7 @@ export declare class MJTaggedItem_ {
|
|
|
15394
15825
|
RecordID: string;
|
|
15395
15826
|
_mj__CreatedAt: Date;
|
|
15396
15827
|
_mj__UpdatedAt: Date;
|
|
15828
|
+
Weight: number;
|
|
15397
15829
|
Tag: string;
|
|
15398
15830
|
Entity: string;
|
|
15399
15831
|
}
|
|
@@ -15402,12 +15834,14 @@ export declare class CreateMJTaggedItemInput {
|
|
|
15402
15834
|
TagID?: string;
|
|
15403
15835
|
EntityID?: string;
|
|
15404
15836
|
RecordID?: string;
|
|
15837
|
+
Weight?: number;
|
|
15405
15838
|
}
|
|
15406
15839
|
export declare class UpdateMJTaggedItemInput {
|
|
15407
15840
|
ID: string;
|
|
15408
15841
|
TagID?: string;
|
|
15409
15842
|
EntityID?: string;
|
|
15410
15843
|
RecordID?: string;
|
|
15844
|
+
Weight?: number;
|
|
15411
15845
|
OldValues___?: KeyValuePairInput[];
|
|
15412
15846
|
}
|
|
15413
15847
|
export declare class RunMJTaggedItemViewResult {
|
|
@@ -15436,10 +15870,20 @@ export declare class MJTag_ {
|
|
|
15436
15870
|
Description?: string;
|
|
15437
15871
|
_mj__CreatedAt: Date;
|
|
15438
15872
|
_mj__UpdatedAt: Date;
|
|
15873
|
+
Status: string;
|
|
15874
|
+
MergedIntoTagID?: string;
|
|
15439
15875
|
Parent?: string;
|
|
15876
|
+
MergedIntoTag?: string;
|
|
15440
15877
|
RootParentID?: string;
|
|
15878
|
+
RootMergedIntoTagID?: string;
|
|
15441
15879
|
MJTags_ParentIDArray: MJTag_[];
|
|
15442
15880
|
MJTaggedItems_TagIDArray: MJTaggedItem_[];
|
|
15881
|
+
MJContentItemTags_TagIDArray: MJContentItemTag_[];
|
|
15882
|
+
MJTagCoOccurrences_TagBIDArray: MJTagCoOccurrence_[];
|
|
15883
|
+
MJTagAuditLogs_RelatedTagIDArray: MJTagAuditLog_[];
|
|
15884
|
+
MJTagCoOccurrences_TagAIDArray: MJTagCoOccurrence_[];
|
|
15885
|
+
MJTagAuditLogs_TagIDArray: MJTagAuditLog_[];
|
|
15886
|
+
MJTags_MergedIntoTagIDArray: MJTag_[];
|
|
15443
15887
|
}
|
|
15444
15888
|
export declare class CreateMJTagInput {
|
|
15445
15889
|
ID?: string;
|
|
@@ -15447,6 +15891,8 @@ export declare class CreateMJTagInput {
|
|
|
15447
15891
|
ParentID: string | null;
|
|
15448
15892
|
DisplayName?: string;
|
|
15449
15893
|
Description: string | null;
|
|
15894
|
+
Status?: string;
|
|
15895
|
+
MergedIntoTagID: string | null;
|
|
15450
15896
|
}
|
|
15451
15897
|
export declare class UpdateMJTagInput {
|
|
15452
15898
|
ID: string;
|
|
@@ -15454,6 +15900,8 @@ export declare class UpdateMJTagInput {
|
|
|
15454
15900
|
ParentID?: string | null;
|
|
15455
15901
|
DisplayName?: string;
|
|
15456
15902
|
Description?: string | null;
|
|
15903
|
+
Status?: string;
|
|
15904
|
+
MergedIntoTagID?: string | null;
|
|
15457
15905
|
OldValues___?: KeyValuePairInput[];
|
|
15458
15906
|
}
|
|
15459
15907
|
export declare class RunMJTagViewResult {
|
|
@@ -15472,6 +15920,12 @@ export declare class MJTagResolver extends ResolverBase {
|
|
|
15472
15920
|
MJTag(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJTag_ | null>;
|
|
15473
15921
|
MJTags_ParentIDArray(mjtag_: MJTag_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
15474
15922
|
MJTaggedItems_TagIDArray(mjtag_: MJTag_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
15923
|
+
MJContentItemTags_TagIDArray(mjtag_: MJTag_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
15924
|
+
MJTagCoOccurrences_TagBIDArray(mjtag_: MJTag_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
15925
|
+
MJTagAuditLogs_RelatedTagIDArray(mjtag_: MJTag_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
15926
|
+
MJTagCoOccurrences_TagAIDArray(mjtag_: MJTag_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
15927
|
+
MJTagAuditLogs_TagIDArray(mjtag_: MJTag_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
15928
|
+
MJTags_MergedIntoTagIDArray(mjtag_: MJTag_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
15475
15929
|
CreateMJTag(input: CreateMJTagInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
15476
15930
|
UpdateMJTag(input: UpdateMJTagInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
15477
15931
|
DeleteMJTag(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -17379,6 +17833,10 @@ export declare class MJUser_ {
|
|
|
17379
17833
|
MJOAuthAuthorizationStates_UserIDArray: MJOAuthAuthorizationState_[];
|
|
17380
17834
|
MJOpenAppInstallHistories_ExecutedByUserIDArray: MJOpenAppInstallHistory_[];
|
|
17381
17835
|
MJOpenApps_InstalledByUserIDArray: MJOpenApp_[];
|
|
17836
|
+
MJContentItemDuplicates_ResolvedByUserIDArray: MJContentItemDuplicate_[];
|
|
17837
|
+
MJContentProcessRuns_StartedByUserIDArray: MJContentProcessRun_[];
|
|
17838
|
+
MJKnowledgeHubSavedSearches_UserIDArray: MJKnowledgeHubSavedSearch_[];
|
|
17839
|
+
MJTagAuditLogs_PerformedByUserIDArray: MJTagAuditLog_[];
|
|
17382
17840
|
MJResourcePermissions_UserIDArray: MJResourcePermission_[];
|
|
17383
17841
|
MJAIAgentRequests_ResponseByUserIDArray: MJAIAgentRequest_[];
|
|
17384
17842
|
MJConversationDetails_UserIDArray: MJConversationDetail_[];
|
|
@@ -17511,6 +17969,10 @@ export declare class MJUserResolverBase extends ResolverBase {
|
|
|
17511
17969
|
MJOAuthAuthorizationStates_UserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
17512
17970
|
MJOpenAppInstallHistories_ExecutedByUserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
17513
17971
|
MJOpenApps_InstalledByUserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
17972
|
+
MJContentItemDuplicates_ResolvedByUserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
17973
|
+
MJContentProcessRuns_StartedByUserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
17974
|
+
MJKnowledgeHubSavedSearches_UserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
17975
|
+
MJTagAuditLogs_PerformedByUserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
17514
17976
|
MJResourcePermissions_UserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
17515
17977
|
MJAIAgentRequests_ResponseByUserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
17516
17978
|
MJConversationDetails_UserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|