@memberjunction/server 5.22.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/README.md +35 -0
- 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 +610 -4
- package/dist/generated/generated.d.ts.map +1 -1
- package/dist/generated/generated.js +17333 -13889
- 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/index.d.ts +3 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +7 -0
- package/dist/index.js.map +1 -1
- package/dist/resolvers/AutotagPipelineResolver.d.ts +30 -0
- package/dist/resolvers/AutotagPipelineResolver.d.ts.map +1 -0
- package/dist/resolvers/AutotagPipelineResolver.js +231 -0
- package/dist/resolvers/AutotagPipelineResolver.js.map +1 -0
- package/dist/resolvers/ClientToolRequestResolver.d.ts +43 -0
- package/dist/resolvers/ClientToolRequestResolver.d.ts.map +1 -0
- package/dist/resolvers/ClientToolRequestResolver.js +161 -0
- package/dist/resolvers/ClientToolRequestResolver.js.map +1 -0
- package/dist/resolvers/FetchEntityVectorsResolver.d.ts +29 -0
- package/dist/resolvers/FetchEntityVectorsResolver.d.ts.map +1 -0
- package/dist/resolvers/FetchEntityVectorsResolver.js +222 -0
- package/dist/resolvers/FetchEntityVectorsResolver.js.map +1 -0
- package/dist/resolvers/RunAIAgentResolver.d.ts +21 -0
- package/dist/resolvers/RunAIAgentResolver.d.ts.map +1 -1
- package/dist/resolvers/RunAIAgentResolver.js +75 -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 +2373 -7
- package/src/generic/RunViewResolver.ts +1 -0
- package/src/index.ts +10 -0
- package/src/resolvers/AutotagPipelineResolver.ts +235 -0
- package/src/resolvers/ClientToolRequestResolver.ts +128 -0
- package/src/resolvers/FetchEntityVectorsResolver.ts +238 -0
- package/src/resolvers/RunAIAgentResolver.ts +97 -56
- package/src/resolvers/SearchKnowledgeResolver.ts +270 -13
|
@@ -817,6 +817,50 @@ export declare class MJAIAgentCategoryResolver extends ResolverBase {
|
|
|
817
817
|
UpdateMJAIAgentCategory(input: UpdateMJAIAgentCategoryInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
818
818
|
DeleteMJAIAgentCategory(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
819
819
|
}
|
|
820
|
+
export declare class MJAIAgentClientTool_ {
|
|
821
|
+
ID: string;
|
|
822
|
+
AgentID: string;
|
|
823
|
+
ClientToolDefinitionID: string;
|
|
824
|
+
IsRequired: boolean;
|
|
825
|
+
Priority: number;
|
|
826
|
+
_mj__CreatedAt: Date;
|
|
827
|
+
_mj__UpdatedAt: Date;
|
|
828
|
+
Agent?: string;
|
|
829
|
+
ClientToolDefinition: string;
|
|
830
|
+
}
|
|
831
|
+
export declare class CreateMJAIAgentClientToolInput {
|
|
832
|
+
ID?: string;
|
|
833
|
+
AgentID?: string;
|
|
834
|
+
ClientToolDefinitionID?: string;
|
|
835
|
+
IsRequired?: boolean;
|
|
836
|
+
Priority?: number;
|
|
837
|
+
}
|
|
838
|
+
export declare class UpdateMJAIAgentClientToolInput {
|
|
839
|
+
ID: string;
|
|
840
|
+
AgentID?: string;
|
|
841
|
+
ClientToolDefinitionID?: string;
|
|
842
|
+
IsRequired?: boolean;
|
|
843
|
+
Priority?: number;
|
|
844
|
+
OldValues___?: KeyValuePairInput[];
|
|
845
|
+
}
|
|
846
|
+
export declare class RunMJAIAgentClientToolViewResult {
|
|
847
|
+
Results: MJAIAgentClientTool_[];
|
|
848
|
+
UserViewRunID?: string;
|
|
849
|
+
RowCount: number;
|
|
850
|
+
TotalRowCount: number;
|
|
851
|
+
ExecutionTime: number;
|
|
852
|
+
ErrorMessage?: string;
|
|
853
|
+
Success: boolean;
|
|
854
|
+
}
|
|
855
|
+
export declare class MJAIAgentClientToolResolver extends ResolverBase {
|
|
856
|
+
RunMJAIAgentClientToolViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
857
|
+
RunMJAIAgentClientToolViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
858
|
+
RunMJAIAgentClientToolDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
859
|
+
MJAIAgentClientTool(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJAIAgentClientTool_ | null>;
|
|
860
|
+
CreateMJAIAgentClientTool(input: CreateMJAIAgentClientToolInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
861
|
+
UpdateMJAIAgentClientTool(input: UpdateMJAIAgentClientToolInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
862
|
+
DeleteMJAIAgentClientTool(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
863
|
+
}
|
|
820
864
|
export declare class MJAIAgentConfiguration_ {
|
|
821
865
|
ID: string;
|
|
822
866
|
AgentID: string;
|
|
@@ -2300,6 +2344,7 @@ export declare class MJAIAgent_ {
|
|
|
2300
2344
|
AutoArchiveEnabled: boolean;
|
|
2301
2345
|
RerankerConfiguration?: string;
|
|
2302
2346
|
CategoryID?: string;
|
|
2347
|
+
AllowEphemeralClientTools: boolean;
|
|
2303
2348
|
Parent?: string;
|
|
2304
2349
|
ContextCompressionPrompt?: string;
|
|
2305
2350
|
Type?: string;
|
|
@@ -2318,6 +2363,7 @@ export declare class MJAIAgent_ {
|
|
|
2318
2363
|
MJAIAgentPermissions_AgentIDArray: MJAIAgentPermission_[];
|
|
2319
2364
|
MJAIAgentDataSources_AgentIDArray: MJAIAgentDataSource_[];
|
|
2320
2365
|
MJAIAgentModalities_AgentIDArray: MJAIAgentModality_[];
|
|
2366
|
+
MJAIAgentClientTools_AgentIDArray: MJAIAgentClientTool_[];
|
|
2321
2367
|
MJAIAgentNotes_AgentIDArray: MJAIAgentNote_[];
|
|
2322
2368
|
MJAIAgentPrompts_AgentIDArray: MJAIAgentPrompt_[];
|
|
2323
2369
|
MJAIAgentRuns_AgentIDArray: MJAIAgentRun_[];
|
|
@@ -2392,6 +2438,7 @@ export declare class CreateMJAIAgentInput {
|
|
|
2392
2438
|
AutoArchiveEnabled?: boolean;
|
|
2393
2439
|
RerankerConfiguration: string | null;
|
|
2394
2440
|
CategoryID: string | null;
|
|
2441
|
+
AllowEphemeralClientTools?: boolean;
|
|
2395
2442
|
}
|
|
2396
2443
|
export declare class UpdateMJAIAgentInput {
|
|
2397
2444
|
ID: string;
|
|
@@ -2454,6 +2501,7 @@ export declare class UpdateMJAIAgentInput {
|
|
|
2454
2501
|
AutoArchiveEnabled?: boolean;
|
|
2455
2502
|
RerankerConfiguration?: string | null;
|
|
2456
2503
|
CategoryID?: string | null;
|
|
2504
|
+
AllowEphemeralClientTools?: boolean;
|
|
2457
2505
|
OldValues___?: KeyValuePairInput[];
|
|
2458
2506
|
}
|
|
2459
2507
|
export declare class RunMJAIAgentViewResult {
|
|
@@ -2480,6 +2528,7 @@ export declare class MJAIAgentResolver extends ResolverBase {
|
|
|
2480
2528
|
MJAIAgentPermissions_AgentIDArray(mjaiagent_: MJAIAgent_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2481
2529
|
MJAIAgentDataSources_AgentIDArray(mjaiagent_: MJAIAgent_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2482
2530
|
MJAIAgentModalities_AgentIDArray(mjaiagent_: MJAIAgent_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2531
|
+
MJAIAgentClientTools_AgentIDArray(mjaiagent_: MJAIAgent_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2483
2532
|
MJAIAgentNotes_AgentIDArray(mjaiagent_: MJAIAgent_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2484
2533
|
MJAIAgentPrompts_AgentIDArray(mjaiagent_: MJAIAgent_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2485
2534
|
MJAIAgentRuns_AgentIDArray(mjaiagent_: MJAIAgent_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
@@ -2553,6 +2602,59 @@ export declare class MJAIArchitectureResolver extends ResolverBase {
|
|
|
2553
2602
|
UpdateMJAIArchitecture(input: UpdateMJAIArchitectureInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
2554
2603
|
DeleteMJAIArchitecture(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
2555
2604
|
}
|
|
2605
|
+
export declare class MJAIClientToolDefinition_ {
|
|
2606
|
+
ID: string;
|
|
2607
|
+
Name: string;
|
|
2608
|
+
Description: string;
|
|
2609
|
+
Category?: string;
|
|
2610
|
+
InputSchemaJSON?: string;
|
|
2611
|
+
OutputSchemaJSON?: string;
|
|
2612
|
+
DefaultTimeoutMs?: number;
|
|
2613
|
+
RequiresContextType?: string;
|
|
2614
|
+
_mj__CreatedAt: Date;
|
|
2615
|
+
_mj__UpdatedAt: Date;
|
|
2616
|
+
MJAIAgentClientTools_ClientToolDefinitionIDArray: MJAIAgentClientTool_[];
|
|
2617
|
+
}
|
|
2618
|
+
export declare class CreateMJAIClientToolDefinitionInput {
|
|
2619
|
+
ID?: string;
|
|
2620
|
+
Name?: string;
|
|
2621
|
+
Description?: string;
|
|
2622
|
+
Category: string | null;
|
|
2623
|
+
InputSchemaJSON: string | null;
|
|
2624
|
+
OutputSchemaJSON: string | null;
|
|
2625
|
+
DefaultTimeoutMs?: number | null;
|
|
2626
|
+
RequiresContextType: string | null;
|
|
2627
|
+
}
|
|
2628
|
+
export declare class UpdateMJAIClientToolDefinitionInput {
|
|
2629
|
+
ID: string;
|
|
2630
|
+
Name?: string;
|
|
2631
|
+
Description?: string;
|
|
2632
|
+
Category?: string | null;
|
|
2633
|
+
InputSchemaJSON?: string | null;
|
|
2634
|
+
OutputSchemaJSON?: string | null;
|
|
2635
|
+
DefaultTimeoutMs?: number | null;
|
|
2636
|
+
RequiresContextType?: string | null;
|
|
2637
|
+
OldValues___?: KeyValuePairInput[];
|
|
2638
|
+
}
|
|
2639
|
+
export declare class RunMJAIClientToolDefinitionViewResult {
|
|
2640
|
+
Results: MJAIClientToolDefinition_[];
|
|
2641
|
+
UserViewRunID?: string;
|
|
2642
|
+
RowCount: number;
|
|
2643
|
+
TotalRowCount: number;
|
|
2644
|
+
ExecutionTime: number;
|
|
2645
|
+
ErrorMessage?: string;
|
|
2646
|
+
Success: boolean;
|
|
2647
|
+
}
|
|
2648
|
+
export declare class MJAIClientToolDefinitionResolver extends ResolverBase {
|
|
2649
|
+
RunMJAIClientToolDefinitionViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
2650
|
+
RunMJAIClientToolDefinitionViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
2651
|
+
RunMJAIClientToolDefinitionDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
2652
|
+
MJAIClientToolDefinition(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJAIClientToolDefinition_ | null>;
|
|
2653
|
+
MJAIAgentClientTools_ClientToolDefinitionIDArray(mjaiclienttooldefinition_: MJAIClientToolDefinition_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2654
|
+
CreateMJAIClientToolDefinition(input: CreateMJAIClientToolDefinitionInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
2655
|
+
UpdateMJAIClientToolDefinition(input: UpdateMJAIClientToolDefinitionInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
2656
|
+
DeleteMJAIClientToolDefinition(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
2657
|
+
}
|
|
2556
2658
|
export declare class MJAIConfigurationParam_ {
|
|
2557
2659
|
ID: string;
|
|
2558
2660
|
ConfigurationID: string;
|
|
@@ -3274,7 +3376,10 @@ export declare class MJAIModel_ {
|
|
|
3274
3376
|
MJAIModelVendors_ModelIDArray: MJAIModelVendor_[];
|
|
3275
3377
|
MJGeneratedCodes_GeneratedByModelIDArray: MJGeneratedCode_[];
|
|
3276
3378
|
MJAIModelCosts_ModelIDArray: MJAIModelCost_[];
|
|
3379
|
+
MJContentTypes_EmbeddingModelIDArray: MJContentType_[];
|
|
3380
|
+
MJContentItems_EmbeddingModelIDArray: MJContentItem_[];
|
|
3277
3381
|
MJAIPromptModels_ModelIDArray: MJAIPromptModel_[];
|
|
3382
|
+
MJContentSources_EmbeddingModelIDArray: MJContentSource_[];
|
|
3278
3383
|
MJAIPromptRuns_OriginalModelIDArray: MJAIPromptRun_[];
|
|
3279
3384
|
MJAIAgentRuns_OverrideModelIDArray: MJAIAgentRun_[];
|
|
3280
3385
|
MJQueries_EmbeddingModelIDArray: MJQuery_[];
|
|
@@ -3356,7 +3461,10 @@ export declare class MJAIModelResolver extends ResolverBase {
|
|
|
3356
3461
|
MJAIModelVendors_ModelIDArray(mjaimodel_: MJAIModel_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3357
3462
|
MJGeneratedCodes_GeneratedByModelIDArray(mjaimodel_: MJAIModel_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3358
3463
|
MJAIModelCosts_ModelIDArray(mjaimodel_: MJAIModel_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3464
|
+
MJContentTypes_EmbeddingModelIDArray(mjaimodel_: MJAIModel_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3465
|
+
MJContentItems_EmbeddingModelIDArray(mjaimodel_: MJAIModel_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3359
3466
|
MJAIPromptModels_ModelIDArray(mjaimodel_: MJAIModel_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3467
|
+
MJContentSources_EmbeddingModelIDArray(mjaimodel_: MJAIModel_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3360
3468
|
MJAIPromptRuns_OriginalModelIDArray(mjaimodel_: MJAIModel_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3361
3469
|
MJAIAgentRuns_OverrideModelIDArray(mjaimodel_: MJAIModel_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3362
3470
|
MJQueries_EmbeddingModelIDArray(mjaimodel_: MJAIModel_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
@@ -3660,6 +3768,7 @@ export declare class MJAIPromptRun_ {
|
|
|
3660
3768
|
TestRun?: string;
|
|
3661
3769
|
RootParentID?: string;
|
|
3662
3770
|
RootRerunFromPromptRunID?: string;
|
|
3771
|
+
MJContentProcessRunPromptRuns_AIPromptRunIDArray: MJContentProcessRunPromptRun_[];
|
|
3663
3772
|
MJAIPromptRuns_RerunFromPromptRunIDArray: MJAIPromptRun_[];
|
|
3664
3773
|
MJAIPromptRunMedias_PromptRunIDArray: MJAIPromptRunMedia_[];
|
|
3665
3774
|
MJAIResultCache_PromptRunIDArray: MJAIResultCache_[];
|
|
@@ -3850,6 +3959,7 @@ export declare class MJAIPromptRunResolver extends ResolverBase {
|
|
|
3850
3959
|
RunMJAIPromptRunViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
3851
3960
|
RunMJAIPromptRunDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
3852
3961
|
MJAIPromptRun(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJAIPromptRun_ | null>;
|
|
3962
|
+
MJContentProcessRunPromptRuns_AIPromptRunIDArray(mjaipromptrun_: MJAIPromptRun_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3853
3963
|
MJAIPromptRuns_RerunFromPromptRunIDArray(mjaipromptrun_: MJAIPromptRun_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3854
3964
|
MJAIPromptRunMedias_PromptRunIDArray(mjaipromptrun_: MJAIPromptRun_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3855
3965
|
MJAIResultCache_PromptRunIDArray(mjaipromptrun_: MJAIPromptRun_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
@@ -6831,23 +6941,87 @@ export declare class MJContentItemAttributeResolver extends ResolverBase {
|
|
|
6831
6941
|
UpdateMJContentItemAttribute(input: UpdateMJContentItemAttributeInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
6832
6942
|
DeleteMJContentItemAttribute(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
6833
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
|
+
}
|
|
6834
7001
|
export declare class MJContentItemTag_ {
|
|
6835
7002
|
ID: string;
|
|
6836
7003
|
ItemID: string;
|
|
6837
7004
|
Tag: string;
|
|
6838
7005
|
_mj__CreatedAt: Date;
|
|
6839
7006
|
_mj__UpdatedAt: Date;
|
|
7007
|
+
Weight: number;
|
|
7008
|
+
TagID?: string;
|
|
6840
7009
|
Item?: string;
|
|
7010
|
+
Tag_Virtual?: string;
|
|
6841
7011
|
}
|
|
6842
7012
|
export declare class CreateMJContentItemTagInput {
|
|
6843
7013
|
ID?: string;
|
|
6844
7014
|
ItemID?: string;
|
|
6845
7015
|
Tag?: string;
|
|
7016
|
+
Weight?: number;
|
|
7017
|
+
TagID: string | null;
|
|
6846
7018
|
}
|
|
6847
7019
|
export declare class UpdateMJContentItemTagInput {
|
|
6848
7020
|
ID: string;
|
|
6849
7021
|
ItemID?: string;
|
|
6850
7022
|
Tag?: string;
|
|
7023
|
+
Weight?: number;
|
|
7024
|
+
TagID?: string | null;
|
|
6851
7025
|
OldValues___?: KeyValuePairInput[];
|
|
6852
7026
|
}
|
|
6853
7027
|
export declare class RunMJContentItemTagViewResult {
|
|
@@ -6881,12 +7055,22 @@ export declare class MJContentItem_ {
|
|
|
6881
7055
|
Text?: string;
|
|
6882
7056
|
_mj__CreatedAt: Date;
|
|
6883
7057
|
_mj__UpdatedAt: Date;
|
|
7058
|
+
EntityRecordDocumentID?: string;
|
|
7059
|
+
EmbeddingStatus: string;
|
|
7060
|
+
LastEmbeddedAt?: Date;
|
|
7061
|
+
EmbeddingModelID?: string;
|
|
7062
|
+
TaggingStatus: string;
|
|
7063
|
+
LastTaggedAt?: Date;
|
|
6884
7064
|
ContentSource?: string;
|
|
6885
7065
|
ContentType: string;
|
|
6886
7066
|
ContentSourceType: string;
|
|
6887
7067
|
ContentFileType: string;
|
|
7068
|
+
EntityRecordDocument?: string;
|
|
7069
|
+
EmbeddingModel?: string;
|
|
6888
7070
|
MJContentItemAttributes_ContentItemIDArray: MJContentItemAttribute_[];
|
|
6889
7071
|
MJContentItemTags_ItemIDArray: MJContentItemTag_[];
|
|
7072
|
+
MJContentItemDuplicates_ContentItemAIDArray: MJContentItemDuplicate_[];
|
|
7073
|
+
MJContentItemDuplicates_ContentItemBIDArray: MJContentItemDuplicate_[];
|
|
6890
7074
|
}
|
|
6891
7075
|
export declare class CreateMJContentItemInput {
|
|
6892
7076
|
ID?: string;
|
|
@@ -6899,6 +7083,12 @@ export declare class CreateMJContentItemInput {
|
|
|
6899
7083
|
Checksum: string | null;
|
|
6900
7084
|
URL?: string;
|
|
6901
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;
|
|
6902
7092
|
}
|
|
6903
7093
|
export declare class UpdateMJContentItemInput {
|
|
6904
7094
|
ID: string;
|
|
@@ -6911,6 +7101,12 @@ export declare class UpdateMJContentItemInput {
|
|
|
6911
7101
|
Checksum?: string | null;
|
|
6912
7102
|
URL?: string;
|
|
6913
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;
|
|
6914
7110
|
OldValues___?: KeyValuePairInput[];
|
|
6915
7111
|
}
|
|
6916
7112
|
export declare class RunMJContentItemViewResult {
|
|
@@ -6929,10 +7125,126 @@ export declare class MJContentItemResolver extends ResolverBase {
|
|
|
6929
7125
|
MJContentItem(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJContentItem_ | null>;
|
|
6930
7126
|
MJContentItemAttributes_ContentItemIDArray(mjcontentitem_: MJContentItem_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
6931
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[]>;
|
|
6932
7130
|
CreateMJContentItem(input: CreateMJContentItemInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
6933
7131
|
UpdateMJContentItem(input: UpdateMJContentItemInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
6934
7132
|
DeleteMJContentItem(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
6935
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
|
+
}
|
|
6936
7248
|
export declare class MJContentProcessRun_ {
|
|
6937
7249
|
ID: string;
|
|
6938
7250
|
SourceID: string;
|
|
@@ -6942,7 +7254,17 @@ export declare class MJContentProcessRun_ {
|
|
|
6942
7254
|
ProcessedItems?: number;
|
|
6943
7255
|
_mj__CreatedAt: Date;
|
|
6944
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;
|
|
6945
7265
|
Source?: string;
|
|
7266
|
+
StartedByUser?: string;
|
|
7267
|
+
MJContentProcessRunDetails_ContentProcessRunIDArray: MJContentProcessRunDetail_[];
|
|
6946
7268
|
}
|
|
6947
7269
|
export declare class CreateMJContentProcessRunInput {
|
|
6948
7270
|
ID?: string;
|
|
@@ -6951,6 +7273,14 @@ export declare class CreateMJContentProcessRunInput {
|
|
|
6951
7273
|
EndTime: Date | null;
|
|
6952
7274
|
Status: string | null;
|
|
6953
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;
|
|
6954
7284
|
}
|
|
6955
7285
|
export declare class UpdateMJContentProcessRunInput {
|
|
6956
7286
|
ID: string;
|
|
@@ -6959,6 +7289,14 @@ export declare class UpdateMJContentProcessRunInput {
|
|
|
6959
7289
|
EndTime?: Date | null;
|
|
6960
7290
|
Status?: string | null;
|
|
6961
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;
|
|
6962
7300
|
OldValues___?: KeyValuePairInput[];
|
|
6963
7301
|
}
|
|
6964
7302
|
export declare class RunMJContentProcessRunViewResult {
|
|
@@ -6975,6 +7313,7 @@ export declare class MJContentProcessRunResolver extends ResolverBase {
|
|
|
6975
7313
|
RunMJContentProcessRunViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
6976
7314
|
RunMJContentProcessRunDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
6977
7315
|
MJContentProcessRun(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJContentProcessRun_ | null>;
|
|
7316
|
+
MJContentProcessRunDetails_ContentProcessRunIDArray(mjcontentprocessrun_: MJContentProcessRun_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
6978
7317
|
CreateMJContentProcessRun(input: CreateMJContentProcessRunInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
6979
7318
|
UpdateMJContentProcessRun(input: UpdateMJContentProcessRunInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
6980
7319
|
DeleteMJContentProcessRun(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -7070,18 +7409,25 @@ export declare class MJContentSourceType_ {
|
|
|
7070
7409
|
Description?: string;
|
|
7071
7410
|
_mj__CreatedAt: Date;
|
|
7072
7411
|
_mj__UpdatedAt: Date;
|
|
7412
|
+
DriverClass?: string;
|
|
7413
|
+
Configuration?: string;
|
|
7073
7414
|
MJContentSources_ContentSourceTypeIDArray: MJContentSource_[];
|
|
7074
7415
|
MJContentItems_ContentSourceTypeIDArray: MJContentItem_[];
|
|
7416
|
+
MJContentProcessRunDetails_ContentSourceTypeIDArray: MJContentProcessRunDetail_[];
|
|
7075
7417
|
}
|
|
7076
7418
|
export declare class CreateMJContentSourceTypeInput {
|
|
7077
7419
|
ID?: string;
|
|
7078
7420
|
Name?: string;
|
|
7079
7421
|
Description: string | null;
|
|
7422
|
+
DriverClass: string | null;
|
|
7423
|
+
Configuration: string | null;
|
|
7080
7424
|
}
|
|
7081
7425
|
export declare class UpdateMJContentSourceTypeInput {
|
|
7082
7426
|
ID: string;
|
|
7083
7427
|
Name?: string;
|
|
7084
7428
|
Description?: string | null;
|
|
7429
|
+
DriverClass?: string | null;
|
|
7430
|
+
Configuration?: string | null;
|
|
7085
7431
|
OldValues___?: KeyValuePairInput[];
|
|
7086
7432
|
}
|
|
7087
7433
|
export declare class RunMJContentSourceTypeViewResult {
|
|
@@ -7100,6 +7446,7 @@ export declare class MJContentSourceTypeResolver extends ResolverBase {
|
|
|
7100
7446
|
MJContentSourceType(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJContentSourceType_ | null>;
|
|
7101
7447
|
MJContentSources_ContentSourceTypeIDArray(mjcontentsourcetype_: MJContentSourceType_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
7102
7448
|
MJContentItems_ContentSourceTypeIDArray(mjcontentsourcetype_: MJContentSourceType_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
7449
|
+
MJContentProcessRunDetails_ContentSourceTypeIDArray(mjcontentsourcetype_: MJContentSourceType_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
7103
7450
|
CreateMJContentSourceType(input: CreateMJContentSourceTypeInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7104
7451
|
UpdateMJContentSourceType(input: UpdateMJContentSourceTypeInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7105
7452
|
DeleteMJContentSourceType(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -7113,12 +7460,24 @@ export declare class MJContentSource_ {
|
|
|
7113
7460
|
URL: string;
|
|
7114
7461
|
_mj__CreatedAt: Date;
|
|
7115
7462
|
_mj__UpdatedAt: Date;
|
|
7463
|
+
EmbeddingModelID?: string;
|
|
7464
|
+
VectorIndexID?: string;
|
|
7465
|
+
Configuration?: string;
|
|
7466
|
+
EntityID?: string;
|
|
7467
|
+
EntityDocumentID?: string;
|
|
7468
|
+
ScheduledActionID?: string;
|
|
7116
7469
|
ContentType: string;
|
|
7117
7470
|
ContentSourceType: string;
|
|
7118
7471
|
ContentFileType: string;
|
|
7472
|
+
EmbeddingModel?: string;
|
|
7473
|
+
VectorIndex?: string;
|
|
7474
|
+
Entity?: string;
|
|
7475
|
+
EntityDocument?: string;
|
|
7476
|
+
ScheduledAction?: string;
|
|
7119
7477
|
MJContentItems_ContentSourceIDArray: MJContentItem_[];
|
|
7120
7478
|
MJContentProcessRuns_SourceIDArray: MJContentProcessRun_[];
|
|
7121
7479
|
MJContentSourceParams_ContentSourceIDArray: MJContentSourceParam_[];
|
|
7480
|
+
MJContentProcessRunDetails_ContentSourceIDArray: MJContentProcessRunDetail_[];
|
|
7122
7481
|
}
|
|
7123
7482
|
export declare class CreateMJContentSourceInput {
|
|
7124
7483
|
ID?: string;
|
|
@@ -7127,6 +7486,12 @@ export declare class CreateMJContentSourceInput {
|
|
|
7127
7486
|
ContentSourceTypeID?: string;
|
|
7128
7487
|
ContentFileTypeID?: string;
|
|
7129
7488
|
URL?: string;
|
|
7489
|
+
EmbeddingModelID: string | null;
|
|
7490
|
+
VectorIndexID: string | null;
|
|
7491
|
+
Configuration: string | null;
|
|
7492
|
+
EntityID: string | null;
|
|
7493
|
+
EntityDocumentID: string | null;
|
|
7494
|
+
ScheduledActionID: string | null;
|
|
7130
7495
|
}
|
|
7131
7496
|
export declare class UpdateMJContentSourceInput {
|
|
7132
7497
|
ID: string;
|
|
@@ -7135,6 +7500,12 @@ export declare class UpdateMJContentSourceInput {
|
|
|
7135
7500
|
ContentSourceTypeID?: string;
|
|
7136
7501
|
ContentFileTypeID?: string;
|
|
7137
7502
|
URL?: string;
|
|
7503
|
+
EmbeddingModelID?: string | null;
|
|
7504
|
+
VectorIndexID?: string | null;
|
|
7505
|
+
Configuration?: string | null;
|
|
7506
|
+
EntityID?: string | null;
|
|
7507
|
+
EntityDocumentID?: string | null;
|
|
7508
|
+
ScheduledActionID?: string | null;
|
|
7138
7509
|
OldValues___?: KeyValuePairInput[];
|
|
7139
7510
|
}
|
|
7140
7511
|
export declare class RunMJContentSourceViewResult {
|
|
@@ -7154,6 +7525,7 @@ export declare class MJContentSourceResolver extends ResolverBase {
|
|
|
7154
7525
|
MJContentItems_ContentSourceIDArray(mjcontentsource_: MJContentSource_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
7155
7526
|
MJContentProcessRuns_SourceIDArray(mjcontentsource_: MJContentSource_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
7156
7527
|
MJContentSourceParams_ContentSourceIDArray(mjcontentsource_: MJContentSource_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
7528
|
+
MJContentProcessRunDetails_ContentSourceIDArray(mjcontentsource_: MJContentSource_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
7157
7529
|
CreateMJContentSource(input: CreateMJContentSourceInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7158
7530
|
UpdateMJContentSource(input: UpdateMJContentSourceInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7159
7531
|
DeleteMJContentSource(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -7209,7 +7581,12 @@ export declare class MJContentType_ {
|
|
|
7209
7581
|
MaxTags: number;
|
|
7210
7582
|
_mj__CreatedAt: Date;
|
|
7211
7583
|
_mj__UpdatedAt: Date;
|
|
7584
|
+
EmbeddingModelID?: string;
|
|
7585
|
+
VectorIndexID?: string;
|
|
7586
|
+
Configuration?: string;
|
|
7212
7587
|
AIModel: string;
|
|
7588
|
+
EmbeddingModel?: string;
|
|
7589
|
+
VectorIndex?: string;
|
|
7213
7590
|
MJContentSources_ContentTypeIDArray: MJContentSource_[];
|
|
7214
7591
|
MJContentItems_ContentTypeIDArray: MJContentItem_[];
|
|
7215
7592
|
}
|
|
@@ -7220,6 +7597,9 @@ export declare class CreateMJContentTypeInput {
|
|
|
7220
7597
|
AIModelID?: string;
|
|
7221
7598
|
MinTags?: number;
|
|
7222
7599
|
MaxTags?: number;
|
|
7600
|
+
EmbeddingModelID: string | null;
|
|
7601
|
+
VectorIndexID: string | null;
|
|
7602
|
+
Configuration: string | null;
|
|
7223
7603
|
}
|
|
7224
7604
|
export declare class UpdateMJContentTypeInput {
|
|
7225
7605
|
ID: string;
|
|
@@ -7228,6 +7608,9 @@ export declare class UpdateMJContentTypeInput {
|
|
|
7228
7608
|
AIModelID?: string;
|
|
7229
7609
|
MinTags?: number;
|
|
7230
7610
|
MaxTags?: number;
|
|
7611
|
+
EmbeddingModelID?: string | null;
|
|
7612
|
+
VectorIndexID?: string | null;
|
|
7613
|
+
Configuration?: string | null;
|
|
7231
7614
|
OldValues___?: KeyValuePairInput[];
|
|
7232
7615
|
}
|
|
7233
7616
|
export declare class RunMJContentTypeViewResult {
|
|
@@ -8602,6 +8985,7 @@ export declare class MJDuplicateRunDetailMatch_ {
|
|
|
8602
8985
|
MergedAt: Date;
|
|
8603
8986
|
_mj__CreatedAt: Date;
|
|
8604
8987
|
_mj__UpdatedAt: Date;
|
|
8988
|
+
RecordMetadata?: string;
|
|
8605
8989
|
DuplicateRunDetail: string;
|
|
8606
8990
|
RecordMergeLog?: string;
|
|
8607
8991
|
}
|
|
@@ -8617,6 +9001,7 @@ export declare class CreateMJDuplicateRunDetailMatchInput {
|
|
|
8617
9001
|
RecordMergeLogID: string | null;
|
|
8618
9002
|
MergeStatus?: string;
|
|
8619
9003
|
MergedAt?: Date;
|
|
9004
|
+
RecordMetadata: string | null;
|
|
8620
9005
|
}
|
|
8621
9006
|
export declare class UpdateMJDuplicateRunDetailMatchInput {
|
|
8622
9007
|
ID: string;
|
|
@@ -8630,6 +9015,7 @@ export declare class UpdateMJDuplicateRunDetailMatchInput {
|
|
|
8630
9015
|
RecordMergeLogID?: string | null;
|
|
8631
9016
|
MergeStatus?: string;
|
|
8632
9017
|
MergedAt?: Date;
|
|
9018
|
+
RecordMetadata?: string | null;
|
|
8633
9019
|
OldValues___?: KeyValuePairInput[];
|
|
8634
9020
|
}
|
|
8635
9021
|
export declare class RunMJDuplicateRunDetailMatchViewResult {
|
|
@@ -8661,6 +9047,9 @@ export declare class MJDuplicateRunDetail_ {
|
|
|
8661
9047
|
MergeErrorMessage?: string;
|
|
8662
9048
|
_mj__CreatedAt: Date;
|
|
8663
9049
|
_mj__UpdatedAt: Date;
|
|
9050
|
+
RecordMetadata?: string;
|
|
9051
|
+
StartedAt?: Date;
|
|
9052
|
+
EndedAt?: Date;
|
|
8664
9053
|
DuplicateRun: string;
|
|
8665
9054
|
MJDuplicateRunDetailMatches_DuplicateRunDetailIDArray: MJDuplicateRunDetailMatch_[];
|
|
8666
9055
|
}
|
|
@@ -8673,6 +9062,9 @@ export declare class CreateMJDuplicateRunDetailInput {
|
|
|
8673
9062
|
MatchErrorMessage: string | null;
|
|
8674
9063
|
MergeStatus?: string;
|
|
8675
9064
|
MergeErrorMessage: string | null;
|
|
9065
|
+
RecordMetadata: string | null;
|
|
9066
|
+
StartedAt: Date | null;
|
|
9067
|
+
EndedAt: Date | null;
|
|
8676
9068
|
}
|
|
8677
9069
|
export declare class UpdateMJDuplicateRunDetailInput {
|
|
8678
9070
|
ID: string;
|
|
@@ -8683,6 +9075,9 @@ export declare class UpdateMJDuplicateRunDetailInput {
|
|
|
8683
9075
|
MatchErrorMessage?: string | null;
|
|
8684
9076
|
MergeStatus?: string;
|
|
8685
9077
|
MergeErrorMessage?: string | null;
|
|
9078
|
+
RecordMetadata?: string | null;
|
|
9079
|
+
StartedAt?: Date | null;
|
|
9080
|
+
EndedAt?: Date | null;
|
|
8686
9081
|
OldValues___?: KeyValuePairInput[];
|
|
8687
9082
|
}
|
|
8688
9083
|
export declare class RunMJDuplicateRunDetailViewResult {
|
|
@@ -8708,7 +9103,7 @@ export declare class MJDuplicateRun_ {
|
|
|
8708
9103
|
ID: string;
|
|
8709
9104
|
EntityID: string;
|
|
8710
9105
|
StartedByUserID: string;
|
|
8711
|
-
SourceListID
|
|
9106
|
+
SourceListID?: string;
|
|
8712
9107
|
StartedAt: Date;
|
|
8713
9108
|
EndedAt?: Date;
|
|
8714
9109
|
ApprovalStatus: string;
|
|
@@ -8718,9 +9113,14 @@ export declare class MJDuplicateRun_ {
|
|
|
8718
9113
|
ProcessingErrorMessage?: string;
|
|
8719
9114
|
_mj__CreatedAt: Date;
|
|
8720
9115
|
_mj__UpdatedAt: Date;
|
|
9116
|
+
TotalItemCount?: number;
|
|
9117
|
+
ProcessedItemCount?: number;
|
|
9118
|
+
LastProcessedOffset?: number;
|
|
9119
|
+
BatchSize?: number;
|
|
9120
|
+
CancellationRequested: boolean;
|
|
8721
9121
|
Entity: string;
|
|
8722
9122
|
StartedByUser: string;
|
|
8723
|
-
SourceList
|
|
9123
|
+
SourceList?: string;
|
|
8724
9124
|
ApprovedByUser?: string;
|
|
8725
9125
|
MJDuplicateRunDetails_DuplicateRunIDArray: MJDuplicateRunDetail_[];
|
|
8726
9126
|
}
|
|
@@ -8728,7 +9128,7 @@ export declare class CreateMJDuplicateRunInput {
|
|
|
8728
9128
|
ID?: string;
|
|
8729
9129
|
EntityID?: string;
|
|
8730
9130
|
StartedByUserID?: string;
|
|
8731
|
-
SourceListID
|
|
9131
|
+
SourceListID: string | null;
|
|
8732
9132
|
StartedAt?: Date;
|
|
8733
9133
|
EndedAt: Date | null;
|
|
8734
9134
|
ApprovalStatus?: string;
|
|
@@ -8736,12 +9136,17 @@ export declare class CreateMJDuplicateRunInput {
|
|
|
8736
9136
|
ApprovedByUserID: string | null;
|
|
8737
9137
|
ProcessingStatus?: string;
|
|
8738
9138
|
ProcessingErrorMessage: string | null;
|
|
9139
|
+
TotalItemCount: number | null;
|
|
9140
|
+
ProcessedItemCount?: number | null;
|
|
9141
|
+
LastProcessedOffset?: number | null;
|
|
9142
|
+
BatchSize?: number | null;
|
|
9143
|
+
CancellationRequested?: boolean;
|
|
8739
9144
|
}
|
|
8740
9145
|
export declare class UpdateMJDuplicateRunInput {
|
|
8741
9146
|
ID: string;
|
|
8742
9147
|
EntityID?: string;
|
|
8743
9148
|
StartedByUserID?: string;
|
|
8744
|
-
SourceListID?: string;
|
|
9149
|
+
SourceListID?: string | null;
|
|
8745
9150
|
StartedAt?: Date;
|
|
8746
9151
|
EndedAt?: Date | null;
|
|
8747
9152
|
ApprovalStatus?: string;
|
|
@@ -8749,6 +9154,11 @@ export declare class UpdateMJDuplicateRunInput {
|
|
|
8749
9154
|
ApprovedByUserID?: string | null;
|
|
8750
9155
|
ProcessingStatus?: string;
|
|
8751
9156
|
ProcessingErrorMessage?: string | null;
|
|
9157
|
+
TotalItemCount?: number | null;
|
|
9158
|
+
ProcessedItemCount?: number | null;
|
|
9159
|
+
LastProcessedOffset?: number | null;
|
|
9160
|
+
BatchSize?: number | null;
|
|
9161
|
+
CancellationRequested?: boolean;
|
|
8752
9162
|
OldValues___?: KeyValuePairInput[];
|
|
8753
9163
|
}
|
|
8754
9164
|
export declare class RunMJDuplicateRunViewResult {
|
|
@@ -9250,6 +9660,7 @@ export declare class MJEntity_ {
|
|
|
9250
9660
|
MJCompanyIntegrationEntityMaps_EntityIDArray: MJCompanyIntegrationEntityMap_[];
|
|
9251
9661
|
MJEntityFields_RelatedEntityIDArray: MJEntityField_[];
|
|
9252
9662
|
MJResourceTypes_CategoryEntityIDArray: MJResourceType_[];
|
|
9663
|
+
MJContentSources_EntityIDArray: MJContentSource_[];
|
|
9253
9664
|
MJTestRuns_TargetLogEntityIDArray: MJTestRun_[];
|
|
9254
9665
|
MJAIAgentRuns_PrimaryScopeEntityIDArray: MJAIAgentRun_[];
|
|
9255
9666
|
}
|
|
@@ -9432,6 +9843,7 @@ export declare class MJEntityResolverBase extends ResolverBase {
|
|
|
9432
9843
|
MJCompanyIntegrationEntityMaps_EntityIDArray(mjentity_: MJEntity_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
9433
9844
|
MJEntityFields_RelatedEntityIDArray(mjentity_: MJEntity_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
9434
9845
|
MJResourceTypes_CategoryEntityIDArray(mjentity_: MJEntity_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
9846
|
+
MJContentSources_EntityIDArray(mjentity_: MJEntity_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
9435
9847
|
MJTestRuns_TargetLogEntityIDArray(mjentity_: MJEntity_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
9436
9848
|
MJAIAgentRuns_PrimaryScopeEntityIDArray(mjentity_: MJEntity_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
9437
9849
|
CreateMJEntity(input: CreateMJEntityInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -9960,6 +10372,7 @@ export declare class MJEntityDocument_ {
|
|
|
9960
10372
|
MJEntityDocumentRuns_EntityDocumentIDArray: MJEntityDocumentRun_[];
|
|
9961
10373
|
MJEntityDocumentSettings_EntityDocumentIDArray: MJEntityDocumentSetting_[];
|
|
9962
10374
|
MJEntityRecordDocuments_EntityDocumentIDArray: MJEntityRecordDocument_[];
|
|
10375
|
+
MJContentSources_EntityDocumentIDArray: MJContentSource_[];
|
|
9963
10376
|
}
|
|
9964
10377
|
export declare class CreateMJEntityDocumentInput {
|
|
9965
10378
|
ID?: string;
|
|
@@ -10007,6 +10420,7 @@ export declare class MJEntityDocumentResolver extends ResolverBase {
|
|
|
10007
10420
|
MJEntityDocumentRuns_EntityDocumentIDArray(mjentitydocument_: MJEntityDocument_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
10008
10421
|
MJEntityDocumentSettings_EntityDocumentIDArray(mjentitydocument_: MJEntityDocument_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
10009
10422
|
MJEntityRecordDocuments_EntityDocumentIDArray(mjentitydocument_: MJEntityDocument_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
10423
|
+
MJContentSources_EntityDocumentIDArray(mjentitydocument_: MJEntityDocument_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
10010
10424
|
CreateMJEntityDocument(input: CreateMJEntityDocumentInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
10011
10425
|
UpdateMJEntityDocument(input: UpdateMJEntityDocumentInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
10012
10426
|
DeleteMJEntityDocument(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -10117,6 +10531,9 @@ export declare class MJEntityField_ {
|
|
|
10117
10531
|
IsSoftPrimaryKey: boolean;
|
|
10118
10532
|
IsSoftForeignKey: boolean;
|
|
10119
10533
|
RelatedEntityJoinFields?: string;
|
|
10534
|
+
JSONType?: string;
|
|
10535
|
+
JSONTypeIsArray: boolean;
|
|
10536
|
+
JSONTypeDefinition?: string;
|
|
10120
10537
|
FieldCodeName?: string;
|
|
10121
10538
|
Entity: string;
|
|
10122
10539
|
SchemaName: string;
|
|
@@ -10176,6 +10593,9 @@ export declare class CreateMJEntityFieldInput {
|
|
|
10176
10593
|
IsSoftPrimaryKey?: boolean;
|
|
10177
10594
|
IsSoftForeignKey?: boolean;
|
|
10178
10595
|
RelatedEntityJoinFields: string | null;
|
|
10596
|
+
JSONType: string | null;
|
|
10597
|
+
JSONTypeIsArray?: boolean;
|
|
10598
|
+
JSONTypeDefinition: string | null;
|
|
10179
10599
|
}
|
|
10180
10600
|
export declare class UpdateMJEntityFieldInput {
|
|
10181
10601
|
ID: string;
|
|
@@ -10221,6 +10641,9 @@ export declare class UpdateMJEntityFieldInput {
|
|
|
10221
10641
|
IsSoftPrimaryKey?: boolean;
|
|
10222
10642
|
IsSoftForeignKey?: boolean;
|
|
10223
10643
|
RelatedEntityJoinFields?: string | null;
|
|
10644
|
+
JSONType?: string | null;
|
|
10645
|
+
JSONTypeIsArray?: boolean;
|
|
10646
|
+
JSONTypeDefinition?: string | null;
|
|
10224
10647
|
OldValues___?: KeyValuePairInput[];
|
|
10225
10648
|
}
|
|
10226
10649
|
export declare class RunMJEntityFieldViewResult {
|
|
@@ -10454,6 +10877,7 @@ export declare class MJEntityRecordDocument_ {
|
|
|
10454
10877
|
Entity: string;
|
|
10455
10878
|
EntityDocument: string;
|
|
10456
10879
|
VectorIndex: string;
|
|
10880
|
+
MJContentItems_EntityRecordDocumentIDArray: MJContentItem_[];
|
|
10457
10881
|
}
|
|
10458
10882
|
export declare class CreateMJEntityRecordDocumentInput {
|
|
10459
10883
|
ID?: string;
|
|
@@ -10492,6 +10916,7 @@ export declare class MJEntityRecordDocumentResolver extends ResolverBase {
|
|
|
10492
10916
|
RunMJEntityRecordDocumentViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
10493
10917
|
RunMJEntityRecordDocumentDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
10494
10918
|
MJEntityRecordDocument(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJEntityRecordDocument_ | null>;
|
|
10919
|
+
MJContentItems_EntityRecordDocumentIDArray(mjentityrecorddocument_: MJEntityRecordDocument_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
10495
10920
|
CreateMJEntityRecordDocument(input: CreateMJEntityRecordDocumentInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
10496
10921
|
UpdateMJEntityRecordDocument(input: UpdateMJEntityRecordDocumentInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
10497
10922
|
DeleteMJEntityRecordDocument(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -11565,6 +11990,58 @@ export declare class MJIntegrationResolver extends ResolverBase {
|
|
|
11565
11990
|
UpdateMJIntegration(input: UpdateMJIntegrationInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
11566
11991
|
DeleteMJIntegration(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
11567
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
|
+
}
|
|
11568
12045
|
export declare class MJLibrary_ {
|
|
11569
12046
|
ID: string;
|
|
11570
12047
|
Name: string;
|
|
@@ -14817,6 +15294,7 @@ export declare class MJScheduledAction_ {
|
|
|
14817
15294
|
CreatedByUser: string;
|
|
14818
15295
|
Action: string;
|
|
14819
15296
|
MJScheduledActionParams_ScheduledActionIDArray: MJScheduledActionParam_[];
|
|
15297
|
+
MJContentSources_ScheduledActionIDArray: MJContentSource_[];
|
|
14820
15298
|
}
|
|
14821
15299
|
export declare class CreateMJScheduledActionInput {
|
|
14822
15300
|
ID?: string;
|
|
@@ -14866,6 +15344,7 @@ export declare class MJScheduledActionResolver extends ResolverBase {
|
|
|
14866
15344
|
RunMJScheduledActionDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
14867
15345
|
MJScheduledAction(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJScheduledAction_ | null>;
|
|
14868
15346
|
MJScheduledActionParams_ScheduledActionIDArray(mjscheduledaction_: MJScheduledAction_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
15347
|
+
MJContentSources_ScheduledActionIDArray(mjscheduledaction_: MJScheduledAction_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
14869
15348
|
CreateMJScheduledAction(input: CreateMJScheduledActionInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
14870
15349
|
UpdateMJScheduledAction(input: UpdateMJScheduledActionInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
14871
15350
|
DeleteMJScheduledAction(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -15247,6 +15726,98 @@ export declare class MJSQLDialectResolver extends ResolverBase {
|
|
|
15247
15726
|
UpdateMJSQLDialect(input: UpdateMJSQLDialectInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
15248
15727
|
DeleteMJSQLDialect(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
15249
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
|
+
}
|
|
15250
15821
|
export declare class MJTaggedItem_ {
|
|
15251
15822
|
ID: string;
|
|
15252
15823
|
TagID: string;
|
|
@@ -15254,6 +15825,7 @@ export declare class MJTaggedItem_ {
|
|
|
15254
15825
|
RecordID: string;
|
|
15255
15826
|
_mj__CreatedAt: Date;
|
|
15256
15827
|
_mj__UpdatedAt: Date;
|
|
15828
|
+
Weight: number;
|
|
15257
15829
|
Tag: string;
|
|
15258
15830
|
Entity: string;
|
|
15259
15831
|
}
|
|
@@ -15262,12 +15834,14 @@ export declare class CreateMJTaggedItemInput {
|
|
|
15262
15834
|
TagID?: string;
|
|
15263
15835
|
EntityID?: string;
|
|
15264
15836
|
RecordID?: string;
|
|
15837
|
+
Weight?: number;
|
|
15265
15838
|
}
|
|
15266
15839
|
export declare class UpdateMJTaggedItemInput {
|
|
15267
15840
|
ID: string;
|
|
15268
15841
|
TagID?: string;
|
|
15269
15842
|
EntityID?: string;
|
|
15270
15843
|
RecordID?: string;
|
|
15844
|
+
Weight?: number;
|
|
15271
15845
|
OldValues___?: KeyValuePairInput[];
|
|
15272
15846
|
}
|
|
15273
15847
|
export declare class RunMJTaggedItemViewResult {
|
|
@@ -15296,10 +15870,20 @@ export declare class MJTag_ {
|
|
|
15296
15870
|
Description?: string;
|
|
15297
15871
|
_mj__CreatedAt: Date;
|
|
15298
15872
|
_mj__UpdatedAt: Date;
|
|
15873
|
+
Status: string;
|
|
15874
|
+
MergedIntoTagID?: string;
|
|
15299
15875
|
Parent?: string;
|
|
15876
|
+
MergedIntoTag?: string;
|
|
15300
15877
|
RootParentID?: string;
|
|
15878
|
+
RootMergedIntoTagID?: string;
|
|
15301
15879
|
MJTags_ParentIDArray: MJTag_[];
|
|
15302
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_[];
|
|
15303
15887
|
}
|
|
15304
15888
|
export declare class CreateMJTagInput {
|
|
15305
15889
|
ID?: string;
|
|
@@ -15307,6 +15891,8 @@ export declare class CreateMJTagInput {
|
|
|
15307
15891
|
ParentID: string | null;
|
|
15308
15892
|
DisplayName?: string;
|
|
15309
15893
|
Description: string | null;
|
|
15894
|
+
Status?: string;
|
|
15895
|
+
MergedIntoTagID: string | null;
|
|
15310
15896
|
}
|
|
15311
15897
|
export declare class UpdateMJTagInput {
|
|
15312
15898
|
ID: string;
|
|
@@ -15314,6 +15900,8 @@ export declare class UpdateMJTagInput {
|
|
|
15314
15900
|
ParentID?: string | null;
|
|
15315
15901
|
DisplayName?: string;
|
|
15316
15902
|
Description?: string | null;
|
|
15903
|
+
Status?: string;
|
|
15904
|
+
MergedIntoTagID?: string | null;
|
|
15317
15905
|
OldValues___?: KeyValuePairInput[];
|
|
15318
15906
|
}
|
|
15319
15907
|
export declare class RunMJTagViewResult {
|
|
@@ -15332,6 +15920,12 @@ export declare class MJTagResolver extends ResolverBase {
|
|
|
15332
15920
|
MJTag(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJTag_ | null>;
|
|
15333
15921
|
MJTags_ParentIDArray(mjtag_: MJTag_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
15334
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[]>;
|
|
15335
15929
|
CreateMJTag(input: CreateMJTagInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
15336
15930
|
UpdateMJTag(input: UpdateMJTagInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
15337
15931
|
DeleteMJTag(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -17239,6 +17833,10 @@ export declare class MJUser_ {
|
|
|
17239
17833
|
MJOAuthAuthorizationStates_UserIDArray: MJOAuthAuthorizationState_[];
|
|
17240
17834
|
MJOpenAppInstallHistories_ExecutedByUserIDArray: MJOpenAppInstallHistory_[];
|
|
17241
17835
|
MJOpenApps_InstalledByUserIDArray: MJOpenApp_[];
|
|
17836
|
+
MJContentItemDuplicates_ResolvedByUserIDArray: MJContentItemDuplicate_[];
|
|
17837
|
+
MJContentProcessRuns_StartedByUserIDArray: MJContentProcessRun_[];
|
|
17838
|
+
MJKnowledgeHubSavedSearches_UserIDArray: MJKnowledgeHubSavedSearch_[];
|
|
17839
|
+
MJTagAuditLogs_PerformedByUserIDArray: MJTagAuditLog_[];
|
|
17242
17840
|
MJResourcePermissions_UserIDArray: MJResourcePermission_[];
|
|
17243
17841
|
MJAIAgentRequests_ResponseByUserIDArray: MJAIAgentRequest_[];
|
|
17244
17842
|
MJConversationDetails_UserIDArray: MJConversationDetail_[];
|
|
@@ -17371,6 +17969,10 @@ export declare class MJUserResolverBase extends ResolverBase {
|
|
|
17371
17969
|
MJOAuthAuthorizationStates_UserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
17372
17970
|
MJOpenAppInstallHistories_ExecutedByUserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
17373
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[]>;
|
|
17374
17976
|
MJResourcePermissions_UserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
17375
17977
|
MJAIAgentRequests_ResponseByUserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
17376
17978
|
MJConversationDetails_UserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
@@ -17463,6 +18065,8 @@ export declare class MJVectorIndex_ {
|
|
|
17463
18065
|
EmbeddingModel: string;
|
|
17464
18066
|
MJEntityRecordDocuments_VectorIndexIDArray: MJEntityRecordDocument_[];
|
|
17465
18067
|
MJEntityDocuments_VectorIndexIDArray: MJEntityDocument_[];
|
|
18068
|
+
MJContentTypes_VectorIndexIDArray: MJContentType_[];
|
|
18069
|
+
MJContentSources_VectorIndexIDArray: MJContentSource_[];
|
|
17466
18070
|
}
|
|
17467
18071
|
export declare class CreateMJVectorIndexInput {
|
|
17468
18072
|
ID?: string;
|
|
@@ -17503,6 +18107,8 @@ export declare class MJVectorIndexResolver extends ResolverBase {
|
|
|
17503
18107
|
MJVectorIndex(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJVectorIndex_ | null>;
|
|
17504
18108
|
MJEntityRecordDocuments_VectorIndexIDArray(mjvectorindex_: MJVectorIndex_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
17505
18109
|
MJEntityDocuments_VectorIndexIDArray(mjvectorindex_: MJVectorIndex_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
18110
|
+
MJContentTypes_VectorIndexIDArray(mjvectorindex_: MJVectorIndex_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
18111
|
+
MJContentSources_VectorIndexIDArray(mjvectorindex_: MJVectorIndex_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
17506
18112
|
CreateMJVectorIndex(input: CreateMJVectorIndexInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
17507
18113
|
UpdateMJVectorIndex(input: UpdateMJVectorIndexInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
17508
18114
|
DeleteMJVectorIndex(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|